]> Git Repo - linux.git/blob - MAINTAINERS
mm, slab: extend slab/shrink to shrink all memcg caches
[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 F:      drivers/rtc/rtc-meson*
1470 N:      meson
1471
1472 ARM/Amlogic Meson SoC Sound Drivers
1473 M:      Jerome Brunet <[email protected]>
1474 L:      [email protected] (moderated for non-subscribers)
1475 S:      Maintained
1476 F:      sound/soc/meson/
1477 F:      Documentation/devicetree/bindings/sound/amlogic*
1478
1479 ARM/Annapurna Labs ALPINE ARCHITECTURE
1480 M:      Tsahee Zidenberg <[email protected]>
1481 M:      Antoine Tenart <[email protected]>
1482 L:      [email protected] (moderated for non-subscribers)
1483 S:      Maintained
1484 F:      arch/arm/mach-alpine/
1485 F:      arch/arm/boot/dts/alpine*
1486 F:      arch/arm64/boot/dts/al/
1487 F:      drivers/*/*alpine*
1488
1489 ARM/ARTPEC MACHINE SUPPORT
1490 M:      Jesper Nilsson <[email protected]>
1491 M:      Lars Persson <[email protected]>
1492 S:      Maintained
1493 L:      [email protected]
1494 F:      arch/arm/mach-artpec
1495 F:      arch/arm/boot/dts/artpec6*
1496 F:      drivers/clk/axis
1497 F:      drivers/crypto/axis
1498 F:      drivers/mmc/host/usdhi6rol0.c
1499 F:      drivers/pinctrl/pinctrl-artpec*
1500 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1501
1502 ARM/ASPEED I2C DRIVER
1503 M:      Brendan Higgins <[email protected]>
1504 R:      Benjamin Herrenschmidt <[email protected]>
1505 R:      Joel Stanley <[email protected]>
1506 L:      [email protected]
1507 L:      [email protected] (moderated for non-subscribers)
1508 S:      Maintained
1509 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1510 F:      drivers/i2c/busses/i2c-aspeed.c
1511 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1512 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1513
1514 ARM/ASPEED MACHINE SUPPORT
1515 M:      Joel Stanley <[email protected]>
1516 R:      Andrew Jeffery <[email protected]>
1517 L:      [email protected] (moderated for non-subscribers)
1518 L:      [email protected] (moderated for non-subscribers)
1519 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1520 S:      Supported
1521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1522 F:      arch/arm/mach-aspeed/
1523 F:      arch/arm/boot/dts/aspeed-*
1524 N:      aspeed
1525
1526 ARM/BITMAIN ARCHITECTURE
1527 M:      Manivannan Sadhasivam <[email protected]>
1528 L:      [email protected] (moderated for non-subscribers)
1529 S:      Maintained
1530 F:      arch/arm64/boot/dts/bitmain/
1531 F:      drivers/pinctrl/pinctrl-bm1880.c
1532 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1533 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1534
1535 ARM/CALXEDA HIGHBANK ARCHITECTURE
1536 M:      Rob Herring <[email protected]>
1537 L:      [email protected] (moderated for non-subscribers)
1538 S:      Maintained
1539 F:      arch/arm/mach-highbank/
1540 F:      arch/arm/boot/dts/highbank.dts
1541 F:      arch/arm/boot/dts/ecx-*.dts*
1542
1543 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1544 M:      Krzysztof Halasa <[email protected]>
1545 S:      Maintained
1546 F:      arch/arm/mach-cns3xxx/
1547
1548 ARM/CAVIUM THUNDER NETWORK DRIVER
1549 M:      Sunil Goutham <[email protected]>
1550 M:      Robert Richter <[email protected]>
1551 L:      [email protected] (moderated for non-subscribers)
1552 S:      Supported
1553 F:      drivers/net/ethernet/cavium/thunder/
1554
1555 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1556 M:      Lukasz Majewski <[email protected]>
1557 L:      [email protected] (moderated for non-subscribers)
1558 S:      Maintained
1559 F:      arch/arm/mach-ep93xx/ts72xx.c
1560
1561 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1562 M:      Alexander Shiyan <[email protected]>
1563 L:      [email protected] (moderated for non-subscribers)
1564 S:      Odd Fixes
1565 N:      clps711x
1566
1567 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1568 M:      Lennert Buytenhek <[email protected]>
1569 L:      [email protected] (moderated for non-subscribers)
1570 S:      Maintained
1571
1572 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1573 M:      Hartley Sweeten <[email protected]>
1574 M:      Alexander Sverdlin <[email protected]>
1575 L:      [email protected] (moderated for non-subscribers)
1576 S:      Maintained
1577 F:      arch/arm/mach-ep93xx/
1578 F:      arch/arm/mach-ep93xx/include/mach/
1579
1580 ARM/CLKDEV SUPPORT
1581 M:      Russell King <[email protected]>
1582 L:      [email protected] (moderated for non-subscribers)
1583 S:      Maintained
1584 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1585 F:      drivers/clk/clkdev.c
1586
1587 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1588 M:      Mike Rapoport <[email protected]>
1589 L:      [email protected] (moderated for non-subscribers)
1590 S:      Maintained
1591
1592 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1593 M:      Baruch Siach <[email protected]>
1594 L:      [email protected] (moderated for non-subscribers)
1595 S:      Maintained
1596 F:      arch/arm/boot/dts/cx92755*
1597 N:      digicolor
1598
1599 ARM/CONTEC MICRO9 MACHINE SUPPORT
1600 M:      Hubert Feurstein <[email protected]>
1601 S:      Maintained
1602 F:      arch/arm/mach-ep93xx/micro9.c
1603
1604 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1605 M:      Mathieu Poirier <[email protected]>
1606 R:      Suzuki K Poulose <[email protected]>
1607 L:      [email protected] (moderated for non-subscribers)
1608 S:      Maintained
1609 F:      drivers/hwtracing/coresight/*
1610 F:      Documentation/trace/coresight.rst
1611 F:      Documentation/trace/coresight-cpu-debug.rst
1612 F:      Documentation/devicetree/bindings/arm/coresight.txt
1613 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1614 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1615 F:      tools/perf/arch/arm/util/pmu.c
1616 F:      tools/perf/arch/arm/util/auxtrace.c
1617 F:      tools/perf/arch/arm/util/cs-etm.c
1618 F:      tools/perf/arch/arm/util/cs-etm.h
1619 F:      tools/perf/util/cs-etm.*
1620 F:      tools/perf/util/cs-etm-decoder/*
1621
1622 ARM/CORGI MACHINE SUPPORT
1623 M:      Richard Purdie <[email protected]>
1624 S:      Maintained
1625
1626 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1627 M:      Hans Ulli Kroll <[email protected]>
1628 M:      Linus Walleij <[email protected]>
1629 L:      [email protected] (moderated for non-subscribers)
1630 T:      git git://github.com/ulli-kroll/linux.git
1631 S:      Maintained
1632 F:      Documentation/devicetree/bindings/arm/gemini.txt
1633 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1634 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1635 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1636 F:      arch/arm/mach-gemini/
1637 F:      drivers/net/ethernet/cortina/
1638 F:      drivers/pinctrl/pinctrl-gemini.c
1639 F:      drivers/rtc/rtc-ftrtc010.c
1640
1641 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1642 M:      Barry Song <[email protected]>
1643 L:      [email protected] (moderated for non-subscribers)
1644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1645 S:      Maintained
1646 F:      arch/arm/boot/dts/prima2*
1647 F:      arch/arm/mach-prima2/
1648 F:      drivers/clk/sirf/
1649 F:      drivers/clocksource/timer-prima2.c
1650 F:      drivers/clocksource/timer-atlas7.c
1651 N:      [^a-z]sirf
1652 X:      drivers/gnss
1653
1654 ARM/CZ.NIC TURRIS MOX SUPPORT
1655 M:      Marek Behun <[email protected]>
1656 W:      http://mox.turris.cz
1657 S:      Maintained
1658 F:      Documentation/ABI/testing/debugfs-moxtet
1659 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1660 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1661 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1662 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1663 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1664 F:      include/linux/moxtet.h
1665 F:      drivers/bus/moxtet.c
1666 F:      drivers/firmware/turris-mox-rwtm.c
1667 F:      drivers/gpio/gpio-moxtet.c
1668
1669 ARM/EBSA110 MACHINE SUPPORT
1670 M:      Russell King <[email protected]>
1671 L:      [email protected] (moderated for non-subscribers)
1672 W:      http://www.armlinux.org.uk/
1673 S:      Maintained
1674 F:      arch/arm/mach-ebsa110/
1675 F:      drivers/net/ethernet/amd/am79c961a.*
1676
1677 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1678 M:      Uwe Kleine-König <[email protected]>
1679 R:      Pengutronix Kernel Team <[email protected]>
1680 L:      [email protected] (moderated for non-subscribers)
1681 S:      Maintained
1682 N:      efm32
1683
1684 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1685 M:      Robert Jarzmik <[email protected]>
1686 L:      [email protected] (moderated for non-subscribers)
1687 S:      Maintained
1688 F:      arch/arm/mach-pxa/ezx.c
1689
1690 ARM/FARADAY FA526 PORT
1691 M:      Hans Ulli Kroll <[email protected]>
1692 L:      [email protected] (moderated for non-subscribers)
1693 S:      Maintained
1694 T:      git git://git.berlios.de/gemini-board
1695 F:      arch/arm/mm/*-fa*
1696
1697 ARM/FOOTBRIDGE ARCHITECTURE
1698 M:      Russell King <[email protected]>
1699 L:      [email protected] (moderated for non-subscribers)
1700 W:      http://www.armlinux.org.uk/
1701 S:      Maintained
1702 F:      arch/arm/include/asm/hardware/dec21285.h
1703 F:      arch/arm/mach-footbridge/
1704
1705 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1706 M:      Shawn Guo <[email protected]>
1707 M:      Sascha Hauer <[email protected]>
1708 R:      Pengutronix Kernel Team <[email protected]>
1709 R:      Fabio Estevam <[email protected]>
1710 R:      NXP Linux Team <[email protected]>
1711 L:      [email protected] (moderated for non-subscribers)
1712 S:      Maintained
1713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1714 N:      imx
1715 N:      mxs
1716 X:      drivers/media/i2c/
1717
1718 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1719 M:      Shawn Guo <[email protected]>
1720 M:      Sascha Hauer <[email protected]>
1721 R:      Pengutronix Kernel Team <[email protected]>
1722 R:      Stefan Agner <[email protected]>
1723 L:      [email protected] (moderated for non-subscribers)
1724 S:      Maintained
1725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1726 F:      arch/arm/mach-imx/*vf610*
1727 F:      arch/arm/boot/dts/vf*
1728
1729 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1730 M:      Shawn Guo <[email protected]>
1731 M:      Li Yang <[email protected]>
1732 L:      [email protected] (moderated for non-subscribers)
1733 S:      Maintained
1734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1735 F:      arch/arm/boot/dts/ls1021a*
1736 F:      arch/arm64/boot/dts/freescale/fsl-*
1737 F:      arch/arm64/boot/dts/freescale/qoriq-*
1738
1739 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1740 M:      Lennert Buytenhek <[email protected]>
1741 L:      [email protected] (moderated for non-subscribers)
1742 S:      Maintained
1743
1744 ARM/GUMSTIX MACHINE SUPPORT
1745 M:      Steve Sakoman <[email protected]>
1746 L:      [email protected] (moderated for non-subscribers)
1747 S:      Maintained
1748
1749 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1750 M:      Philipp Zabel <[email protected]>
1751 M:      Paul Parsons <[email protected]>
1752 L:      [email protected] (moderated for non-subscribers)
1753 S:      Maintained
1754 F:      arch/arm/mach-pxa/hx4700.c
1755 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1756 F:      sound/soc/pxa/hx4700.c
1757
1758 ARM/HISILICON SOC SUPPORT
1759 M:      Wei Xu <[email protected]>
1760 L:      [email protected] (moderated for non-subscribers)
1761 W:      http://www.hisilicon.com
1762 S:      Supported
1763 T:      git git://github.com/hisilicon/linux-hisi.git
1764 F:      arch/arm/mach-hisi/
1765 F:      arch/arm/boot/dts/hi3*
1766 F:      arch/arm/boot/dts/hip*
1767 F:      arch/arm/boot/dts/hisi*
1768 F:      arch/arm64/boot/dts/hisilicon/
1769
1770 ARM/HP JORNADA 7XX MACHINE SUPPORT
1771 M:      Kristoffer Ericson <[email protected]>
1772 W:      www.jlime.com
1773 S:      Maintained
1774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1775 F:      arch/arm/mach-sa1100/jornada720.c
1776 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1777
1778 ARM/IGEP MACHINE SUPPORT
1779 M:      Enric Balletbo i Serra <[email protected]>
1780 M:      Javier Martinez Canillas <[email protected]>
1781 L:      [email protected]
1782 L:      [email protected] (moderated for non-subscribers)
1783 S:      Maintained
1784 F:      arch/arm/boot/dts/omap3-igep*
1785
1786 ARM/INCOME PXA270 SUPPORT
1787 M:      Marek Vasut <[email protected]>
1788 L:      [email protected] (moderated for non-subscribers)
1789 S:      Maintained
1790 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1791
1792 ARM/INTEL IOP32X ARM ARCHITECTURE
1793 M:      Lennert Buytenhek <[email protected]>
1794 L:      [email protected] (moderated for non-subscribers)
1795 S:      Maintained
1796
1797 ARM/INTEL IQ81342EX MACHINE SUPPORT
1798 M:      Lennert Buytenhek <[email protected]>
1799 L:      [email protected] (moderated for non-subscribers)
1800 S:      Maintained
1801
1802 ARM/INTEL IXDP2850 MACHINE SUPPORT
1803 M:      Lennert Buytenhek <[email protected]>
1804 L:      [email protected] (moderated for non-subscribers)
1805 S:      Maintained
1806
1807 ARM/INTEL IXP4XX ARM ARCHITECTURE
1808 M:      Linus Walleij <[email protected]>
1809 M:      Imre Kaloz <[email protected]>
1810 M:      Krzysztof Halasa <[email protected]>
1811 L:      [email protected] (moderated for non-subscribers)
1812 S:      Maintained
1813 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1814 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1815 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1816 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1817 F:      arch/arm/mach-ixp4xx/
1818 F:      drivers/clocksource/timer-ixp4xx.c
1819 F:      drivers/gpio/gpio-ixp4xx.c
1820 F:      drivers/irqchip/irq-ixp4xx.c
1821 F:      include/linux/irqchip/irq-ixp4xx.h
1822 F:      include/linux/platform_data/timer-ixp4xx.h
1823
1824 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1825 M:      Jonathan Cameron <[email protected]>
1826 L:      [email protected] (moderated for non-subscribers)
1827 S:      Maintained
1828 F:      arch/arm/mach-pxa/stargate2.c
1829 F:      drivers/pcmcia/pxa2xx_stargate2.c
1830
1831 ARM/INTEL XSC3 (MANZANO) ARM CORE
1832 M:      Lennert Buytenhek <[email protected]>
1833 L:      [email protected] (moderated for non-subscribers)
1834 S:      Maintained
1835
1836 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1837 M:      Lennert Buytenhek <[email protected]>
1838 L:      [email protected] (moderated for non-subscribers)
1839 S:      Maintained
1840
1841 ARM/LG1K ARCHITECTURE
1842 M:      Chanho Min <[email protected]>
1843 L:      [email protected] (moderated for non-subscribers)
1844 S:      Maintained
1845 F:      arch/arm64/boot/dts/lg/
1846
1847 ARM/LOGICPD PXA270 MACHINE SUPPORT
1848 M:      Lennert Buytenhek <[email protected]>
1849 L:      [email protected] (moderated for non-subscribers)
1850 S:      Maintained
1851
1852 ARM/LPC18XX ARCHITECTURE
1853 M:      Vladimir Zapolskiy <[email protected]>
1854 L:      [email protected] (moderated for non-subscribers)
1855 S:      Maintained
1856 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1857 F:      arch/arm/boot/dts/lpc43*
1858 F:      drivers/i2c/busses/i2c-lpc2k.c
1859 F:      drivers/memory/pl172.c
1860 F:      drivers/mtd/spi-nor/nxp-spifi.c
1861 F:      drivers/rtc/rtc-lpc24xx.c
1862 N:      lpc18xx
1863
1864 ARM/LPC32XX SOC SUPPORT
1865 M:      Vladimir Zapolskiy <[email protected]>
1866 M:      Sylvain Lemieux <[email protected]>
1867 L:      [email protected] (moderated for non-subscribers)
1868 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1869 S:      Maintained
1870 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1871 F:      arch/arm/boot/dts/lpc32*
1872 F:      arch/arm/mach-lpc32xx/
1873 F:      drivers/i2c/busses/i2c-pnx.c
1874 F:      drivers/net/ethernet/nxp/lpc_eth.c
1875 F:      drivers/usb/host/ohci-nxp.c
1876 F:      drivers/watchdog/pnx4008_wdt.c
1877 N:      lpc32xx
1878
1879 ARM/MAGICIAN MACHINE SUPPORT
1880 M:      Philipp Zabel <[email protected]>
1881 S:      Maintained
1882
1883 ARM/Marvell Dove/MV78xx0/Orion SOC support
1884 M:      Jason Cooper <[email protected]>
1885 M:      Andrew Lunn <[email protected]>
1886 M:      Sebastian Hesselbarth <[email protected]>
1887 M:      Gregory Clement <[email protected]>
1888 L:      [email protected] (moderated for non-subscribers)
1889 S:      Maintained
1890 F:      Documentation/devicetree/bindings/soc/dove/
1891 F:      arch/arm/mach-dove/
1892 F:      arch/arm/mach-mv78xx0/
1893 F:      arch/arm/mach-orion5x/
1894 F:      arch/arm/plat-orion/
1895 F:      arch/arm/boot/dts/dove*
1896 F:      arch/arm/boot/dts/orion5x*
1897 T:      git git://git.infradead.org/linux-mvebu.git
1898
1899 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1900 M:      Jason Cooper <[email protected]>
1901 M:      Andrew Lunn <[email protected]>
1902 M:      Gregory Clement <[email protected]>
1903 M:      Sebastian Hesselbarth <[email protected]>
1904 L:      [email protected] (moderated for non-subscribers)
1905 S:      Maintained
1906 F:      arch/arm/boot/dts/armada*
1907 F:      arch/arm/boot/dts/kirkwood*
1908 F:      arch/arm/configs/mvebu_*_defconfig
1909 F:      arch/arm/mach-mvebu/
1910 F:      arch/arm64/boot/dts/marvell/armada*
1911 F:      drivers/cpufreq/armada-37xx-cpufreq.c
1912 F:      drivers/cpufreq/armada-8k-cpufreq.c
1913 F:      drivers/cpufreq/mvebu-cpufreq.c
1914 F:      drivers/irqchip/irq-armada-370-xp.c
1915 F:      drivers/irqchip/irq-mvebu-*
1916 F:      drivers/pinctrl/mvebu/
1917 F:      drivers/rtc/rtc-armada38x.c
1918 T:      git git://git.infradead.org/linux-mvebu.git
1919
1920 ARM/Mediatek RTC DRIVER
1921 M:      Eddie Huang <[email protected]>
1922 M:      Sean Wang <[email protected]>
1923 L:      [email protected] (moderated for non-subscribers)
1924 L:      [email protected] (moderated for non-subscribers)
1925 S:      Maintained
1926 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
1927 F:      drivers/rtc/rtc-mt6397.c
1928 F:      drivers/rtc/rtc-mt7622.c
1929
1930 ARM/Mediatek SoC support
1931 M:      Matthias Brugger <[email protected]>
1932 L:      [email protected] (moderated for non-subscribers)
1933 L:      [email protected] (moderated for non-subscribers)
1934 W:      https://mtk.bcnfs.org/
1935 C:      irc://chat.freenode.net/linux-mediatek
1936 S:      Maintained
1937 F:      arch/arm/boot/dts/mt6*
1938 F:      arch/arm/boot/dts/mt7*
1939 F:      arch/arm/boot/dts/mt8*
1940 F:      arch/arm/mach-mediatek/
1941 F:      arch/arm64/boot/dts/mediatek/
1942 F:      drivers/soc/mediatek/
1943 N:      mtk
1944 N:      mt[678]
1945 K:      mediatek
1946
1947 ARM/Mediatek USB3 PHY DRIVER
1948 M:      Chunfeng Yun <[email protected]>
1949 L:      [email protected] (moderated for non-subscribers)
1950 L:      [email protected] (moderated for non-subscribers)
1951 S:      Maintained
1952 F:      drivers/phy/mediatek/
1953 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
1954
1955 ARM/Microchip (AT91) SoC support
1956 M:      Nicolas Ferre <[email protected]>
1957 M:      Alexandre Belloni <[email protected]>
1958 M:      Ludovic Desroches <[email protected]>
1959 L:      [email protected] (moderated for non-subscribers)
1960 W:      http://www.linux4sam.org
1961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
1962 S:      Supported
1963 N:      at91
1964 N:      atmel
1965 F:      arch/arm/mach-at91/
1966 F:      include/soc/at91/
1967 F:      arch/arm/boot/dts/at91*.dts
1968 F:      arch/arm/boot/dts/at91*.dtsi
1969 F:      arch/arm/boot/dts/sama*.dts
1970 F:      arch/arm/boot/dts/sama*.dtsi
1971 F:      arch/arm/include/debug/at91.S
1972 F:      drivers/memory/atmel*
1973 F:      drivers/watchdog/sama5d4_wdt.c
1974 X:      drivers/input/touchscreen/atmel_mxt_ts.c
1975 X:      drivers/net/wireless/atmel/
1976
1977 ARM/MIOA701 MACHINE SUPPORT
1978 M:      Robert Jarzmik <[email protected]>
1979 L:      [email protected] (moderated for non-subscribers)
1980 F:      arch/arm/mach-pxa/mioa701.c
1981 S:      Maintained
1982
1983 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1984 M:      Michael Petchkovsky <[email protected]>
1985 S:      Maintained
1986
1987 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
1988 M:      Linus Walleij <[email protected]>
1989 L:      [email protected] (moderated for non-subscribers)
1990 S:      Maintained
1991 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
1992 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
1993 F:      arch/arm/mach-nomadik/
1994 F:      arch/arm/mach-u300/
1995 F:      arch/arm/mach-ux500/
1996 F:      drivers/soc/ux500/
1997 F:      arch/arm/boot/dts/ste-*
1998 F:      drivers/clk/clk-nomadik.c
1999 F:      drivers/clk/clk-u300.c
2000 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2001 F:      drivers/clocksource/timer-u300.c
2002 F:      drivers/dma/coh901318*
2003 F:      drivers/dma/ste_dma40*
2004 F:      drivers/hwspinlock/u8500_hsem.c
2005 F:      drivers/i2c/busses/i2c-nomadik.c
2006 F:      drivers/i2c/busses/i2c-stu300.c
2007 F:      drivers/mfd/ab3100*
2008 F:      drivers/mfd/ab8500*
2009 F:      drivers/mfd/abx500*
2010 F:      drivers/mfd/dbx500*
2011 F:      drivers/mfd/db8500*
2012 F:      drivers/pinctrl/nomadik/
2013 F:      drivers/pinctrl/pinctrl-coh901*
2014 F:      drivers/pinctrl/pinctrl-u300.c
2015 F:      drivers/rtc/rtc-ab3100.c
2016 F:      drivers/rtc/rtc-ab8500.c
2017 F:      drivers/rtc/rtc-coh901331.c
2018 F:      drivers/rtc/rtc-pl031.c
2019 F:      drivers/watchdog/coh901327_wdt.c
2020 F:      Documentation/devicetree/bindings/arm/ste-*
2021 F:      Documentation/devicetree/bindings/arm/ux500/
2022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2023
2024 ARM/NUVOTON NPCM ARCHITECTURE
2025 M:      Avi Fishman <[email protected]>
2026 M:      Tomer Maimon <[email protected]>
2027 M:      Tali Perry <[email protected]>
2028 R:      Patrick Venture <[email protected]>
2029 R:      Nancy Yuen <[email protected]>
2030 R:      Benjamin Fair <[email protected]>
2031 L:      [email protected] (moderated for non-subscribers)
2032 S:      Supported
2033 F:      arch/arm/mach-npcm/
2034 F:      arch/arm/boot/dts/nuvoton-npcm*
2035 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2036 F:      drivers/*/*npcm*
2037 F:      Documentation/devicetree/bindings/*/*npcm*
2038 F:      Documentation/devicetree/bindings/*/*/*npcm*
2039
2040 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2041 L:      [email protected] (subscribers-only)
2042 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2043 S:      Orphan
2044 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2045 F:      arch/arm/mach-s3c24xx/gta02.h
2046
2047 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2048 M:      Alexander Clouter <[email protected]>
2049 L:      [email protected] (moderated for non-subscribers)
2050 W:      http://www.digriz.org.uk/ts78xx/kernel
2051 S:      Maintained
2052 F:      arch/arm/mach-orion5x/ts78xx-*
2053
2054 ARM/OXNAS platform support
2055 M:      Neil Armstrong <[email protected]>
2056 L:      [email protected] (moderated for non-subscribers)
2057 L:      [email protected] (moderated for non-subscribers)
2058 S:      Maintained
2059 F:      arch/arm/mach-oxnas/
2060 F:      arch/arm/boot/dts/ox8*.dts*
2061 N:      oxnas
2062
2063 ARM/PALM TREO SUPPORT
2064 M:      Tomas Cech <[email protected]>
2065 L:      [email protected]
2066 W:      http://hackndev.com
2067 S:      Maintained
2068 F:      arch/arm/mach-pxa/palmtreo.*
2069
2070 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2071 M:      Marek Vasut <[email protected]>
2072 L:      [email protected]
2073 W:      http://hackndev.com
2074 S:      Maintained
2075 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2076 F:      arch/arm/mach-pxa/palmtx.c
2077 F:      arch/arm/mach-pxa/palmt5.*
2078 F:      arch/arm/mach-pxa/include/mach/palmld.h
2079 F:      arch/arm/mach-pxa/palmld.c
2080 F:      arch/arm/mach-pxa/palmte2.*
2081 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2082 F:      arch/arm/mach-pxa/palmtc.c
2083
2084 ARM/PALMZ72 SUPPORT
2085 M:      Sergey Lapin <[email protected]>
2086 L:      [email protected]
2087 W:      http://hackndev.com
2088 S:      Maintained
2089 F:      arch/arm/mach-pxa/palmz72.*
2090
2091 ARM/PLEB SUPPORT
2092 M:      Peter Chubb <[email protected]>
2093 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2094 S:      Maintained
2095
2096 ARM/PT DIGITAL BOARD PORT
2097 M:      Stefan Eletzhofer <[email protected]>
2098 L:      [email protected] (moderated for non-subscribers)
2099 W:      http://www.armlinux.org.uk/
2100 S:      Maintained
2101
2102 ARM/QUALCOMM SUPPORT
2103 M:      Andy Gross <[email protected]>
2104 L:      [email protected]
2105 S:      Maintained
2106 F:      Documentation/devicetree/bindings/soc/qcom/
2107 F:      Documentation/devicetree/bindings/*/qcom*
2108 F:      arch/arm/boot/dts/qcom-*.dts
2109 F:      arch/arm/boot/dts/qcom-*.dtsi
2110 F:      arch/arm/mach-qcom/
2111 F:      arch/arm64/boot/dts/qcom/
2112 F:      drivers/*/qcom/
2113 F:      drivers/*/qcom*
2114 F:      drivers/*/*/qcom/
2115 F:      drivers/*/*/qcom*
2116 F:      drivers/*/pm8???-*
2117 F:      drivers/bluetooth/btqcomsmd.c
2118 F:      drivers/clocksource/timer-qcom.c
2119 F:      drivers/extcon/extcon-qcom*
2120 F:      drivers/iommu/msm*
2121 F:      drivers/i2c/busses/i2c-qup.c
2122 F:      drivers/i2c/busses/i2c-qcom-geni.c
2123 F:      drivers/mfd/ssbi.c
2124 F:      drivers/mmc/host/mmci_qcom*
2125 F:      drivers/mmc/host/sdhci-msm.c
2126 F:      drivers/pci/controller/dwc/pcie-qcom.c
2127 F:      drivers/phy/qualcomm/
2128 F:      drivers/power/*/msm*
2129 F:      drivers/reset/reset-qcom-*
2130 F:      drivers/scsi/ufs/ufs-qcom.*
2131 F:      drivers/spi/spi-qup.c
2132 F:      drivers/spi/spi-geni-qcom.c
2133 F:      drivers/spi/spi-qcom-qspi.c
2134 F:      drivers/tty/serial/msm_serial.c
2135 F:      drivers/usb/dwc3/dwc3-qcom.c
2136 F:      include/dt-bindings/*/qcom*
2137 F:      include/linux/*/qcom*
2138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2139
2140 ARM/RADISYS ENP2611 MACHINE SUPPORT
2141 M:      Lennert Buytenhek <[email protected]>
2142 L:      [email protected] (moderated for non-subscribers)
2143 S:      Maintained
2144
2145 ARM/RDA MICRO ARCHITECTURE
2146 M:      Manivannan Sadhasivam <[email protected]>
2147 L:      [email protected] (moderated for non-subscribers)
2148 L:      [email protected] (moderated for non-subscribers)
2149 S:      Maintained
2150 F:      arch/arm/boot/dts/rda8810pl-*
2151 F:      drivers/clocksource/timer-rda.c
2152 F:      drivers/irqchip/irq-rda-intc.c
2153 F:      drivers/tty/serial/rda-uart.c
2154 F:      Documentation/devicetree/bindings/arm/rda.yaml
2155 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2156 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2157 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2158
2159 ARM/REALTEK ARCHITECTURE
2160 M:      Andreas Färber <[email protected]>
2161 L:      [email protected] (moderated for non-subscribers)
2162 S:      Maintained
2163 F:      arch/arm64/boot/dts/realtek/
2164 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2165
2166 ARM/RENESAS ARM64 ARCHITECTURE
2167 M:      Simon Horman <[email protected]>
2168 M:      Geert Uytterhoeven <[email protected]>
2169 M:      Magnus Damm <[email protected]>
2170 L:      [email protected]
2171 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
2173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2174 S:      Supported
2175 F:      arch/arm64/boot/dts/renesas/
2176 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2177 F:      drivers/soc/renesas/
2178 F:      include/linux/soc/renesas/
2179
2180 ARM/RISCPC ARCHITECTURE
2181 M:      Russell King <[email protected]>
2182 L:      [email protected] (moderated for non-subscribers)
2183 W:      http://www.armlinux.org.uk/
2184 S:      Maintained
2185 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2186 F:      arch/arm/include/asm/hardware/ioc.h
2187 F:      arch/arm/include/asm/hardware/iomd.h
2188 F:      arch/arm/include/asm/hardware/memc.h
2189 F:      arch/arm/mach-rpc/
2190 F:      drivers/net/ethernet/8390/etherh.c
2191 F:      drivers/net/ethernet/i825xx/ether1*
2192 F:      drivers/net/ethernet/seeq/ether3*
2193 F:      drivers/scsi/arm/
2194
2195 ARM/Rockchip SoC support
2196 M:      Heiko Stuebner <[email protected]>
2197 L:      [email protected] (moderated for non-subscribers)
2198 L:      [email protected]
2199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2200 S:      Maintained
2201 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.txt
2202 F:      arch/arm/boot/dts/rk3*
2203 F:      arch/arm/boot/dts/rv1108*
2204 F:      arch/arm/mach-rockchip/
2205 F:      drivers/clk/rockchip/
2206 F:      drivers/i2c/busses/i2c-rk3x.c
2207 F:      drivers/*/*rockchip*
2208 F:      drivers/*/*/*rockchip*
2209 F:      sound/soc/rockchip/
2210 N:      rockchip
2211
2212 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2213 M:      Kukjin Kim <[email protected]>
2214 M:      Krzysztof Kozlowski <[email protected]>
2215 L:      [email protected] (moderated for non-subscribers)
2216 L:      [email protected] (moderated for non-subscribers)
2217 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2218 S:      Maintained
2219 F:      arch/arm/boot/dts/s3c*
2220 F:      arch/arm/boot/dts/s5p*
2221 F:      arch/arm/boot/dts/exynos*
2222 F:      arch/arm64/boot/dts/exynos/
2223 F:      arch/arm/plat-samsung/
2224 F:      arch/arm/mach-s3c24*/
2225 F:      arch/arm/mach-s3c64xx/
2226 F:      arch/arm/mach-s5p*/
2227 F:      arch/arm/mach-exynos*/
2228 F:      drivers/*/*s3c24*
2229 F:      drivers/*/*/*s3c24*
2230 F:      drivers/*/*s3c64xx*
2231 F:      drivers/*/*s5pv210*
2232 F:      drivers/memory/samsung/
2233 F:      drivers/soc/samsung/
2234 F:      include/linux/soc/samsung/
2235 F:      Documentation/arm/samsung/
2236 F:      Documentation/devicetree/bindings/arm/samsung/
2237 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
2238 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
2239 N:      exynos
2240
2241 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2242 M:      Kyungmin Park <[email protected]>
2243 L:      [email protected] (moderated for non-subscribers)
2244 S:      Maintained
2245 F:      arch/arm/mach-s5pv210/
2246
2247 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2248 M:      Kyungmin Park <[email protected]>
2249 M:      Kamil Debski <[email protected]>
2250 M:      Andrzej Hajda <[email protected]>
2251 L:      [email protected]
2252 L:      [email protected]
2253 S:      Maintained
2254 F:      drivers/media/platform/s5p-g2d/
2255
2256 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2257 M:      Marek Szyprowski <[email protected]>
2258 L:      [email protected] (moderated for non-subscribers)
2259 L:      [email protected]
2260 S:      Maintained
2261 F:      drivers/media/platform/s5p-cec/
2262 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2263
2264 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2265 M:      Andrzej Pietrasiewicz <[email protected]>
2266 M:      Jacek Anaszewski <[email protected]>
2267 M:      Sylwester Nawrocki <[email protected]>
2268 L:      [email protected]
2269 L:      [email protected]
2270 S:      Maintained
2271 F:      drivers/media/platform/s5p-jpeg/
2272
2273 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2274 M:      Kyungmin Park <[email protected]>
2275 M:      Kamil Debski <[email protected]>
2276 M:      Jeongtae Park <[email protected]>
2277 M:      Andrzej Hajda <[email protected]>
2278 L:      [email protected]
2279 L:      [email protected]
2280 S:      Maintained
2281 F:      drivers/media/platform/s5p-mfc/
2282
2283 ARM/SHMOBILE ARM ARCHITECTURE
2284 M:      Simon Horman <[email protected]>
2285 M:      Geert Uytterhoeven <[email protected]>
2286 M:      Magnus Damm <[email protected]>
2287 L:      [email protected]
2288 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
2290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2291 S:      Supported
2292 F:      arch/arm/boot/dts/emev2*
2293 F:      arch/arm/boot/dts/gr-peach*
2294 F:      arch/arm/boot/dts/iwg20d-q7*
2295 F:      arch/arm/boot/dts/r7s*
2296 F:      arch/arm/boot/dts/r8a*
2297 F:      arch/arm/boot/dts/r9a*
2298 F:      arch/arm/boot/dts/sh*
2299 F:      arch/arm/configs/shmobile_defconfig
2300 F:      arch/arm/include/debug/renesas-scif.S
2301 F:      arch/arm/mach-shmobile/
2302 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2303 F:      drivers/soc/renesas/
2304 F:      include/linux/soc/renesas/
2305
2306 ARM/SOCFPGA ARCHITECTURE
2307 M:      Dinh Nguyen <[email protected]>
2308 S:      Maintained
2309 F:      arch/arm/mach-socfpga/
2310 F:      arch/arm/boot/dts/socfpga*
2311 F:      arch/arm/configs/socfpga_defconfig
2312 F:      arch/arm64/boot/dts/altera/
2313 F:      arch/arm64/boot/dts/intel/
2314 W:      http://www.rocketboards.org
2315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2316
2317 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2318 M:      Dinh Nguyen <[email protected]>
2319 S:      Maintained
2320 F:      drivers/clk/socfpga/
2321
2322 ARM/SOCFPGA EDAC SUPPORT
2323 M:      Thor Thayer <[email protected]>
2324 S:      Maintained
2325 F:      drivers/edac/altera_edac.
2326
2327 ARM/SPREADTRUM SoC SUPPORT
2328 M:      Orson Zhai <[email protected]>
2329 M:      Baolin Wang <[email protected]>
2330 M:      Chunyan Zhang <[email protected]>
2331 S:      Maintained
2332 F:      arch/arm64/boot/dts/sprd
2333 N:      sprd
2334
2335 ARM/STI ARCHITECTURE
2336 M:      Patrice Chotard <[email protected]>
2337 L:      [email protected] (moderated for non-subscribers)
2338 W:      http://www.stlinux.com
2339 S:      Maintained
2340 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2341 F:      arch/arm/mach-sti/
2342 F:      arch/arm/boot/dts/sti*
2343 F:      drivers/char/hw_random/st-rng.c
2344 F:      drivers/clocksource/arm_global_timer.c
2345 F:      drivers/clocksource/clksrc_st_lpc.c
2346 F:      drivers/cpufreq/sti-cpufreq.c
2347 F:      drivers/dma/st_fdma*
2348 F:      drivers/i2c/busses/i2c-st.c
2349 F:      drivers/media/rc/st_rc.c
2350 F:      drivers/media/platform/sti/c8sectpfe/
2351 F:      drivers/mmc/host/sdhci-st.c
2352 F:      drivers/phy/st/phy-miphy28lp.c
2353 F:      drivers/phy/st/phy-stih407-usb.c
2354 F:      drivers/pinctrl/pinctrl-st.c
2355 F:      drivers/remoteproc/st_remoteproc.c
2356 F:      drivers/remoteproc/st_slim_rproc.c
2357 F:      drivers/reset/sti/
2358 F:      drivers/rtc/rtc-st-lpc.c
2359 F:      drivers/tty/serial/st-asc.c
2360 F:      drivers/usb/dwc3/dwc3-st.c
2361 F:      drivers/usb/host/ehci-st.c
2362 F:      drivers/usb/host/ohci-st.c
2363 F:      drivers/watchdog/st_lpc_wdt.c
2364 F:      drivers/ata/ahci_st.c
2365 F:      include/linux/remoteproc/st_slim_rproc.h
2366
2367 ARM/STM32 ARCHITECTURE
2368 M:      Maxime Coquelin <[email protected]>
2369 M:      Alexandre Torgue <[email protected]>
2370 L:      [email protected] (moderated for non-subscribers)
2371 L:      [email protected] (moderated for non-subscribers)
2372 S:      Maintained
2373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2374 N:      stm32
2375 N:      stm
2376 F:      arch/arm/boot/dts/stm32*
2377 F:      arch/arm/mach-stm32/
2378 F:      drivers/clocksource/armv7m_systick.c
2379
2380 ARM/Synaptics SoC support
2381 M:      Jisheng Zhang <[email protected]>
2382 M:      Sebastian Hesselbarth <[email protected]>
2383 L:      [email protected] (moderated for non-subscribers)
2384 S:      Maintained
2385 F:      arch/arm/mach-berlin/
2386 F:      arch/arm/boot/dts/berlin*
2387 F:      arch/arm64/boot/dts/synaptics/
2388
2389 ARM/TANGO ARCHITECTURE
2390 M:      Marc Gonzalez <[email protected]>
2391 M:      Mans Rullgard <[email protected]>
2392 L:      [email protected]
2393 S:      Odd Fixes
2394 N:      tango
2395
2396 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2397 M:      Lennert Buytenhek <[email protected]>
2398 L:      [email protected] (moderated for non-subscribers)
2399 S:      Maintained
2400
2401 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2402 M:      Hans Verkuil <[email protected]>
2403 L:      [email protected]
2404 L:      [email protected]
2405 S:      Maintained
2406 F:      drivers/media/platform/tegra-cec/
2407 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2408
2409 ARM/TETON BGA MACHINE SUPPORT
2410 M:      "Mark F. Brown" <[email protected]>
2411 L:      [email protected] (moderated for non-subscribers)
2412 S:      Maintained
2413
2414 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2415 M:      Santosh Shilimkar <[email protected]>
2416 L:      [email protected]
2417 S:      Maintained
2418 F:      drivers/memory/*emif*
2419
2420 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2421 M:      Tero Kristo <[email protected]>
2422 M:      Nishanth Menon <[email protected]>
2423 L:      [email protected] (moderated for non-subscribers)
2424 S:      Supported
2425 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2426 F:      arch/arm64/boot/dts/ti/Makefile
2427 F:      arch/arm64/boot/dts/ti/k3-*
2428 F:      include/dt-bindings/pinctrl/k3.h
2429
2430 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2431 M:      Santosh Shilimkar <[email protected]>
2432 L:      [email protected] (moderated for non-subscribers)
2433 S:      Maintained
2434 F:      arch/arm/mach-keystone/
2435 F:      arch/arm/boot/dts/keystone-*
2436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2437
2438 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2439 M:      Santosh Shilimkar <[email protected]>
2440 L:      [email protected]
2441 S:      Maintained
2442 F:      drivers/clk/keystone/
2443
2444 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2445 M:      Santosh Shilimkar <[email protected]>
2446 L:      [email protected] (moderated for non-subscribers)
2447 L:      [email protected]
2448 S:      Maintained
2449 F:      drivers/clocksource/timer-keystone.c
2450
2451 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2452 M:      Santosh Shilimkar <[email protected]>
2453 L:      [email protected]
2454 S:      Maintained
2455 F:      drivers/power/reset/keystone-reset.c
2456
2457 ARM/THECUS N2100 MACHINE SUPPORT
2458 M:      Lennert Buytenhek <[email protected]>
2459 L:      [email protected] (moderated for non-subscribers)
2460 S:      Maintained
2461
2462 ARM/TOSA MACHINE SUPPORT
2463 M:      Dmitry Eremin-Solenikov <[email protected]>
2464 M:      Dirk Opfer <[email protected]>
2465 S:      Maintained
2466
2467 ARM/UNIPHIER ARCHITECTURE
2468 M:      Masahiro Yamada <[email protected]>
2469 L:      [email protected] (moderated for non-subscribers)
2470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2471 S:      Maintained
2472 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.txt
2473 F:      Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2474 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.txt
2475 F:      arch/arm/boot/dts/uniphier*
2476 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2477 F:      arch/arm/mach-uniphier/
2478 F:      arch/arm/mm/cache-uniphier.c
2479 F:      arch/arm64/boot/dts/socionext/uniphier*
2480 F:      drivers/bus/uniphier-system-bus.c
2481 F:      drivers/clk/uniphier/
2482 F:      drivers/dma/uniphier-mdmac.c
2483 F:      drivers/gpio/gpio-uniphier.c
2484 F:      drivers/i2c/busses/i2c-uniphier*
2485 F:      drivers/irqchip/irq-uniphier-aidet.c
2486 F:      drivers/mmc/host/uniphier-sd.c
2487 F:      drivers/pinctrl/uniphier/
2488 F:      drivers/reset/reset-uniphier.c
2489 F:      drivers/tty/serial/8250/8250_uniphier.c
2490 N:      uniphier
2491
2492 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2493 M:      Ulf Hansson <[email protected]>
2494 L:      [email protected] (moderated for non-subscribers)
2495 T:      git git://git.linaro.org/people/ulfh/clk.git
2496 S:      Maintained
2497 F:      drivers/clk/ux500/
2498
2499 ARM/VERSATILE EXPRESS PLATFORM
2500 M:      Liviu Dudau <[email protected]>
2501 M:      Sudeep Holla <[email protected]>
2502 M:      Lorenzo Pieralisi <[email protected]>
2503 L:      [email protected] (moderated for non-subscribers)
2504 S:      Maintained
2505 F:      arch/arm/boot/dts/vexpress*
2506 F:      arch/arm64/boot/dts/arm/
2507 F:      arch/arm/mach-vexpress/
2508 F:      */*/vexpress*
2509 F:      */*/*/vexpress*
2510 F:      drivers/clk/versatile/clk-vexpress-osc.c
2511 F:      drivers/clocksource/timer-versatile.c
2512 N:      mps2
2513
2514 ARM/VFP SUPPORT
2515 M:      Russell King <[email protected]>
2516 L:      [email protected] (moderated for non-subscribers)
2517 W:      http://www.armlinux.org.uk/
2518 S:      Maintained
2519 F:      arch/arm/vfp/
2520
2521 ARM/VOIPAC PXA270 SUPPORT
2522 M:      Marek Vasut <[email protected]>
2523 L:      [email protected] (moderated for non-subscribers)
2524 S:      Maintained
2525 F:      arch/arm/mach-pxa/vpac270.c
2526 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2527
2528 ARM/VT8500 ARM ARCHITECTURE
2529 M:      Tony Prisk <[email protected]>
2530 L:      [email protected] (moderated for non-subscribers)
2531 S:      Maintained
2532 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2533 F:      arch/arm/mach-vt8500/
2534 F:      drivers/clocksource/timer-vt8500.c
2535 F:      drivers/i2c/busses/i2c-wmt.c
2536 F:      drivers/mmc/host/wmt-sdmmc.c
2537 F:      drivers/pwm/pwm-vt8500.c
2538 F:      drivers/rtc/rtc-vt8500.c
2539 F:      drivers/tty/serial/vt8500_serial.c
2540 F:      drivers/usb/host/ehci-platform.c
2541 F:      drivers/usb/host/uhci-platform.c
2542 F:      drivers/video/fbdev/vt8500lcdfb.*
2543 F:      drivers/video/fbdev/wm8505fb*
2544 F:      drivers/video/fbdev/wmt_ge_rops.*
2545
2546 ARM/ZIPIT Z2 SUPPORT
2547 M:      Marek Vasut <[email protected]>
2548 L:      [email protected] (moderated for non-subscribers)
2549 S:      Maintained
2550 F:      arch/arm/mach-pxa/z2.c
2551 F:      arch/arm/mach-pxa/include/mach/z2.h
2552
2553 ARM/ZTE ARCHITECTURE
2554 M:      Jun Nie <[email protected]>
2555 M:      Shawn Guo <[email protected]>
2556 L:      [email protected] (moderated for non-subscribers)
2557 S:      Maintained
2558 F:      arch/arm/boot/dts/zx2967*
2559 F:      arch/arm/mach-zx/
2560 F:      arch/arm64/boot/dts/zte/
2561 F:      drivers/clk/zte/
2562 F:      drivers/dma/zx_dma.c
2563 F:      drivers/gpio/gpio-zx.c
2564 F:      drivers/i2c/busses/i2c-zx2967.c
2565 F:      drivers/mmc/host/dw_mmc-zx.*
2566 F:      drivers/pinctrl/zte/
2567 F:      drivers/soc/zte/
2568 F:      drivers/thermal/zx2967_thermal.c
2569 F:      drivers/watchdog/zx2967_wdt.c
2570 F:      Documentation/devicetree/bindings/arm/zte.yaml
2571 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2572 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2573 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2574 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2575 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2576 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2577 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2578 F:      Documentation/devicetree/bindings/soc/zte/
2579 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2580 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2581 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2582 F:      include/dt-bindings/clock/zx2967*.h
2583 F:      include/dt-bindings/soc/zte,*.h
2584 F:      sound/soc/codecs/zx_aud96p22.c
2585 F:      sound/soc/zte/
2586
2587 ARM/ZYNQ ARCHITECTURE
2588 M:      Michal Simek <[email protected]>
2589 L:      [email protected] (moderated for non-subscribers)
2590 W:      http://wiki.xilinx.com
2591 T:      git https://github.com/Xilinx/linux-xlnx.git
2592 S:      Supported
2593 F:      arch/arm/mach-zynq/
2594 F:      drivers/cpuidle/cpuidle-zynq.c
2595 F:      drivers/block/xsysace.c
2596 N:      zynq
2597 N:      xilinx
2598 F:      Documentation/devicetree/bindings/i2c/i2c-cadence.txt
2599 F:      Documentation/devicetree/bindings/i2c/i2c-xiic.txt
2600 F:      drivers/clocksource/timer-cadence-ttc.c
2601 F:      drivers/i2c/busses/i2c-cadence.c
2602 F:      drivers/mmc/host/sdhci-of-arasan.c
2603 F:      drivers/edac/synopsys_edac.c
2604 F:      drivers/i2c/busses/i2c-xiic.c
2605
2606 ARM64 PORT (AARCH64 ARCHITECTURE)
2607 M:      Catalin Marinas <[email protected]>
2608 M:      Will Deacon <[email protected]>
2609 L:      [email protected] (moderated for non-subscribers)
2610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2611 S:      Maintained
2612 F:      arch/arm64/
2613 X:      arch/arm64/boot/dts/
2614 F:      Documentation/arm64/
2615
2616 AS3645A LED FLASH CONTROLLER DRIVER
2617 M:      Sakari Ailus <[email protected]>
2618 L:      [email protected]
2619 S:      Maintained
2620 F:      drivers/leds/leds-as3645a.c
2621
2622 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2623 M:      Tianshu Qiu <[email protected]>
2624 L:      [email protected]
2625 T:      git git://linuxtv.org/media_tree.git
2626 S:      Maintained
2627 F:      drivers/media/i2c/ak7375.c
2628 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2629
2630 ASAHI KASEI AK8974 DRIVER
2631 M:      Linus Walleij <[email protected]>
2632 L:      [email protected]
2633 W:      http://www.akm.com/
2634 S:      Supported
2635 F:      drivers/iio/magnetometer/ak8974.c
2636
2637 ASC7621 HARDWARE MONITOR DRIVER
2638 M:      George Joseph <[email protected]>
2639 L:      [email protected]
2640 S:      Maintained
2641 F:      Documentation/hwmon/asc7621.rst
2642 F:      drivers/hwmon/asc7621.c
2643
2644 ASPEED PINCTRL DRIVERS
2645 M:      Andrew Jeffery <[email protected]>
2646 L:      [email protected] (moderated for non-subscribers)
2647 L:      [email protected] (moderated for non-subscribers)
2648 L:      [email protected]
2649 S:      Maintained
2650 F:      drivers/pinctrl/aspeed/
2651 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2652
2653 ASPEED VIDEO ENGINE DRIVER
2654 M:      Eddie James <[email protected]>
2655 L:      [email protected]
2656 L:      [email protected] (moderated for non-subscribers)
2657 S:      Maintained
2658 F:      drivers/media/platform/aspeed-video.c
2659 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2660
2661 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2662 M:      Corentin Chary <[email protected]>
2663 L:      [email protected]
2664 L:      [email protected]
2665 W:      http://acpi4asus.sf.net
2666 S:      Maintained
2667 F:      drivers/platform/x86/asus*.c
2668 F:      drivers/platform/x86/eeepc*.c
2669
2670 ASUS WIRELESS RADIO CONTROL DRIVER
2671 M:      João Paulo Rechi Vita <[email protected]>
2672 L:      [email protected]
2673 S:      Maintained
2674 F:      drivers/platform/x86/asus-wireless.c
2675
2676 ASYMMETRIC KEYS
2677 M:      David Howells <[email protected]>
2678 L:      [email protected]
2679 S:      Maintained
2680 F:      Documentation/crypto/asymmetric-keys.txt
2681 F:      include/linux/verification.h
2682 F:      include/crypto/public_key.h
2683 F:      include/crypto/pkcs7.h
2684 F:      crypto/asymmetric_keys/
2685
2686 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2687 R:      Dan Williams <[email protected]>
2688 W:      http://sourceforge.net/projects/xscaleiop
2689 S:      Odd fixes
2690 F:      Documentation/crypto/async-tx-api.txt
2691 F:      crypto/async_tx/
2692 F:      drivers/dma/
2693 F:      include/linux/dmaengine.h
2694 F:      include/linux/async_tx.h
2695
2696 AT24 EEPROM DRIVER
2697 M:      Bartosz Golaszewski <[email protected]>
2698 L:      [email protected]
2699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2700 S:      Maintained
2701 F:      Documentation/devicetree/bindings/eeprom/at24.txt
2702 F:      drivers/misc/eeprom/at24.c
2703
2704 ATA OVER ETHERNET (AOE) DRIVER
2705 M:      "Justin Sanders" <[email protected]>
2706 W:      http://www.openaoe.org/
2707 S:      Supported
2708 F:      Documentation/admin-guide/aoe/
2709 F:      drivers/block/aoe/
2710
2711 ATHEROS 71XX/9XXX GPIO DRIVER
2712 M:      Alban Bedel <[email protected]>
2713 W:      https://github.com/AlbanBedel/linux
2714 T:      git git://github.com/AlbanBedel/linux
2715 S:      Maintained
2716 F:      drivers/gpio/gpio-ath79.c
2717 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2718
2719 ATHEROS 71XX/9XXX USB PHY DRIVER
2720 M:      Alban Bedel <[email protected]>
2721 W:      https://github.com/AlbanBedel/linux
2722 T:      git git://github.com/AlbanBedel/linux
2723 S:      Maintained
2724 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2725 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2726
2727 ATHEROS ATH GENERIC UTILITIES
2728 M:      Kalle Valo <[email protected]>
2729 L:      [email protected]
2730 S:      Supported
2731 F:      drivers/net/wireless/ath/*
2732
2733 ATHEROS ATH5K WIRELESS DRIVER
2734 M:      Jiri Slaby <[email protected]>
2735 M:      Nick Kossifidis <[email protected]>
2736 M:      Luis Chamberlain <[email protected]>
2737 L:      [email protected]
2738 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2739 S:      Maintained
2740 F:      drivers/net/wireless/ath/ath5k/
2741
2742 ATHEROS ATH6KL WIRELESS DRIVER
2743 M:      Kalle Valo <[email protected]>
2744 L:      [email protected]
2745 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2747 S:      Supported
2748 F:      drivers/net/wireless/ath/ath6kl/
2749
2750 ATI_REMOTE2 DRIVER
2751 M:      Ville Syrjala <[email protected]>
2752 S:      Maintained
2753 F:      drivers/input/misc/ati_remote2.c
2754
2755 ATK0110 HWMON DRIVER
2756 M:      Luca Tettamanti <[email protected]>
2757 L:      [email protected]
2758 S:      Maintained
2759 F:      drivers/hwmon/asus_atk0110.c
2760
2761 ATLX ETHERNET DRIVERS
2762 M:      Jay Cliburn <[email protected]>
2763 M:      Chris Snook <[email protected]>
2764 L:      [email protected]
2765 W:      http://sourceforge.net/projects/atl1
2766 W:      http://atl1.sourceforge.net
2767 S:      Maintained
2768 F:      drivers/net/ethernet/atheros/
2769
2770 ATM
2771 M:      Chas Williams <[email protected]>
2772 L:      [email protected] (moderated for non-subscribers)
2773 L:      [email protected]
2774 W:      http://linux-atm.sourceforge.net
2775 S:      Maintained
2776 F:      drivers/atm/
2777 F:      include/linux/atm*
2778 F:      include/uapi/linux/atm*
2779
2780 ATMEL MACB ETHERNET DRIVER
2781 M:      Nicolas Ferre <[email protected]>
2782 S:      Supported
2783 F:      drivers/net/ethernet/cadence/
2784
2785 ATMEL MAXTOUCH DRIVER
2786 M:      Nick Dyer <[email protected]>
2787 T:      git git://github.com/ndyer/linux.git
2788 S:      Maintained
2789 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2790 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2791
2792 ATMEL WIRELESS DRIVER
2793 M:      Simon Kelley <[email protected]>
2794 L:      [email protected]
2795 W:      http://www.thekelleys.org.uk/atmel
2796 W:      http://atmelwlandriver.sourceforge.net/
2797 S:      Maintained
2798 F:      drivers/net/wireless/atmel/atmel*
2799
2800 ATOMIC INFRASTRUCTURE
2801 M:      Will Deacon <[email protected]>
2802 M:      Peter Zijlstra <[email protected]>
2803 R:      Boqun Feng <[email protected]>
2804 L:      [email protected]
2805 S:      Maintained
2806 F:      arch/*/include/asm/atomic*.h
2807 F:      include/*/atomic*.h
2808 F:      scripts/atomic/
2809
2810 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2811 M:      Bradley Grove <[email protected]>
2812 L:      [email protected]
2813 W:      http://www.attotech.com
2814 S:      Supported
2815 F:      drivers/scsi/esas2r
2816
2817 ATUSB IEEE 802.15.4 RADIO DRIVER
2818 M:      Stefan Schmidt <[email protected]>
2819 L:      [email protected]
2820 S:      Maintained
2821 F:      drivers/net/ieee802154/atusb.c
2822 F:      drivers/net/ieee802154/atusb.h
2823 F:      drivers/net/ieee802154/at86rf230.h
2824
2825 AUDIT SUBSYSTEM
2826 M:      Paul Moore <[email protected]>
2827 M:      Eric Paris <[email protected]>
2828 L:      [email protected] (moderated for non-subscribers)
2829 W:      https://github.com/linux-audit
2830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2831 S:      Supported
2832 F:      include/linux/audit.h
2833 F:      include/uapi/linux/audit.h
2834 F:      kernel/audit*
2835
2836 AUXILIARY DISPLAY DRIVERS
2837 M:      Miguel Ojeda Sandonis <[email protected]>
2838 S:      Maintained
2839 F:      drivers/auxdisplay/
2840 F:      include/linux/cfag12864b.h
2841
2842 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2843 M:      Andreas Klinger <[email protected]>
2844 L:      [email protected]
2845 S:      Maintained
2846 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2847 F:      drivers/iio/adc/hx711.c
2848
2849 AX.25 NETWORK LAYER
2850 M:      Ralf Baechle <[email protected]>
2851 L:      [email protected]
2852 W:      http://www.linux-ax25.org/
2853 S:      Maintained
2854 F:      include/uapi/linux/ax25.h
2855 F:      include/net/ax25.h
2856 F:      net/ax25/
2857
2858 AXENTIA ARM DEVICES
2859 M:      Peter Rosin <[email protected]>
2860 L:      [email protected] (moderated for non-subscribers)
2861 S:      Maintained
2862 F:      Documentation/devicetree/bindings/arm/axentia.txt
2863 F:      arch/arm/boot/dts/at91-linea.dtsi
2864 F:      arch/arm/boot/dts/at91-natte.dtsi
2865 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2866 F:      arch/arm/boot/dts/at91-tse850-3.dts
2867
2868 AXENTIA ASOC DRIVERS
2869 M:      Peter Rosin <[email protected]>
2870 L:      [email protected] (moderated for non-subscribers)
2871 S:      Maintained
2872 F:      Documentation/devicetree/bindings/sound/axentia,*
2873 F:      sound/soc/atmel/tse850-pcm5142.c
2874
2875 AXXIA I2C CONTROLLER
2876 M:      Krzysztof Adamski <[email protected]>
2877 L:      [email protected]
2878 S:      Maintained
2879 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
2880 F:      drivers/i2c/busses/i2c-axxia.c
2881
2882 AZ6007 DVB DRIVER
2883 M:      Mauro Carvalho Chehab <[email protected]>
2884 L:      [email protected]
2885 W:      https://linuxtv.org
2886 T:      git git://linuxtv.org/media_tree.git
2887 S:      Maintained
2888 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2889
2890 AZTECH FM RADIO RECEIVER DRIVER
2891 M:      Hans Verkuil <[email protected]>
2892 L:      [email protected]
2893 T:      git git://linuxtv.org/media_tree.git
2894 W:      https://linuxtv.org
2895 S:      Maintained
2896 F:      drivers/media/radio/radio-aztech*
2897
2898 B43 WIRELESS DRIVER
2899 L:      [email protected]
2900 L:      [email protected]
2901 W:      http://wireless.kernel.org/en/users/Drivers/b43
2902 S:      Odd Fixes
2903 F:      drivers/net/wireless/broadcom/b43/
2904
2905 B43LEGACY WIRELESS DRIVER
2906 M:      Larry Finger <[email protected]>
2907 L:      [email protected]
2908 L:      [email protected]
2909 W:      http://wireless.kernel.org/en/users/Drivers/b43
2910 S:      Maintained
2911 F:      drivers/net/wireless/broadcom/b43legacy/
2912
2913 BACKLIGHT CLASS/SUBSYSTEM
2914 M:      Lee Jones <[email protected]>
2915 M:      Daniel Thompson <[email protected]>
2916 M:      Jingoo Han <[email protected]>
2917 L:      [email protected]
2918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2919 S:      Maintained
2920 F:      drivers/video/backlight/
2921 F:      include/linux/backlight.h
2922 F:      include/linux/pwm_backlight.h
2923 F:      Documentation/devicetree/bindings/leds/backlight
2924
2925 BATMAN ADVANCED
2926 M:      Marek Lindner <[email protected]>
2927 M:      Simon Wunderlich <[email protected]>
2928 M:      Antonio Quartulli <[email protected]>
2929 M:      Sven Eckelmann <[email protected]>
2930 L:      [email protected] (moderated for non-subscribers)
2931 W:      https://www.open-mesh.org/
2932 B:      https://www.open-mesh.org/projects/batman-adv/issues
2933 C:      irc://chat.freenode.net/batman
2934 Q:      https://patchwork.open-mesh.org/project/batman/list/
2935 T:      git https://git.open-mesh.org/linux-merge.git
2936 S:      Maintained
2937 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
2938 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
2939 F:      Documentation/networking/batman-adv.rst
2940 F:      include/uapi/linux/batadv_packet.h
2941 F:      include/uapi/linux/batman_adv.h
2942 F:      net/batman-adv/
2943
2944 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2945 M:      Thomas Sailer <[email protected]>
2946 L:      [email protected]
2947 W:      http://www.baycom.org/~tom/ham/ham.html
2948 S:      Maintained
2949 F:      drivers/net/hamradio/baycom*
2950
2951 BCACHE (BLOCK LAYER CACHE)
2952 M:      Coly Li <[email protected]>
2953 M:      Kent Overstreet <[email protected]>
2954 L:      [email protected]
2955 W:      http://bcache.evilpiepirate.org
2956 C:      irc://irc.oftc.net/bcache
2957 S:      Maintained
2958 F:      drivers/md/bcache/
2959
2960 BDISP ST MEDIA DRIVER
2961 M:      Fabien Dessenne <[email protected]>
2962 L:      [email protected]
2963 T:      git git://linuxtv.org/media_tree.git
2964 W:      https://linuxtv.org
2965 S:      Supported
2966 F:      drivers/media/platform/sti/bdisp
2967
2968 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2969 M:      Dariusz Marcinkiewicz <[email protected]>
2970 L:      [email protected]
2971 S:      Maintained
2972 F:      drivers/net/ethernet/ec_bhf.c
2973
2974 BEFS FILE SYSTEM
2975 M:      Luis de Bethencourt <[email protected]>
2976 M:      Salah Triki <[email protected]>
2977 S:      Maintained
2978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2979 F:      Documentation/filesystems/befs.txt
2980 F:      fs/befs/
2981
2982 BFQ I/O SCHEDULER
2983 M:      Paolo Valente <[email protected]>
2984 M:      Jens Axboe <[email protected]>
2985 L:      [email protected]
2986 S:      Maintained
2987 F:      block/bfq-*
2988 F:      Documentation/block/bfq-iosched.rst
2989
2990 BFS FILE SYSTEM
2991 M:      "Tigran A. Aivazian" <[email protected]>
2992 S:      Maintained
2993 F:      Documentation/filesystems/bfs.txt
2994 F:      fs/bfs/
2995 F:      include/uapi/linux/bfs_fs.h
2996
2997 BLINKM RGB LED DRIVER
2998 M:      Jan-Simon Moeller <[email protected]>
2999 S:      Maintained
3000 F:      drivers/leds/leds-blinkm.c
3001
3002 BLOCK LAYER
3003 M:      Jens Axboe <[email protected]>
3004 L:      [email protected]
3005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3006 S:      Maintained
3007 F:      block/
3008 F:      drivers/block/
3009 F:      kernel/trace/blktrace.c
3010 F:      lib/sbitmap.c
3011
3012 BLOCK2MTD DRIVER
3013 M:      Joern Engel <[email protected]>
3014 L:      [email protected]
3015 S:      Maintained
3016 F:      drivers/mtd/devices/block2mtd.c
3017
3018 BLUETOOTH DRIVERS
3019 M:      Marcel Holtmann <[email protected]>
3020 M:      Johan Hedberg <[email protected]>
3021 L:      [email protected]
3022 W:      http://www.bluez.org/
3023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3025 S:      Maintained
3026 F:      drivers/bluetooth/
3027
3028 BLUETOOTH SUBSYSTEM
3029 M:      Marcel Holtmann <[email protected]>
3030 M:      Johan Hedberg <[email protected]>
3031 L:      [email protected]
3032 W:      http://www.bluez.org/
3033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3035 S:      Maintained
3036 F:      net/bluetooth/
3037 F:      include/net/bluetooth/
3038
3039 BONDING DRIVER
3040 M:      Jay Vosburgh <[email protected]>
3041 M:      Veaceslav Falico <[email protected]>
3042 M:      Andy Gospodarek <[email protected]>
3043 L:      [email protected]
3044 W:      http://sourceforge.net/projects/bonding/
3045 S:      Supported
3046 F:      drivers/net/bonding/
3047 F:      include/uapi/linux/if_bonding.h
3048
3049 BPF (Safe dynamic programs and tools)
3050 M:      Alexei Starovoitov <[email protected]>
3051 M:      Daniel Borkmann <[email protected]>
3052 R:      Martin KaFai Lau <[email protected]>
3053 R:      Song Liu <[email protected]>
3054 R:      Yonghong Song <[email protected]>
3055 L:      [email protected]
3056 L:      [email protected]
3057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3059 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3060 S:      Supported
3061 F:      arch/*/net/*
3062 F:      Documentation/networking/filter.txt
3063 F:      Documentation/bpf/
3064 F:      include/linux/bpf*
3065 F:      include/linux/filter.h
3066 F:      include/trace/events/xdp.h
3067 F:      include/uapi/linux/bpf*
3068 F:      include/uapi/linux/filter.h
3069 F:      kernel/bpf/
3070 F:      kernel/trace/bpf_trace.c
3071 F:      lib/test_bpf.c
3072 F:      net/bpf/
3073 F:      net/core/filter.c
3074 F:      net/sched/act_bpf.c
3075 F:      net/sched/cls_bpf.c
3076 F:      samples/bpf/
3077 F:      tools/bpf/
3078 F:      tools/lib/bpf/
3079 F:      tools/testing/selftests/bpf/
3080 K:      bpf
3081 N:      bpf
3082
3083 BPF JIT for ARM
3084 M:      Shubham Bansal <[email protected]>
3085 L:      [email protected]
3086 L:      [email protected]
3087 S:      Maintained
3088 F:      arch/arm/net/
3089
3090 BPF JIT for ARM64
3091 M:      Daniel Borkmann <[email protected]>
3092 M:      Alexei Starovoitov <[email protected]>
3093 M:      Zi Shen Lim <[email protected]>
3094 L:      [email protected]
3095 L:      [email protected]
3096 S:      Supported
3097 F:      arch/arm64/net/
3098
3099 BPF JIT for MIPS (32-BIT AND 64-BIT)
3100 M:      Paul Burton <[email protected]>
3101 L:      [email protected]
3102 L:      [email protected]
3103 S:      Maintained
3104 F:      arch/mips/net/
3105
3106 BPF JIT for NFP NICs
3107 M:      Jakub Kicinski <[email protected]>
3108 L:      [email protected]
3109 L:      [email protected]
3110 S:      Supported
3111 F:      drivers/net/ethernet/netronome/nfp/bpf/
3112
3113 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3114 M:      Naveen N. Rao <[email protected]>
3115 M:      Sandipan Das <[email protected]>
3116 L:      [email protected]
3117 L:      [email protected]
3118 S:      Maintained
3119 F:      arch/powerpc/net/
3120
3121 BPF JIT for RISC-V (RV64G)
3122 M:      Björn Töpel <[email protected]>
3123 L:      [email protected]
3124 S:      Maintained
3125 F:      arch/riscv/net/
3126
3127 BPF JIT for S390
3128 M:      Ilya Leoshkevich <[email protected]>
3129 M:      Heiko Carstens <[email protected]>
3130 M:      Vasily Gorbik <[email protected]>
3131 L:      [email protected]
3132 L:      [email protected]
3133 S:      Maintained
3134 F:      arch/s390/net/
3135 X:      arch/s390/net/pnet.c
3136
3137 BPF JIT for SPARC (32-BIT AND 64-BIT)
3138 M:      David S. Miller <[email protected]>
3139 L:      [email protected]
3140 L:      [email protected]
3141 S:      Maintained
3142 F:      arch/sparc/net/
3143
3144 BPF JIT for X86 32-BIT
3145 M:      Wang YanQing <[email protected]>
3146 L:      [email protected]
3147 L:      [email protected]
3148 S:      Maintained
3149 F:      arch/x86/net/bpf_jit_comp32.c
3150
3151 BPF JIT for X86 64-BIT
3152 M:      Alexei Starovoitov <[email protected]>
3153 M:      Daniel Borkmann <[email protected]>
3154 L:      [email protected]
3155 L:      [email protected]
3156 S:      Supported
3157 F:      arch/x86/net/
3158 X:      arch/x86/net/bpf_jit_comp32.c
3159
3160 BROADCOM B44 10/100 ETHERNET DRIVER
3161 M:      Michael Chan <[email protected]>
3162 L:      [email protected]
3163 S:      Supported
3164 F:      drivers/net/ethernet/broadcom/b44.*
3165
3166 BROADCOM B53 ETHERNET SWITCH DRIVER
3167 M:      Florian Fainelli <[email protected]>
3168 L:      [email protected]
3169 L:      [email protected] (subscribers-only)
3170 S:      Supported
3171 F:      drivers/net/dsa/b53/*
3172 F:      include/linux/platform_data/b53.h
3173
3174 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3175 M:      Florian Fainelli <[email protected]>
3176 M:      Ray Jui <[email protected]>
3177 M:      Scott Branden <[email protected]>
3178 M:      [email protected]
3179 T:      git git://github.com/broadcom/mach-bcm
3180 S:      Maintained
3181 N:      bcm281*
3182 N:      bcm113*
3183 N:      bcm216*
3184 N:      kona
3185 F:      arch/arm/mach-bcm/
3186
3187 BROADCOM BCM2835 ARM ARCHITECTURE
3188 M:      Eric Anholt <[email protected]>
3189 M:      Stefan Wahren <[email protected]>
3190 L:      [email protected]
3191 L:      [email protected] (moderated for non-subscribers)
3192 L:      [email protected] (moderated for non-subscribers)
3193 T:      git git://github.com/anholt/linux
3194 S:      Maintained
3195 N:      bcm2835
3196 F:      drivers/staging/vc04_services
3197
3198 BROADCOM BCM47XX MIPS ARCHITECTURE
3199 M:      Hauke Mehrtens <[email protected]>
3200 M:      Rafał Miłecki <[email protected]>
3201 L:      [email protected]
3202 S:      Maintained
3203 F:      Documentation/devicetree/bindings/mips/brcm/
3204 F:      arch/mips/bcm47xx/*
3205 F:      arch/mips/include/asm/mach-bcm47xx/*
3206
3207 BROADCOM BCM5301X ARM ARCHITECTURE
3208 M:      Hauke Mehrtens <[email protected]>
3209 M:      Rafał Miłecki <[email protected]>
3210 M:      [email protected]
3211 L:      [email protected]
3212 S:      Maintained
3213 F:      arch/arm/mach-bcm/bcm_5301x.c
3214 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3215 F:      arch/arm/boot/dts/bcm470*
3216 F:      arch/arm/boot/dts/bcm953012*
3217
3218 BROADCOM BCM53573 ARM ARCHITECTURE
3219 M:      Rafał Miłecki <[email protected]>
3220 L:      [email protected]
3221 L:      [email protected]
3222 S:      Maintained
3223 F:      arch/arm/boot/dts/bcm53573*
3224 F:      arch/arm/boot/dts/bcm47189*
3225
3226 BROADCOM BCM63XX ARM ARCHITECTURE
3227 M:      Florian Fainelli <[email protected]>
3228 M:      [email protected]
3229 L:      [email protected] (moderated for non-subscribers)
3230 T:      git git://github.com/broadcom/stblinux.git
3231 S:      Maintained
3232 N:      bcm63xx
3233
3234 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3235 M:      Kevin Cernekee <[email protected]>
3236 L:      [email protected]
3237 S:      Maintained
3238 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3239
3240 BROADCOM BCM7XXX ARM ARCHITECTURE
3241 M:      Brian Norris <[email protected]>
3242 M:      Gregory Fong <[email protected]>
3243 M:      Florian Fainelli <[email protected]>
3244 M:      [email protected]
3245 L:      [email protected] (moderated for non-subscribers)
3246 T:      git git://github.com/broadcom/stblinux.git
3247 S:      Maintained
3248 F:      arch/arm/mach-bcm/*brcmstb*
3249 F:      arch/arm/boot/dts/bcm7*.dts*
3250 F:      drivers/bus/brcmstb_gisb.c
3251 F:      arch/arm/mm/cache-b15-rac.c
3252 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3253 N:      brcmstb
3254
3255 BROADCOM BMIPS CPUFREQ DRIVER
3256 M:      Markus Mayer <[email protected]>
3257 M:      [email protected]
3258 L:      [email protected]
3259 S:      Maintained
3260 F:      drivers/cpufreq/bmips-cpufreq.c
3261
3262 BROADCOM BMIPS MIPS ARCHITECTURE
3263 M:      Kevin Cernekee <[email protected]>
3264 M:      Florian Fainelli <[email protected]>
3265 L:      [email protected]
3266 L:      [email protected]
3267 T:      git git://github.com/broadcom/stblinux.git
3268 S:      Maintained
3269 F:      arch/mips/bmips/*
3270 F:      arch/mips/include/asm/mach-bmips/*
3271 F:      arch/mips/kernel/*bmips*
3272 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3273 F:      drivers/irqchip/irq-bcm63*
3274 F:      drivers/irqchip/irq-bcm7*
3275 F:      drivers/irqchip/irq-brcmstb*
3276 F:      include/linux/bcm963xx_nvram.h
3277 F:      include/linux/bcm963xx_tag.h
3278
3279 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3280 M:      Rasesh Mody <[email protected]>
3281 M:      [email protected]
3282 L:      [email protected]
3283 S:      Supported
3284 F:      drivers/net/ethernet/broadcom/bnx2.*
3285 F:      drivers/net/ethernet/broadcom/bnx2_*
3286
3287 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3288 M:      [email protected]
3289 L:      [email protected]
3290 S:      Supported
3291 F:      drivers/scsi/bnx2fc/
3292
3293 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3294 M:      [email protected]
3295 L:      [email protected]
3296 S:      Supported
3297 F:      drivers/scsi/bnx2i/
3298
3299 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3300 M:      Ariel Elior <[email protected]>
3301 M:      Sudarsana Kalluru <[email protected]>
3302 M:      [email protected]
3303 L:      [email protected]
3304 S:      Supported
3305 F:      drivers/net/ethernet/broadcom/bnx2x/
3306
3307 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3308 M:      Michael Chan <[email protected]>
3309 L:      [email protected]
3310 S:      Supported
3311 F:      drivers/net/ethernet/broadcom/bnxt/
3312
3313 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3314 M:      Arend van Spriel <[email protected]>
3315 M:      Franky Lin <[email protected]>
3316 M:      Hante Meuleman <[email protected]>
3317 M:      Chi-Hsien Lin <[email protected]>
3318 M:      Wright Feng <[email protected]>
3319 L:      [email protected]
3320 L:      [email protected]
3321 L:      [email protected]
3322 S:      Supported
3323 F:      drivers/net/wireless/broadcom/brcm80211/
3324
3325 BROADCOM BRCMSTB GPIO DRIVER
3326 M:      Gregory Fong <[email protected]>
3327 L:      [email protected]
3328 S:      Supported
3329 F:      drivers/gpio/gpio-brcmstb.c
3330 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3331
3332 BROADCOM BRCMSTB I2C DRIVER
3333 M:      Kamal Dasu <[email protected]>
3334 L:      [email protected]
3335 L:      [email protected]
3336 S:      Supported
3337 F:      drivers/i2c/busses/i2c-brcmstb.c
3338 F:      Documentation/devicetree/bindings/i2c/i2c-brcmstb.txt
3339
3340 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3341 M:      Al Cooper <[email protected]>
3342 L:      [email protected]
3343 L:      [email protected]
3344 S:      Maintained
3345 F:      drivers/phy/broadcom/phy-brcm-usb*
3346
3347 BROADCOM GENET ETHERNET DRIVER
3348 M:      Doug Berger <[email protected]>
3349 M:      Florian Fainelli <[email protected]>
3350 L:      [email protected]
3351 L:      [email protected]
3352 S:      Supported
3353 F:      drivers/net/ethernet/broadcom/genet/
3354
3355 BROADCOM IPROC ARM ARCHITECTURE
3356 M:      Ray Jui <[email protected]>
3357 M:      Scott Branden <[email protected]>
3358 M:      [email protected]
3359 L:      [email protected] (moderated for non-subscribers)
3360 T:      git git://github.com/broadcom/cygnus-linux.git
3361 S:      Maintained
3362 N:      iproc
3363 N:      cygnus
3364 N:      bcm[-_]nsp
3365 N:      bcm9113*
3366 N:      bcm9583*
3367 N:      bcm9585*
3368 N:      bcm9586*
3369 N:      bcm988312
3370 N:      bcm113*
3371 N:      bcm583*
3372 N:      bcm585*
3373 N:      bcm586*
3374 N:      bcm88312
3375 N:      hr2
3376 N:      stingray
3377 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3378 F:      arch/arm64/boot/dts/broadcom/stingray/*
3379 F:      drivers/clk/bcm/clk-ns*
3380 F:      drivers/clk/bcm/clk-sr*
3381 F:      drivers/pinctrl/bcm/pinctrl-ns*
3382 F:      include/dt-bindings/clock/bcm-sr*
3383
3384 BROADCOM KONA GPIO DRIVER
3385 M:      Ray Jui <[email protected]>
3386 L:      [email protected]
3387 S:      Supported
3388 F:      drivers/gpio/gpio-bcm-kona.c
3389 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3390
3391 BROADCOM NETXTREME-E ROCE DRIVER
3392 M:      Selvin Xavier <[email protected]>
3393 M:      Devesh Sharma <[email protected]>
3394 M:      Somnath Kotur <[email protected]>
3395 M:      Sriharsha Basavapatna <[email protected]>
3396 L:      [email protected]
3397 W:      http://www.broadcom.com
3398 S:      Supported
3399 F:      drivers/infiniband/hw/bnxt_re/
3400 F:      include/uapi/rdma/bnxt_re-abi.h
3401
3402 BROADCOM NVRAM DRIVER
3403 M:      Rafał Miłecki <[email protected]>
3404 L:      [email protected]
3405 S:      Maintained
3406 F:      drivers/firmware/broadcom/*
3407
3408 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3409 M:      Rafał Miłecki <[email protected]>
3410 L:      [email protected]
3411 S:      Maintained
3412 F:      drivers/bcma/
3413 F:      include/linux/bcma/
3414
3415 BROADCOM STB AVS CPUFREQ DRIVER
3416 M:      Markus Mayer <[email protected]>
3417 M:      [email protected]
3418 L:      [email protected]
3419 S:      Maintained
3420 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3421 F:      drivers/cpufreq/brcmstb*
3422
3423 BROADCOM STB AVS TMON DRIVER
3424 M:      Markus Mayer <[email protected]>
3425 M:      [email protected]
3426 L:      [email protected]
3427 S:      Maintained
3428 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3429 F:      drivers/thermal/broadcom/brcmstb*
3430
3431 BROADCOM STB NAND FLASH DRIVER
3432 M:      Brian Norris <[email protected]>
3433 M:      Kamal Dasu <[email protected]>
3434 L:      [email protected]
3435 L:      [email protected]
3436 S:      Maintained
3437 F:      drivers/mtd/nand/raw/brcmnand/
3438
3439 BROADCOM STB DPFE DRIVER
3440 M:      Markus Mayer <[email protected]>
3441 M:      [email protected]
3442 L:      [email protected] (moderated for non-subscribers)
3443 S:      Maintained
3444 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3445 F:      drivers/memory/brcmstb_dpfe.c
3446
3447 BROADCOM SPI DRIVER
3448 M:      Kamal Dasu <[email protected]>
3449 M:      [email protected]
3450 S:      Maintained
3451 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3452 F:      drivers/spi/spi-bcm-qspi.*
3453 F:      drivers/spi/spi-brcmstb-qspi.c
3454 F:      drivers/spi/spi-iproc-qspi.c
3455
3456 BROADCOM SYSTEMPORT ETHERNET DRIVER
3457 M:      Florian Fainelli <[email protected]>
3458 L:      [email protected]
3459 L:      [email protected]
3460 S:      Supported
3461 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3462
3463 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3464 M:      Siva Reddy Kallam <[email protected]>
3465 M:      Prashant Sreedharan <[email protected]>
3466 M:      Michael Chan <[email protected]>
3467 L:      [email protected]
3468 S:      Supported
3469 F:      drivers/net/ethernet/broadcom/tg3.*
3470
3471 BROCADE BFA FC SCSI DRIVER
3472 M:      Anil Gurumurthy <[email protected]>
3473 M:      Sudarsana Kalluru <[email protected]>
3474 L:      [email protected]
3475 S:      Supported
3476 F:      drivers/scsi/bfa/
3477
3478 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3479 M:      Rasesh Mody <[email protected]>
3480 M:      Sudarsana Kalluru <[email protected]>
3481 M:      [email protected]
3482 L:      [email protected]
3483 S:      Supported
3484 F:      drivers/net/ethernet/brocade/bna/
3485
3486 BSG (block layer generic sg v4 driver)
3487 M:      FUJITA Tomonori <[email protected]>
3488 L:      [email protected]
3489 S:      Supported
3490 F:      block/bsg.c
3491 F:      include/linux/bsg.h
3492 F:      include/uapi/linux/bsg.h
3493
3494 BT87X AUDIO DRIVER
3495 M:      Clemens Ladisch <[email protected]>
3496 L:      [email protected] (moderated for non-subscribers)
3497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3498 S:      Maintained
3499 F:      Documentation/sound/cards/bt87x.rst
3500 F:      sound/pci/bt87x.c
3501
3502 BT8XXGPIO DRIVER
3503 M:      Michael Buesch <[email protected]>
3504 W:      http://bu3sch.de/btgpio.php
3505 S:      Maintained
3506 F:      drivers/gpio/gpio-bt8xx.c
3507
3508 BTRFS FILE SYSTEM
3509 M:      Chris Mason <[email protected]>
3510 M:      Josef Bacik <[email protected]>
3511 M:      David Sterba <[email protected]>
3512 L:      [email protected]
3513 W:      http://btrfs.wiki.kernel.org/
3514 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3516 S:      Maintained
3517 F:      Documentation/filesystems/btrfs.txt
3518 F:      fs/btrfs/
3519 F:      include/linux/btrfs*
3520 F:      include/uapi/linux/btrfs*
3521
3522 BTTV VIDEO4LINUX DRIVER
3523 M:      Mauro Carvalho Chehab <[email protected]>
3524 L:      [email protected]
3525 W:      https://linuxtv.org
3526 T:      git git://linuxtv.org/media_tree.git
3527 S:      Odd fixes
3528 F:      Documentation/media/v4l-drivers/bttv*
3529 F:      drivers/media/pci/bt8xx/bttv*
3530
3531 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3532 M:      Chanwoo Choi <[email protected]>
3533 L:      [email protected]
3534 L:      [email protected]
3535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3536 S:      Maintained
3537 F:      drivers/devfreq/exynos-bus.c
3538 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3539
3540 BUSLOGIC SCSI DRIVER
3541 M:      Khalid Aziz <[email protected]>
3542 L:      [email protected]
3543 S:      Maintained
3544 F:      drivers/scsi/BusLogic.*
3545 F:      drivers/scsi/FlashPoint.*
3546
3547 C-MEDIA CMI8788 DRIVER
3548 M:      Clemens Ladisch <[email protected]>
3549 L:      [email protected] (moderated for non-subscribers)
3550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3551 S:      Maintained
3552 F:      sound/pci/oxygen/
3553
3554 C-SKY ARCHITECTURE
3555 M:      Guo Ren <[email protected]>
3556 T:      git https://github.com/c-sky/csky-linux.git
3557 S:      Supported
3558 F:      arch/csky/
3559 F:      Documentation/devicetree/bindings/csky/
3560 F:      drivers/irqchip/irq-csky-*
3561 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3562 F:      drivers/clocksource/timer-gx6605s.c
3563 F:      drivers/clocksource/timer-mp-csky.c
3564 F:      Documentation/devicetree/bindings/timer/csky,*
3565 K:      csky
3566 N:      csky
3567
3568 C6X ARCHITECTURE
3569 M:      Mark Salter <[email protected]>
3570 M:      Aurelien Jacquiot <[email protected]>
3571 L:      [email protected]
3572 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3573 S:      Maintained
3574 F:      arch/c6x/
3575
3576 CA8210 IEEE-802.15.4 RADIO DRIVER
3577 M:      Harry Morris <[email protected]>
3578 L:      [email protected]
3579 W:      https://github.com/Cascoda/ca8210-linux.git
3580 S:      Maintained
3581 F:      drivers/net/ieee802154/ca8210.c
3582 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3583
3584 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3585 M:      David Howells <[email protected]>
3586 L:      [email protected] (moderated for non-subscribers)
3587 S:      Supported
3588 F:      Documentation/filesystems/caching/cachefiles.txt
3589 F:      fs/cachefiles/
3590
3591 CADENCE MIPI-CSI2 BRIDGES
3592 M:      Maxime Ripard <[email protected]>
3593 L:      [email protected]
3594 S:      Maintained
3595 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3596 F:      drivers/media/platform/cadence/cdns-csi2*
3597
3598 CADET FM/AM RADIO RECEIVER DRIVER
3599 M:      Hans Verkuil <[email protected]>
3600 L:      [email protected]
3601 T:      git git://linuxtv.org/media_tree.git
3602 W:      https://linuxtv.org
3603 S:      Maintained
3604 F:      drivers/media/radio/radio-cadet*
3605
3606 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3607 M:      Jonathan Corbet <[email protected]>
3608 L:      [email protected]
3609 T:      git git://linuxtv.org/media_tree.git
3610 S:      Maintained
3611 F:      Documentation/media/v4l-drivers/cafe_ccic*
3612 F:      drivers/media/platform/marvell-ccic/
3613
3614 CAIF NETWORK LAYER
3615 L:      [email protected]
3616 S:      Orphan
3617 F:      Documentation/networking/caif/
3618 F:      drivers/net/caif/
3619 F:      include/uapi/linux/caif/
3620 F:      include/net/caif/
3621 F:      net/caif/
3622
3623 CAKE QDISC
3624 M:      Toke Høiland-Jørgensen <[email protected]>
3625 L:      [email protected] (moderated for non-subscribers)
3626 S:      Maintained
3627 F:      net/sched/sch_cake.c
3628
3629 CALGARY x86-64 IOMMU
3630 M:      Muli Ben-Yehuda <[email protected]>
3631 M:      Jon Mason <[email protected]>
3632 L:      [email protected]
3633 S:      Maintained
3634 F:      arch/x86/kernel/pci-calgary_64.c
3635 F:      arch/x86/kernel/tce_64.c
3636 F:      arch/x86/include/asm/calgary.h
3637 F:      arch/x86/include/asm/tce.h
3638
3639 CAN NETWORK DRIVERS
3640 M:      Wolfgang Grandegger <[email protected]>
3641 M:      Marc Kleine-Budde <[email protected]>
3642 L:      [email protected]
3643 W:      https://github.com/linux-can
3644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3646 S:      Maintained
3647 F:      Documentation/devicetree/bindings/net/can/
3648 F:      drivers/net/can/
3649 F:      include/linux/can/dev.h
3650 F:      include/linux/can/led.h
3651 F:      include/linux/can/rx-offload.h
3652 F:      include/linux/can/platform/
3653 F:      include/uapi/linux/can/error.h
3654 F:      include/uapi/linux/can/netlink.h
3655 F:      include/uapi/linux/can/vxcan.h
3656
3657 CAN NETWORK LAYER
3658 M:      Oliver Hartkopp <[email protected]>
3659 M:      Marc Kleine-Budde <[email protected]>
3660 L:      [email protected]
3661 W:      https://github.com/linux-can
3662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3664 S:      Maintained
3665 F:      Documentation/networking/can.rst
3666 F:      net/can/
3667 F:      include/linux/can/core.h
3668 F:      include/linux/can/skb.h
3669 F:      include/net/netns/can.h
3670 F:      include/uapi/linux/can.h
3671 F:      include/uapi/linux/can/bcm.h
3672 F:      include/uapi/linux/can/raw.h
3673 F:      include/uapi/linux/can/gw.h
3674
3675 CAN-J1939 NETWORK LAYER
3676 M:      Robin van der Gracht <[email protected]>
3677 M:      Oleksij Rempel <[email protected]>
3678 R:      Pengutronix Kernel Team <[email protected]>
3679 L:      [email protected]
3680 S:      Maintained
3681 F:      Documentation/networking/j1939.txt
3682 F:      net/can/j1939/
3683 F:      include/uapi/linux/can/j1939.h
3684
3685 CAPABILITIES
3686 M:      Serge Hallyn <[email protected]>
3687 L:      [email protected]
3688 S:      Supported
3689 F:      include/linux/capability.h
3690 F:      include/uapi/linux/capability.h
3691 F:      security/commoncap.c
3692 F:      kernel/capability.c
3693
3694 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3695 M:      Kevin Tsai <[email protected]>
3696 S:      Maintained
3697 F:      drivers/iio/light/cm*
3698
3699 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3700 M:      Christian Lamparter <[email protected]>
3701 L:      [email protected]
3702 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3703 S:      Maintained
3704 F:      drivers/net/wireless/ath/carl9170/
3705
3706 CAVIUM I2C DRIVER
3707 M:      Jan Glauber <[email protected]>
3708 M:      David Daney <[email protected]>
3709 W:      http://www.cavium.com
3710 S:      Supported
3711 F:      drivers/i2c/busses/i2c-octeon*
3712 F:      drivers/i2c/busses/i2c-thunderx*
3713
3714 CAVIUM LIQUIDIO NETWORK DRIVER
3715 M:      Derek Chickles <[email protected]>
3716 M:      Satanand Burla <[email protected]>
3717 M:      Felix Manlunas <[email protected]>
3718 L:      [email protected]
3719 W:      http://www.cavium.com
3720 S:      Supported
3721 F:      drivers/net/ethernet/cavium/liquidio/
3722
3723 CAVIUM MMC DRIVER
3724 M:      Jan Glauber <[email protected]>
3725 M:      David Daney <[email protected]>
3726 M:      Steven J. Hill <[email protected]>
3727 W:      http://www.cavium.com
3728 S:      Supported
3729 F:      drivers/mmc/host/cavium*
3730
3731 CAVIUM OCTEON-TX CRYPTO DRIVER
3732 M:      George Cherian <[email protected]>
3733 L:      [email protected]
3734 W:      http://www.cavium.com
3735 S:      Supported
3736 F:      drivers/crypto/cavium/cpt/
3737
3738 CAVIUM THUNDERX2 ARM64 SOC
3739 M:      Robert Richter <[email protected]>
3740 M:      Jayachandran C <[email protected]>
3741 L:      [email protected] (moderated for non-subscribers)
3742 S:      Maintained
3743 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3744 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3745
3746 CC2520 IEEE-802.15.4 RADIO DRIVER
3747 M:      Varka Bhadram <[email protected]>
3748 L:      [email protected]
3749 S:      Maintained
3750 F:      drivers/net/ieee802154/cc2520.c
3751 F:      include/linux/spi/cc2520.h
3752 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3753
3754 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3755 M:      Gilad Ben-Yossef <[email protected]>
3756 L:      [email protected]
3757 S:      Supported
3758 F:      drivers/crypto/ccree/
3759 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3760
3761 CEC FRAMEWORK
3762 M:      Hans Verkuil <[email protected]>
3763 L:      [email protected]
3764 T:      git git://linuxtv.org/media_tree.git
3765 W:      http://linuxtv.org
3766 S:      Supported
3767 F:      Documentation/media/kapi/cec-core.rst
3768 F:      Documentation/media/uapi/cec
3769 F:      drivers/media/cec/
3770 F:      drivers/media/rc/keymaps/rc-cec.c
3771 F:      include/media/cec.h
3772 F:      include/media/cec-notifier.h
3773 F:      include/uapi/linux/cec.h
3774 F:      include/uapi/linux/cec-funcs.h
3775 F:      Documentation/devicetree/bindings/media/cec.txt
3776 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3777
3778 CEC GPIO DRIVER
3779 M:      Hans Verkuil <[email protected]>
3780 L:      [email protected]
3781 T:      git git://linuxtv.org/media_tree.git
3782 W:      http://linuxtv.org
3783 S:      Supported
3784 F:      drivers/media/platform/cec-gpio/
3785 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3786
3787 CELL BROADBAND ENGINE ARCHITECTURE
3788 M:      Arnd Bergmann <[email protected]>
3789 L:      [email protected]
3790 W:      http://www.ibm.com/developerworks/power/cell/
3791 S:      Supported
3792 F:      arch/powerpc/include/asm/cell*.h
3793 F:      arch/powerpc/include/asm/spu*.h
3794 F:      arch/powerpc/include/uapi/asm/spu*.h
3795 F:      arch/powerpc/oprofile/*cell*
3796 F:      arch/powerpc/platforms/cell/
3797
3798 CEPH COMMON CODE (LIBCEPH)
3799 M:      Ilya Dryomov <[email protected]>
3800 M:      Jeff Layton <[email protected]>
3801 M:      Sage Weil <[email protected]>
3802 L:      [email protected]
3803 W:      http://ceph.com/
3804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3805 T:      git git://github.com/ceph/ceph-client.git
3806 S:      Supported
3807 F:      net/ceph/
3808 F:      include/linux/ceph/
3809 F:      include/linux/crush/
3810
3811 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3812 M:      Jeff Layton <[email protected]>
3813 M:      Sage Weil <[email protected]>
3814 M:      Ilya Dryomov <[email protected]>
3815 L:      [email protected]
3816 W:      http://ceph.com/
3817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3818 T:      git git://github.com/ceph/ceph-client.git
3819 S:      Supported
3820 F:      Documentation/filesystems/ceph.txt
3821 F:      fs/ceph/
3822
3823 CERTIFICATE HANDLING:
3824 M:      David Howells <[email protected]>
3825 M:      David Woodhouse <[email protected]>
3826 L:      [email protected]
3827 S:      Maintained
3828 F:      Documentation/admin-guide/module-signing.rst
3829 F:      certs/
3830 F:      scripts/sign-file.c
3831 F:      scripts/extract-cert.c
3832
3833 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3834 L:      [email protected]
3835 S:      Obsolete
3836 F:      drivers/staging/wusbcore/
3837
3838 CFAG12864B LCD DRIVER
3839 M:      Miguel Ojeda Sandonis <[email protected]>
3840 S:      Maintained
3841 F:      drivers/auxdisplay/cfag12864b.c
3842 F:      include/linux/cfag12864b.h
3843
3844 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3845 M:      Miguel Ojeda Sandonis <[email protected]>
3846 S:      Maintained
3847 F:      drivers/auxdisplay/cfag12864bfb.c
3848 F:      include/linux/cfag12864b.h
3849
3850 802.11 (including CFG80211/NL80211)
3851 M:      Johannes Berg <[email protected]>
3852 L:      [email protected]
3853 W:      http://wireless.kernel.org/
3854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3856 S:      Maintained
3857 F:      net/wireless/
3858 F:      include/uapi/linux/nl80211.h
3859 F:      include/linux/ieee80211.h
3860 F:      include/net/wext.h
3861 F:      include/net/cfg80211.h
3862 F:      include/net/iw_handler.h
3863 F:      include/net/ieee80211_radiotap.h
3864 F:      Documentation/driver-api/80211/cfg80211.rst
3865 F:      Documentation/networking/regulatory.txt
3866
3867 CHAR and MISC DRIVERS
3868 M:      Arnd Bergmann <[email protected]>
3869 M:      Greg Kroah-Hartman <[email protected]>
3870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3871 S:      Supported
3872 F:      drivers/char/
3873 F:      drivers/misc/
3874 F:      include/linux/miscdevice.h
3875
3876 CHECKPATCH
3877 M:      Andy Whitcroft <[email protected]>
3878 M:      Joe Perches <[email protected]>
3879 S:      Maintained
3880 F:      scripts/checkpatch.pl
3881
3882 CHINESE DOCUMENTATION
3883 M:      Harry Wei <[email protected]>
3884 M:      Alex Shi <[email protected]>
3885 L:      [email protected] (subscribers-only)
3886 S:      Maintained
3887 F:      Documentation/translations/zh_CN/
3888
3889 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3890 M:      Peter Chen <[email protected]>
3891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3892 L:      [email protected]
3893 S:      Maintained
3894 F:      drivers/usb/chipidea/
3895
3896 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3897 M:      Hans de Goede <[email protected]>
3898 L:      [email protected]
3899 S:      Maintained
3900 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3901 F:      drivers/input/touchscreen/chipone_icn8318.c
3902
3903 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
3904 M:      Hans de Goede <[email protected]>
3905 L:      [email protected]
3906 S:      Maintained
3907 F:      drivers/input/touchscreen/chipone_icn8505.c
3908
3909 CHROME HARDWARE PLATFORM SUPPORT
3910 M:      Benson Leung <[email protected]>
3911 M:      Enric Balletbo i Serra <[email protected]>
3912 S:      Maintained
3913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
3914 F:      drivers/platform/chrome/
3915
3916 CHROMEOS EC SUBDRIVERS
3917 M:      Benson Leung <[email protected]>
3918 M:      Enric Balletbo i Serra <[email protected]>
3919 R:      Guenter Roeck <[email protected]>
3920 S:      Maintained
3921 N:      cros_ec
3922 N:      cros-ec
3923 F:      drivers/power/supply/cros_usbpd-charger.c
3924
3925 CHROMEOS EC CODEC DRIVER
3926 M:      Cheng-Yi Chiang <[email protected]>
3927 S:      Maintained
3928 R:      Enric Balletbo i Serra <[email protected]>
3929 R:      Guenter Roeck <[email protected]>
3930 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.txt
3931 F:      sound/soc/codecs/cros_ec_codec.*
3932
3933 CIRRUS LOGIC AUDIO CODEC DRIVERS
3934 M:      Brian Austin <[email protected]>
3935 M:      Paul Handrigan <[email protected]>
3936 L:      [email protected] (moderated for non-subscribers)
3937 S:      Maintained
3938 F:      sound/soc/codecs/cs*
3939
3940 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3941 M:      Hartley Sweeten <[email protected]>
3942 L:      [email protected]
3943 S:      Maintained
3944 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3945
3946 CIRRUS LOGIC LOCHNAGAR DRIVER
3947 M:      Charles Keepax <[email protected]>
3948 M:      Richard Fitzgerald <[email protected]>
3949 L:      [email protected]
3950 S:      Supported
3951 F:      drivers/clk/clk-lochnagar.c
3952 F:      drivers/hwmon/lochnagar-hwmon.c
3953 F:      drivers/mfd/lochnagar-i2c.c
3954 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
3955 F:      drivers/regulator/lochnagar-regulator.c
3956 F:      sound/soc/codecs/lochnagar-sc.c
3957 F:      include/dt-bindings/clk/lochnagar.h
3958 F:      include/dt-bindings/pinctrl/lochnagar.h
3959 F:      include/linux/mfd/lochnagar*
3960 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
3961 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.txt
3962 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.txt
3963 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.txt
3964 F:      Documentation/devicetree/bindings/regulator/cirrus,lochnagar.txt
3965 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.txt
3966 F:      Documentation/hwmon/lochnagar.rst
3967
3968 CISCO FCOE HBA DRIVER
3969 M:      Satish Kharat <[email protected]>
3970 M:      Sesidhar Baddela <[email protected]>
3971 M:      Karan Tilak Kumar <[email protected]>
3972 L:      [email protected]
3973 S:      Supported
3974 F:      drivers/scsi/fnic/
3975
3976 CISCO SCSI HBA DRIVER
3977 M:      Karan Tilak Kumar <[email protected]>
3978 M:      Sesidhar Baddela <[email protected]>
3979 L:      [email protected]
3980 S:      Supported
3981 F:      drivers/scsi/snic/
3982
3983 CISCO VIC ETHERNET NIC DRIVER
3984 M:      Christian Benvenuti <[email protected]>
3985 M:      Govindarajulu Varadarajan <[email protected]>
3986 M:      Parvi Kaustubhi <[email protected]>
3987 S:      Supported
3988 F:      drivers/net/ethernet/cisco/enic/
3989
3990 CISCO VIC LOW LATENCY NIC DRIVER
3991 M:      Christian Benvenuti <[email protected]>
3992 M:      Nelson Escobar <[email protected]>
3993 M:      Parvi Kaustubhi <[email protected]>
3994 S:      Supported
3995 F:      drivers/infiniband/hw/usnic/
3996
3997 CIRRUS LOGIC MADERA CODEC DRIVERS
3998 M:      Charles Keepax <[email protected]>
3999 M:      Richard Fitzgerald <[email protected]>
4000 L:      [email protected] (moderated for non-subscribers)
4001 L:      [email protected]
4002 T:      git https://github.com/CirrusLogic/linux-drivers.git
4003 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4004 S:      Supported
4005 F:      Documentation/devicetree/bindings/mfd/madera.txt
4006 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
4007 F:      Documentation/devicetree/bindings/sound/madera.txt
4008 F:      include/dt-bindings/sound/madera*
4009 F:      include/linux/irqchip/irq-madera*
4010 F:      include/linux/mfd/madera/*
4011 F:      include/sound/madera*
4012 F:      drivers/gpio/gpio-madera*
4013 F:      drivers/irqchip/irq-madera*
4014 F:      drivers/mfd/madera*
4015 F:      drivers/mfd/cs47l*
4016 F:      drivers/pinctrl/cirrus/*
4017 F:      sound/soc/codecs/cs47l*
4018 F:      sound/soc/codecs/madera*
4019
4020 CLANG-FORMAT FILE
4021 M:      Miguel Ojeda <[email protected]>
4022 S:      Maintained
4023 F:      .clang-format
4024
4025 CLANG/LLVM BUILD SUPPORT
4026 L:      [email protected]
4027 W:      https://clangbuiltlinux.github.io/
4028 B:      https://github.com/ClangBuiltLinux/linux/issues
4029 C:      irc://chat.freenode.net/clangbuiltlinux
4030 S:      Supported
4031 K:      \b(?i:clang|llvm)\b
4032
4033 CLEANCACHE API
4034 M:      Konrad Rzeszutek Wilk <[email protected]>
4035 L:      [email protected]
4036 S:      Maintained
4037 F:      mm/cleancache.c
4038 F:      include/linux/cleancache.h
4039
4040 CLK API
4041 M:      Russell King <[email protected]>
4042 L:      [email protected]
4043 S:      Maintained
4044 F:      include/linux/clk.h
4045
4046 CLOCKSOURCE, CLOCKEVENT DRIVERS
4047 M:      Daniel Lezcano <[email protected]>
4048 M:      Thomas Gleixner <[email protected]>
4049 L:      [email protected]
4050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4051 S:      Supported
4052 F:      drivers/clocksource/
4053 F:      Documentation/devicetree/bindings/timer/
4054
4055 CMPC ACPI DRIVER
4056 M:      Thadeu Lima de Souza Cascardo <[email protected]>
4057 M:      Daniel Oliveira Nascimento <[email protected]>
4058 L:      [email protected]
4059 S:      Supported
4060 F:      drivers/platform/x86/classmate-laptop.c
4061
4062 COBALT MEDIA DRIVER
4063 M:      Hans Verkuil <[email protected]>
4064 L:      [email protected]
4065 T:      git git://linuxtv.org/media_tree.git
4066 W:      https://linuxtv.org
4067 S:      Supported
4068 F:      drivers/media/pci/cobalt/
4069
4070 COCCINELLE/Semantic Patches (SmPL)
4071 M:      Julia Lawall <[email protected]>
4072 M:      Gilles Muller <[email protected]>
4073 M:      Nicolas Palix <[email protected]>
4074 M:      Michal Marek <[email protected]>
4075 L:      [email protected] (moderated for non-subscribers)
4076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4077 W:      http://coccinelle.lip6.fr/
4078 S:      Supported
4079 F:      Documentation/dev-tools/coccinelle.rst
4080 F:      scripts/coccinelle/
4081 F:      scripts/coccicheck
4082
4083 CODA FILE SYSTEM
4084 M:      Jan Harkes <[email protected]>
4085 M:      [email protected]
4086 L:      [email protected]
4087 W:      http://www.coda.cs.cmu.edu/
4088 S:      Maintained
4089 F:      Documentation/filesystems/coda.txt
4090 F:      fs/coda/
4091 F:      include/linux/coda*.h
4092 F:      include/uapi/linux/coda*.h
4093
4094 CODA V4L2 MEM2MEM DRIVER
4095 M:      Philipp Zabel <[email protected]>
4096 L:      [email protected]
4097 S:      Maintained
4098 F:      Documentation/devicetree/bindings/media/coda.txt
4099 F:      drivers/media/platform/coda/
4100
4101 CODE OF CONDUCT
4102 M:      Greg Kroah-Hartman <[email protected]>
4103 S:      Supported
4104 F:      Documentation/process/code-of-conduct.rst
4105 F:      Documentation/process/code-of-conduct-interpretation.rst
4106
4107 COMMON CLK FRAMEWORK
4108 M:      Michael Turquette <[email protected]>
4109 M:      Stephen Boyd <[email protected]>
4110 L:      [email protected]
4111 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4113 S:      Maintained
4114 F:      Documentation/devicetree/bindings/clock/
4115 F:      drivers/clk/
4116 X:      drivers/clk/clkdev.c
4117 F:      include/linux/clk-pr*
4118 F:      include/linux/clk/
4119 F:      include/linux/of_clk.h
4120
4121 COMMON INTERNET FILE SYSTEM (CIFS)
4122 M:      Steve French <[email protected]>
4123 L:      [email protected]
4124 L:      [email protected] (moderated for non-subscribers)
4125 W:      http://linux-cifs.samba.org/
4126 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4127 S:      Supported
4128 F:      Documentation/admin-guide/cifs/
4129 F:      fs/cifs/
4130
4131 COMPACTPCI HOTPLUG CORE
4132 M:      Scott Murray <[email protected]>
4133 L:      [email protected]
4134 S:      Maintained
4135 F:      drivers/pci/hotplug/cpci_hotplug*
4136
4137 COMPACTPCI HOTPLUG GENERIC DRIVER
4138 M:      Scott Murray <[email protected]>
4139 L:      [email protected]
4140 S:      Maintained
4141 F:      drivers/pci/hotplug/cpcihp_generic.c
4142
4143 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4144 M:      Scott Murray <[email protected]>
4145 L:      [email protected]
4146 S:      Maintained
4147 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4148
4149 COMPAL LAPTOP SUPPORT
4150 M:      Cezary Jackiewicz <[email protected]>
4151 L:      [email protected]
4152 S:      Maintained
4153 F:      drivers/platform/x86/compal-laptop.c
4154
4155 COMPILER ATTRIBUTES
4156 M:      Miguel Ojeda <[email protected]>
4157 S:      Maintained
4158 F:      include/linux/compiler_attributes.h
4159
4160 CONEXANT ACCESSRUNNER USB DRIVER
4161 L:      [email protected]
4162 W:      http://accessrunner.sourceforge.net/
4163 S:      Orphan
4164 F:      drivers/usb/atm/cxacru.c
4165
4166 CONFIGFS
4167 M:      Joel Becker <[email protected]>
4168 M:      Christoph Hellwig <[email protected]>
4169 T:      git git://git.infradead.org/users/hch/configfs.git
4170 S:      Supported
4171 F:      fs/configfs/
4172 F:      include/linux/configfs.h
4173
4174 CONNECTOR
4175 M:      Evgeniy Polyakov <[email protected]>
4176 L:      [email protected]
4177 S:      Maintained
4178 F:      drivers/connector/
4179
4180 CONTROL GROUP (CGROUP)
4181 M:      Tejun Heo <[email protected]>
4182 M:      Li Zefan <[email protected]>
4183 M:      Johannes Weiner <[email protected]>
4184 L:      [email protected]
4185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4186 S:      Maintained
4187 F:      Documentation/admin-guide/cgroup-v2.rst
4188 F:      Documentation/admin-guide/cgroup-v1/
4189 F:      include/linux/cgroup*
4190 F:      kernel/cgroup/
4191
4192 CONTROL GROUP - CPUSET
4193 M:      Li Zefan <[email protected]>
4194 L:      [email protected]
4195 W:      http://www.bullopensource.org/cpuset/
4196 W:      http://oss.sgi.com/projects/cpusets/
4197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4198 S:      Maintained
4199 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4200 F:      include/linux/cpuset.h
4201 F:      kernel/cgroup/cpuset.c
4202
4203 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4204 M:      Johannes Weiner <[email protected]>
4205 M:      Michal Hocko <[email protected]>
4206 M:      Vladimir Davydov <[email protected]>
4207 L:      [email protected]
4208 L:      [email protected]
4209 S:      Maintained
4210 F:      mm/memcontrol.c
4211 F:      mm/swap_cgroup.c
4212
4213 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4214 M:      Tejun Heo <[email protected]>
4215 M:      Jens Axboe <[email protected]>
4216 L:      [email protected]
4217 L:      [email protected]
4218 T:      git git://git.kernel.dk/linux-block
4219 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4220 F:      block/blk-cgroup.c
4221 F:      include/linux/blk-cgroup.h
4222 F:      block/blk-throttle.c
4223 F:      block/blk-iolatency.c
4224 F:      block/bfq-cgroup.c
4225
4226 CORETEMP HARDWARE MONITORING DRIVER
4227 M:      Fenghua Yu <[email protected]>
4228 L:      [email protected]
4229 S:      Maintained
4230 F:      Documentation/hwmon/coretemp.rst
4231 F:      drivers/hwmon/coretemp.c
4232
4233 COSA/SRP SYNC SERIAL DRIVER
4234 M:      Jan "Yenya" Kasprzak <[email protected]>
4235 W:      http://www.fi.muni.cz/~kas/cosa/
4236 S:      Maintained
4237 F:      drivers/net/wan/cosa*
4238
4239 COUNTER SUBSYSTEM
4240 M:      William Breathitt Gray <[email protected]>
4241 L:      [email protected]
4242 S:      Maintained
4243 F:      Documentation/ABI/testing/sysfs-bus-counter*
4244 F:      Documentation/driver-api/generic-counter.rst
4245 F:      drivers/counter/
4246 F:      include/linux/counter.h
4247 F:      include/linux/counter_enum.h
4248
4249 CPMAC ETHERNET DRIVER
4250 M:      Florian Fainelli <[email protected]>
4251 L:      [email protected]
4252 S:      Maintained
4253 F:      drivers/net/ethernet/ti/cpmac.c
4254
4255 CPU FREQUENCY SCALING FRAMEWORK
4256 M:      "Rafael J. Wysocki" <[email protected]>
4257 M:      Viresh Kumar <[email protected]>
4258 L:      [email protected]
4259 S:      Maintained
4260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4262 B:      https://bugzilla.kernel.org
4263 F:      Documentation/admin-guide/pm/cpufreq.rst
4264 F:      Documentation/admin-guide/pm/intel_pstate.rst
4265 F:      Documentation/cpu-freq/
4266 F:      Documentation/devicetree/bindings/cpufreq/
4267 F:      drivers/cpufreq/
4268 F:      kernel/sched/cpufreq*.c
4269 F:      include/linux/cpufreq.h
4270 F:      include/linux/sched/cpufreq.h
4271 F:      tools/testing/selftests/cpufreq/
4272
4273 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
4274 M:      Viresh Kumar <[email protected]>
4275 M:      Sudeep Holla <[email protected]>
4276 L:      [email protected]
4277 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4278 S:      Maintained
4279 F:      drivers/cpufreq/arm_big_little.h
4280 F:      drivers/cpufreq/arm_big_little.c
4281
4282 CPU POWER MONITORING SUBSYSTEM
4283 M:      Thomas Renninger <[email protected]>
4284 M:      Shuah Khan <[email protected]>
4285 M:      Shuah Khan <[email protected]>
4286 L:      [email protected]
4287 S:      Maintained
4288 F:      tools/power/cpupower/
4289
4290 CPUID/MSR DRIVER
4291 M:      "H. Peter Anvin" <[email protected]>
4292 S:      Maintained
4293 F:      arch/x86/kernel/cpuid.c
4294 F:      arch/x86/kernel/msr.c
4295
4296 CPUIDLE DRIVER - ARM BIG LITTLE
4297 M:      Lorenzo Pieralisi <[email protected]>
4298 M:      Daniel Lezcano <[email protected]>
4299 L:      [email protected]
4300 L:      [email protected]
4301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4302 S:      Maintained
4303 F:      drivers/cpuidle/cpuidle-big_little.c
4304
4305 CPUIDLE DRIVER - ARM EXYNOS
4306 M:      Bartlomiej Zolnierkiewicz <[email protected]>
4307 M:      Daniel Lezcano <[email protected]>
4308 M:      Kukjin Kim <[email protected]>
4309 L:      [email protected]
4310 L:      [email protected]
4311 S:      Supported
4312 F:      drivers/cpuidle/cpuidle-exynos.c
4313 F:      arch/arm/mach-exynos/pm.c
4314
4315 CPUIDLE DRIVER - ARM PSCI
4316 M:      Lorenzo Pieralisi <[email protected]>
4317 M:      Sudeep Holla <[email protected]>
4318 L:      [email protected]
4319 L:      [email protected]
4320 S:      Supported
4321 F:      drivers/cpuidle/cpuidle-psci.c
4322
4323 CPU IDLE TIME MANAGEMENT FRAMEWORK
4324 M:      "Rafael J. Wysocki" <[email protected]>
4325 M:      Daniel Lezcano <[email protected]>
4326 L:      [email protected]
4327 S:      Maintained
4328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4329 B:      https://bugzilla.kernel.org
4330 F:      Documentation/admin-guide/pm/cpuidle.rst
4331 F:      Documentation/driver-api/pm/cpuidle.rst
4332 F:      drivers/cpuidle/*
4333 F:      include/linux/cpuidle.h
4334
4335 CRAMFS FILESYSTEM
4336 M:      Nicolas Pitre <[email protected]>
4337 S:      Maintained
4338 F:      Documentation/filesystems/cramfs.txt
4339 F:      fs/cramfs/
4340
4341 CRYPTO API
4342 M:      Herbert Xu <[email protected]>
4343 M:      "David S. Miller" <[email protected]>
4344 L:      [email protected]
4345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4347 S:      Maintained
4348 F:      Documentation/crypto/
4349 F:      Documentation/devicetree/bindings/crypto/
4350 F:      arch/*/crypto/
4351 F:      crypto/
4352 F:      drivers/crypto/
4353 F:      include/crypto/
4354 F:      include/linux/crypto*
4355 F:      lib/crypto/
4356
4357 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4358 M:      Neil Horman <[email protected]>
4359 L:      [email protected]
4360 S:      Maintained
4361 F:      crypto/ansi_cprng.c
4362 F:      crypto/rng.c
4363
4364 CS3308 MEDIA DRIVER
4365 M:      Hans Verkuil <[email protected]>
4366 L:      [email protected]
4367 T:      git git://linuxtv.org/media_tree.git
4368 W:      http://linuxtv.org
4369 S:      Odd Fixes
4370 F:      drivers/media/i2c/cs3308.c
4371
4372 CS5535 Audio ALSA driver
4373 M:      Jaya Kumar <[email protected]>
4374 S:      Maintained
4375 F:      sound/pci/cs5535audio/
4376
4377 CSI DRIVERS FOR ALLWINNER V3s
4378 M:      Yong Deng <[email protected]>
4379 L:      [email protected]
4380 T:      git git://linuxtv.org/media_tree.git
4381 S:      Maintained
4382 F:      drivers/media/platform/sunxi/sun6i-csi/
4383 F:      Documentation/devicetree/bindings/media/sun6i-csi.txt
4384
4385 CW1200 WLAN driver
4386 M:      Solomon Peachy <[email protected]>
4387 S:      Maintained
4388 F:      drivers/net/wireless/st/cw1200/
4389
4390 CX18 VIDEO4LINUX DRIVER
4391 M:      Andy Walls <[email protected]>
4392 L:      [email protected] (subscribers-only)
4393 L:      [email protected]
4394 T:      git git://linuxtv.org/media_tree.git
4395 W:      https://linuxtv.org
4396 W:      http://www.ivtvdriver.org/index.php/Cx18
4397 S:      Maintained
4398 F:      Documentation/media/v4l-drivers/cx18*
4399 F:      drivers/media/pci/cx18/
4400 F:      include/uapi/linux/ivtv*
4401
4402 CX2341X MPEG ENCODER HELPER MODULE
4403 M:      Hans Verkuil <[email protected]>
4404 L:      [email protected]
4405 T:      git git://linuxtv.org/media_tree.git
4406 W:      https://linuxtv.org
4407 S:      Maintained
4408 F:      drivers/media/common/cx2341x*
4409 F:      include/media/drv-intf/cx2341x.h
4410
4411 CX24120 MEDIA DRIVER
4412 M:      Jemma Denson <[email protected]>
4413 M:      Patrick Boettcher <[email protected]>
4414 L:      [email protected]
4415 W:      https://linuxtv.org
4416 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4417 S:      Maintained
4418 F:      drivers/media/dvb-frontends/cx24120*
4419
4420 CX88 VIDEO4LINUX DRIVER
4421 M:      Mauro Carvalho Chehab <[email protected]>
4422 L:      [email protected]
4423 W:      https://linuxtv.org
4424 T:      git git://linuxtv.org/media_tree.git
4425 S:      Odd fixes
4426 F:      Documentation/media/v4l-drivers/cx88*
4427 F:      drivers/media/pci/cx88/
4428
4429 CXD2820R MEDIA DRIVER
4430 M:      Antti Palosaari <[email protected]>
4431 L:      [email protected]
4432 W:      https://linuxtv.org
4433 W:      http://palosaari.fi/linux/
4434 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4435 T:      git git://linuxtv.org/anttip/media_tree.git
4436 S:      Maintained
4437 F:      drivers/media/dvb-frontends/cxd2820r*
4438
4439 CXGB3 ETHERNET DRIVER (CXGB3)
4440 M:      Vishal Kulkarni <[email protected]>
4441 L:      [email protected]
4442 W:      http://www.chelsio.com
4443 S:      Supported
4444 F:      drivers/net/ethernet/chelsio/cxgb3/
4445
4446 CXGB3 ISCSI DRIVER (CXGB3I)
4447 M:      Karen Xie <[email protected]>
4448 L:      [email protected]
4449 W:      http://www.chelsio.com
4450 S:      Supported
4451 F:      drivers/scsi/cxgbi/cxgb3i
4452
4453 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
4454 M:      Potnuri Bharat Teja <[email protected]>
4455 L:      [email protected]
4456 W:      http://www.openfabrics.org
4457 S:      Supported
4458 F:      drivers/infiniband/hw/cxgb3/
4459 F:      include/uapi/rdma/cxgb3-abi.h
4460
4461 CXGB4 CRYPTO DRIVER (chcr)
4462 M:      Atul Gupta <[email protected]>
4463 L:      [email protected]
4464 W:      http://www.chelsio.com
4465 S:      Supported
4466 F:      drivers/crypto/chelsio
4467
4468 CXGB4 ETHERNET DRIVER (CXGB4)
4469 M:      Vishal Kulkarni <[email protected]>
4470 L:      [email protected]
4471 W:      http://www.chelsio.com
4472 S:      Supported
4473 F:      drivers/net/ethernet/chelsio/cxgb4/
4474
4475 CXGB4 ISCSI DRIVER (CXGB4I)
4476 M:      Karen Xie <[email protected]>
4477 L:      [email protected]
4478 W:      http://www.chelsio.com
4479 S:      Supported
4480 F:      drivers/scsi/cxgbi/cxgb4i
4481
4482 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4483 M:      Potnuri Bharat Teja <[email protected]>
4484 L:      [email protected]
4485 W:      http://www.openfabrics.org
4486 S:      Supported
4487 F:      drivers/infiniband/hw/cxgb4/
4488 F:      include/uapi/rdma/cxgb4-abi.h
4489
4490 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4491 M:      Casey Leedom <[email protected]>
4492 L:      [email protected]
4493 W:      http://www.chelsio.com
4494 S:      Supported
4495 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4496
4497 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4498 M:      Frederic Barrat <[email protected]>
4499 M:      Andrew Donnellan <[email protected]>
4500 L:      [email protected]
4501 S:      Supported
4502 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4503 F:      drivers/misc/cxl/
4504 F:      include/misc/cxl*
4505 F:      include/uapi/misc/cxl.h
4506 F:      Documentation/powerpc/cxl.rst
4507 F:      Documentation/ABI/testing/sysfs-class-cxl
4508
4509 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4510 M:      Manoj N. Kumar <[email protected]>
4511 M:      Matthew R. Ochs <[email protected]>
4512 M:      Uma Krishnan <[email protected]>
4513 L:      [email protected]
4514 S:      Supported
4515 F:      drivers/scsi/cxlflash/
4516 F:      include/uapi/scsi/cxlflash_ioctl.h
4517 F:      Documentation/powerpc/cxlflash.rst
4518
4519 CYBERPRO FB DRIVER
4520 M:      Russell King <[email protected]>
4521 L:      [email protected] (moderated for non-subscribers)
4522 W:      http://www.armlinux.org.uk/
4523 S:      Maintained
4524 F:      drivers/video/fbdev/cyber2000fb.*
4525
4526 CYCLADES ASYNC MUX DRIVER
4527 W:      http://www.cyclades.com/
4528 S:      Orphan
4529 F:      drivers/tty/cyclades.c
4530 F:      include/linux/cyclades.h
4531 F:      include/uapi/linux/cyclades.h
4532
4533 CYCLADES PC300 DRIVER
4534 W:      http://www.cyclades.com/
4535 S:      Orphan
4536 F:      drivers/net/wan/pc300*
4537
4538 CYPRESS_FIRMWARE MEDIA DRIVER
4539 M:      Antti Palosaari <[email protected]>
4540 L:      [email protected]
4541 W:      https://linuxtv.org
4542 W:      http://palosaari.fi/linux/
4543 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4544 T:      git git://linuxtv.org/anttip/media_tree.git
4545 S:      Maintained
4546 F:      drivers/media/common/cypress_firmware*
4547
4548 CYTTSP TOUCHSCREEN DRIVER
4549 M:      Ferruh Yigit <[email protected]>
4550 L:      [email protected]
4551 S:      Supported
4552 F:      drivers/input/touchscreen/cyttsp*
4553 F:      include/linux/input/cyttsp.h
4554
4555 D-LINK DIR-685 TOUCHKEYS DRIVER
4556 M:      Linus Walleij <[email protected]>
4557 L:      [email protected]
4558 S:      Supported
4559 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4560
4561 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4562 M:      Joshua Kinard <[email protected]>
4563 S:      Maintained
4564 F:      drivers/rtc/rtc-ds1685.c
4565 F:      include/linux/rtc/ds1685.h
4566
4567 DAMA SLAVE for AX.25
4568 M:      Joerg Reuter <[email protected]>
4569 W:      http://yaina.de/jreuter/
4570 W:      http://www.qsl.net/dl1bke/
4571 L:      [email protected]
4572 S:      Maintained
4573 F:      net/ax25/af_ax25.c
4574 F:      net/ax25/ax25_dev.c
4575 F:      net/ax25/ax25_ds_*
4576 F:      net/ax25/ax25_in.c
4577 F:      net/ax25/ax25_out.c
4578 F:      net/ax25/ax25_timer.c
4579 F:      net/ax25/sysctl_net_ax25.c
4580
4581 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4582 L:      [email protected]
4583 S:      Orphan
4584 F:      Documentation/networking/device_drivers/dec/dmfe.txt
4585 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4586
4587 DC390/AM53C974 SCSI driver
4588 M:      Hannes Reinecke <[email protected]>
4589 L:      [email protected]
4590 S:      Maintained
4591 F:      drivers/scsi/am53c974.c
4592
4593 DC395x SCSI driver
4594 M:      Oliver Neukum <[email protected]>
4595 M:      Ali Akcaagac <[email protected]>
4596 M:      Jamie Lenehan <[email protected]>
4597 L:      [email protected]
4598 W:      http://twibble.org/dist/dc395x/
4599 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4600 S:      Maintained
4601 F:      Documentation/scsi/dc395x.txt
4602 F:      drivers/scsi/dc395x.*
4603
4604 DCCP PROTOCOL
4605 M:      Gerrit Renker <[email protected]>
4606 L:      [email protected]
4607 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4608 S:      Maintained
4609 F:      include/linux/dccp.h
4610 F:      include/uapi/linux/dccp.h
4611 F:      include/linux/tfrc.h
4612 F:      net/dccp/
4613
4614 DECnet NETWORK LAYER
4615 W:      http://linux-decnet.sourceforge.net
4616 L:      [email protected]
4617 S:      Orphan
4618 F:      Documentation/networking/decnet.txt
4619 F:      net/decnet/
4620
4621 DECSTATION PLATFORM SUPPORT
4622 M:      "Maciej W. Rozycki" <[email protected]>
4623 L:      [email protected]
4624 W:      http://www.linux-mips.org/wiki/DECstation
4625 S:      Maintained
4626 F:      arch/mips/dec/
4627 F:      arch/mips/include/asm/dec/
4628 F:      arch/mips/include/asm/mach-dec/
4629
4630 DEFXX FDDI NETWORK DRIVER
4631 M:      "Maciej W. Rozycki" <[email protected]>
4632 S:      Maintained
4633 F:      drivers/net/fddi/defxx.*
4634
4635 DELL SMBIOS DRIVER
4636 M:      Pali Rohár <[email protected]>
4637 M:      Mario Limonciello <[email protected]>
4638 L:      [email protected]
4639 S:      Maintained
4640 F:      drivers/platform/x86/dell-smbios.*
4641
4642 DELL SMBIOS SMM DRIVER
4643 M:      Mario Limonciello <[email protected]>
4644 L:      [email protected]
4645 S:      Maintained
4646 F:      drivers/platform/x86/dell-smbios-smm.c
4647
4648 DELL SMBIOS WMI DRIVER
4649 M:      Mario Limonciello <[email protected]>
4650 L:      [email protected]
4651 S:      Maintained
4652 F:      drivers/platform/x86/dell-smbios-wmi.c
4653 F:      tools/wmi/dell-smbios-example.c
4654
4655 DEFZA FDDI NETWORK DRIVER
4656 M:      "Maciej W. Rozycki" <[email protected]>
4657 S:      Maintained
4658 F:      drivers/net/fddi/defza.*
4659
4660 DELL LAPTOP DRIVER
4661 M:      Matthew Garrett <[email protected]>
4662 M:      Pali Rohár <[email protected]>
4663 L:      [email protected]
4664 S:      Maintained
4665 F:      drivers/platform/x86/dell-laptop.c
4666
4667 DELL LAPTOP FREEFALL DRIVER
4668 M:      Pali Rohár <[email protected]>
4669 S:      Maintained
4670 F:      drivers/platform/x86/dell-smo8800.c
4671
4672 DELL LAPTOP RBTN DRIVER
4673 M:      Pali Rohár <[email protected]>
4674 S:      Maintained
4675 F:      drivers/platform/x86/dell-rbtn.*
4676
4677 DELL REMOTE BIOS UPDATE DRIVER
4678 M:      Stuart Hayes <[email protected]>
4679 L:      [email protected]
4680 S:      Maintained
4681 F:      drivers/platform/x86/dell_rbu.c
4682
4683 DELL LAPTOP SMM DRIVER
4684 M:      Pali Rohár <[email protected]>
4685 S:      Maintained
4686 F:      drivers/hwmon/dell-smm-hwmon.c
4687 F:      include/uapi/linux/i8k.h
4688
4689 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4690 M:      Stuart Hayes <[email protected]>
4691 L:      [email protected]
4692 S:      Maintained
4693 F:      Documentation/driver-api/dcdbas.rst
4694 F:      drivers/platform/x86/dcdbas.*
4695
4696 DELL WMI NOTIFICATIONS DRIVER
4697 M:      Matthew Garrett <[email protected]>
4698 M:      Pali Rohár <[email protected]>
4699 S:      Maintained
4700 F:      drivers/platform/x86/dell-wmi.c
4701
4702 DELL WMI DESCRIPTOR DRIVER
4703 M:      Mario Limonciello <[email protected]>
4704 S:      Maintained
4705 F:      drivers/platform/x86/dell-wmi-descriptor.c
4706
4707 DELTA ST MEDIA DRIVER
4708 M:      Hugues Fruchet <[email protected]>
4709 L:      [email protected]
4710 T:      git git://linuxtv.org/media_tree.git
4711 W:      https://linuxtv.org
4712 S:      Supported
4713 F:      drivers/media/platform/sti/delta
4714
4715 DENALI NAND DRIVER
4716 M:      Masahiro Yamada <[email protected]>
4717 L:      [email protected]
4718 S:      Supported
4719 F:      drivers/mtd/nand/raw/denali*
4720
4721 DESIGNWARE EDMA CORE IP DRIVER
4722 M:      Gustavo Pimentel <[email protected]>
4723 L:      [email protected]
4724 S:      Maintained
4725 F:      drivers/dma/dw-edma/
4726 F:      include/linux/dma/edma.h
4727
4728 DESIGNWARE USB2 DRD IP DRIVER
4729 M:      Minas Harutyunyan <[email protected]>
4730 L:      [email protected]
4731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4732 S:      Maintained
4733 F:      drivers/usb/dwc2/
4734
4735 DESIGNWARE USB3 DRD IP DRIVER
4736 M:      Felipe Balbi <[email protected]>
4737 L:      [email protected]
4738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4739 S:      Maintained
4740 F:      drivers/usb/dwc3/
4741
4742 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4743 M:      Andreas Klinger <[email protected]>
4744 L:      [email protected]
4745 S:      Maintained
4746 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4747 F:      drivers/iio/proximity/srf*.c
4748
4749 DEVICE COREDUMP (DEV_COREDUMP)
4750 M:      Johannes Berg <[email protected]>
4751 L:      [email protected]
4752 S:      Maintained
4753 F:      drivers/base/devcoredump.c
4754 F:      include/linux/devcoredump.h
4755
4756 DEVICE FREQUENCY (DEVFREQ)
4757 M:      MyungJoo Ham <[email protected]>
4758 M:      Kyungmin Park <[email protected]>
4759 R:      Chanwoo Choi <[email protected]>
4760 L:      [email protected]
4761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4762 S:      Maintained
4763 F:      drivers/devfreq/
4764 F:      include/linux/devfreq.h
4765 F:      Documentation/devicetree/bindings/devfreq/
4766 F:      include/trace/events/devfreq.h
4767
4768 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4769 M:      Chanwoo Choi <[email protected]>
4770 L:      [email protected]
4771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4772 S:      Supported
4773 F:      drivers/devfreq/event/
4774 F:      drivers/devfreq/devfreq-event.c
4775 F:      include/linux/devfreq-event.h
4776 F:      Documentation/devicetree/bindings/devfreq/event/
4777
4778 DEVICE NUMBER REGISTRY
4779 M:      Torben Mathiasen <[email protected]>
4780 W:      http://lanana.org/docs/device-list/index.html
4781 S:      Maintained
4782
4783 DEVICE-MAPPER  (LVM)
4784 M:      Alasdair Kergon <[email protected]>
4785 M:      Mike Snitzer <[email protected]>
4786 M:      [email protected]
4787 L:      [email protected]
4788 W:      http://sources.redhat.com/dm
4789 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4791 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4792 S:      Maintained
4793 F:      Documentation/admin-guide/device-mapper/
4794 F:      drivers/md/Makefile
4795 F:      drivers/md/Kconfig
4796 F:      drivers/md/dm*
4797 F:      drivers/md/persistent-data/
4798 F:      include/linux/device-mapper.h
4799 F:      include/linux/dm-*.h
4800 F:      include/uapi/linux/dm-*.h
4801
4802 DEVLINK
4803 M:      Jiri Pirko <[email protected]>
4804 L:      [email protected]
4805 S:      Supported
4806 F:      net/core/devlink.c
4807 F:      include/net/devlink.h
4808 F:      include/uapi/linux/devlink.h
4809
4810 DIALOG SEMICONDUCTOR DRIVERS
4811 M:      Support Opensource <[email protected]>
4812 W:      http://www.dialog-semiconductor.com/products
4813 S:      Supported
4814 F:      Documentation/hwmon/da90??.rst
4815 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4816 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4817 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4818 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4819 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
4820 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4821 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4822 F:      drivers/gpio/gpio-da90??.c
4823 F:      drivers/hwmon/da90??-hwmon.c
4824 F:      drivers/iio/adc/da91??-*.c
4825 F:      drivers/input/misc/da90??_onkey.c
4826 F:      drivers/input/touchscreen/da9052_tsi.c
4827 F:      drivers/leds/leds-da90??.c
4828 F:      drivers/mfd/da903x.c
4829 F:      drivers/mfd/da90??-*.c
4830 F:      drivers/mfd/da91??-*.c
4831 F:      drivers/power/supply/da9052-battery.c
4832 F:      drivers/power/supply/da91??-*.c
4833 F:      drivers/regulator/da903x.c
4834 F:      drivers/regulator/da9???-regulator.[ch]
4835 F:      drivers/regulator/slg51000-regulator.[ch]
4836 F:      drivers/thermal/da90??-thermal.c
4837 F:      drivers/rtc/rtc-da90??.c
4838 F:      drivers/video/backlight/da90??_bl.c
4839 F:      drivers/watchdog/da90??_wdt.c
4840 F:      include/linux/mfd/da903x.h
4841 F:      include/linux/mfd/da9052/
4842 F:      include/linux/mfd/da9055/
4843 F:      include/linux/mfd/da9062/
4844 F:      include/linux/mfd/da9063/
4845 F:      include/linux/mfd/da9150/
4846 F:      include/linux/regulator/da9211.h
4847 F:      include/sound/da[79]*.h
4848 F:      sound/soc/codecs/da[79]*.[ch]
4849
4850 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4851 M:      William Breathitt Gray <[email protected]>
4852 L:      [email protected]
4853 S:      Maintained
4854 F:      drivers/gpio/gpio-gpio-mm.c
4855
4856 DIOLAN U2C-12 I2C DRIVER
4857 M:      Guenter Roeck <[email protected]>
4858 L:      [email protected]
4859 S:      Maintained
4860 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4861
4862 FILESYSTEM DIRECT ACCESS (DAX)
4863 M:      Dan Williams <[email protected]>
4864 R:      Matthew Wilcox <[email protected]>
4865 R:      Jan Kara <[email protected]>
4866 L:      [email protected]
4867 L:      [email protected]
4868 S:      Supported
4869 F:      fs/dax.c
4870 F:      include/linux/dax.h
4871 F:      include/trace/events/fs_dax.h
4872
4873 DEVICE DIRECT ACCESS (DAX)
4874 M:      Dan Williams <[email protected]>
4875 M:      Vishal Verma <[email protected]>
4876 M:      Keith Busch <[email protected]>
4877 M:      Dave Jiang <[email protected]>
4878 L:      [email protected]
4879 S:      Supported
4880 F:      drivers/dax/
4881
4882 DIRECTORY NOTIFICATION (DNOTIFY)
4883 M:      Jan Kara <[email protected]>
4884 R:      Amir Goldstein <[email protected]>
4885 L:      [email protected]
4886 S:      Maintained
4887 F:      Documentation/filesystems/dnotify.txt
4888 F:      fs/notify/dnotify/
4889 F:      include/linux/dnotify.h
4890
4891 DISK GEOMETRY AND PARTITION HANDLING
4892 M:      Andries Brouwer <[email protected]>
4893 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4894 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4895 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4896 S:      Maintained
4897
4898 DISKQUOTA
4899 M:      Jan Kara <[email protected]>
4900 S:      Maintained
4901 F:      Documentation/filesystems/quota.txt
4902 F:      fs/quota/
4903 F:      include/linux/quota*.h
4904 F:      include/uapi/linux/quota*.h
4905
4906 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4907 M:      Bernie Thompson <[email protected]>
4908 L:      [email protected]
4909 S:      Maintained
4910 W:      http://plugable.com/category/projects/udlfb/
4911 F:      drivers/video/fbdev/udlfb.c
4912 F:      include/video/udlfb.h
4913 F:      Documentation/fb/udlfb.rst
4914
4915 DISTRIBUTED LOCK MANAGER (DLM)
4916 M:      Christine Caulfield <[email protected]>
4917 M:      David Teigland <[email protected]>
4918 L:      [email protected]
4919 W:      http://sources.redhat.com/cluster/
4920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4921 S:      Supported
4922 F:      fs/dlm/
4923
4924 DMA BUFFER SHARING FRAMEWORK
4925 M:      Sumit Semwal <[email protected]>
4926 S:      Maintained
4927 L:      [email protected]
4928 L:      [email protected]
4929 L:      [email protected] (moderated for non-subscribers)
4930 F:      drivers/dma-buf/
4931 F:      include/linux/dma-buf*
4932 F:      include/linux/reservation.h
4933 F:      include/linux/*fence.h
4934 F:      Documentation/driver-api/dma-buf.rst
4935 T:      git git://anongit.freedesktop.org/drm/drm-misc
4936
4937 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4938 M:      Vinod Koul <[email protected]>
4939 L:      [email protected]
4940 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4941 S:      Maintained
4942 F:      drivers/dma/
4943 F:      include/linux/dmaengine.h
4944 F:      include/linux/of_dma.h
4945 F:      Documentation/devicetree/bindings/dma/
4946 F:      Documentation/driver-api/dmaengine/
4947 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
4948
4949 DMA MAPPING HELPERS
4950 M:      Christoph Hellwig <[email protected]>
4951 M:      Marek Szyprowski <[email protected]>
4952 R:      Robin Murphy <[email protected]>
4953 L:      [email protected]
4954 T:      git git://git.infradead.org/users/hch/dma-mapping.git
4955 W:      http://git.infradead.org/users/hch/dma-mapping.git
4956 S:      Supported
4957 F:      kernel/dma/
4958 F:      include/asm-generic/dma-mapping.h
4959 F:      include/linux/dma-direct.h
4960 F:      include/linux/dma-mapping.h
4961 F:      include/linux/dma-noncoherent.h
4962
4963 DME1737 HARDWARE MONITOR DRIVER
4964 M:      Juerg Haefliger <[email protected]>
4965 L:      [email protected]
4966 S:      Maintained
4967 F:      Documentation/hwmon/dme1737.rst
4968 F:      drivers/hwmon/dme1737.c
4969
4970 DMI/SMBIOS SUPPORT
4971 M:      Jean Delvare <[email protected]>
4972 S:      Maintained
4973 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4974 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
4975 F:      drivers/firmware/dmi-id.c
4976 F:      drivers/firmware/dmi_scan.c
4977 F:      include/linux/dmi.h
4978
4979 DOCUMENTATION
4980 M:      Jonathan Corbet <[email protected]>
4981 L:      [email protected]
4982 S:      Maintained
4983 F:      Documentation/
4984 F:      scripts/documentation-file-ref-check
4985 F:      scripts/kernel-doc
4986 F:      scripts/sphinx-pre-install
4987 X:      Documentation/ABI/
4988 X:      Documentation/firmware-guide/acpi/
4989 X:      Documentation/devicetree/
4990 X:      Documentation/i2c/
4991 X:      Documentation/media/
4992 X:      Documentation/power/
4993 X:      Documentation/spi/
4994 T:      git git://git.lwn.net/linux.git docs-next
4995
4996 DOCUMENTATION/ITALIAN
4997 M:      Federico Vaga <[email protected]>
4998 L:      [email protected]
4999 S:      Maintained
5000 F:      Documentation/translations/it_IT
5001
5002 DOCUMENTATION SCRIPTS
5003 M:      Mauro Carvalho Chehab <[email protected]>
5004 L:      [email protected]
5005 S:      Maintained
5006 F:      scripts/documentation-file-ref-check
5007 F:      scripts/sphinx-pre-install
5008 F:      Documentation/sphinx/parse-headers.pl
5009
5010 DONGWOON DW9714 LENS VOICE COIL DRIVER
5011 M:      Sakari Ailus <[email protected]>
5012 L:      [email protected]
5013 T:      git git://linuxtv.org/media_tree.git
5014 S:      Maintained
5015 F:      drivers/media/i2c/dw9714.c
5016 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5017
5018 DONGWOON DW9807 LENS VOICE COIL DRIVER
5019 M:      Sakari Ailus <[email protected]>
5020 L:      [email protected]
5021 T:      git git://linuxtv.org/media_tree.git
5022 S:      Maintained
5023 F:      drivers/media/i2c/dw9807-vcm.c
5024 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5025
5026 DOUBLETALK DRIVER
5027 M:      "James R. Van Zandt" <[email protected]>
5028 L:      [email protected]
5029 S:      Maintained
5030 F:      drivers/char/dtlk.c
5031 F:      include/linux/dtlk.h
5032
5033 DPAA2 DATAPATH I/O (DPIO) DRIVER
5034 M:      Roy Pledge <[email protected]>
5035 L:      [email protected]
5036 S:      Maintained
5037 F:      drivers/soc/fsl/dpio
5038
5039 DPAA2 ETHERNET DRIVER
5040 M:      Ioana Radulescu <[email protected]>
5041 L:      [email protected]
5042 S:      Maintained
5043 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5044 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5045 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5046 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5047 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5048
5049 DPAA2 ETHERNET SWITCH DRIVER
5050 M:      Ioana Radulescu <[email protected]>
5051 M:      Ioana Ciornei <[email protected]>
5052 L:      [email protected]
5053 S:      Maintained
5054 F:      drivers/staging/fsl-dpaa2/ethsw
5055
5056 DPT_I2O SCSI RAID DRIVER
5057 M:      Adaptec OEM Raid Solutions <[email protected]>
5058 L:      [email protected]
5059 W:      http://www.adaptec.com/
5060 S:      Maintained
5061 F:      drivers/scsi/dpt*
5062 F:      drivers/scsi/dpt/
5063
5064 DRBD DRIVER
5065 M:      Philipp Reisner <[email protected]>
5066 M:      Lars Ellenberg <[email protected]>
5067 L:      [email protected]
5068 W:      http://www.drbd.org
5069 T:      git git://git.linbit.com/linux-drbd.git
5070 T:      git git://git.linbit.com/drbd-8.4.git
5071 S:      Supported
5072 F:      drivers/block/drbd/
5073 F:      lib/lru_cache.c
5074 F:      Documentation/admin-guide/blockdev/
5075
5076 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5077 M:      Greg Kroah-Hartman <[email protected]>
5078 R:      "Rafael J. Wysocki" <[email protected]>
5079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5080 S:      Supported
5081 F:      Documentation/kobject.txt
5082 F:      drivers/base/
5083 F:      fs/debugfs/
5084 F:      fs/sysfs/
5085 F:      include/linux/debugfs.h
5086 F:      include/linux/kobj*
5087 F:      lib/kobj*
5088
5089 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5090 M:      Kevin Hilman <[email protected]>
5091 M:      Nishanth Menon <[email protected]>
5092 S:      Maintained
5093 F:      drivers/power/avs/
5094 F:      include/linux/power/smartreflex.h
5095 L:      [email protected]
5096
5097 DRM DRIVER FOR ARM PL111 CLCD
5098 M:      Eric Anholt <[email protected]>
5099 T:      git git://anongit.freedesktop.org/drm/drm-misc
5100 S:      Supported
5101 F:      drivers/gpu/drm/pl111/
5102
5103 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5104 M:      Linus Walleij <[email protected]>
5105 T:      git git://anongit.freedesktop.org/drm/drm-misc
5106 S:      Maintained
5107 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5108 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
5109
5110 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5111 M:      Dave Airlie <[email protected]>
5112 S:      Odd Fixes
5113 F:      drivers/gpu/drm/ast/
5114
5115 DRM DRIVER FOR ASPEED BMC GFX
5116 M:      Joel Stanley <[email protected]>
5117 L:      [email protected]
5118 T:      git git://anongit.freedesktop.org/drm/drm-misc
5119 S:      Supported
5120 F:      drivers/gpu/drm/aspeed/
5121 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5122
5123 DRM DRIVER FOR BOCHS VIRTUAL GPU
5124 M:      Gerd Hoffmann <[email protected]>
5125 L:      [email protected]
5126 T:      git git://anongit.freedesktop.org/drm/drm-misc
5127 S:      Maintained
5128 F:      drivers/gpu/drm/bochs/
5129
5130 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5131 M:      Linus Walleij <[email protected]>
5132 T:      git git://anongit.freedesktop.org/drm/drm-misc
5133 S:      Maintained
5134 F:      drivers/gpu/drm/tve200/
5135
5136 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5137 M:      Jagan Teki <[email protected]>
5138 S:      Maintained
5139 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5140 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.txt
5141
5142 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5143 M:      Hans de Goede <[email protected]>
5144 T:      git git://anongit.freedesktop.org/drm/drm-misc
5145 S:      Maintained
5146 F:      drivers/gpu/drm/tiny/gm12u320.c
5147
5148 DRM DRIVER FOR ILITEK ILI9225 PANELS
5149 M:      David Lechner <[email protected]>
5150 T:      git git://anongit.freedesktop.org/drm/drm-misc
5151 S:      Maintained
5152 F:      drivers/gpu/drm/tiny/ili9225.c
5153 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5154
5155 DRM DRIVER FOR HX8357D PANELS
5156 M:      Eric Anholt <[email protected]>
5157 T:      git git://anongit.freedesktop.org/drm/drm-misc
5158 S:      Maintained
5159 F:      drivers/gpu/drm/tiny/hx8357d.c
5160 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5161
5162 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5163 S:      Orphan / Obsolete
5164 F:      drivers/gpu/drm/i810/
5165 F:      include/uapi/drm/i810_drm.h
5166
5167 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5168 S:      Orphan / Obsolete
5169 F:      drivers/gpu/drm/mga/
5170 F:      include/uapi/drm/mga_drm.h
5171
5172 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5173 M:      Dave Airlie <[email protected]>
5174 S:      Odd Fixes
5175 F:      drivers/gpu/drm/mgag200/
5176
5177 DRM DRIVER FOR MI0283QT
5178 M:      Noralf Trønnes <[email protected]>
5179 T:      git git://anongit.freedesktop.org/drm/drm-misc
5180 S:      Maintained
5181 F:      drivers/gpu/drm/tiny/mi0283qt.c
5182 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5183
5184 DRM DRIVER FOR MSM ADRENO GPU
5185 M:      Rob Clark <[email protected]>
5186 M:      Sean Paul <[email protected]>
5187 L:      [email protected]
5188 L:      [email protected]
5189 L:      [email protected]
5190 T:      git https://gitlab.freedesktop.org/drm/msm.git
5191 S:      Maintained
5192 F:      drivers/gpu/drm/msm/
5193 F:      include/uapi/drm/msm_drm.h
5194 F:      Documentation/devicetree/bindings/display/msm/
5195
5196 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5197 M:      Ben Skeggs <[email protected]>
5198 L:      [email protected]
5199 L:      [email protected]
5200 T:      git git://github.com/skeggsb/linux
5201 S:      Supported
5202 F:      drivers/gpu/drm/nouveau/
5203 F:      include/uapi/drm/nouveau_drm.h
5204
5205 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5206 M:      Stefan Mavrodiev <[email protected]>
5207 S:      Maintained
5208 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5209 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
5210
5211 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5212 M:      Noralf Trønnes <[email protected]>
5213 T:      git git://anongit.freedesktop.org/drm/drm-misc
5214 S:      Maintained
5215 F:      drivers/gpu/drm/tiny/repaper.c
5216 F:      Documentation/devicetree/bindings/display/repaper.txt
5217
5218 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5219 M:      Dave Airlie <[email protected]>
5220 M:      Gerd Hoffmann <[email protected]>
5221 L:      [email protected]
5222 T:      git git://anongit.freedesktop.org/drm/drm-misc
5223 S:      Obsolete
5224 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5225 F:      drivers/gpu/drm/cirrus/
5226
5227 DRM DRIVER FOR QXL VIRTUAL GPU
5228 M:      Dave Airlie <[email protected]>
5229 M:      Gerd Hoffmann <[email protected]>
5230 L:      [email protected]
5231 L:      [email protected]
5232 T:      git git://anongit.freedesktop.org/drm/drm-misc
5233 S:      Maintained
5234 F:      drivers/gpu/drm/qxl/
5235 F:      include/uapi/drm/qxl_drm.h
5236
5237 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5238 M:      Robert Chiras <[email protected]>
5239 S:      Maintained
5240 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5241 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5242
5243 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5244 S:      Orphan / Obsolete
5245 F:      drivers/gpu/drm/r128/
5246 F:      include/uapi/drm/r128_drm.h
5247
5248 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5249 M:      Guido Günther <[email protected]>
5250 R:      Purism Kernel Team <[email protected]>
5251 S:      Maintained
5252 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5253 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5254
5255 DRM DRIVER FOR SAVAGE VIDEO CARDS
5256 S:      Orphan / Obsolete
5257 F:      drivers/gpu/drm/savage/
5258 F:      include/uapi/drm/savage_drm.h
5259
5260 DRM DRIVER FOR SIS VIDEO CARDS
5261 S:      Orphan / Obsolete
5262 F:      drivers/gpu/drm/sis/
5263 F:      include/uapi/drm/sis_drm.h
5264
5265 DRM DRIVER FOR SITRONIX ST7701 PANELS
5266 M:      Jagan Teki <[email protected]>
5267 S:      Maintained
5268 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5269 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
5270
5271 DRM DRIVER FOR SITRONIX ST7586 PANELS
5272 M:      David Lechner <[email protected]>
5273 T:      git git://anongit.freedesktop.org/drm/drm-misc
5274 S:      Maintained
5275 F:      drivers/gpu/drm/tiny/st7586.c
5276 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5277
5278 DRM DRIVER FOR SITRONIX ST7735R PANELS
5279 M:      David Lechner <[email protected]>
5280 T:      git git://anongit.freedesktop.org/drm/drm-misc
5281 S:      Maintained
5282 F:      drivers/gpu/drm/tiny/st7735r.c
5283 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.txt
5284
5285 DRM DRIVER FOR ST-ERICSSON MCDE
5286 M:      Linus Walleij <[email protected]>
5287 T:      git git://anongit.freedesktop.org/drm/drm-misc
5288 S:      Maintained
5289 F:      drivers/gpu/drm/mcde/
5290 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5291
5292 DRM DRIVER FOR TDFX VIDEO CARDS
5293 S:      Orphan / Obsolete
5294 F:      drivers/gpu/drm/tdfx/
5295
5296 DRM DRIVER FOR TPO TPG110 PANELS
5297 M:      Linus Walleij <[email protected]>
5298 T:      git git://anongit.freedesktop.org/drm/drm-misc
5299 S:      Maintained
5300 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5301 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5302
5303 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5304 M:      Dave Airlie <[email protected]>
5305 R:      Sean Paul <[email protected]>
5306 L:      [email protected]
5307 S:      Odd Fixes
5308 F:      drivers/gpu/drm/udl/
5309 T:      git git://anongit.freedesktop.org/drm/drm-misc
5310
5311 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5312 M:      Hans de Goede <[email protected]>
5313 L:      [email protected]
5314 S:      Maintained
5315 F:      drivers/gpu/drm/vboxvideo/
5316 T:      git git://anongit.freedesktop.org/drm/drm-misc
5317
5318 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5319 M:      Rodrigo Siqueira <[email protected]>
5320 R:      Haneen Mohammed <[email protected]>
5321 R:      Daniel Vetter <[email protected]>
5322 T:      git git://anongit.freedesktop.org/drm/drm-misc
5323 S:      Maintained
5324 L:      [email protected]
5325 F:      drivers/gpu/drm/vkms/
5326 F:      Documentation/gpu/vkms.rst
5327
5328 DRM DRIVER FOR VMWARE VIRTUAL GPU
5329 M:      "VMware Graphics" <[email protected]>
5330 M:      Thomas Hellstrom <[email protected]>
5331 L:      [email protected]
5332 T:      git git://people.freedesktop.org/~thomash/linux
5333 S:      Supported
5334 F:      drivers/gpu/drm/vmwgfx/
5335 F:      include/uapi/drm/vmwgfx_drm.h
5336
5337 DRM DRIVERS
5338 M:      David Airlie <[email protected]>
5339 M:      Daniel Vetter <[email protected]>
5340 L:      [email protected]
5341 T:      git git://anongit.freedesktop.org/drm/drm
5342 B:      https://bugs.freedesktop.org/
5343 C:      irc://chat.freenode.net/dri-devel
5344 S:      Maintained
5345 F:      drivers/gpu/drm/
5346 F:      drivers/gpu/vga/
5347 F:      Documentation/devicetree/bindings/display/
5348 F:      Documentation/devicetree/bindings/gpu/
5349 F:      Documentation/gpu/
5350 F:      include/drm/
5351 F:      include/uapi/drm/
5352 F:      include/linux/vga*
5353
5354 DRM DRIVERS AND MISC GPU PATCHES
5355 M:      Maarten Lankhorst <[email protected]>
5356 M:      Maxime Ripard <[email protected]>
5357 M:      Sean Paul <[email protected]>
5358 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5359 S:      Maintained
5360 T:      git git://anongit.freedesktop.org/drm/drm-misc
5361 F:      Documentation/gpu/
5362 F:      drivers/gpu/vga/
5363 F:      drivers/gpu/drm/*
5364 F:      include/drm/drm*
5365 F:      include/uapi/drm/drm*
5366 F:      include/linux/vga*
5367
5368 DRM DRIVERS FOR ALLWINNER A10
5369 M:      Maxime Ripard <[email protected]>
5370 L:      [email protected]
5371 S:      Supported
5372 F:      drivers/gpu/drm/sun4i/
5373 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
5374 T:      git git://anongit.freedesktop.org/drm/drm-misc
5375
5376 DRM DRIVERS FOR AMLOGIC SOCS
5377 M:      Neil Armstrong <[email protected]>
5378 L:      [email protected]
5379 L:      [email protected]
5380 W:      http://linux-meson.com/
5381 S:      Supported
5382 F:      drivers/gpu/drm/meson/
5383 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5384 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5385 F:      Documentation/gpu/meson.rst
5386 T:      git git://anongit.freedesktop.org/drm/drm-misc
5387
5388 DRM DRIVERS FOR ATMEL HLCDC
5389 M:      Sam Ravnborg <[email protected]>
5390 M:      Boris Brezillon <[email protected]>
5391 L:      [email protected]
5392 S:      Supported
5393 F:      drivers/gpu/drm/atmel-hlcdc/
5394 F:      Documentation/devicetree/bindings/display/atmel/
5395 T:      git git://anongit.freedesktop.org/drm/drm-misc
5396
5397 DRM DRIVERS FOR BRIDGE CHIPS
5398 M:      Andrzej Hajda <[email protected]>
5399 M:      Neil Armstrong <[email protected]>
5400 R:      Laurent Pinchart <[email protected]>
5401 R:      Jonas Karlman <[email protected]>
5402 R:      Jernej Skrabec <[email protected]>
5403 S:      Maintained
5404 T:      git git://anongit.freedesktop.org/drm/drm-misc
5405 F:      drivers/gpu/drm/bridge/
5406
5407 DRM DRIVERS FOR EXYNOS
5408 M:      Inki Dae <[email protected]>
5409 M:      Joonyoung Shim <[email protected]>
5410 M:      Seung-Woo Kim <[email protected]>
5411 M:      Kyungmin Park <[email protected]>
5412 L:      [email protected]
5413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5414 S:      Supported
5415 F:      drivers/gpu/drm/exynos/
5416 F:      include/uapi/drm/exynos_drm.h
5417 F:      Documentation/devicetree/bindings/display/exynos/
5418
5419 DRM DRIVERS FOR FREESCALE DCU
5420 M:      Stefan Agner <[email protected]>
5421 M:      Alison Wang <[email protected]>
5422 L:      [email protected]
5423 S:      Supported
5424 F:      drivers/gpu/drm/fsl-dcu/
5425 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5426 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5427 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19-05b.txt
5428 T:      git git://anongit.freedesktop.org/drm/drm-misc
5429
5430 DRM DRIVERS FOR FREESCALE IMX
5431 M:      Philipp Zabel <[email protected]>
5432 L:      [email protected]
5433 S:      Maintained
5434 F:      drivers/gpu/drm/imx/
5435 F:      drivers/gpu/ipu-v3/
5436 F:      Documentation/devicetree/bindings/display/imx/
5437
5438 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5439 M:      Patrik Jakobsson <[email protected]>
5440 L:      [email protected]
5441 T:      git git://github.com/patjak/drm-gma500
5442 S:      Maintained
5443 F:      drivers/gpu/drm/gma500/
5444
5445 DRM DRIVERS FOR HISILICON
5446 M:      Xinliang Liu <[email protected]>
5447 M:      Rongrong Zou <[email protected]>
5448 R:      Xinwei Kong <[email protected]>
5449 R:      Chen Feng <[email protected]>
5450 L:      [email protected]
5451 T:      git git://github.com/xin3liang/linux.git
5452 S:      Maintained
5453 F:      drivers/gpu/drm/hisilicon/
5454 F:      Documentation/devicetree/bindings/display/hisilicon/
5455
5456 DRM DRIVERS FOR LIMA
5457 M:      Qiang Yu <[email protected]>
5458 L:      [email protected]
5459 L:      [email protected] (moderated for non-subscribers)
5460 S:      Maintained
5461 F:      drivers/gpu/drm/lima/
5462 F:      include/uapi/drm/lima_drm.h
5463 T:      git git://anongit.freedesktop.org/drm/drm-misc
5464
5465 DRM DRIVERS FOR MEDIATEK
5466 M:      CK Hu <[email protected]>
5467 M:      Philipp Zabel <[email protected]>
5468 L:      [email protected]
5469 S:      Supported
5470 F:      drivers/gpu/drm/mediatek/
5471 F:      Documentation/devicetree/bindings/display/mediatek/
5472
5473 DRM DRIVERS FOR NVIDIA TEGRA
5474 M:      Thierry Reding <[email protected]>
5475 L:      [email protected]
5476 L:      [email protected]
5477 T:      git git://anongit.freedesktop.org/tegra/linux.git
5478 S:      Supported
5479 F:      drivers/gpu/drm/tegra/
5480 F:      drivers/gpu/host1x/
5481 F:      include/linux/host1x.h
5482 F:      include/uapi/drm/tegra_drm.h
5483 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5484
5485 DRM DRIVERS FOR RENESAS
5486 M:      Laurent Pinchart <[email protected]>
5487 M:      Kieran Bingham <[email protected]>
5488 L:      [email protected]
5489 L:      [email protected]
5490 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5491 S:      Supported
5492 F:      drivers/gpu/drm/rcar-du/
5493 F:      drivers/gpu/drm/shmobile/
5494 F:      include/linux/platform_data/shmob_drm.h
5495 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5496 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5497 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5498
5499 DRM DRIVERS FOR ROCKCHIP
5500 M:      Sandy Huang <[email protected]>
5501 M:      Heiko Stübner <[email protected]>
5502 L:      [email protected]
5503 S:      Maintained
5504 F:      drivers/gpu/drm/rockchip/
5505 F:      Documentation/devicetree/bindings/display/rockchip/
5506 T:      git git://anongit.freedesktop.org/drm/drm-misc
5507
5508 DRM DRIVERS FOR STI
5509 M:      Benjamin Gaignard <[email protected]>
5510 M:      Vincent Abriou <[email protected]>
5511 L:      [email protected]
5512 T:      git git://anongit.freedesktop.org/drm/drm-misc
5513 S:      Maintained
5514 F:      drivers/gpu/drm/sti
5515 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5516
5517 DRM DRIVERS FOR STM
5518 M:      Yannick Fertre <[email protected]>
5519 M:      Philippe Cornu <[email protected]>
5520 M:      Benjamin Gaignard <[email protected]>
5521 M:      Vincent Abriou <[email protected]>
5522 L:      [email protected]
5523 T:      git git://anongit.freedesktop.org/drm/drm-misc
5524 S:      Maintained
5525 F:      drivers/gpu/drm/stm
5526 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
5527
5528 DRM DRIVERS FOR TI LCDC
5529 M:      Jyri Sarha <[email protected]>
5530 R:      Tomi Valkeinen <[email protected]>
5531 L:      [email protected]
5532 S:      Maintained
5533 F:      drivers/gpu/drm/tilcdc/
5534 F:      Documentation/devicetree/bindings/display/tilcdc/
5535
5536 DRM DRIVERS FOR TI OMAP
5537 M:      Tomi Valkeinen <[email protected]>
5538 L:      [email protected]
5539 S:      Maintained
5540 F:      drivers/gpu/drm/omapdrm/
5541 F:      Documentation/devicetree/bindings/display/ti/
5542
5543 DRM DRIVERS FOR V3D
5544 M:      Eric Anholt <[email protected]>
5545 S:      Supported
5546 F:      drivers/gpu/drm/v3d/
5547 F:      include/uapi/drm/v3d_drm.h
5548 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5549 T:      git git://anongit.freedesktop.org/drm/drm-misc
5550
5551 DRM DRIVERS FOR VC4
5552 M:      Eric Anholt <[email protected]>
5553 T:      git git://github.com/anholt/linux
5554 S:      Supported
5555 F:      drivers/gpu/drm/vc4/
5556 F:      include/uapi/drm/vc4_drm.h
5557 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5558 T:      git git://anongit.freedesktop.org/drm/drm-misc
5559
5560 DRM DRIVERS FOR VIVANTE GPU IP
5561 M:      Lucas Stach <[email protected]>
5562 R:      Russell King <[email protected]>
5563 R:      Christian Gmeiner <[email protected]>
5564 L:      [email protected] (moderated for non-subscribers)
5565 L:      [email protected]
5566 S:      Maintained
5567 F:      drivers/gpu/drm/etnaviv/
5568 F:      include/uapi/drm/etnaviv_drm.h
5569 F:      Documentation/devicetree/bindings/display/etnaviv/
5570
5571 DRM DRIVERS FOR ZTE ZX
5572 M:      Shawn Guo <[email protected]>
5573 L:      [email protected]
5574 S:      Maintained
5575 F:      drivers/gpu/drm/zte/
5576 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5577 T:      git git://anongit.freedesktop.org/drm/drm-misc
5578
5579 DRM PANEL DRIVERS
5580 M:      Thierry Reding <[email protected]>
5581 R:      Sam Ravnborg <[email protected]>
5582 L:      [email protected]
5583 T:      git git://anongit.freedesktop.org/drm/drm-misc
5584 S:      Maintained
5585 F:      drivers/gpu/drm/drm_panel.c
5586 F:      drivers/gpu/drm/panel/
5587 F:      include/drm/drm_panel.h
5588 F:      Documentation/devicetree/bindings/display/panel/
5589
5590 DRM DRIVERS FOR XEN
5591 M:      Oleksandr Andrushchenko <[email protected]>
5592 T:      git git://anongit.freedesktop.org/drm/drm-misc
5593 L:      [email protected]
5594 L:      [email protected] (moderated for non-subscribers)
5595 S:      Supported
5596 F:      drivers/gpu/drm/xen/
5597 F:      Documentation/gpu/xen-front.rst
5598
5599 DRM TTM SUBSYSTEM
5600 M:      Christian Koenig <[email protected]>
5601 M:      Huang Rui <[email protected]>
5602 T:      git git://people.freedesktop.org/~agd5f/linux
5603 S:      Maintained
5604 L:      [email protected]
5605 F:      include/drm/ttm/
5606 F:      drivers/gpu/drm/ttm/
5607
5608 DSBR100 USB FM RADIO DRIVER
5609 M:      Alexey Klimov <[email protected]>
5610 L:      [email protected]
5611 T:      git git://linuxtv.org/media_tree.git
5612 S:      Maintained
5613 F:      drivers/media/radio/dsbr100.c
5614
5615 DT3155 MEDIA DRIVER
5616 M:      Hans Verkuil <[email protected]>
5617 L:      [email protected]
5618 T:      git git://linuxtv.org/media_tree.git
5619 W:      https://linuxtv.org
5620 S:      Odd Fixes
5621 F:      drivers/media/pci/dt3155/
5622
5623 DVB_USB_AF9015 MEDIA DRIVER
5624 M:      Antti Palosaari <[email protected]>
5625 L:      [email protected]
5626 W:      https://linuxtv.org
5627 W:      http://palosaari.fi/linux/
5628 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5629 T:      git git://linuxtv.org/anttip/media_tree.git
5630 S:      Maintained
5631 F:      drivers/media/usb/dvb-usb-v2/af9015*
5632
5633 DVB_USB_AF9035 MEDIA DRIVER
5634 M:      Antti Palosaari <[email protected]>
5635 L:      [email protected]
5636 W:      https://linuxtv.org
5637 W:      http://palosaari.fi/linux/
5638 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5639 T:      git git://linuxtv.org/anttip/media_tree.git
5640 S:      Maintained
5641 F:      drivers/media/usb/dvb-usb-v2/af9035*
5642
5643 DVB_USB_ANYSEE MEDIA DRIVER
5644 M:      Antti Palosaari <[email protected]>
5645 L:      [email protected]
5646 W:      https://linuxtv.org
5647 W:      http://palosaari.fi/linux/
5648 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5649 T:      git git://linuxtv.org/anttip/media_tree.git
5650 S:      Maintained
5651 F:      drivers/media/usb/dvb-usb-v2/anysee*
5652
5653 DVB_USB_AU6610 MEDIA DRIVER
5654 M:      Antti Palosaari <[email protected]>
5655 L:      [email protected]
5656 W:      https://linuxtv.org
5657 W:      http://palosaari.fi/linux/
5658 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5659 T:      git git://linuxtv.org/anttip/media_tree.git
5660 S:      Maintained
5661 F:      drivers/media/usb/dvb-usb-v2/au6610*
5662
5663 DVB_USB_CE6230 MEDIA DRIVER
5664 M:      Antti Palosaari <[email protected]>
5665 L:      [email protected]
5666 W:      https://linuxtv.org
5667 W:      http://palosaari.fi/linux/
5668 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5669 T:      git git://linuxtv.org/anttip/media_tree.git
5670 S:      Maintained
5671 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5672
5673 DVB_USB_CXUSB MEDIA DRIVER
5674 M:      Michael Krufky <[email protected]>
5675 L:      [email protected]
5676 W:      https://linuxtv.org
5677 W:      http://github.com/mkrufky
5678 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5679 T:      git git://linuxtv.org/media_tree.git
5680 S:      Maintained
5681 F:      drivers/media/usb/dvb-usb/cxusb*
5682
5683 DVB_USB_EC168 MEDIA DRIVER
5684 M:      Antti Palosaari <[email protected]>
5685 L:      [email protected]
5686 W:      https://linuxtv.org
5687 W:      http://palosaari.fi/linux/
5688 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5689 T:      git git://linuxtv.org/anttip/media_tree.git
5690 S:      Maintained
5691 F:      drivers/media/usb/dvb-usb-v2/ec168*
5692
5693 DVB_USB_GL861 MEDIA DRIVER
5694 M:      Antti Palosaari <[email protected]>
5695 L:      [email protected]
5696 W:      https://linuxtv.org
5697 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5698 T:      git git://linuxtv.org/anttip/media_tree.git
5699 S:      Maintained
5700 F:      drivers/media/usb/dvb-usb-v2/gl861*
5701
5702 DVB_USB_MXL111SF MEDIA DRIVER
5703 M:      Michael Krufky <[email protected]>
5704 L:      [email protected]
5705 W:      https://linuxtv.org
5706 W:      http://github.com/mkrufky
5707 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5708 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5709 S:      Maintained
5710 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5711
5712 DVB_USB_RTL28XXU MEDIA DRIVER
5713 M:      Antti Palosaari <[email protected]>
5714 L:      [email protected]
5715 W:      https://linuxtv.org
5716 W:      http://palosaari.fi/linux/
5717 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5718 T:      git git://linuxtv.org/anttip/media_tree.git
5719 S:      Maintained
5720 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5721
5722 DVB_USB_V2 MEDIA DRIVER
5723 M:      Antti Palosaari <[email protected]>
5724 L:      [email protected]
5725 W:      https://linuxtv.org
5726 W:      http://palosaari.fi/linux/
5727 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5728 T:      git git://linuxtv.org/anttip/media_tree.git
5729 S:      Maintained
5730 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5731 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5732
5733 DYNAMIC DEBUG
5734 M:      Jason Baron <[email protected]>
5735 S:      Maintained
5736 F:      lib/dynamic_debug.c
5737 F:      include/linux/dynamic_debug.h
5738
5739 DYNAMIC INTERRUPT MODERATION
5740 M:      Tal Gilboa <[email protected]>
5741 S:      Maintained
5742 F:      include/linux/dim.h
5743 F:      lib/dim/
5744
5745 DZ DECSTATION DZ11 SERIAL DRIVER
5746 M:      "Maciej W. Rozycki" <[email protected]>
5747 S:      Maintained
5748 F:      drivers/tty/serial/dz.*
5749
5750 E3X0 POWER BUTTON DRIVER
5751 M:      Moritz Fischer <[email protected]>
5752 L:      [email protected]
5753 W:      http://www.ettus.com
5754 S:      Supported
5755 F:      drivers/input/misc/e3x0-button.c
5756 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
5757
5758 E4000 MEDIA DRIVER
5759 M:      Antti Palosaari <[email protected]>
5760 L:      [email protected]
5761 W:      https://linuxtv.org
5762 W:      http://palosaari.fi/linux/
5763 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5764 T:      git git://linuxtv.org/anttip/media_tree.git
5765 S:      Maintained
5766 F:      drivers/media/tuners/e4000*
5767
5768 EARTH_PT1 MEDIA DRIVER
5769 M:      Akihiro Tsukada <[email protected]>
5770 L:      [email protected]
5771 S:      Odd Fixes
5772 F:      drivers/media/pci/pt1/
5773
5774 EARTH_PT3 MEDIA DRIVER
5775 M:      Akihiro Tsukada <[email protected]>
5776 L:      [email protected]
5777 S:      Odd Fixes
5778 F:      drivers/media/pci/pt3/
5779
5780 EC100 MEDIA DRIVER
5781 M:      Antti Palosaari <[email protected]>
5782 L:      [email protected]
5783 W:      https://linuxtv.org
5784 W:      http://palosaari.fi/linux/
5785 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5786 T:      git git://linuxtv.org/anttip/media_tree.git
5787 S:      Maintained
5788 F:      drivers/media/dvb-frontends/ec100*
5789
5790 ECRYPT FILE SYSTEM
5791 M:      Tyler Hicks <[email protected]>
5792 L:      [email protected]
5793 W:      http://ecryptfs.org
5794 W:      https://launchpad.net/ecryptfs
5795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
5796 S:      Supported
5797 F:      Documentation/filesystems/ecryptfs.txt
5798 F:      fs/ecryptfs/
5799
5800 EDAC-AMD64
5801 M:      Borislav Petkov <[email protected]>
5802 L:      [email protected]
5803 S:      Maintained
5804 F:      drivers/edac/amd64_edac*
5805
5806 EDAC-ARMADA
5807 M:      Jan Luebbe <[email protected]>
5808 L:      [email protected]
5809 S:      Maintained
5810 F:      drivers/edac/armada_xp_*
5811
5812 EDAC-AST2500
5813 M:      Stefan Schaeckeler <[email protected]>
5814 S:      Supported
5815 F:      drivers/edac/aspeed_edac.c
5816 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
5817
5818 EDAC-BLUEFIELD
5819 M:      Shravan Kumar Ramani <[email protected]>
5820 S:      Supported
5821 F:      drivers/edac/bluefield_edac.c
5822
5823 EDAC-CALXEDA
5824 M:      Robert Richter <[email protected]>
5825 L:      [email protected]
5826 S:      Maintained
5827 F:      drivers/edac/highbank*
5828
5829 EDAC-CAVIUM OCTEON
5830 M:      Ralf Baechle <[email protected]>
5831 M:      David Daney <[email protected]>
5832 L:      [email protected]
5833 L:      [email protected]
5834 S:      Supported
5835 F:      drivers/edac/octeon_edac*
5836
5837 EDAC-CAVIUM THUNDERX
5838 M:      David Daney <[email protected]>
5839 M:      Jan Glauber <[email protected]>
5840 L:      [email protected]
5841 S:      Supported
5842 F:      drivers/edac/thunderx_edac*
5843
5844 EDAC-CORE
5845 M:      Borislav Petkov <[email protected]>
5846 M:      Mauro Carvalho Chehab <[email protected]>
5847 M:      Tony Luck <[email protected]>
5848 R:      James Morse <[email protected]>
5849 R:      Robert Richter <[email protected]>
5850 L:      [email protected]
5851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
5852 S:      Supported
5853 F:      Documentation/admin-guide/ras.rst
5854 F:      Documentation/driver-api/edac.rst
5855 F:      drivers/edac/
5856 F:      include/linux/edac.h
5857
5858 EDAC-E752X
5859 M:      Mark Gross <[email protected]>
5860 L:      [email protected]
5861 S:      Maintained
5862 F:      drivers/edac/e752x_edac.c
5863
5864 EDAC-E7XXX
5865 L:      [email protected]
5866 S:      Maintained
5867 F:      drivers/edac/e7xxx_edac.c
5868
5869 EDAC-FSL_DDR
5870 M:      York Sun <[email protected]>
5871 L:      [email protected]
5872 S:      Maintained
5873 F:      drivers/edac/fsl_ddr_edac.*
5874
5875 EDAC-GHES
5876 M:      Mauro Carvalho Chehab <[email protected]>
5877 L:      [email protected]
5878 S:      Maintained
5879 F:      drivers/edac/ghes_edac.c
5880
5881 EDAC-I10NM
5882 M:      Tony Luck <[email protected]>
5883 L:      [email protected]
5884 S:      Maintained
5885 F:      drivers/edac/i10nm_base.c
5886
5887 EDAC-I3000
5888 L:      [email protected]
5889 S:      Orphan
5890 F:      drivers/edac/i3000_edac.c
5891
5892 EDAC-I5000
5893 L:      [email protected]
5894 S:      Maintained
5895 F:      drivers/edac/i5000_edac.c
5896
5897 EDAC-I5400
5898 M:      Mauro Carvalho Chehab <[email protected]>
5899 L:      [email protected]
5900 S:      Maintained
5901 F:      drivers/edac/i5400_edac.c
5902
5903 EDAC-I7300
5904 M:      Mauro Carvalho Chehab <[email protected]>
5905 L:      [email protected]
5906 S:      Maintained
5907 F:      drivers/edac/i7300_edac.c
5908
5909 EDAC-I7CORE
5910 M:      Mauro Carvalho Chehab <[email protected]>
5911 L:      [email protected]
5912 S:      Maintained
5913 F:      drivers/edac/i7core_edac.c
5914
5915 EDAC-I82443BXGX
5916 M:      Tim Small <[email protected]>
5917 L:      [email protected]
5918 S:      Maintained
5919 F:      drivers/edac/i82443bxgx_edac.c
5920
5921 EDAC-I82975X
5922 M:      "Arvind R." <[email protected]>
5923 L:      [email protected]
5924 S:      Maintained
5925 F:      drivers/edac/i82975x_edac.c
5926
5927 EDAC-IE31200
5928 M:      Jason Baron <[email protected]>
5929 L:      [email protected]
5930 S:      Maintained
5931 F:      drivers/edac/ie31200_edac.c
5932
5933 EDAC-MPC85XX
5934 M:      Johannes Thumshirn <[email protected]>
5935 L:      [email protected]
5936 S:      Maintained
5937 F:      drivers/edac/mpc85xx_edac.[ch]
5938
5939 EDAC-PASEMI
5940 M:      Egor Martovetsky <[email protected]>
5941 L:      [email protected]
5942 S:      Maintained
5943 F:      drivers/edac/pasemi_edac.c
5944
5945 EDAC-PND2
5946 M:      Tony Luck <[email protected]>
5947 L:      [email protected]
5948 S:      Maintained
5949 F:      drivers/edac/pnd2_edac.[ch]
5950
5951 EDAC-R82600
5952 M:      Tim Small <[email protected]>
5953 L:      [email protected]
5954 S:      Maintained
5955 F:      drivers/edac/r82600_edac.c
5956
5957 EDAC-SBRIDGE
5958 M:      Tony Luck <[email protected]>
5959 R:      Qiuxu Zhuo <[email protected]>
5960 L:      [email protected]
5961 S:      Maintained
5962 F:      drivers/edac/sb_edac.c
5963
5964 EDAC-SIFIVE
5965 M:      Yash Shah <[email protected]>
5966 L:      [email protected]
5967 S:      Supported
5968 F:      drivers/edac/sifive_edac.c
5969
5970 EDAC-SKYLAKE
5971 M:      Tony Luck <[email protected]>
5972 L:      [email protected]
5973 S:      Maintained
5974 F:      drivers/edac/skx_*.c
5975
5976 EDAC-TI
5977 M:      Tero Kristo <[email protected]>
5978 L:      [email protected]
5979 S:      Maintained
5980 F:      drivers/edac/ti_edac.c
5981
5982 EDAC-QCOM
5983 M:      Channagoud Kadabi <[email protected]>
5984 M:      Venkata Narendra Kumar Gutta <[email protected]>
5985 L:      [email protected]
5986 L:      [email protected]
5987 S:      Maintained
5988 F:      drivers/edac/qcom_edac.c
5989
5990 EDIROL UA-101/UA-1000 DRIVER
5991 M:      Clemens Ladisch <[email protected]>
5992 L:      [email protected] (moderated for non-subscribers)
5993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
5994 S:      Maintained
5995 F:      sound/usb/misc/ua101.c
5996
5997 EFI TEST DRIVER
5998 L:      [email protected]
5999 M:      Ivan Hu <[email protected]>
6000 M:      Ard Biesheuvel <[email protected]>
6001 S:      Maintained
6002 F:      drivers/firmware/efi/test/
6003
6004 EFI VARIABLE FILESYSTEM
6005 M:      Matthew Garrett <[email protected]>
6006 M:      Jeremy Kerr <[email protected]>
6007 M:      Ard Biesheuvel <[email protected]>
6008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6009 L:      [email protected]
6010 S:      Maintained
6011 F:      fs/efivarfs/
6012
6013 EFIFB FRAMEBUFFER DRIVER
6014 L:      [email protected]
6015 M:      Peter Jones <[email protected]>
6016 S:      Maintained
6017 F:      drivers/video/fbdev/efifb.c
6018
6019 EFS FILESYSTEM
6020 W:      http://aeschi.ch.eu.org/efs/
6021 S:      Orphan
6022 F:      fs/efs/
6023
6024 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6025 M:      Douglas Miller <[email protected]>
6026 L:      [email protected]
6027 S:      Maintained
6028 F:      drivers/net/ethernet/ibm/ehea/
6029
6030 EM28XX VIDEO4LINUX DRIVER
6031 M:      Mauro Carvalho Chehab <[email protected]>
6032 L:      [email protected]
6033 W:      https://linuxtv.org
6034 T:      git git://linuxtv.org/media_tree.git
6035 S:      Maintained
6036 F:      drivers/media/usb/em28xx/
6037 F:      Documentation/media/v4l-drivers/em28xx*
6038
6039 EMBEDDED LINUX
6040 M:      Paul Gortmaker <[email protected]>
6041 M:      Matt Mackall <[email protected]>
6042 M:      David Woodhouse <[email protected]>
6043 L:      [email protected]
6044 S:      Maintained
6045
6046 Emulex 10Gbps iSCSI - OneConnect DRIVER
6047 M:      Subbu Seetharaman <[email protected]>
6048 M:      Ketan Mukadam <[email protected]>
6049 M:      Jitendra Bhivare <[email protected]>
6050 L:      [email protected]
6051 W:      http://www.broadcom.com
6052 S:      Supported
6053 F:      drivers/scsi/be2iscsi/
6054
6055 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6056 M:      Sathya Perla <[email protected]>
6057 M:      Ajit Khaparde <[email protected]>
6058 M:      Sriharsha Basavapatna <[email protected]>
6059 M:      Somnath Kotur <[email protected]>
6060 L:      [email protected]
6061 W:      http://www.emulex.com
6062 S:      Supported
6063 F:      drivers/net/ethernet/emulex/benet/
6064
6065 EMULEX ONECONNECT ROCE DRIVER
6066 M:      Selvin Xavier <[email protected]>
6067 M:      Devesh Sharma <[email protected]>
6068 L:      [email protected]
6069 W:      http://www.broadcom.com
6070 S:      Odd Fixes
6071 F:      drivers/infiniband/hw/ocrdma/
6072 F:      include/uapi/rdma/ocrdma-abi.h
6073
6074 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6075 M:      James Smart <[email protected]>
6076 M:      Dick Kennedy <[email protected]>
6077 L:      [email protected]
6078 W:      http://www.broadcom.com
6079 S:      Supported
6080 F:      drivers/scsi/lpfc/
6081
6082 ENE CB710 FLASH CARD READER DRIVER
6083 M:      Michał Mirosław <[email protected]>
6084 S:      Maintained
6085 F:      drivers/misc/cb710/
6086 F:      drivers/mmc/host/cb710-mmc.*
6087 F:      include/linux/cb710.h
6088
6089 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6090 M:      Maxim Levitsky <[email protected]>
6091 S:      Maintained
6092 F:      drivers/media/rc/ene_ir.*
6093
6094 EPSON S1D13XXX FRAMEBUFFER DRIVER
6095 M:      Kristoffer Ericson <[email protected]>
6096 S:      Maintained
6097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6098 F:      drivers/video/fbdev/s1d13xxxfb.c
6099 F:      include/video/s1d13xxxfb.h
6100
6101 EROFS FILE SYSTEM
6102 M:      Gao Xiang <[email protected]>
6103 M:      Chao Yu <[email protected]>
6104 L:      [email protected]
6105 S:      Maintained
6106 F:      fs/erofs/
6107
6108 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6109 M:      Jeff Layton <[email protected]>
6110 S:      Maintained
6111 F:      lib/errseq.c
6112 F:      include/linux/errseq.h
6113
6114 ET131X NETWORK DRIVER
6115 M:      Mark Einon <[email protected]>
6116 S:      Odd Fixes
6117 F:      drivers/net/ethernet/agere/
6118
6119 ETHERNET BRIDGE
6120 M:      Roopa Prabhu <[email protected]>
6121 M:      Nikolay Aleksandrov <[email protected]>
6122 L:      [email protected] (moderated for non-subscribers)
6123 L:      [email protected]
6124 W:      http://www.linuxfoundation.org/en/Net:Bridge
6125 S:      Maintained
6126 F:      include/linux/netfilter_bridge/
6127 F:      net/bridge/
6128
6129 ETHERNET PHY LIBRARY
6130 M:      Andrew Lunn <[email protected]>
6131 M:      Florian Fainelli <[email protected]>
6132 M:      Heiner Kallweit <[email protected]>
6133 L:      [email protected]
6134 S:      Maintained
6135 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6136 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6137 F:      Documentation/devicetree/bindings/net/mdio*
6138 F:      Documentation/networking/phy.rst
6139 F:      drivers/net/phy/
6140 F:      drivers/of/of_mdio.c
6141 F:      drivers/of/of_net.c
6142 F:      include/linux/*mdio*.h
6143 F:      include/linux/of_net.h
6144 F:      include/linux/phy.h
6145 F:      include/linux/phy_fixed.h
6146 F:      include/linux/platform_data/mdio-bcm-unimac.h
6147 F:      include/linux/platform_data/mdio-gpio.h
6148 F:      include/trace/events/mdio.h
6149 F:      include/uapi/linux/mdio.h
6150 F:      include/uapi/linux/mii.h
6151
6152 EXFAT FILE SYSTEM
6153 M:      Valdis Kletnieks <[email protected]>
6154 S:      Maintained
6155 F:      drivers/staging/exfat/
6156
6157 EXT2 FILE SYSTEM
6158 M:      Jan Kara <[email protected]>
6159 L:      [email protected]
6160 S:      Maintained
6161 F:      Documentation/filesystems/ext2.txt
6162 F:      fs/ext2/
6163 F:      include/linux/ext2*
6164
6165 EXT4 FILE SYSTEM
6166 M:      "Theodore Ts'o" <[email protected]>
6167 M:      Andreas Dilger <[email protected]>
6168 L:      [email protected]
6169 W:      http://ext4.wiki.kernel.org
6170 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6172 S:      Maintained
6173 F:      Documentation/filesystems/ext4/
6174 F:      fs/ext4/
6175
6176 Extended Verification Module (EVM)
6177 M:      Mimi Zohar <[email protected]>
6178 L:      [email protected]
6179 S:      Supported
6180 F:      security/integrity/evm/
6181
6182 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6183 M:      Ard Biesheuvel <[email protected]>
6184 L:      [email protected]
6185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6186 S:      Maintained
6187 F:      Documentation/admin-guide/efi-stub.rst
6188 F:      arch/*/kernel/efi.c
6189 F:      arch/x86/boot/compressed/eboot.[ch]
6190 F:      arch/*/include/asm/efi.h
6191 F:      arch/x86/platform/efi/
6192 F:      drivers/firmware/efi/
6193 F:      include/linux/efi*.h
6194 F:      arch/arm/boot/compressed/efi-header.S
6195 F:      arch/arm64/kernel/efi-entry.S
6196
6197 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6198 M:      MyungJoo Ham <[email protected]>
6199 M:      Chanwoo Choi <[email protected]>
6200 L:      [email protected]
6201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6202 S:      Maintained
6203 F:      drivers/extcon/
6204 F:      include/linux/extcon/
6205 F:      include/linux/extcon.h
6206 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6207 F:      Documentation/devicetree/bindings/extcon/
6208
6209 EXYNOS DP DRIVER
6210 M:      Jingoo Han <[email protected]>
6211 L:      [email protected]
6212 S:      Maintained
6213 F:      drivers/gpu/drm/exynos/exynos_dp*
6214
6215 EXYNOS SYSMMU (IOMMU) driver
6216 M:      Marek Szyprowski <[email protected]>
6217 L:      [email protected]
6218 S:      Maintained
6219 F:      drivers/iommu/exynos-iommu.c
6220
6221 EZchip NPS platform support
6222 M:      Vineet Gupta <[email protected]>
6223 M:      Ofer Levi <[email protected]>
6224 S:      Supported
6225 F:      arch/arc/plat-eznps
6226 F:      arch/arc/boot/dts/eznps.dts
6227
6228 F2FS FILE SYSTEM
6229 M:      Jaegeuk Kim <[email protected]>
6230 M:      Chao Yu <[email protected]>
6231 L:      [email protected]
6232 W:      https://f2fs.wiki.kernel.org/
6233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6234 S:      Maintained
6235 F:      Documentation/filesystems/f2fs.txt
6236 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6237 F:      fs/f2fs/
6238 F:      include/linux/f2fs_fs.h
6239 F:      include/trace/events/f2fs.h
6240
6241 F71805F HARDWARE MONITORING DRIVER
6242 M:      Jean Delvare <[email protected]>
6243 L:      [email protected]
6244 S:      Maintained
6245 F:      Documentation/hwmon/f71805f.rst
6246 F:      drivers/hwmon/f71805f.c
6247
6248 FADDR2LINE
6249 M:      Josh Poimboeuf <[email protected]>
6250 S:      Maintained
6251 F:      scripts/faddr2line
6252
6253 FAILOVER MODULE
6254 M:      Sridhar Samudrala <[email protected]>
6255 L:      [email protected]
6256 S:      Supported
6257 F:      net/core/failover.c
6258 F:      include/net/failover.h
6259 F:      Documentation/networking/failover.rst
6260
6261 FANOTIFY
6262 M:      Jan Kara <[email protected]>
6263 R:      Amir Goldstein <[email protected]>
6264 L:      [email protected]
6265 S:      Maintained
6266 F:      fs/notify/fanotify/
6267 F:      include/linux/fanotify.h
6268 F:      include/uapi/linux/fanotify.h
6269
6270 FARSYNC SYNCHRONOUS DRIVER
6271 M:      Kevin Curtis <[email protected]>
6272 W:      http://www.farsite.co.uk/
6273 S:      Supported
6274 F:      drivers/net/wan/farsync.*
6275
6276 FAULT INJECTION SUPPORT
6277 M:      Akinobu Mita <[email protected]>
6278 S:      Supported
6279 F:      Documentation/fault-injection/
6280 F:      lib/fault-inject.c
6281
6282 FBTFT Framebuffer drivers
6283 S:      Orphan
6284 L:      [email protected]
6285 L:      [email protected]
6286 F:      drivers/staging/fbtft/
6287
6288 FC0011 TUNER DRIVER
6289 M:      Michael Buesch <[email protected]>
6290 L:      [email protected]
6291 S:      Maintained
6292 F:      drivers/media/tuners/fc0011.h
6293 F:      drivers/media/tuners/fc0011.c
6294
6295 FC2580 MEDIA DRIVER
6296 M:      Antti Palosaari <[email protected]>
6297 L:      [email protected]
6298 W:      https://linuxtv.org
6299 W:      http://palosaari.fi/linux/
6300 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6301 T:      git git://linuxtv.org/anttip/media_tree.git
6302 S:      Maintained
6303 F:      drivers/media/tuners/fc2580*
6304
6305 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6306 M:      Hannes Reinecke <[email protected]>
6307 L:      [email protected]
6308 W:      www.Open-FCoE.org
6309 S:      Supported
6310 F:      drivers/scsi/libfc/
6311 F:      drivers/scsi/fcoe/
6312 F:      include/scsi/fc/
6313 F:      include/scsi/libfc.h
6314 F:      include/scsi/libfcoe.h
6315 F:      include/uapi/scsi/fc/
6316
6317 FILE LOCKING (flock() and fcntl()/lockf())
6318 M:      Jeff Layton <[email protected]>
6319 M:      "J. Bruce Fields" <[email protected]>
6320 L:      [email protected]
6321 S:      Maintained
6322 F:      include/linux/fcntl.h
6323 F:      include/uapi/linux/fcntl.h
6324 F:      fs/fcntl.c
6325 F:      fs/locks.c
6326
6327 FILESYSTEMS (VFS and infrastructure)
6328 M:      Alexander Viro <[email protected]>
6329 L:      [email protected]
6330 S:      Maintained
6331 F:      fs/*
6332 F:      include/linux/fs.h
6333 F:      include/linux/fs_types.h
6334 F:      include/uapi/linux/fs.h
6335
6336 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6337 M:      Riku Voipio <[email protected]>
6338 L:      [email protected]
6339 S:      Maintained
6340 F:      drivers/hwmon/f75375s.c
6341 F:      include/linux/f75375s.h
6342
6343 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6344 M:      Clemens Ladisch <[email protected]>
6345 M:      Takashi Sakamoto <[email protected]>
6346 L:      [email protected] (moderated for non-subscribers)
6347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6348 S:      Maintained
6349 F:      sound/firewire/
6350 F:      include/uapi/sound/firewire.h
6351
6352 FIREWIRE MEDIA DRIVERS (firedtv)
6353 M:      Stefan Richter <[email protected]>
6354 L:      [email protected]
6355 L:      [email protected]
6356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6357 S:      Maintained
6358 F:      drivers/media/firewire/
6359
6360 FIREWIRE SBP-2 TARGET
6361 M:      Chris Boot <[email protected]>
6362 L:      [email protected]
6363 L:      [email protected]
6364 L:      [email protected]
6365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6366 S:      Maintained
6367 F:      drivers/target/sbp/
6368
6369 FIREWIRE SUBSYSTEM
6370 M:      Stefan Richter <[email protected]>
6371 L:      [email protected]
6372 W:      http://ieee1394.wiki.kernel.org/
6373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6374 S:      Maintained
6375 F:      drivers/firewire/
6376 F:      include/linux/firewire.h
6377 F:      include/uapi/linux/firewire*.h
6378 F:      tools/firewire/
6379
6380 FIRMWARE LOADER (request_firmware)
6381 M:      Luis Chamberlain <[email protected]>
6382 L:      [email protected]
6383 S:      Maintained
6384 F:      Documentation/firmware_class/
6385 F:      drivers/base/firmware_loader/
6386 F:      include/linux/firmware.h
6387
6388 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6389 M:      Joshua Morris <[email protected]>
6390 M:      Philip Kelleher <[email protected]>
6391 S:      Maintained
6392 F:      drivers/block/rsxx/
6393
6394 FLEXTIMER FTM-QUADDEC DRIVER
6395 M:      Patrick Havelange <[email protected]>
6396 L:      [email protected]
6397 S:      Maintained
6398 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6399 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6400 F:      drivers/counter/ftm-quaddec.c
6401
6402 FLOPPY DRIVER
6403 M:      Denis Efremov <[email protected]>
6404 S:      Odd Fixes
6405 L:      [email protected]
6406 F:      drivers/block/floppy.c
6407
6408 FPGA MANAGER FRAMEWORK
6409 M:      Moritz Fischer <[email protected]>
6410 L:      [email protected]
6411 S:      Maintained
6412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6413 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6414 F:      Documentation/fpga/
6415 F:      Documentation/driver-api/fpga/
6416 F:      Documentation/devicetree/bindings/fpga/
6417 F:      drivers/fpga/
6418 F:      include/linux/fpga/
6419 W:      http://www.rocketboards.org
6420
6421 FPGA DFL DRIVERS
6422 M:      Wu Hao <[email protected]>
6423 L:      [email protected]
6424 S:      Maintained
6425 F:      Documentation/fpga/dfl.rst
6426 F:      include/uapi/linux/fpga-dfl.h
6427 F:      drivers/fpga/dfl*
6428
6429 FPU EMULATOR
6430 M:      Bill Metzenthen <[email protected]>
6431 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6432 S:      Maintained
6433 F:      arch/x86/math-emu/
6434
6435 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6436 L:      [email protected]
6437 S:      Orphan
6438 F:      drivers/net/wan/dlci.c
6439 F:      drivers/net/wan/sdla.c
6440
6441 FRAMEBUFFER LAYER
6442 M:      Bartlomiej Zolnierkiewicz <[email protected]>
6443 L:      [email protected]
6444 L:      [email protected]
6445 T:      git git://anongit.freedesktop.org/drm/drm-misc
6446 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6447 S:      Maintained
6448 F:      Documentation/fb/
6449 F:      drivers/video/
6450 F:      include/video/
6451 F:      include/linux/fb.h
6452 F:      include/uapi/video/
6453 F:      include/uapi/linux/fb.h
6454
6455 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6456 M:      Horia Geantă <[email protected]>
6457 M:      Aymen Sghaier <[email protected]>
6458 L:      [email protected]
6459 S:      Maintained
6460 F:      drivers/crypto/caam/
6461 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6462
6463 FREESCALE DIU FRAMEBUFFER DRIVER
6464 M:      Timur Tabi <[email protected]>
6465 L:      [email protected]
6466 S:      Maintained
6467 F:      drivers/video/fbdev/fsl-diu-fb.*
6468
6469 FREESCALE DMA DRIVER
6470 M:      Li Yang <[email protected]>
6471 M:      Zhang Wei <[email protected]>
6472 L:      [email protected]
6473 S:      Maintained
6474 F:      drivers/dma/fsldma.*
6475
6476 FREESCALE ENETC ETHERNET DRIVERS
6477 M:      Claudiu Manoil <[email protected]>
6478 L:      [email protected]
6479 S:      Maintained
6480 F:      drivers/net/ethernet/freescale/enetc/
6481
6482 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6483 M:      Claudiu Manoil <[email protected]>
6484 L:      [email protected]
6485 S:      Maintained
6486 F:      drivers/net/ethernet/freescale/gianfar*
6487 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6488
6489 FREESCALE GPMI NAND DRIVER
6490 M:      Han Xu <[email protected]>
6491 L:      [email protected]
6492 S:      Maintained
6493 F:      drivers/mtd/nand/raw/gpmi-nand/*
6494
6495 FREESCALE I2C CPM DRIVER
6496 M:      Jochen Friedrich <[email protected]>
6497 L:      [email protected]
6498 L:      [email protected]
6499 S:      Maintained
6500 F:      drivers/i2c/busses/i2c-cpm.c
6501
6502 FREESCALE IMX DDR PMU DRIVER
6503 M:      Frank Li <[email protected]>
6504 L:      [email protected]
6505 S:      Maintained
6506 F:      drivers/perf/fsl_imx8_ddr_perf.c
6507 F:      Documentation/admin-guide/perf/imx-ddr.rst
6508 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6509
6510 FREESCALE IMX I2C DRIVER
6511 M:      Oleksij Rempel <[email protected]>
6512 R:      Pengutronix Kernel Team <[email protected]>
6513 L:      [email protected]
6514 S:      Maintained
6515 F:      drivers/i2c/busses/i2c-imx.c
6516 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6517
6518 FREESCALE IMX LPI2C DRIVER
6519 M:      Dong Aisheng <[email protected]>
6520 L:      [email protected]
6521 L:      [email protected]
6522 S:      Maintained
6523 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6524 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6525
6526 FREESCALE IMX / MXC FEC DRIVER
6527 M:      Fugang Duan <[email protected]>
6528 L:      [email protected]
6529 S:      Maintained
6530 F:      drivers/net/ethernet/freescale/fec_main.c
6531 F:      drivers/net/ethernet/freescale/fec_ptp.c
6532 F:      drivers/net/ethernet/freescale/fec.h
6533 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6534
6535 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6536 M:      Sascha Hauer <[email protected]>
6537 R:      Pengutronix Kernel Team <[email protected]>
6538 L:      [email protected]
6539 L:      [email protected] (moderated for non-subscribers)
6540 S:      Maintained
6541 F:      include/linux/platform_data/video-imxfb.h
6542 F:      drivers/video/fbdev/imxfb.c
6543
6544 FREESCALE QORIQ DPAA ETHERNET DRIVER
6545 M:      Madalin Bucur <[email protected]>
6546 L:      [email protected]
6547 S:      Maintained
6548 F:      drivers/net/ethernet/freescale/dpaa
6549
6550 FREESCALE QORIQ DPAA FMAN DRIVER
6551 M:      Madalin Bucur <[email protected]>
6552 L:      [email protected]
6553 S:      Maintained
6554 F:      drivers/net/ethernet/freescale/fman
6555 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6556
6557 FREESCALE QORIQ PTP CLOCK DRIVER
6558 M:      Yangbo Lu <[email protected]>
6559 L:      [email protected]
6560 S:      Maintained
6561 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6562 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6563 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6564 F:      drivers/ptp/ptp_qoriq.c
6565 F:      drivers/ptp/ptp_qoriq_debugfs.c
6566 F:      include/linux/fsl/ptp_qoriq.h
6567 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6568
6569 FREESCALE QUAD SPI DRIVER
6570 M:      Han Xu <[email protected]>
6571 L:      [email protected]
6572 S:      Maintained
6573 F:      drivers/spi/spi-fsl-qspi.c
6574
6575 FREESCALE QUICC ENGINE LIBRARY
6576 M:      Qiang Zhao <[email protected]>
6577 L:      [email protected]
6578 S:      Maintained
6579 F:      drivers/soc/fsl/qe/
6580 F:      include/soc/fsl/*qe*.h
6581 F:      include/soc/fsl/*ucc*.h
6582
6583 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6584 M:      Li Yang <[email protected]>
6585 L:      [email protected]
6586 L:      [email protected]
6587 S:      Maintained
6588 F:      drivers/net/ethernet/freescale/ucc_geth*
6589
6590 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6591 M:      Zhao Qiang <[email protected]>
6592 L:      [email protected]
6593 L:      [email protected]
6594 S:      Maintained
6595 F:      drivers/net/wan/fsl_ucc_hdlc*
6596
6597 FREESCALE QUICC ENGINE UCC UART DRIVER
6598 M:      Timur Tabi <[email protected]>
6599 L:      [email protected]
6600 S:      Maintained
6601 F:      drivers/tty/serial/ucc_uart.c
6602
6603 FREESCALE SOC DRIVERS
6604 M:      Li Yang <[email protected]>
6605 L:      [email protected]
6606 L:      [email protected]
6607 S:      Maintained
6608 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6609 F:      Documentation/devicetree/bindings/soc/fsl/
6610 F:      drivers/soc/fsl/
6611 F:      include/linux/fsl/
6612
6613 FREESCALE SOC FS_ENET DRIVER
6614 M:      Pantelis Antoniou <[email protected]>
6615 L:      [email protected]
6616 L:      [email protected]
6617 S:      Maintained
6618 F:      drivers/net/ethernet/freescale/fs_enet/
6619 F:      include/linux/fs_enet_pd.h
6620
6621 FREESCALE SOC SOUND DRIVERS
6622 M:      Timur Tabi <[email protected]>
6623 M:      Nicolin Chen <[email protected]>
6624 M:      Xiubo Li <[email protected]>
6625 R:      Fabio Estevam <[email protected]>
6626 L:      [email protected] (moderated for non-subscribers)
6627 L:      [email protected]
6628 S:      Maintained
6629 F:      sound/soc/fsl/fsl*
6630 F:      sound/soc/fsl/imx*
6631 F:      sound/soc/fsl/mpc8610_hpcd.c
6632
6633 FREESCALE USB PERIPHERAL DRIVERS
6634 M:      Li Yang <[email protected]>
6635 L:      [email protected]
6636 L:      [email protected]
6637 S:      Maintained
6638 F:      drivers/usb/gadget/udc/fsl*
6639
6640 FREEVXFS FILESYSTEM
6641 M:      Christoph Hellwig <[email protected]>
6642 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6643 S:      Maintained
6644 F:      fs/freevxfs/
6645
6646 FREEZER
6647 M:      "Rafael J. Wysocki" <[email protected]>
6648 M:      Pavel Machek <[email protected]>
6649 L:      [email protected]
6650 S:      Supported
6651 F:      Documentation/power/freezing-of-tasks.rst
6652 F:      include/linux/freezer.h
6653 F:      kernel/freezer.c
6654
6655 FRONTSWAP API
6656 M:      Konrad Rzeszutek Wilk <[email protected]>
6657 L:      [email protected]
6658 S:      Maintained
6659 F:      mm/frontswap.c
6660 F:      include/linux/frontswap.h
6661
6662 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6663 M:      David Howells <[email protected]>
6664 L:      [email protected] (moderated for non-subscribers)
6665 S:      Supported
6666 F:      Documentation/filesystems/caching/
6667 F:      fs/fscache/
6668 F:      include/linux/fscache*.h
6669
6670 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6671 M:      Theodore Y. Ts'o <[email protected]>
6672 M:      Jaegeuk Kim <[email protected]>
6673 M:      Eric Biggers <[email protected]>
6674 L:      [email protected]
6675 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6676 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6677 S:      Supported
6678 F:      fs/crypto/
6679 F:      include/linux/fscrypt*.h
6680 F:      include/uapi/linux/fscrypt.h
6681 F:      Documentation/filesystems/fscrypt.rst
6682
6683 FSI SUBSYSTEM
6684 M:      Jeremy Kerr <[email protected]>
6685 M:      Joel Stanley <[email protected]>
6686 R:      Alistar Popple <[email protected]>
6687 R:      Eddie James <[email protected]>
6688 L:      [email protected]
6689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
6690 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
6691 S:      Supported
6692 F:      drivers/fsi/
6693 F:      include/linux/fsi*.h
6694 F:      include/trace/events/fsi*.h
6695
6696 FSI-ATTACHED I2C DRIVER
6697 M:      Eddie James <[email protected]>
6698 L:      [email protected]
6699 L:      [email protected] (moderated for non-subscribers)
6700 S:      Maintained
6701 F:      drivers/i2c/busses/i2c-fsi.c
6702 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6703
6704 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
6705 M:      Jan Kara <[email protected]>
6706 R:      Amir Goldstein <[email protected]>
6707 L:      [email protected]
6708 S:      Maintained
6709 F:      fs/notify/
6710 F:      include/linux/fsnotify*.h
6711
6712 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
6713 M:      Eric Biggers <[email protected]>
6714 M:      Theodore Y. Ts'o <[email protected]>
6715 L:      [email protected]
6716 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6717 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
6718 S:      Supported
6719 F:      fs/verity/
6720 F:      include/linux/fsverity.h
6721 F:      include/uapi/linux/fsverity.h
6722 F:      Documentation/filesystems/fsverity.rst
6723
6724 FUJITSU LAPTOP EXTRAS
6725 M:      Jonathan Woithe <[email protected]>
6726 L:      [email protected]
6727 S:      Maintained
6728 F:      drivers/platform/x86/fujitsu-laptop.c
6729
6730 FUJITSU M-5MO LS CAMERA ISP DRIVER
6731 M:      Kyungmin Park <[email protected]>
6732 M:      Heungjun Kim <[email protected]>
6733 L:      [email protected]
6734 S:      Maintained
6735 F:      drivers/media/i2c/m5mols/
6736 F:      include/media/i2c/m5mols.h
6737
6738 FUJITSU TABLET EXTRAS
6739 M:      Robert Gerlach <[email protected]>
6740 L:      [email protected]
6741 S:      Maintained
6742 F:      drivers/platform/x86/fujitsu-tablet.c
6743
6744 FUSE: FILESYSTEM IN USERSPACE
6745 M:      Miklos Szeredi <[email protected]>
6746 L:      [email protected]
6747 W:      http://fuse.sourceforge.net/
6748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
6749 S:      Maintained
6750 F:      fs/fuse/
6751 F:      include/uapi/linux/fuse.h
6752 F:      Documentation/filesystems/fuse.txt
6753
6754 FUTEX SUBSYSTEM
6755 M:      Thomas Gleixner <[email protected]>
6756 M:      Ingo Molnar <[email protected]>
6757 R:      Peter Zijlstra <[email protected]>
6758 R:      Darren Hart <[email protected]>
6759 L:      [email protected]
6760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
6761 S:      Maintained
6762 F:      kernel/futex.c
6763 F:      include/asm-generic/futex.h
6764 F:      include/linux/futex.h
6765 F:      include/uapi/linux/futex.h
6766 F:      tools/testing/selftests/futex/
6767 F:      tools/perf/bench/futex*
6768 F:      Documentation/*futex*
6769
6770 GCC PLUGINS
6771 M:      Kees Cook <[email protected]>
6772 R:      Emese Revfy <[email protected]>
6773 L:      [email protected]
6774 S:      Maintained
6775 F:      scripts/gcc-plugins/
6776 F:      scripts/gcc-plugin.sh
6777 F:      scripts/Makefile.gcc-plugins
6778 F:      Documentation/core-api/gcc-plugins.rst
6779
6780 GASKET DRIVER FRAMEWORK
6781 M:      Rob Springer <[email protected]>
6782 M:      Todd Poynor <[email protected]>
6783 M:      Ben Chan <[email protected]>
6784 S:      Maintained
6785 F:      drivers/staging/gasket/
6786
6787 GCOV BASED KERNEL PROFILING
6788 M:      Peter Oberparleiter <[email protected]>
6789 S:      Maintained
6790 F:      kernel/gcov/
6791 F:      Documentation/dev-tools/gcov.rst
6792
6793 GDB KERNEL DEBUGGING HELPER SCRIPTS
6794 M:      Jan Kiszka <[email protected]>
6795 M:      Kieran Bingham <[email protected]>
6796 S:      Supported
6797 F:      scripts/gdb/
6798
6799 GDT SCSI DISK ARRAY CONTROLLER DRIVER
6800 M:      Achim Leubner <[email protected]>
6801 L:      [email protected]
6802 W:      http://www.icp-vortex.com/
6803 S:      Supported
6804 F:      drivers/scsi/gdt*
6805
6806 GEMTEK FM RADIO RECEIVER DRIVER
6807 M:      Hans Verkuil <[email protected]>
6808 L:      [email protected]
6809 T:      git git://linuxtv.org/media_tree.git
6810 W:      https://linuxtv.org
6811 S:      Maintained
6812 F:      drivers/media/radio/radio-gemtek*
6813
6814 GENERIC ARCHITECTURE TOPOLOGY
6815 M:      Sudeep Holla <[email protected]>
6816 L:      [email protected]
6817 S:      Maintained
6818 F:      drivers/base/arch_topology.c
6819 F:      include/linux/arch_topology.h
6820
6821 GENERIC GPIO I2C DRIVER
6822 M:      Wolfram Sang <[email protected]>
6823 S:      Supported
6824 F:      drivers/i2c/busses/i2c-gpio.c
6825 F:      include/linux/platform_data/i2c-gpio.h
6826
6827 GENERIC GPIO I2C MULTIPLEXER DRIVER
6828 M:      Peter Korsgaard <[email protected]>
6829 L:      [email protected]
6830 S:      Supported
6831 F:      drivers/i2c/muxes/i2c-mux-gpio.c
6832 F:      include/linux/platform_data/i2c-mux-gpio.h
6833 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
6834
6835 GENERIC HDLC (WAN) DRIVERS
6836 M:      Krzysztof Halasa <[email protected]>
6837 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
6838 S:      Maintained
6839 F:      drivers/net/wan/c101.c
6840 F:      drivers/net/wan/hd6457*
6841 F:      drivers/net/wan/hdlc*
6842 F:      drivers/net/wan/n2.c
6843 F:      drivers/net/wan/pc300too.c
6844 F:      drivers/net/wan/pci200syn.c
6845 F:      drivers/net/wan/wanxl*
6846
6847 GENERIC INCLUDE/ASM HEADER FILES
6848 M:      Arnd Bergmann <[email protected]>
6849 L:      [email protected]
6850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
6851 S:      Maintained
6852 F:      include/asm-generic/
6853 F:      include/uapi/asm-generic/
6854
6855 GENERIC PHY FRAMEWORK
6856 M:      Kishon Vijay Abraham I <[email protected]>
6857 L:      [email protected]
6858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
6859 S:      Supported
6860 F:      drivers/phy/
6861 F:      include/linux/phy/
6862 F:      Documentation/devicetree/bindings/phy/
6863
6864 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
6865 M:      Wolfram Sang <[email protected]>
6866 S:      Supported
6867 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
6868
6869 GENERIC PM DOMAINS
6870 M:      "Rafael J. Wysocki" <[email protected]>
6871 M:      Kevin Hilman <[email protected]>
6872 M:      Ulf Hansson <[email protected]>
6873 L:      [email protected]
6874 S:      Supported
6875 F:      drivers/base/power/domain*.c
6876 F:      include/linux/pm_domain.h
6877 F:      Documentation/devicetree/bindings/power/power_domain.txt
6878
6879 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
6880 M:      Eugen Hristev <[email protected]>
6881 L:      [email protected]
6882 S:      Maintained
6883 F:      drivers/input/touchscreen/resistive-adc-touch.c
6884
6885 GENERIC UIO DRIVER FOR PCI DEVICES
6886 M:      "Michael S. Tsirkin" <[email protected]>
6887 L:      [email protected]
6888 S:      Supported
6889 F:      drivers/uio/uio_pci_generic.c
6890
6891 GENERIC VDSO LIBRARY:
6892 M:      Andy Lutomirski <[email protected]>
6893 M:      Thomas Gleixner <[email protected]>
6894 M:      Vincenzo Frascino <[email protected]>
6895 L:      [email protected]
6896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
6897 S:      Maintained
6898 F:      lib/vdso/
6899 F:      kernel/time/vsyscall.c
6900 F:      include/vdso/
6901 F:      include/asm-generic/vdso/vsyscall.h
6902
6903 GENWQE (IBM Generic Workqueue Card)
6904 M:      Frank Haverkamp <[email protected]>
6905 S:      Supported
6906 F:      drivers/misc/genwqe/
6907
6908 GET_MAINTAINER SCRIPT
6909 M:      Joe Perches <[email protected]>
6910 S:      Maintained
6911 F:      scripts/get_maintainer.pl
6912
6913 GFS2 FILE SYSTEM
6914 M:      Bob Peterson <[email protected]>
6915 M:      Andreas Gruenbacher <[email protected]>
6916 L:      [email protected]
6917 W:      http://sources.redhat.com/cluster/
6918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
6919 S:      Supported
6920 F:      Documentation/filesystems/gfs2*.txt
6921 F:      fs/gfs2/
6922 F:      include/uapi/linux/gfs2_ondisk.h
6923
6924 GNSS SUBSYSTEM
6925 M:      Johan Hovold <[email protected]>
6926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
6927 S:      Maintained
6928 F:      Documentation/ABI/testing/sysfs-class-gnss
6929 F:      Documentation/devicetree/bindings/gnss/
6930 F:      drivers/gnss/
6931 F:      include/linux/gnss.h
6932
6933 GO7007 MPEG CODEC
6934 M:      Hans Verkuil <[email protected]>
6935 L:      [email protected]
6936 S:      Maintained
6937 F:      drivers/media/usb/go7007/
6938
6939 GOODIX TOUCHSCREEN
6940 M:      Bastien Nocera <[email protected]>
6941 L:      [email protected]
6942 S:      Maintained
6943 F:      drivers/input/touchscreen/goodix.c
6944
6945 GOOGLE ETHERNET DRIVERS
6946 M:      Catherine Sullivan <[email protected]>
6947 R:      Sagi Shahar <[email protected]>
6948 R:      Jon Olson <[email protected]>
6949 L:      [email protected]
6950 S:      Supported
6951 F:      Documentation/networking/device_drivers/google/gve.rst
6952 F:      drivers/net/ethernet/google
6953
6954 GPD POCKET FAN DRIVER
6955 M:      Hans de Goede <[email protected]>
6956 L:      [email protected]
6957 S:      Maintained
6958 F:      drivers/platform/x86/gpd-pocket-fan.c
6959
6960 GPIO ACPI SUPPORT
6961 M:      Mika Westerberg <[email protected]>
6962 M:      Andy Shevchenko <[email protected]>
6963 L:      [email protected]
6964 L:      [email protected]
6965 S:      Maintained
6966 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
6967 F:      drivers/gpio/gpiolib-acpi.c
6968
6969 GPIO IR Transmitter
6970 M:      Sean Young <[email protected]>
6971 L:      [email protected]
6972 S:      Maintained
6973 F:      drivers/media/rc/gpio-ir-tx.c
6974
6975 GPIO MOCKUP DRIVER
6976 M:      Bamvor Jian Zhang <[email protected]>
6977 L:      [email protected]
6978 S:      Maintained
6979 F:      drivers/gpio/gpio-mockup.c
6980 F:      tools/testing/selftests/gpio/
6981
6982 GPIO SUBSYSTEM
6983 M:      Linus Walleij <[email protected]>
6984 M:      Bartosz Golaszewski <[email protected]>
6985 L:      [email protected]
6986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
6987 S:      Maintained
6988 F:      Documentation/devicetree/bindings/gpio/
6989 F:      Documentation/driver-api/gpio/
6990 F:      Documentation/admin-guide/gpio/
6991 F:      Documentation/ABI/testing/gpio-cdev
6992 F:      Documentation/ABI/obsolete/sysfs-gpio
6993 F:      drivers/gpio/
6994 F:      include/linux/gpio/
6995 F:      include/linux/gpio.h
6996 F:      include/linux/of_gpio.h
6997 F:      include/asm-generic/gpio.h
6998 F:      include/uapi/linux/gpio.h
6999 F:      tools/gpio/
7000
7001 GRE DEMULTIPLEXER DRIVER
7002 M:      Dmitry Kozlov <[email protected]>
7003 L:      [email protected]
7004 S:      Maintained
7005 F:      net/ipv4/gre_demux.c
7006 F:      net/ipv4/gre_offload.c
7007 F:      include/net/gre.h
7008
7009 GRETH 10/100/1G Ethernet MAC device driver
7010 M:      Andreas Larsson <[email protected]>
7011 L:      [email protected]
7012 S:      Maintained
7013 F:      drivers/net/ethernet/aeroflex/
7014
7015 GREYBUS AUDIO PROTOCOLS DRIVERS
7016 M:      Vaibhav Agarwal <[email protected]>
7017 M:      Mark Greer <[email protected]>
7018 S:      Maintained
7019 F:      drivers/staging/greybus/audio_apbridgea.c
7020 F:      drivers/staging/greybus/audio_apbridgea.h
7021 F:      drivers/staging/greybus/audio_codec.c
7022 F:      drivers/staging/greybus/audio_codec.h
7023 F:      drivers/staging/greybus/audio_gb.c
7024 F:      drivers/staging/greybus/audio_manager.c
7025 F:      drivers/staging/greybus/audio_manager.h
7026 F:      drivers/staging/greybus/audio_manager_module.c
7027 F:      drivers/staging/greybus/audio_manager_private.h
7028 F:      drivers/staging/greybus/audio_manager_sysfs.c
7029 F:      drivers/staging/greybus/audio_module.c
7030 F:      drivers/staging/greybus/audio_topology.c
7031
7032 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7033 M:      Viresh Kumar <[email protected]>
7034 S:      Maintained
7035 F:      drivers/staging/greybus/authentication.c
7036 F:      drivers/staging/greybus/bootrom.c
7037 F:      drivers/staging/greybus/firmware.h
7038 F:      drivers/staging/greybus/fw-core.c
7039 F:      drivers/staging/greybus/fw-download.c
7040 F:      drivers/staging/greybus/fw-management.c
7041 F:      drivers/staging/greybus/greybus_authentication.h
7042 F:      drivers/staging/greybus/greybus_firmware.h
7043 F:      drivers/staging/greybus/hid.c
7044 F:      drivers/staging/greybus/i2c.c
7045 F:      drivers/staging/greybus/spi.c
7046 F:      drivers/staging/greybus/spilib.c
7047 F:      drivers/staging/greybus/spilib.h
7048
7049 GREYBUS LOOPBACK DRIVER
7050 M:      Bryan O'Donoghue <[email protected]>
7051 S:      Maintained
7052 F:      drivers/staging/greybus/loopback.c
7053
7054 GREYBUS PLATFORM DRIVERS
7055 M:      Vaibhav Hiremath <[email protected]>
7056 S:      Maintained
7057 F:      drivers/staging/greybus/arche-platform.c
7058 F:      drivers/staging/greybus/arche-apb-ctrl.c
7059 F:      drivers/staging/greybus/arche_platform.h
7060
7061 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7062 M:      Rui Miguel Silva <[email protected]>
7063 S:      Maintained
7064 F:      drivers/staging/greybus/sdio.c
7065 F:      drivers/staging/greybus/light.c
7066 F:      drivers/staging/greybus/gpio.c
7067 F:      drivers/staging/greybus/power_supply.c
7068 F:      drivers/staging/greybus/spi.c
7069 F:      drivers/staging/greybus/spilib.c
7070
7071 GREYBUS SUBSYSTEM
7072 M:      Johan Hovold <[email protected]>
7073 M:      Alex Elder <[email protected]>
7074 M:      Greg Kroah-Hartman <[email protected]>
7075 S:      Maintained
7076 F:      drivers/staging/greybus/
7077 F:      drivers/greybus/
7078 F:      include/linux/greybus.h
7079 F:      include/linux/greybus/
7080 L:      [email protected] (moderated for non-subscribers)
7081
7082 GREYBUS UART PROTOCOLS DRIVERS
7083 M:      David Lin <[email protected]>
7084 S:      Maintained
7085 F:      drivers/staging/greybus/uart.c
7086 F:      drivers/staging/greybus/log.c
7087
7088 GS1662 VIDEO SERIALIZER
7089 M:      Charles-Antoine Couret <[email protected]>
7090 L:      [email protected]
7091 T:      git git://linuxtv.org/media_tree.git
7092 S:      Maintained
7093 F:      drivers/media/spi/gs1662.c
7094
7095 GSPCA FINEPIX SUBDRIVER
7096 M:      Frank Zago <[email protected]>
7097 L:      [email protected]
7098 T:      git git://linuxtv.org/media_tree.git
7099 S:      Maintained
7100 F:      drivers/media/usb/gspca/finepix.c
7101
7102 GSPCA GL860 SUBDRIVER
7103 M:      Olivier Lorin <[email protected]>
7104 L:      [email protected]
7105 T:      git git://linuxtv.org/media_tree.git
7106 S:      Maintained
7107 F:      drivers/media/usb/gspca/gl860/
7108
7109 GSPCA M5602 SUBDRIVER
7110 M:      Erik Andren <[email protected]>
7111 L:      [email protected]
7112 T:      git git://linuxtv.org/media_tree.git
7113 S:      Maintained
7114 F:      drivers/media/usb/gspca/m5602/
7115
7116 GSPCA PAC207 SONIXB SUBDRIVER
7117 M:      Hans Verkuil <[email protected]>
7118 L:      [email protected]
7119 T:      git git://linuxtv.org/media_tree.git
7120 S:      Odd Fixes
7121 F:      drivers/media/usb/gspca/pac207.c
7122
7123 GSPCA SN9C20X SUBDRIVER
7124 M:      Brian Johnson <[email protected]>
7125 L:      [email protected]
7126 T:      git git://linuxtv.org/media_tree.git
7127 S:      Maintained
7128 F:      drivers/media/usb/gspca/sn9c20x.c
7129
7130 GSPCA T613 SUBDRIVER
7131 M:      Leandro Costantino <[email protected]>
7132 L:      [email protected]
7133 T:      git git://linuxtv.org/media_tree.git
7134 S:      Maintained
7135 F:      drivers/media/usb/gspca/t613.c
7136
7137 GSPCA USB WEBCAM DRIVER
7138 M:      Hans Verkuil <[email protected]>
7139 L:      [email protected]
7140 T:      git git://linuxtv.org/media_tree.git
7141 S:      Odd Fixes
7142 F:      drivers/media/usb/gspca/
7143
7144 GTP (GPRS Tunneling Protocol)
7145 M:      Pablo Neira Ayuso <[email protected]>
7146 M:      Harald Welte <[email protected]>
7147 L:      [email protected]
7148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7149 S:      Maintained
7150 F:      drivers/net/gtp.c
7151
7152 GUID PARTITION TABLE (GPT)
7153 M:      Davidlohr Bueso <[email protected]>
7154 L:      [email protected]
7155 S:      Maintained
7156 F:      block/partitions/efi.*
7157
7158 H8/300 ARCHITECTURE
7159 M:      Yoshinori Sato <[email protected]>
7160 L:      [email protected] (moderated for non-subscribers)
7161 W:      http://uclinux-h8.sourceforge.jp
7162 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7163 S:      Maintained
7164 F:      arch/h8300/
7165 F:      drivers/clocksource/h8300_*.c
7166 F:      drivers/clk/h8300/
7167 F:      drivers/irqchip/irq-renesas-h8*.c
7168
7169 HABANALABS PCI DRIVER
7170 M:      Oded Gabbay <[email protected]>
7171 T:      git https://github.com/HabanaAI/linux.git
7172 S:      Supported
7173 F:      drivers/misc/habanalabs/
7174 F:      include/uapi/misc/habanalabs.h
7175 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7176 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7177
7178 HACKRF MEDIA DRIVER
7179 M:      Antti Palosaari <[email protected]>
7180 L:      [email protected]
7181 W:      https://linuxtv.org
7182 W:      http://palosaari.fi/linux/
7183 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7184 T:      git git://linuxtv.org/anttip/media_tree.git
7185 S:      Maintained
7186 F:      drivers/media/usb/hackrf/
7187
7188 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7189 M:      Frank Seidel <[email protected]>
7190 L:      [email protected]
7191 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7192 S:      Maintained
7193 F:      drivers/platform/x86/hdaps.c
7194
7195 HARDWARE MONITORING
7196 M:      Jean Delvare <[email protected]>
7197 M:      Guenter Roeck <[email protected]>
7198 L:      [email protected]
7199 W:      http://hwmon.wiki.kernel.org/
7200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7201 S:      Maintained
7202 F:      Documentation/devicetree/bindings/hwmon/
7203 F:      Documentation/hwmon/
7204 F:      drivers/hwmon/
7205 F:      include/linux/hwmon*.h
7206 F:      include/trace/events/hwmon*.h
7207
7208 HARDWARE RANDOM NUMBER GENERATOR CORE
7209 M:      Matt Mackall <[email protected]>
7210 M:      Herbert Xu <[email protected]>
7211 L:      [email protected]
7212 S:      Odd fixes
7213 F:      Documentation/devicetree/bindings/rng/
7214 F:      Documentation/admin-guide/hw_random.rst
7215 F:      drivers/char/hw_random/
7216 F:      include/linux/hw_random.h
7217
7218 HARDWARE TRACING FACILITIES
7219 M:      Alexander Shishkin <[email protected]>
7220 S:      Maintained
7221 F:      drivers/hwtracing/
7222
7223 HARDWARE SPINLOCK CORE
7224 M:      Ohad Ben-Cohen <[email protected]>
7225 M:      Bjorn Andersson <[email protected]>
7226 L:      [email protected]
7227 S:      Maintained
7228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
7229 F:      Documentation/devicetree/bindings/hwlock/
7230 F:      Documentation/hwspinlock.txt
7231 F:      drivers/hwspinlock/
7232 F:      include/linux/hwspinlock.h
7233
7234 HARMONY SOUND DRIVER
7235 L:      [email protected]
7236 S:      Maintained
7237 F:      sound/parisc/harmony.*
7238
7239 HDPVR USB VIDEO ENCODER DRIVER
7240 M:      Hans Verkuil <[email protected]>
7241 L:      [email protected]
7242 T:      git git://linuxtv.org/media_tree.git
7243 W:      https://linuxtv.org
7244 S:      Odd Fixes
7245 F:      drivers/media/usb/hdpvr/
7246
7247 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7248 M:      Jerry Hoemann <[email protected]>
7249 S:      Supported
7250 F:      Documentation/watchdog/hpwdt.rst
7251 F:      drivers/watchdog/hpwdt.c
7252
7253 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7254 M:      Don Brace <[email protected]>
7255 L:      [email protected]
7256 L:      [email protected]
7257 S:      Supported
7258 F:      Documentation/scsi/hpsa.txt
7259 F:      drivers/scsi/hpsa*.[ch]
7260 F:      include/linux/cciss*.h
7261 F:      include/uapi/linux/cciss*.h
7262
7263 HFI1 DRIVER
7264 M:      Mike Marciniszyn <[email protected]>
7265 M:      Dennis Dalessandro <[email protected]>
7266 L:      [email protected]
7267 S:      Supported
7268 F:      drivers/infiniband/hw/hfi1
7269
7270 HFS FILESYSTEM
7271 L:      [email protected]
7272 S:      Orphan
7273 F:      Documentation/filesystems/hfs.txt
7274 F:      fs/hfs/
7275
7276 HFSPLUS FILESYSTEM
7277 L:      [email protected]
7278 S:      Orphan
7279 F:      Documentation/filesystems/hfsplus.txt
7280 F:      fs/hfsplus/
7281
7282 HGA FRAMEBUFFER DRIVER
7283 M:      Ferenc Bakonyi <[email protected]>
7284 L:      [email protected]
7285 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7286 S:      Maintained
7287 F:      drivers/video/fbdev/hgafb.c
7288
7289 HIBERNATION (aka Software Suspend, aka swsusp)
7290 M:      "Rafael J. Wysocki" <[email protected]>
7291 M:      Pavel Machek <[email protected]>
7292 L:      [email protected]
7293 B:      https://bugzilla.kernel.org
7294 S:      Supported
7295 F:      arch/x86/power/
7296 F:      drivers/base/power/
7297 F:      kernel/power/
7298 F:      include/linux/suspend.h
7299 F:      include/linux/freezer.h
7300 F:      include/linux/pm.h
7301 F:      arch/*/include/asm/suspend*.h
7302
7303 HID CORE LAYER
7304 M:      Jiri Kosina <[email protected]>
7305 M:      Benjamin Tissoires <[email protected]>
7306 L:      [email protected]
7307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7308 S:      Maintained
7309 F:      drivers/hid/
7310 F:      include/linux/hid*
7311 F:      include/uapi/linux/hid*
7312
7313 HID SENSOR HUB DRIVERS
7314 M:      Jiri Kosina <[email protected]>
7315 M:      Jonathan Cameron <[email protected]>
7316 M:      Srinivas Pandruvada <[email protected]>
7317 L:      [email protected]
7318 L:      [email protected]
7319 S:      Maintained
7320 F:      Documentation/hid/hid-sensor*
7321 F:      drivers/hid/hid-sensor-*
7322 F:      drivers/iio/*/hid-*
7323 F:      include/linux/hid-sensor-*
7324
7325 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7326 M:      Thomas Gleixner <[email protected]>
7327 L:      [email protected]
7328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7329 S:      Maintained
7330 F:      Documentation/timers/
7331 F:      kernel/time/hrtimer.c
7332 F:      kernel/time/clockevents.c
7333 F:      kernel/time/timer_*.c
7334 F:      include/linux/clockchips.h
7335 F:      include/linux/hrtimer.h
7336
7337 HIGH-SPEED SCC DRIVER FOR AX.25
7338 L:      [email protected]
7339 S:      Orphan
7340 F:      drivers/net/hamradio/dmascc.c
7341 F:      drivers/net/hamradio/scc.c
7342
7343 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7344 M:      HighPoint Linux Team <[email protected]>
7345 W:      http://www.highpoint-tech.com
7346 S:      Supported
7347 F:      Documentation/scsi/hptiop.txt
7348 F:      drivers/scsi/hptiop.c
7349
7350 HIPPI
7351 M:      Jes Sorensen <[email protected]>
7352 L:      [email protected]
7353 S:      Maintained
7354 F:      include/linux/hippidevice.h
7355 F:      include/uapi/linux/if_hippi.h
7356 F:      net/802/hippi.c
7357 F:      drivers/net/hippi/
7358
7359 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7360 M:      Yisen Zhuang <[email protected]>
7361 M:      Salil Mehta <[email protected]>
7362 L:      [email protected]
7363 W:      http://www.hisilicon.com
7364 S:      Maintained
7365 F:      drivers/net/ethernet/hisilicon/hns3/
7366
7367 HISILICON LPC BUS DRIVER
7368 M:      [email protected]
7369 W:      http://www.hisilicon.com
7370 S:      Maintained
7371 F:      drivers/bus/hisi_lpc.c
7372 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7373
7374 HISILICON NETWORK SUBSYSTEM DRIVER
7375 M:      Yisen Zhuang <[email protected]>
7376 M:      Salil Mehta <[email protected]>
7377 L:      [email protected]
7378 W:      http://www.hisilicon.com
7379 S:      Maintained
7380 F:      drivers/net/ethernet/hisilicon/
7381 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7382
7383 HISILICON PMU DRIVER
7384 M:      Shaokun Zhang <[email protected]>
7385 W:      http://www.hisilicon.com
7386 S:      Supported
7387 F:      drivers/perf/hisilicon
7388 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7389
7390 HISILICON ROCE DRIVER
7391 M:      Lijun Ou <[email protected]>
7392 M:      Wei Hu(Xavier) <[email protected]>
7393 L:      [email protected]
7394 S:      Maintained
7395 F:      drivers/infiniband/hw/hns/
7396 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7397
7398 HISILICON SAS Controller
7399 M:      John Garry <[email protected]>
7400 W:      http://www.hisilicon.com
7401 S:      Supported
7402 F:      drivers/scsi/hisi_sas/
7403 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7404
7405 HISILICON QM AND ZIP Controller DRIVER
7406 M:      Zhou Wang <[email protected]>
7407 L:      [email protected]
7408 S:      Maintained
7409 F:      drivers/crypto/hisilicon/qm.c
7410 F:      drivers/crypto/hisilicon/qm.h
7411 F:      drivers/crypto/hisilicon/sgl.c
7412 F:      drivers/crypto/hisilicon/sgl.h
7413 F:      drivers/crypto/hisilicon/zip/
7414 F:      Documentation/ABI/testing/debugfs-hisi-zip
7415
7416 HMM - Heterogeneous Memory Management
7417 M:      Jérôme Glisse <[email protected]>
7418 L:      [email protected]
7419 S:      Maintained
7420 F:      mm/hmm*
7421 F:      include/linux/hmm*
7422 F:      Documentation/vm/hmm.rst
7423
7424 HOST AP DRIVER
7425 M:      Jouni Malinen <[email protected]>
7426 L:      [email protected]
7427 W:      http://w1.fi/hostap-driver.html
7428 S:      Obsolete
7429 F:      drivers/net/wireless/intersil/hostap/
7430
7431 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7432 L:      [email protected]
7433 S:      Orphan
7434 F:      drivers/platform/x86/tc1100-wmi.c
7435
7436 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
7437 M:      Jaroslav Kysela <[email protected]>
7438 S:      Maintained
7439 F:      drivers/net/ethernet/hp/hp100.*
7440
7441 HPET:   High Precision Event Timers driver
7442 M:      Clemens Ladisch <[email protected]>
7443 S:      Maintained
7444 F:      Documentation/timers/hpet.rst
7445 F:      drivers/char/hpet.c
7446 F:      include/linux/hpet.h
7447 F:      include/uapi/linux/hpet.h
7448
7449 HPET:   x86
7450 S:      Orphan
7451 F:      arch/x86/kernel/hpet.c
7452 F:      arch/x86/include/asm/hpet.h
7453
7454 HPFS FILESYSTEM
7455 M:      Mikulas Patocka <[email protected]>
7456 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7457 S:      Maintained
7458 F:      fs/hpfs/
7459
7460 HSI SUBSYSTEM
7461 M:      Sebastian Reichel <[email protected]>
7462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7463 S:      Maintained
7464 F:      Documentation/ABI/testing/sysfs-bus-hsi
7465 F:      Documentation/driver-api/hsi.rst
7466 F:      drivers/hsi/
7467 F:      include/linux/hsi/
7468 F:      include/uapi/linux/hsi/
7469
7470 HSO 3G MODEM DRIVER
7471 L:      [email protected]
7472 S:      Orphan
7473 F:      drivers/net/usb/hso.c
7474
7475 HSR NETWORK PROTOCOL
7476 M:      Arvid Brodin <[email protected]>
7477 L:      [email protected]
7478 S:      Maintained
7479 F:      net/hsr/
7480
7481 HT16K33 LED CONTROLLER DRIVER
7482 M:      Robin van der Gracht <[email protected]>
7483 S:      Maintained
7484 F:      drivers/auxdisplay/ht16k33.c
7485 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7486
7487 HTCPEN TOUCHSCREEN DRIVER
7488 M:      Pau Oliva Fora <[email protected]>
7489 L:      [email protected]
7490 S:      Maintained
7491 F:      drivers/input/touchscreen/htcpen.c
7492
7493 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7494 M:      Lorenzo Bianconi <[email protected]>
7495 L:      [email protected]
7496 W:      http://www.st.com/
7497 S:      Maintained
7498 F:      drivers/iio/humidity/hts221*
7499 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7500
7501 HUAWEI ETHERNET DRIVER
7502 M:      Aviad Krawczyk <[email protected]>
7503 L:      [email protected]
7504 S:      Supported
7505 F:      Documentation/networking/hinic.txt
7506 F:      drivers/net/ethernet/huawei/hinic/
7507
7508 HUGETLB FILESYSTEM
7509 M:      Mike Kravetz <[email protected]>
7510 L:      [email protected]
7511 S:      Maintained
7512 F:      fs/hugetlbfs/
7513 F:      mm/hugetlb.c
7514 F:      include/linux/hugetlb.h
7515 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7516 F:      Documentation/vm/hugetlbfs_reserv.rst
7517 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7518
7519 HVA ST MEDIA DRIVER
7520 M:      Jean-Christophe Trotin <[email protected]>
7521 L:      [email protected]
7522 T:      git git://linuxtv.org/media_tree.git
7523 W:      https://linuxtv.org
7524 S:      Supported
7525 F:      drivers/media/platform/sti/hva
7526
7527 HWPOISON MEMORY FAILURE HANDLING
7528 M:      Naoya Horiguchi <[email protected]>
7529 L:      [email protected]
7530 S:      Maintained
7531 F:      mm/memory-failure.c
7532 F:      mm/hwpoison-inject.c
7533
7534 HYGON PROCESSOR SUPPORT
7535 M:      Pu Wen <[email protected]>
7536 L:      [email protected]
7537 S:      Maintained
7538 F:      arch/x86/kernel/cpu/hygon.c
7539
7540 Hyper-V CORE AND DRIVERS
7541 M:      "K. Y. Srinivasan" <[email protected]>
7542 M:      Haiyang Zhang <[email protected]>
7543 M:      Stephen Hemminger <[email protected]>
7544 M:      Sasha Levin <[email protected]>
7545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7546 L:      [email protected]
7547 S:      Supported
7548 F:      Documentation/networking/device_drivers/microsoft/netvsc.txt
7549 F:      arch/x86/include/asm/mshyperv.h
7550 F:      arch/x86/include/asm/trace/hyperv.h
7551 F:      arch/x86/include/asm/hyperv-tlfs.h
7552 F:      arch/x86/kernel/cpu/mshyperv.c
7553 F:      arch/x86/hyperv
7554 F:      drivers/clocksource/hyperv_timer.c
7555 F:      drivers/hid/hid-hyperv.c
7556 F:      drivers/hv/
7557 F:      drivers/input/serio/hyperv-keyboard.c
7558 F:      drivers/pci/controller/pci-hyperv.c
7559 F:      drivers/pci/controller/pci-hyperv-intf.c
7560 F:      drivers/net/hyperv/
7561 F:      drivers/scsi/storvsc_drv.c
7562 F:      drivers/uio/uio_hv_generic.c
7563 F:      drivers/video/fbdev/hyperv_fb.c
7564 F:      drivers/iommu/hyperv-iommu.c
7565 F:      net/vmw_vsock/hyperv_transport.c
7566 F:      include/clocksource/hyperv_timer.h
7567 F:      include/linux/hyperv.h
7568 F:      include/uapi/linux/hyperv.h
7569 F:      include/asm-generic/mshyperv.h
7570 F:      tools/hv/
7571 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7572
7573 HYPERBUS SUPPORT
7574 M:      Vignesh Raghavendra <[email protected]>
7575 S:      Supported
7576 F:      drivers/mtd/hyperbus/
7577 F:      include/linux/mtd/hyperbus.h
7578 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7579 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7580
7581 HYPERVISOR VIRTUAL CONSOLE DRIVER
7582 L:      [email protected]
7583 S:      Odd Fixes
7584 F:      drivers/tty/hvc/
7585
7586 I2C ACPI SUPPORT
7587 M:      Mika Westerberg <[email protected]>
7588 L:      [email protected]
7589 L:      [email protected]
7590 S:      Maintained
7591 F:      drivers/i2c/i2c-core-acpi.c
7592
7593 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7594 M:      Ajay Gupta <[email protected]>
7595 L:      [email protected]
7596 S:      Maintained
7597 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
7598 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
7599
7600 I2C MUXES
7601 M:      Peter Rosin <[email protected]>
7602 L:      [email protected]
7603 S:      Maintained
7604 F:      Documentation/i2c/i2c-topology.rst
7605 F:      Documentation/i2c/muxes/
7606 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
7607 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
7608 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
7609 F:      drivers/i2c/i2c-mux.c
7610 F:      drivers/i2c/muxes/
7611 F:      include/linux/i2c-mux.h
7612
7613 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
7614 M:      Gregory CLEMENT <[email protected]>
7615 L:      [email protected]
7616 S:      Maintained
7617 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
7618 F:      drivers/i2c/busses/i2c-mv64xxx.c
7619
7620 I2C OVER PARALLEL PORT
7621 M:      Jean Delvare <[email protected]>
7622 L:      [email protected]
7623 S:      Maintained
7624 F:      Documentation/i2c/busses/i2c-parport.rst
7625 F:      Documentation/i2c/busses/i2c-parport-light.rst
7626 F:      drivers/i2c/busses/i2c-parport.c
7627 F:      drivers/i2c/busses/i2c-parport-light.c
7628
7629 I2C SUBSYSTEM
7630 M:      Wolfram Sang <[email protected]>
7631 L:      [email protected]
7632 W:      https://i2c.wiki.kernel.org/
7633 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7635 S:      Maintained
7636 F:      Documentation/devicetree/bindings/i2c/i2c.txt
7637 F:      Documentation/i2c/
7638 F:      drivers/i2c/*
7639 F:      include/linux/i2c.h
7640 F:      include/linux/i2c-dev.h
7641 F:      include/linux/i2c-smbus.h
7642 F:      include/uapi/linux/i2c.h
7643 F:      include/uapi/linux/i2c-*.h
7644
7645 I2C SUBSYSTEM HOST DRIVERS
7646 L:      [email protected]
7647 W:      https://i2c.wiki.kernel.org/
7648 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7650 S:      Odd Fixes
7651 F:      Documentation/devicetree/bindings/i2c/
7652 F:      drivers/i2c/algos/
7653 F:      drivers/i2c/busses/
7654
7655 I2C-TAOS-EVM DRIVER
7656 M:      Jean Delvare <[email protected]>
7657 L:      [email protected]
7658 S:      Maintained
7659 F:      Documentation/i2c/busses/i2c-taos-evm.rst
7660 F:      drivers/i2c/busses/i2c-taos-evm.c
7661
7662 I2C-TINY-USB DRIVER
7663 M:      Till Harbaum <[email protected]>
7664 L:      [email protected]
7665 W:      http://www.harbaum.org/till/i2c_tiny_usb
7666 S:      Maintained
7667 F:      drivers/i2c/busses/i2c-tiny-usb.c
7668
7669 I2C/SMBUS CONTROLLER DRIVERS FOR PC
7670 M:      Jean Delvare <[email protected]>
7671 L:      [email protected]
7672 S:      Maintained
7673 F:      Documentation/i2c/busses/i2c-ali1535.rst
7674 F:      Documentation/i2c/busses/i2c-ali1563.rst
7675 F:      Documentation/i2c/busses/i2c-ali15x3.rst
7676 F:      Documentation/i2c/busses/i2c-amd756.rst
7677 F:      Documentation/i2c/busses/i2c-amd8111.rst
7678 F:      Documentation/i2c/busses/i2c-i801.rst
7679 F:      Documentation/i2c/busses/i2c-nforce2.rst
7680 F:      Documentation/i2c/busses/i2c-piix4.rst
7681 F:      Documentation/i2c/busses/i2c-sis5595.rst
7682 F:      Documentation/i2c/busses/i2c-sis630.rst
7683 F:      Documentation/i2c/busses/i2c-sis96x.rst
7684 F:      Documentation/i2c/busses/i2c-via.rst
7685 F:      Documentation/i2c/busses/i2c-viapro.rst
7686 F:      drivers/i2c/busses/i2c-ali1535.c
7687 F:      drivers/i2c/busses/i2c-ali1563.c
7688 F:      drivers/i2c/busses/i2c-ali15x3.c
7689 F:      drivers/i2c/busses/i2c-amd756.c
7690 F:      drivers/i2c/busses/i2c-amd756-s4882.c
7691 F:      drivers/i2c/busses/i2c-amd8111.c
7692 F:      drivers/i2c/busses/i2c-i801.c
7693 F:      drivers/i2c/busses/i2c-isch.c
7694 F:      drivers/i2c/busses/i2c-nforce2.c
7695 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
7696 F:      drivers/i2c/busses/i2c-piix4.c
7697 F:      drivers/i2c/busses/i2c-sis5595.c
7698 F:      drivers/i2c/busses/i2c-sis630.c
7699 F:      drivers/i2c/busses/i2c-sis96x.c
7700 F:      drivers/i2c/busses/i2c-via.c
7701 F:      drivers/i2c/busses/i2c-viapro.c
7702
7703 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
7704 M:      Hans de Goede <[email protected]>
7705 L:      [email protected]
7706 S:      Maintained
7707 F:      drivers/i2c/busses/i2c-cht-wc.c
7708
7709 I2C/SMBUS ISMT DRIVER
7710 M:      Seth Heasley <[email protected]>
7711 M:      Neil Horman <[email protected]>
7712 L:      [email protected]
7713 F:      drivers/i2c/busses/i2c-ismt.c
7714 F:      Documentation/i2c/busses/i2c-ismt.rst
7715
7716 I2C/SMBUS STUB DRIVER
7717 M:      Jean Delvare <[email protected]>
7718 L:      [email protected]
7719 S:      Maintained
7720 F:      drivers/i2c/i2c-stub.c
7721
7722 I3C SUBSYSTEM
7723 M:      Boris Brezillon <[email protected]>
7724 L:      [email protected]
7725 C:      irc://chat.freenode.net/linux-i3c
7726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
7727 S:      Maintained
7728 F:      Documentation/ABI/testing/sysfs-bus-i3c
7729 F:      Documentation/devicetree/bindings/i3c/
7730 F:      Documentation/driver-api/i3c
7731 F:      drivers/i3c/
7732 F:      include/linux/i3c/
7733
7734 I3C DRIVER FOR SYNOPSYS DESIGNWARE
7735 M:      Vitor Soares <[email protected]>
7736 S:      Maintained
7737 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
7738 F:      drivers/i3c/master/dw*
7739
7740 IA64 (Itanium) PLATFORM
7741 M:      Tony Luck <[email protected]>
7742 M:      Fenghua Yu <[email protected]>
7743 L:      [email protected]
7744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
7745 S:      Maintained
7746 F:      arch/ia64/
7747
7748 IBM Power 842 compression accelerator
7749 M:      Haren Myneni <[email protected]>
7750 S:      Supported
7751 F:      drivers/crypto/nx/Makefile
7752 F:      drivers/crypto/nx/Kconfig
7753 F:      drivers/crypto/nx/nx-842*
7754 F:      include/linux/sw842.h
7755 F:      crypto/842.c
7756 F:      lib/842/
7757
7758 IBM Power in-Nest Crypto Acceleration
7759 M:      Breno Leitão <[email protected]>
7760 M:      Nayna Jain <[email protected]>
7761 M:      Paulo Flabiano Smorigo <[email protected]>
7762 L:      [email protected]
7763 S:      Supported
7764 F:      drivers/crypto/nx/Makefile
7765 F:      drivers/crypto/nx/Kconfig
7766 F:      drivers/crypto/nx/nx-aes*
7767 F:      drivers/crypto/nx/nx-sha*
7768 F:      drivers/crypto/nx/nx.*
7769 F:      drivers/crypto/nx/nx_csbcpb.h
7770 F:      drivers/crypto/nx/nx_debugfs.c
7771
7772 IBM Power Linux RAID adapter
7773 M:      Brian King <[email protected]>
7774 S:      Supported
7775 F:      drivers/scsi/ipr.*
7776
7777 IBM Power SRIOV Virtual NIC Device Driver
7778 M:      Thomas Falcon <[email protected]>
7779 M:      John Allen <[email protected]>
7780 L:      [email protected]
7781 S:      Supported
7782 F:      drivers/net/ethernet/ibm/ibmvnic.*
7783
7784 IBM Power Virtual Accelerator Switchboard
7785 M:      Sukadev Bhattiprolu <[email protected]>
7786 L:      [email protected]
7787 S:      Supported
7788 F:      arch/powerpc/platforms/powernv/vas*
7789 F:      arch/powerpc/platforms/powernv/copy-paste.h
7790 F:      arch/powerpc/include/asm/vas.h
7791
7792 IBM Power Virtual Ethernet Device Driver
7793 M:      Thomas Falcon <[email protected]>
7794 L:      [email protected]
7795 S:      Supported
7796 F:      drivers/net/ethernet/ibm/ibmveth.*
7797
7798 IBM Power Virtual FC Device Drivers
7799 M:      Tyrel Datwyler <[email protected]>
7800 L:      [email protected]
7801 S:      Supported
7802 F:      drivers/scsi/ibmvscsi/ibmvfc*
7803
7804 IBM Power Virtual Management Channel Driver
7805 M:      Steven Royer <[email protected]>
7806 S:      Supported
7807 F:      drivers/misc/ibmvmc.*
7808
7809 IBM Power Virtual SCSI Device Drivers
7810 M:      Tyrel Datwyler <[email protected]>
7811 L:      [email protected]
7812 S:      Supported
7813 F:      drivers/scsi/ibmvscsi/ibmvscsi*
7814 F:      include/scsi/viosrp.h
7815
7816 IBM Power Virtual SCSI Device Target Driver
7817 M:      Michael Cyr <[email protected]>
7818 L:      [email protected]
7819 L:      [email protected]
7820 S:      Supported
7821 F:      drivers/scsi/ibmvscsi_tgt/
7822
7823 IBM Power VMX Cryptographic instructions
7824 M:      Breno Leitão <[email protected]>
7825 M:      Nayna Jain <[email protected]>
7826 M:      Paulo Flabiano Smorigo <[email protected]>
7827 L:      [email protected]
7828 S:      Supported
7829 F:      drivers/crypto/vmx/Makefile
7830 F:      drivers/crypto/vmx/Kconfig
7831 F:      drivers/crypto/vmx/vmx.c
7832 F:      drivers/crypto/vmx/aes*
7833 F:      drivers/crypto/vmx/ghash*
7834 F:      drivers/crypto/vmx/ppc-xlate.pl
7835
7836 IBM Power PCI Hotplug 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/rpaphp*
7842
7843 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
7844 M:      Tyrel Datwyler <[email protected]>
7845 L:      [email protected]
7846 L:      [email protected]
7847 S:      Supported
7848 F:      drivers/pci/hotplug/rpadlpar*
7849
7850 IBM ServeRAID RAID DRIVER
7851 S:      Orphan
7852 F:      drivers/scsi/ips.*
7853
7854 ICH LPC AND GPIO DRIVER
7855 M:      Peter Tyser <[email protected]>
7856 S:      Maintained
7857 F:      drivers/mfd/lpc_ich.c
7858 F:      drivers/gpio/gpio-ich.c
7859
7860 IDE SUBSYSTEM
7861 M:      "David S. Miller" <[email protected]>
7862 L:      [email protected]
7863 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
7864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
7865 S:      Maintained
7866 F:      Documentation/ide/
7867 F:      drivers/ide/
7868 F:      include/linux/ide.h
7869
7870 IDE/ATAPI DRIVERS
7871 M:      Borislav Petkov <[email protected]>
7872 L:      [email protected]
7873 S:      Maintained
7874 F:      Documentation/cdrom/ide-cd.rst
7875 F:      drivers/ide/ide-cd*
7876
7877 IDEAPAD LAPTOP EXTRAS DRIVER
7878 M:      Ike Panhc <[email protected]>
7879 L:      [email protected]
7880 W:      http://launchpad.net/ideapad-laptop
7881 S:      Maintained
7882 F:      drivers/platform/x86/ideapad-laptop.c
7883
7884 IDEAPAD LAPTOP SLIDEBAR DRIVER
7885 M:      Andrey Moiseev <[email protected]>
7886 L:      [email protected]
7887 W:      https://github.com/o2genum/ideapad-slidebar
7888 S:      Maintained
7889 F:      drivers/input/misc/ideapad_slidebar.c
7890
7891 IDT VersaClock 5 CLOCK DRIVER
7892 M:      Marek Vasut <[email protected]>
7893 S:      Maintained
7894 F:      drivers/clk/clk-versaclock5.c
7895
7896 IEEE 802.15.4 SUBSYSTEM
7897 M:      Alexander Aring <[email protected]>
7898 M:      Stefan Schmidt <[email protected]>
7899 L:      [email protected]
7900 W:      http://wpan.cakelab.org/
7901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
7902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
7903 S:      Maintained
7904 F:      net/ieee802154/
7905 F:      net/mac802154/
7906 F:      drivers/net/ieee802154/
7907 F:      include/linux/nl802154.h
7908 F:      include/linux/ieee802154.h
7909 F:      include/net/nl802154.h
7910 F:      include/net/mac802154.h
7911 F:      include/net/af_ieee802154.h
7912 F:      include/net/cfg802154.h
7913 F:      include/net/ieee802154_netdev.h
7914 F:      Documentation/networking/ieee802154.rst
7915
7916 IFE PROTOCOL
7917 M:      Yotam Gigi <[email protected]>
7918 M:      Jamal Hadi Salim <[email protected]>
7919 F:      net/ife
7920 F:      include/net/ife.h
7921 F:      include/uapi/linux/ife.h
7922
7923 IGORPLUG-USB IR RECEIVER
7924 M:      Sean Young <[email protected]>
7925 L:      [email protected]
7926 S:      Maintained
7927 F:      drivers/media/rc/igorplugusb.c
7928
7929 IGUANAWORKS USB IR TRANSCEIVER
7930 M:      Sean Young <[email protected]>
7931 L:      [email protected]
7932 S:      Maintained
7933 F:      drivers/media/rc/iguanair.c
7934
7935 IIO DIGITAL POTENTIOMETER DAC
7936 M:      Peter Rosin <[email protected]>
7937 L:      [email protected]
7938 S:      Maintained
7939 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
7940 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
7941 F:      drivers/iio/dac/dpot-dac.c
7942
7943 IIO ENVELOPE DETECTOR
7944 M:      Peter Rosin <[email protected]>
7945 L:      [email protected]
7946 S:      Maintained
7947 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
7948 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
7949 F:      drivers/iio/adc/envelope-detector.c
7950
7951 IIO MULTIPLEXER
7952 M:      Peter Rosin <[email protected]>
7953 L:      [email protected]
7954 S:      Maintained
7955 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
7956 F:      drivers/iio/multiplexer/iio-mux.c
7957
7958 IIO SUBSYSTEM AND DRIVERS
7959 M:      Jonathan Cameron <[email protected]>
7960 R:      Hartmut Knaack <[email protected]>
7961 R:      Lars-Peter Clausen <[email protected]>
7962 R:      Peter Meerwald-Stadler <[email protected]>
7963 L:      [email protected]
7964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
7965 S:      Maintained
7966 F:      Documentation/ABI/testing/configfs-iio*
7967 F:      Documentation/ABI/testing/sysfs-bus-iio*
7968 F:      Documentation/devicetree/bindings/iio/
7969 F:      drivers/iio/
7970 F:      drivers/staging/iio/
7971 F:      include/linux/iio/
7972 F:      tools/iio/
7973
7974 IIO UNIT CONVERTER
7975 M:      Peter Rosin <[email protected]>
7976 L:      [email protected]
7977 S:      Maintained
7978 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
7979 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
7980 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
7981 F:      drivers/iio/afe/iio-rescale.c
7982
7983 IKANOS/ADI EAGLE ADSL USB DRIVER
7984 M:      Matthieu Castet <[email protected]>
7985 M:      Stanislaw Gruszka <[email protected]>
7986 S:      Maintained
7987 F:      drivers/usb/atm/ueagle-atm.c
7988
7989 IMGTEC ASCII LCD DRIVER
7990 M:      Paul Burton <[email protected]>
7991 S:      Maintained
7992 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
7993 F:      drivers/auxdisplay/img-ascii-lcd.c
7994
7995 IMGTEC IR DECODER DRIVER
7996 M:      James Hogan <[email protected]>
7997 S:      Maintained
7998 F:      drivers/media/rc/img-ir/
7999
8000 IMON SOUNDGRAPH USB IR RECEIVER
8001 M:      Sean Young <[email protected]>
8002 L:      [email protected]
8003 S:      Maintained
8004 F:      drivers/media/rc/imon_raw.c
8005 F:      drivers/media/rc/imon.c
8006
8007 IMS TWINTURBO FRAMEBUFFER DRIVER
8008 L:      [email protected]
8009 S:      Orphan
8010 F:      drivers/video/fbdev/imsttfb.c
8011
8012 INA209 HARDWARE MONITOR DRIVER
8013 M:      Guenter Roeck <[email protected]>
8014 L:      [email protected]
8015 S:      Maintained
8016 F:      Documentation/hwmon/ina209.rst
8017 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8018 F:      drivers/hwmon/ina209.c
8019
8020 INA2XX HARDWARE MONITOR DRIVER
8021 M:      Guenter Roeck <[email protected]>
8022 L:      [email protected]
8023 S:      Maintained
8024 F:      Documentation/hwmon/ina2xx.rst
8025 F:      drivers/hwmon/ina2xx.c
8026 F:      include/linux/platform_data/ina2xx.h
8027
8028 INDUSTRY PACK SUBSYSTEM (IPACK)
8029 M:      Samuel Iglesias Gonsalvez <[email protected]>
8030 M:      Jens Taprogge <[email protected]>
8031 M:      Greg Kroah-Hartman <[email protected]>
8032 L:      [email protected]
8033 W:      http://industrypack.sourceforge.net
8034 S:      Maintained
8035 F:      drivers/ipack/
8036
8037 INFINEON DPS310 Driver
8038 M:      Eddie James <[email protected]>
8039 L:      [email protected]
8040 F:      drivers/iio/pressure/dps310.c
8041 S:      Maintained
8042
8043 INFINIBAND SUBSYSTEM
8044 M:      Doug Ledford <[email protected]>
8045 M:      Jason Gunthorpe <[email protected]>
8046 L:      [email protected]
8047 W:      https://github.com/linux-rdma/rdma-core
8048 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8050 S:      Supported
8051 F:      Documentation/devicetree/bindings/infiniband/
8052 F:      Documentation/infiniband/
8053 F:      drivers/infiniband/
8054 F:      include/uapi/linux/if_infiniband.h
8055 F:      include/uapi/rdma/
8056 F:      include/rdma/
8057 F:      include/trace/events/ib_mad.h
8058 F:      include/trace/events/ib_umad.h
8059 F:      samples/bpf/ibumad_kern.c
8060 F:      samples/bpf/ibumad_user.c
8061
8062 INGENIC JZ4780 DMA Driver
8063 M:      Zubair Lutfullah Kakakhel <[email protected]>
8064 S:      Maintained
8065 F:      drivers/dma/dma-jz4780.c
8066
8067 INGENIC JZ4780 NAND DRIVER
8068 M:      Harvey Hunt <[email protected]>
8069 L:      [email protected]
8070 S:      Maintained
8071 F:      drivers/mtd/nand/raw/ingenic/
8072
8073 INGENIC JZ47xx SoCs
8074 M:      Paul Cercueil <[email protected]>
8075 S:      Maintained
8076 F:      arch/mips/boot/dts/ingenic/
8077 F:      arch/mips/include/asm/mach-jz4740/
8078 F:      arch/mips/jz4740/
8079 F:      drivers/clk/ingenic/
8080 F:      drivers/dma/dma-jz4780.c
8081 F:      drivers/gpu/drm/ingenic/
8082 F:      drivers/i2c/busses/i2c-jz4780.c
8083 F:      drivers/iio/adc/ingenic-adc.c
8084 F:      drivers/irqchip/irq-ingenic.c
8085 F:      drivers/memory/jz4780-nemc.c
8086 F:      drivers/mmc/host/jz4740_mmc.c
8087 F:      drivers/mtd/nand/raw/ingenic/
8088 F:      drivers/pinctrl/pinctrl-ingenic.c
8089 F:      drivers/power/supply/ingenic-battery.c
8090 F:      drivers/pwm/pwm-jz4740.c
8091 F:      drivers/rtc/rtc-jz4740.c
8092 F:      drivers/tty/serial/8250/8250_ingenic.c
8093 F:      drivers/usb/musb/jz4740.c
8094 F:      drivers/watchdog/jz4740_wdt.c
8095 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8096 F:      include/linux/mfd/ingenic-tcu.h
8097 F:      sound/soc/jz4740/
8098 F:      sound/soc/codecs/jz47*
8099
8100 INOTIFY
8101 M:      Jan Kara <[email protected]>
8102 R:      Amir Goldstein <[email protected]>
8103 L:      [email protected]
8104 S:      Maintained
8105 F:      Documentation/filesystems/inotify.txt
8106 F:      fs/notify/inotify/
8107 F:      include/linux/inotify.h
8108 F:      include/uapi/linux/inotify.h
8109
8110 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8111 M:      Dmitry Torokhov <[email protected]>
8112 L:      [email protected]
8113 Q:      http://patchwork.kernel.org/project/linux-input/list/
8114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8115 S:      Maintained
8116 F:      drivers/input/
8117 F:      include/linux/input.h
8118 F:      include/uapi/linux/input.h
8119 F:      include/uapi/linux/input-event-codes.h
8120 F:      include/linux/input/
8121 F:      Documentation/devicetree/bindings/input/
8122 F:      Documentation/devicetree/bindings/serio/
8123 F:      Documentation/input/
8124
8125 INPUT MULTITOUCH (MT) PROTOCOL
8126 M:      Henrik Rydberg <[email protected]>
8127 L:      [email protected]
8128 S:      Odd fixes
8129 F:      Documentation/input/multi-touch-protocol.rst
8130 F:      drivers/input/input-mt.c
8131 K:      \b(ABS|SYN)_MT_
8132
8133 INSIDE SECURE CRYPTO DRIVER
8134 M:      Antoine Tenart <[email protected]>
8135 F:      drivers/crypto/inside-secure/
8136 S:      Maintained
8137 L:      [email protected]
8138
8139 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8140 M:      Mimi Zohar <[email protected]>
8141 M:      Dmitry Kasatkin <[email protected]>
8142 L:      [email protected]
8143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8144 S:      Supported
8145 F:      security/integrity/ima/
8146
8147 INTEL 810/815 FRAMEBUFFER DRIVER
8148 M:      Antonino Daplas <[email protected]>
8149 L:      [email protected]
8150 S:      Maintained
8151 F:      drivers/video/fbdev/i810/
8152
8153 INTEL ASoC DRIVERS
8154 M:      Cezary Rojewski <[email protected]>
8155 M:      Pierre-Louis Bossart <[email protected]>
8156 M:      Liam Girdwood <[email protected]>
8157 M:      Jie Yang <[email protected]>
8158 L:      [email protected] (moderated for non-subscribers)
8159 S:      Supported
8160 F:      sound/soc/intel/
8161
8162 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8163 M:      Hans de Goede <[email protected]>
8164 L:      [email protected]
8165 S:      Maintained
8166 F:      drivers/platform/x86/intel_atomisp2_pm.c
8167
8168 INTEL C600 SERIES SAS CONTROLLER DRIVER
8169 M:      Intel SCU Linux support <[email protected]>
8170 M:      Artur Paszkiewicz <[email protected]>
8171 L:      [email protected]
8172 T:      git git://git.code.sf.net/p/intel-sas/isci
8173 S:      Supported
8174 F:      drivers/scsi/isci/
8175
8176 INTEL CPU family model numbers
8177 M:      Tony Luck <[email protected]>
8178 M:      [email protected]
8179 L:      [email protected]
8180 S:      Supported
8181 F:      arch/x86/include/asm/intel-family.h
8182
8183 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8184 M:      Jani Nikula <[email protected]>
8185 M:      Joonas Lahtinen <[email protected]>
8186 M:      Rodrigo Vivi <[email protected]>
8187 L:      [email protected]
8188 W:      https://01.org/linuxgraphics/
8189 B:      https://01.org/linuxgraphics/documentation/how-report-bugs
8190 C:      irc://chat.freenode.net/intel-gfx
8191 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8192 T:      git git://anongit.freedesktop.org/drm-intel
8193 S:      Supported
8194 F:      drivers/gpu/drm/i915/
8195 F:      include/drm/i915*
8196 F:      include/uapi/drm/i915_drm.h
8197 F:      Documentation/gpu/i915.rst
8198
8199 INTEL ETHERNET DRIVERS
8200 M:      Jeff Kirsher <[email protected]>
8201 L:      [email protected] (moderated for non-subscribers)
8202 W:      http://www.intel.com/support/feedback.htm
8203 W:      http://e1000.sourceforge.net/
8204 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8207 S:      Supported
8208 F:      Documentation/networking/device_drivers/intel/e100.rst
8209 F:      Documentation/networking/device_drivers/intel/e1000.rst
8210 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8211 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8212 F:      Documentation/networking/device_drivers/intel/igb.rst
8213 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8214 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8215 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8216 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8217 F:      Documentation/networking/device_drivers/intel/i40e.rst
8218 F:      Documentation/networking/device_drivers/intel/iavf.rst
8219 F:      Documentation/networking/device_drivers/intel/ice.rst
8220 F:      drivers/net/ethernet/intel/
8221 F:      drivers/net/ethernet/intel/*/
8222 F:      include/linux/avf/virtchnl.h
8223
8224 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8225 M:      Maik Broemme <[email protected]>
8226 L:      [email protected]
8227 S:      Maintained
8228 F:      Documentation/fb/intelfb.rst
8229 F:      drivers/video/fbdev/intelfb/
8230
8231 INTEL GPIO DRIVERS
8232 M:      Andy Shevchenko <[email protected]>
8233 L:      [email protected]
8234 S:      Maintained
8235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8236 F:      drivers/gpio/gpio-ich.c
8237 F:      drivers/gpio/gpio-intel-mid.c
8238 F:      drivers/gpio/gpio-lynxpoint.c
8239 F:      drivers/gpio/gpio-merrifield.c
8240 F:      drivers/gpio/gpio-ml-ioh.c
8241 F:      drivers/gpio/gpio-pch.c
8242 F:      drivers/gpio/gpio-sch.c
8243 F:      drivers/gpio/gpio-sodaville.c
8244
8245 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8246 M:      Zhenyu Wang <[email protected]>
8247 M:      Zhi Wang <[email protected]>
8248 L:      [email protected]
8249 L:      [email protected]
8250 W:      https://01.org/igvt-g
8251 T:      git https://github.com/intel/gvt-linux.git
8252 S:      Supported
8253 F:      drivers/gpu/drm/i915/gvt/
8254
8255 INTEL HID EVENT DRIVER
8256 M:      Alex Hung <[email protected]>
8257 L:      [email protected]
8258 S:      Maintained
8259 F:      drivers/platform/x86/intel-hid.c
8260
8261 INTEL I/OAT DMA DRIVER
8262 M:      Dave Jiang <[email protected]>
8263 R:      Dan Williams <[email protected]>
8264 L:      [email protected]
8265 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8266 S:      Supported
8267 F:      drivers/dma/ioat*
8268
8269 INTEL IDLE DRIVER
8270 M:      Jacob Pan <[email protected]>
8271 M:      Len Brown <[email protected]>
8272 L:      [email protected]
8273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8274 B:      https://bugzilla.kernel.org
8275 S:      Supported
8276 F:      drivers/idle/intel_idle.c
8277
8278 INTEL INTEGRATED SENSOR HUB DRIVER
8279 M:      Srinivas Pandruvada <[email protected]>
8280 M:      Jiri Kosina <[email protected]>
8281 L:      [email protected]
8282 S:      Maintained
8283 F:      drivers/hid/intel-ish-hid/
8284
8285 INTEL IOMMU (VT-d)
8286 M:      David Woodhouse <[email protected]>
8287 L:      [email protected]
8288 T:      git git://git.infradead.org/iommu-2.6.git
8289 S:      Supported
8290 F:      drivers/iommu/intel-iommu.c
8291 F:      include/linux/intel-iommu.h
8292
8293 INTEL IOP-ADMA DMA DRIVER
8294 R:      Dan Williams <[email protected]>
8295 S:      Odd fixes
8296 F:      drivers/dma/iop-adma.c
8297
8298 INTEL IPU3 CSI-2 CIO2 DRIVER
8299 M:      Yong Zhi <[email protected]>
8300 M:      Sakari Ailus <[email protected]>
8301 M:      Bingbu Cao <[email protected]>
8302 R:      Tian Shu Qiu <[email protected]>
8303 L:      [email protected]
8304 S:      Maintained
8305 F:      drivers/media/pci/intel/ipu3/
8306 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
8307
8308 INTEL IPU3 CSI-2 IMGU DRIVER
8309 M:      Sakari Ailus <[email protected]>
8310 L:      [email protected]
8311 S:      Maintained
8312 F:      drivers/staging/media/ipu3/
8313 F:      Documentation/media/uapi/v4l/pixfmt-meta-intel-ipu3.rst
8314 F:      Documentation/media/v4l-drivers/ipu3.rst
8315
8316 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8317 M:      Krzysztof Halasa <[email protected]>
8318 S:      Maintained
8319 F:      include/linux/soc/ixp4xx/qmgr.h
8320 F:      include/linux/soc/ixp4xx/npe.h
8321 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8322 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8323 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8324 F:      drivers/net/wan/ixp4xx_hss.c
8325
8326 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8327 M:      Deepak Saxena <[email protected]>
8328 S:      Maintained
8329 F:      drivers/char/hw_random/ixp4xx-rng.c
8330
8331 INTEL MANAGEMENT ENGINE (mei)
8332 M:      Tomas Winkler <[email protected]>
8333 L:      [email protected]
8334 S:      Supported
8335 F:      include/uapi/linux/mei.h
8336 F:      include/linux/mei_cl_bus.h
8337 F:      drivers/misc/mei/*
8338 F:      drivers/watchdog/mei_wdt.c
8339 F:      Documentation/driver-api/mei/*
8340 F:      samples/mei/*
8341
8342 INTEL MENLOW THERMAL DRIVER
8343 M:      Sujith Thomas <[email protected]>
8344 L:      [email protected]
8345 W:      https://01.org/linux-acpi
8346 S:      Supported
8347 F:      drivers/platform/x86/intel_menlow.c
8348
8349 INTEL MIC DRIVERS (mic)
8350 M:      Sudeep Dutt <[email protected]>
8351 M:      Ashutosh Dixit <[email protected]>
8352 S:      Supported
8353 W:      https://github.com/sudeepdutt/mic
8354 W:      http://software.intel.com/en-us/mic-developer
8355 F:      include/linux/mic_bus.h
8356 F:      include/linux/scif.h
8357 F:      include/uapi/linux/mic_common.h
8358 F:      include/uapi/linux/mic_ioctl.h
8359 F:      include/uapi/linux/scif_ioctl.h
8360 F:      drivers/misc/mic/
8361 F:      drivers/dma/mic_x100_dma.c
8362 F:      drivers/dma/mic_x100_dma.h
8363 F:      Documentation/mic/
8364
8365 INTEL PMC CORE DRIVER
8366 M:      Rajneesh Bhardwaj <[email protected]>
8367 M:      Vishwanath Somayaji <[email protected]>
8368 L:      [email protected]
8369 S:      Maintained
8370 F:      drivers/platform/x86/intel_pmc_core*
8371
8372 INTEL PMC/P-Unit IPC DRIVER
8373 M:      Zha Qipeng<[email protected]>
8374 L:      [email protected]
8375 S:      Maintained
8376 F:      drivers/platform/x86/intel_pmc_ipc.c
8377 F:      drivers/platform/x86/intel_punit_ipc.c
8378 F:      arch/x86/include/asm/intel_pmc_ipc.h
8379 F:      arch/x86/include/asm/intel_punit_ipc.h
8380
8381 INTEL PMIC GPIO DRIVERS
8382 M:      Andy Shevchenko <[email protected]>
8383 S:      Maintained
8384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8385 F:      drivers/gpio/gpio-*cove.c
8386 F:      drivers/gpio/gpio-msic.c
8387
8388 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8389 R:      Andy Shevchenko <[email protected]>
8390 S:      Maintained
8391 F:      drivers/mfd/intel_msic.c
8392 F:      drivers/mfd/intel_soc_pmic*
8393 F:      include/linux/mfd/intel_msic.h
8394 F:      include/linux/mfd/intel_soc_pmic*
8395
8396 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8397 M:      Stanislav Yakovlev <[email protected]>
8398 L:      [email protected]
8399 S:      Maintained
8400 F:      Documentation/networking/device_drivers/intel/ipw2100.txt
8401 F:      Documentation/networking/device_drivers/intel/ipw2200.txt
8402 F:      drivers/net/wireless/intel/ipw2x00/
8403
8404 INTEL PSTATE DRIVER
8405 M:      Srinivas Pandruvada <[email protected]>
8406 M:      Len Brown <[email protected]>
8407 L:      [email protected]
8408 S:      Supported
8409 F:      drivers/cpufreq/intel_pstate.c
8410
8411 INTEL RDMA RNIC DRIVER
8412 M:      Faisal Latif <[email protected]>
8413 M:      Shiraz Saleem <[email protected]>
8414 L:      [email protected]
8415 S:      Supported
8416 F:      drivers/infiniband/hw/i40iw/
8417 F:      include/uapi/rdma/i40iw-abi.h
8418
8419 INTEL SPEED SELECT TECHNOLOGY
8420 M:      Srinivas Pandruvada <[email protected]>
8421 L:      [email protected]
8422 S:      Maintained
8423 F:      drivers/platform/x86/intel_speed_select_if/
8424 F:      tools/power/x86/intel-speed-select/
8425 F:      include/uapi/linux/isst_if.h
8426
8427 INTEL STRATIX10 FIRMWARE DRIVERS
8428 M:      Richard Gong <[email protected]>
8429 L:      [email protected]
8430 S:      Maintained
8431 F:      drivers/firmware/stratix10-rsu.c
8432 F:      drivers/firmware/stratix10-svc.c
8433 F:      include/linux/firmware/intel/stratix10-smc.h
8434 F:      include/linux/firmware/intel/stratix10-svc-client.h
8435 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8436 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8437
8438 INTEL TELEMETRY DRIVER
8439 M:      Rajneesh Bhardwaj <[email protected]>
8440 M:      "David E. Box" <[email protected]>
8441 L:      [email protected]
8442 S:      Maintained
8443 F:      arch/x86/include/asm/intel_telemetry.h
8444 F:      drivers/platform/x86/intel_telemetry*
8445
8446 INTEL VIRTUAL BUTTON DRIVER
8447 M:      AceLan Kao <[email protected]>
8448 L:      [email protected]
8449 S:      Maintained
8450 F:      drivers/platform/x86/intel-vbtn.c
8451
8452 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8453 M:      Stanislaw Gruszka <[email protected]>
8454 L:      [email protected]
8455 S:      Supported
8456 F:      drivers/net/wireless/intel/iwlegacy/
8457
8458 INTEL WIRELESS WIFI LINK (iwlwifi)
8459 M:      Johannes Berg <[email protected]>
8460 M:      Emmanuel Grumbach <[email protected]>
8461 M:      Luca Coelho <[email protected]>
8462 M:      Intel Linux Wireless <[email protected]>
8463 L:      [email protected]
8464 W:      http://intellinuxwireless.org
8465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8466 S:      Supported
8467 F:      drivers/net/wireless/intel/iwlwifi/
8468
8469 INTEL WIRELESS WIMAX CONNECTION 2400
8470 M:      Inaky Perez-Gonzalez <[email protected]>
8471 M:      [email protected]
8472 L:      [email protected] (subscribers-only)
8473 S:      Supported
8474 W:      http://linuxwimax.org
8475 F:      Documentation/admin-guide/wimax/i2400m.rst
8476 F:      drivers/net/wimax/i2400m/
8477 F:      include/uapi/linux/wimax/i2400m.h
8478
8479 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8480 M:      Mario Limonciello <[email protected]>
8481 S:      Maintained
8482 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8483
8484 INTEL(R) TRACE HUB
8485 M:      Alexander Shishkin <[email protected]>
8486 S:      Supported
8487 F:      Documentation/trace/intel_th.rst
8488 F:      drivers/hwtracing/intel_th/
8489 F:      include/linux/intel_th.h
8490
8491 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8492 M:      Ning Sun <[email protected]>
8493 L:      [email protected]
8494 W:      http://tboot.sourceforge.net
8495 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8496 S:      Supported
8497 F:      Documentation/x86/intel_txt.rst
8498 F:      include/linux/tboot.h
8499 F:      arch/x86/kernel/tboot.c
8500
8501 INTERCONNECT API
8502 M:      Georgi Djakov <[email protected]>
8503 L:      [email protected]
8504 S:      Maintained
8505 F:      Documentation/driver-api/interconnect.rst
8506 F:      Documentation/devicetree/bindings/interconnect/
8507 F:      drivers/interconnect/
8508 F:      include/dt-bindings/interconnect/
8509 F:      include/linux/interconnect-provider.h
8510 F:      include/linux/interconnect.h
8511
8512 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8513 M:      Linus Walleij <[email protected]>
8514 L:      [email protected]
8515 S:      Maintained
8516 F:      drivers/iio/gyro/mpu3050*
8517 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8518
8519 IOC3 ETHERNET DRIVER
8520 M:      Ralf Baechle <[email protected]>
8521 L:      [email protected]
8522 S:      Maintained
8523 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8524
8525 IOMAP FILESYSTEM LIBRARY
8526 M:      Christoph Hellwig <[email protected]>
8527 M:      Darrick J. Wong <[email protected]>
8528 M:      [email protected]
8529 M:      [email protected]
8530 L:      [email protected]
8531 L:      [email protected]
8532 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8533 S:      Supported
8534 F:      fs/iomap/
8535 F:      include/linux/iomap.h
8536
8537 IOMMU DRIVERS
8538 M:      Joerg Roedel <[email protected]>
8539 L:      [email protected]
8540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8541 S:      Maintained
8542 F:      Documentation/devicetree/bindings/iommu/
8543 F:      drivers/iommu/
8544 F:      include/linux/iommu.h
8545 F:      include/linux/of_iommu.h
8546 F:      include/linux/iova.h
8547
8548 IO_URING
8549 M:      Jens Axboe <[email protected]>
8550 L:      [email protected]
8551 L:      [email protected]
8552 T:      git git://git.kernel.dk/linux-block
8553 T:      git git://git.kernel.dk/liburing
8554 S:      Maintained
8555 F:      fs/io_uring.c
8556 F:      include/uapi/linux/io_uring.h
8557
8558 IPMI SUBSYSTEM
8559 M:      Corey Minyard <[email protected]>
8560 L:      [email protected] (moderated for non-subscribers)
8561 W:      http://openipmi.sourceforge.net/
8562 S:      Supported
8563 F:      Documentation/devicetree/bindings/ipmi/
8564 F:      Documentation/IPMI.txt
8565 F:      drivers/char/ipmi/
8566 F:      include/linux/ipmi*
8567 F:      include/uapi/linux/ipmi*
8568
8569 IPS SCSI RAID DRIVER
8570 M:      Adaptec OEM Raid Solutions <[email protected]>
8571 L:      [email protected]
8572 W:      http://www.adaptec.com/
8573 S:      Maintained
8574 F:      drivers/scsi/ips*
8575
8576 IPVS
8577 M:      Wensong Zhang <[email protected]>
8578 M:      Simon Horman <[email protected]>
8579 M:      Julian Anastasov <[email protected]>
8580 L:      [email protected]
8581 L:      [email protected]
8582 S:      Maintained
8583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
8584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
8585 F:      Documentation/networking/ipvs-sysctl.txt
8586 F:      include/net/ip_vs.h
8587 F:      include/uapi/linux/ip_vs.h
8588 F:      net/netfilter/ipvs/
8589
8590 IPWIRELESS DRIVER
8591 M:      Jiri Kosina <[email protected]>
8592 M:      David Sterba <[email protected]>
8593 S:      Odd Fixes
8594 F:      drivers/tty/ipwireless/
8595
8596 IPX NETWORK LAYER
8597 L:      [email protected]
8598 S:      Obsolete
8599 F:      include/uapi/linux/ipx.h
8600
8601 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
8602 M:      Marc Zyngier <[email protected]>
8603 S:      Maintained
8604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8605 F:      Documentation/IRQ-domain.txt
8606 F:      include/linux/irqdomain.h
8607 F:      kernel/irq/irqdomain.c
8608 F:      kernel/irq/msi.c
8609
8610 IRQ SUBSYSTEM
8611 M:      Thomas Gleixner <[email protected]>
8612 L:      [email protected]
8613 S:      Maintained
8614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8615 F:      kernel/irq/
8616
8617 IRQCHIP DRIVERS
8618 M:      Thomas Gleixner <[email protected]>
8619 M:      Jason Cooper <[email protected]>
8620 M:      Marc Zyngier <[email protected]>
8621 L:      [email protected]
8622 S:      Maintained
8623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8624 F:      Documentation/devicetree/bindings/interrupt-controller/
8625 F:      drivers/irqchip/
8626
8627 ISA
8628 M:      William Breathitt Gray <[email protected]>
8629 S:      Maintained
8630 F:      Documentation/driver-api/isa.rst
8631 F:      drivers/base/isa.c
8632 F:      include/linux/isa.h
8633
8634 ISA RADIO MODULE
8635 M:      Hans Verkuil <[email protected]>
8636 L:      [email protected]
8637 T:      git git://linuxtv.org/media_tree.git
8638 W:      https://linuxtv.org
8639 S:      Maintained
8640 F:      drivers/media/radio/radio-isa*
8641
8642 ISAPNP
8643 M:      Jaroslav Kysela <[email protected]>
8644 S:      Maintained
8645 F:      Documentation/driver-api/isapnp.rst
8646 F:      drivers/pnp/isapnp/
8647 F:      include/linux/isapnp.h
8648
8649 ISCSI
8650 M:      Lee Duncan <[email protected]>
8651 M:      Chris Leech <[email protected]>
8652 L:      [email protected]
8653 W:      www.open-iscsi.com
8654 S:      Maintained
8655 F:      drivers/scsi/*iscsi*
8656 F:      include/scsi/*iscsi*
8657
8658 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
8659 M:      Peter Jones <[email protected]>
8660 M:      Konrad Rzeszutek Wilk <[email protected]>
8661 S:      Maintained
8662 F:      drivers/firmware/iscsi_ibft*
8663
8664 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
8665 M:      Sagi Grimberg <[email protected]>
8666 M:      Max Gurtovoy <[email protected]>
8667 L:      [email protected]
8668 S:      Supported
8669 W:      http://www.openfabrics.org
8670 W:      www.open-iscsi.org
8671 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8672 F:      drivers/infiniband/ulp/iser/
8673
8674 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
8675 M:      Sagi Grimberg <[email protected]>
8676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
8677 L:      [email protected]
8678 L:      [email protected]
8679 S:      Supported
8680 W:      http://www.linux-iscsi.org
8681 F:      drivers/infiniband/ulp/isert
8682
8683 ISDN/mISDN SUBSYSTEM
8684 M:      Karsten Keil <[email protected]>
8685 L:      [email protected] (subscribers-only)
8686 L:      [email protected]
8687 W:      http://www.isdn4linux.de
8688 S:      Maintained
8689 F:      drivers/isdn/mISDN
8690 F:      drivers/isdn/hardware
8691
8692 ISDN/CAPI SUBSYSTEM
8693 M:      Karsten Keil <[email protected]>
8694 L:      [email protected] (subscribers-only)
8695 L:      [email protected]
8696 W:      http://www.isdn4linux.de
8697 S:      Odd Fixes
8698 F:      Documentation/isdn/
8699 F:      drivers/isdn/capi/
8700 F:      drivers/staging/isdn/
8701 F:      net/bluetooth/cmtp/
8702 F:      include/linux/isdn/
8703 F:      include/uapi/linux/isdn/
8704
8705 IT87 HARDWARE MONITORING DRIVER
8706 M:      Jean Delvare <[email protected]>
8707 L:      [email protected]
8708 S:      Maintained
8709 F:      Documentation/hwmon/it87.rst
8710 F:      drivers/hwmon/it87.c
8711
8712 IT913X MEDIA DRIVER
8713 M:      Antti Palosaari <[email protected]>
8714 L:      [email protected]
8715 W:      https://linuxtv.org
8716 W:      http://palosaari.fi/linux/
8717 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8718 T:      git git://linuxtv.org/anttip/media_tree.git
8719 S:      Maintained
8720 F:      drivers/media/tuners/it913x*
8721
8722 IVTV VIDEO4LINUX DRIVER
8723 M:      Andy Walls <[email protected]>
8724 L:      [email protected] (subscribers-only)
8725 L:      [email protected]
8726 T:      git git://linuxtv.org/media_tree.git
8727 W:      http://www.ivtvdriver.org
8728 S:      Maintained
8729 F:      Documentation/media/v4l-drivers/ivtv*
8730 F:      drivers/media/pci/ivtv/
8731 F:      include/uapi/linux/ivtv*
8732
8733 IX2505V MEDIA DRIVER
8734 M:      Malcolm Priestley <[email protected]>
8735 L:      [email protected]
8736 W:      https://linuxtv.org
8737 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8738 S:      Maintained
8739 F:      drivers/media/dvb-frontends/ix2505v*
8740
8741 JAILHOUSE HYPERVISOR INTERFACE
8742 M:      Jan Kiszka <[email protected]>
8743 L:      [email protected]
8744 S:      Maintained
8745 F:      arch/x86/kernel/jailhouse.c
8746 F:      arch/x86/include/asm/jailhouse_para.h
8747
8748 JC42.4 TEMPERATURE SENSOR DRIVER
8749 M:      Guenter Roeck <[email protected]>
8750 L:      [email protected]
8751 S:      Maintained
8752 F:      drivers/hwmon/jc42.c
8753 F:      Documentation/hwmon/jc42.rst
8754
8755 JFS FILESYSTEM
8756 M:      Dave Kleikamp <[email protected]>
8757 L:      [email protected]
8758 W:      http://jfs.sourceforge.net/
8759 T:      git git://github.com/kleikamp/linux-shaggy.git
8760 S:      Maintained
8761 F:      Documentation/admin-guide/jfs.rst
8762 F:      fs/jfs/
8763
8764 JME NETWORK DRIVER
8765 M:      Guo-Fu Tseng <[email protected]>
8766 L:      [email protected]
8767 S:      Maintained
8768 F:      drivers/net/ethernet/jme.*
8769
8770 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
8771 M:      David Woodhouse <[email protected]>
8772 M:      Richard Weinberger <[email protected]>
8773 L:      [email protected]
8774 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
8775 T:      git git://git.infradead.org/ubifs-2.6.git
8776 S:      Odd Fixes
8777 F:      fs/jffs2/
8778 F:      include/uapi/linux/jffs2.h
8779
8780 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
8781 M:      "Theodore Ts'o" <[email protected]>
8782 M:      Jan Kara <[email protected]>
8783 L:      [email protected]
8784 S:      Maintained
8785 F:      fs/jbd2/
8786 F:      include/linux/jbd2.h
8787
8788 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
8789 M:      Mikhail Ulyanov <[email protected]>
8790 L:      [email protected]
8791 S:      Maintained
8792 F:      drivers/media/platform/rcar_jpu.c
8793
8794 JSM Neo PCI based serial card
8795 L:      [email protected]
8796 S:      Orphan
8797 F:      drivers/tty/serial/jsm/
8798
8799 K10TEMP HARDWARE MONITORING DRIVER
8800 M:      Clemens Ladisch <[email protected]>
8801 L:      [email protected]
8802 S:      Maintained
8803 F:      Documentation/hwmon/k10temp.rst
8804 F:      drivers/hwmon/k10temp.c
8805
8806 K8TEMP HARDWARE MONITORING DRIVER
8807 M:      Rudolf Marek <[email protected]>
8808 L:      [email protected]
8809 S:      Maintained
8810 F:      Documentation/hwmon/k8temp.rst
8811 F:      drivers/hwmon/k8temp.c
8812
8813 KASAN
8814 M:      Andrey Ryabinin <[email protected]>
8815 R:      Alexander Potapenko <[email protected]>
8816 R:      Dmitry Vyukov <[email protected]>
8817 L:      [email protected]
8818 S:      Maintained
8819 F:      arch/*/include/asm/kasan.h
8820 F:      arch/*/mm/kasan_init*
8821 F:      Documentation/dev-tools/kasan.rst
8822 F:      include/linux/kasan*.h
8823 F:      lib/test_kasan.c
8824 F:      mm/kasan/
8825 F:      scripts/Makefile.kasan
8826
8827 KCONFIG
8828 M:      Masahiro Yamada <[email protected]>
8829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
8830 L:      [email protected]
8831 S:      Maintained
8832 F:      Documentation/kbuild/kconfig*
8833 F:      scripts/kconfig/
8834 F:      scripts/Kconfig.include
8835
8836 KDUMP
8837 M:      Dave Young <[email protected]>
8838 M:      Baoquan He <[email protected]>
8839 R:      Vivek Goyal <[email protected]>
8840 L:      [email protected]
8841 W:      http://lse.sourceforge.net/kdump/
8842 S:      Maintained
8843 F:      Documentation/admin-guide/kdump/
8844
8845 KEENE FM RADIO TRANSMITTER DRIVER
8846 M:      Hans Verkuil <[email protected]>
8847 L:      [email protected]
8848 T:      git git://linuxtv.org/media_tree.git
8849 W:      https://linuxtv.org
8850 S:      Maintained
8851 F:      drivers/media/radio/radio-keene*
8852
8853 KERNEL AUTOMOUNTER
8854 M:      Ian Kent <[email protected]>
8855 L:      [email protected]
8856 S:      Maintained
8857 F:      fs/autofs/
8858
8859 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
8860 M:      Masahiro Yamada <[email protected]>
8861 M:      Michal Marek <[email protected]>
8862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
8863 L:      [email protected]
8864 S:      Maintained
8865 F:      Documentation/kbuild/
8866 F:      Makefile
8867 F:      scripts/Kbuild*
8868 F:      scripts/Makefile*
8869 F:      scripts/basic/
8870 F:      scripts/mk*
8871 F:      scripts/*vmlinux*
8872 F:      scripts/mod/
8873 F:      scripts/package/
8874
8875 KERNEL JANITORS
8876 L:      [email protected]
8877 W:      http://kernelnewbies.org/KernelJanitors
8878 S:      Odd Fixes
8879
8880 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
8881 M:      "J. Bruce Fields" <[email protected]>
8882 M:      Chuck Lever <[email protected]>
8883 L:      [email protected]
8884 W:      http://nfs.sourceforge.net/
8885 T:      git git://linux-nfs.org/~bfields/linux.git
8886 S:      Supported
8887 F:      fs/nfsd/
8888 F:      include/uapi/linux/nfsd/
8889 F:      fs/lockd/
8890 F:      fs/nfs_common/
8891 F:      net/sunrpc/
8892 F:      include/linux/lockd/
8893 F:      include/linux/sunrpc/
8894 F:      include/uapi/linux/sunrpc/
8895
8896 KERNEL SELFTEST FRAMEWORK
8897 M:      Shuah Khan <[email protected]>
8898 M:      Shuah Khan <[email protected]>
8899 L:      [email protected]
8900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
8901 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
8902 S:      Maintained
8903 F:      tools/testing/selftests/
8904 F:      Documentation/dev-tools/kselftest*
8905
8906 KERNEL USERMODE HELPER
8907 M:      Luis Chamberlain <[email protected]>
8908 L:      [email protected]
8909 S:      Maintained
8910 F:      kernel/umh.c
8911 F:      include/linux/umh.h
8912
8913 KERNEL VIRTUAL MACHINE (KVM)
8914 M:      Paolo Bonzini <[email protected]>
8915 M:      Radim Krčmář <[email protected]>
8916 L:      [email protected]
8917 W:      http://www.linux-kvm.org
8918 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
8919 S:      Supported
8920 F:      Documentation/virt/kvm/
8921 F:      include/trace/events/kvm.h
8922 F:      include/uapi/asm-generic/kvm*
8923 F:      include/uapi/linux/kvm*
8924 F:      include/asm-generic/kvm*
8925 F:      include/linux/kvm*
8926 F:      include/kvm/iodev.h
8927 F:      virt/kvm/*
8928 F:      tools/kvm/
8929 F:      tools/testing/selftests/kvm/
8930
8931 KERNEL VIRTUAL MACHINE FOR ARM/ARM64 (KVM/arm, KVM/arm64)
8932 M:      Marc Zyngier <[email protected]>
8933 R:      James Morse <[email protected]>
8934 R:      Julien Thierry <[email protected]>
8935 R:      Suzuki K Poulose <[email protected]>
8936 L:      [email protected] (moderated for non-subscribers)
8937 L:      [email protected]
8938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
8939 S:      Maintained
8940 F:      arch/arm/include/uapi/asm/kvm*
8941 F:      arch/arm/include/asm/kvm*
8942 F:      arch/arm/kvm/
8943 F:      arch/arm64/include/uapi/asm/kvm*
8944 F:      arch/arm64/include/asm/kvm*
8945 F:      arch/arm64/kvm/
8946 F:      virt/kvm/arm/
8947 F:      include/kvm/arm_*
8948
8949 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
8950 M:      James Hogan <[email protected]>
8951 L:      [email protected]
8952 S:      Supported
8953 F:      arch/mips/include/uapi/asm/kvm*
8954 F:      arch/mips/include/asm/kvm*
8955 F:      arch/mips/kvm/
8956
8957 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
8958 M:      Paul Mackerras <[email protected]>
8959 L:      [email protected]
8960 W:      http://www.linux-kvm.org/
8961 T:      git git://github.com/agraf/linux-2.6.git
8962 S:      Supported
8963 F:      arch/powerpc/include/uapi/asm/kvm*
8964 F:      arch/powerpc/include/asm/kvm*
8965 F:      arch/powerpc/kvm/
8966 F:      arch/powerpc/kernel/kvm*
8967
8968 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
8969 M:      Christian Borntraeger <[email protected]>
8970 M:      Janosch Frank <[email protected]>
8971 R:      David Hildenbrand <[email protected]>
8972 R:      Cornelia Huck <[email protected]>
8973 L:      [email protected]
8974 W:      http://www.ibm.com/developerworks/linux/linux390/
8975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
8976 S:      Supported
8977 F:      arch/s390/include/uapi/asm/kvm*
8978 F:      arch/s390/include/asm/gmap.h
8979 F:      arch/s390/include/asm/kvm*
8980 F:      arch/s390/kvm/
8981 F:      arch/s390/mm/gmap.c
8982 F:      tools/testing/selftests/kvm/s390x/
8983 F:      tools/testing/selftests/kvm/*/s390x/
8984
8985 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
8986 M:      Paolo Bonzini <[email protected]>
8987 M:      Radim Krčmář <[email protected]>
8988 R:      Sean Christopherson <[email protected]>
8989 R:      Vitaly Kuznetsov <[email protected]>
8990 R:      Wanpeng Li <[email protected]>
8991 R:      Jim Mattson <[email protected]>
8992 R:      Joerg Roedel <[email protected]>
8993 L:      [email protected]
8994 W:      http://www.linux-kvm.org
8995 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
8996 S:      Supported
8997 F:      arch/x86/kvm/
8998 F:      arch/x86/kvm/*/
8999 F:      arch/x86/include/uapi/asm/kvm*
9000 F:      arch/x86/include/uapi/asm/vmx.h
9001 F:      arch/x86/include/uapi/asm/svm.h
9002 F:      arch/x86/include/asm/kvm*
9003 F:      arch/x86/include/asm/pvclock-abi.h
9004 F:      arch/x86/include/asm/svm.h
9005 F:      arch/x86/include/asm/vmx.h
9006 F:      arch/x86/kernel/kvm.c
9007 F:      arch/x86/kernel/kvmclock.c
9008
9009 KERNFS
9010 M:      Greg Kroah-Hartman <[email protected]>
9011 M:      Tejun Heo <[email protected]>
9012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9013 S:      Supported
9014 F:      include/linux/kernfs.h
9015 F:      fs/kernfs/
9016
9017 KEXEC
9018 M:      Eric Biederman <[email protected]>
9019 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9020 L:      [email protected]
9021 S:      Maintained
9022 F:      include/linux/kexec.h
9023 F:      include/uapi/linux/kexec.h
9024 F:      kernel/kexec*
9025
9026 KEYS-ENCRYPTED
9027 M:      Mimi Zohar <[email protected]>
9028 L:      [email protected]
9029 L:      [email protected]
9030 S:      Supported
9031 F:      Documentation/security/keys/trusted-encrypted.rst
9032 F:      include/keys/encrypted-type.h
9033 F:      security/keys/encrypted-keys/
9034
9035 KEYS-TRUSTED
9036 M:      James Bottomley <[email protected]>
9037 M:      Jarkko Sakkinen <[email protected]>
9038 M:      Mimi Zohar <[email protected]>
9039 L:      [email protected]
9040 L:      [email protected]
9041 S:      Supported
9042 F:      Documentation/security/keys/trusted-encrypted.rst
9043 F:      include/keys/trusted-type.h
9044 F:      security/keys/trusted.c
9045 F:      security/keys/trusted.h
9046
9047 KEYS/KEYRINGS:
9048 M:      David Howells <[email protected]>
9049 L:      [email protected]
9050 S:      Maintained
9051 F:      Documentation/security/keys/core.rst
9052 F:      include/linux/key.h
9053 F:      include/linux/key-type.h
9054 F:      include/linux/keyctl.h
9055 F:      include/uapi/linux/keyctl.h
9056 F:      include/keys/
9057 F:      security/keys/
9058
9059 KGDB / KDB /debug_core
9060 M:      Jason Wessel <[email protected]>
9061 M:      Daniel Thompson <[email protected]>
9062 W:      http://kgdb.wiki.kernel.org/
9063 L:      [email protected]
9064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9065 S:      Maintained
9066 F:      Documentation/dev-tools/kgdb.rst
9067 F:      drivers/misc/kgdbts.c
9068 F:      drivers/tty/serial/kgdboc.c
9069 F:      include/linux/kdb.h
9070 F:      include/linux/kgdb.h
9071 F:      kernel/debug/
9072
9073 KMEMLEAK
9074 M:      Catalin Marinas <[email protected]>
9075 S:      Maintained
9076 F:      Documentation/dev-tools/kmemleak.rst
9077 F:      include/linux/kmemleak.h
9078 F:      mm/kmemleak.c
9079 F:      mm/kmemleak-test.c
9080
9081 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9082 M:      Luis Chamberlain <[email protected]>
9083 L:      [email protected]
9084 S:      Maintained
9085 F:      kernel/kmod.c
9086 F:      include/linux/kmod.h
9087 F:      lib/test_kmod.c
9088 F:      tools/testing/selftests/kmod/
9089
9090 KPROBES
9091 M:      Naveen N. Rao <[email protected]>
9092 M:      Anil S Keshavamurthy <[email protected]>
9093 M:      "David S. Miller" <[email protected]>
9094 M:      Masami Hiramatsu <[email protected]>
9095 S:      Maintained
9096 F:      Documentation/kprobes.txt
9097 F:      include/linux/kprobes.h
9098 F:      include/asm-generic/kprobes.h
9099 F:      kernel/kprobes.c
9100
9101 KS0108 LCD CONTROLLER DRIVER
9102 M:      Miguel Ojeda Sandonis <[email protected]>
9103 S:      Maintained
9104 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9105 F:      drivers/auxdisplay/ks0108.c
9106 F:      include/linux/ks0108.h
9107
9108 L3MDEV
9109 M:      David Ahern <[email protected]>
9110 L:      [email protected]
9111 S:      Maintained
9112 F:      net/l3mdev
9113 F:      include/net/l3mdev.h
9114
9115 L7 BPF FRAMEWORK
9116 M:      John Fastabend <[email protected]>
9117 M:      Daniel Borkmann <[email protected]>
9118 L:      [email protected]
9119 L:      [email protected]
9120 S:      Maintained
9121 F:      include/linux/skmsg.h
9122 F:      net/core/skmsg.c
9123 F:      net/core/sock_map.c
9124 F:      net/ipv4/tcp_bpf.c
9125
9126 LANTIQ / INTEL Ethernet drivers
9127 M:      Hauke Mehrtens <[email protected]>
9128 L:      [email protected]
9129 S:      Maintained
9130 F:      net/dsa/tag_gswip.c
9131 F:      drivers/net/ethernet/lantiq_xrx200.c
9132 F:      drivers/net/dsa/lantiq_pce.h
9133 F:      drivers/net/dsa/lantiq_gswip.c
9134
9135 LANTIQ MIPS ARCHITECTURE
9136 M:      John Crispin <[email protected]>
9137 L:      [email protected]
9138 S:      Maintained
9139 F:      arch/mips/lantiq
9140 F:      drivers/soc/lantiq
9141
9142 LAPB module
9143 L:      [email protected]
9144 S:      Orphan
9145 F:      Documentation/networking/lapb-module.txt
9146 F:      include/*/lapb.h
9147 F:      net/lapb/
9148
9149 LASI 53c700 driver for PARISC
9150 M:      "James E.J. Bottomley" <[email protected]>
9151 L:      [email protected]
9152 S:      Maintained
9153 F:      Documentation/scsi/53c700.txt
9154 F:      drivers/scsi/53c700*
9155
9156 LEAKING_ADDRESSES
9157 M:      Tobin C. Harding <[email protected]>
9158 M:      Tycho Andersen <[email protected]>
9159 L:      [email protected]
9160 S:      Maintained
9161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9162 F:      scripts/leaking_addresses.pl
9163
9164 LED SUBSYSTEM
9165 M:      Jacek Anaszewski <[email protected]>
9166 M:      Pavel Machek <[email protected]>
9167 R:      Dan Murphy <[email protected]>
9168 L:      [email protected]
9169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9170 S:      Maintained
9171 F:      Documentation/devicetree/bindings/leds/
9172 F:      drivers/leds/
9173 F:      include/linux/leds.h
9174
9175 LEGACY EEPROM DRIVER
9176 M:      Jean Delvare <[email protected]>
9177 S:      Maintained
9178 F:      Documentation/misc-devices/eeprom.rst
9179 F:      drivers/misc/eeprom/eeprom.c
9180
9181 LEGO MINDSTORMS EV3
9182 R:      David Lechner <[email protected]>
9183 S:      Maintained
9184 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9185 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9186 F:      drivers/power/supply/lego_ev3_battery.c
9187
9188 LEGO USB Tower driver
9189 M:      Juergen Stuber <[email protected]>
9190 L:      [email protected]
9191 W:      http://legousb.sourceforge.net/
9192 S:      Maintained
9193 F:      drivers/usb/misc/legousbtower.c
9194
9195 LG LAPTOP EXTRAS
9196 M:      Matan Ziv-Av <[email protected]>
9197 L:      [email protected]
9198 S:      Maintained
9199 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9200 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9201 F:      drivers/platform/x86/lg-laptop.c
9202
9203 LG2160 MEDIA DRIVER
9204 M:      Michael Krufky <[email protected]>
9205 L:      [email protected]
9206 W:      https://linuxtv.org
9207 W:      http://github.com/mkrufky
9208 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9209 T:      git git://linuxtv.org/mkrufky/tuners.git
9210 S:      Maintained
9211 F:      drivers/media/dvb-frontends/lg2160.*
9212
9213 LGDT3305 MEDIA DRIVER
9214 M:      Michael Krufky <[email protected]>
9215 L:      [email protected]
9216 W:      https://linuxtv.org
9217 W:      http://github.com/mkrufky
9218 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9219 T:      git git://linuxtv.org/mkrufky/tuners.git
9220 S:      Maintained
9221 F:      drivers/media/dvb-frontends/lgdt3305.*
9222
9223 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9224 M:      Viresh Kumar <[email protected]>
9225 L:      [email protected]
9226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9227 S:      Maintained
9228 F:      include/linux/pata_arasan_cf_data.h
9229 F:      drivers/ata/pata_arasan_cf.c
9230
9231 LIBATA PATA DRIVERS
9232 M:      Bartlomiej Zolnierkiewicz <[email protected]>
9233 M:      Jens Axboe <[email protected]>
9234 L:      [email protected]
9235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9236 S:      Maintained
9237 F:      drivers/ata/pata_*.c
9238 F:      drivers/ata/ata_generic.c
9239
9240 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9241 M:      Linus Walleij <[email protected]>
9242 L:      [email protected]
9243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9244 S:      Maintained
9245 F:      drivers/ata/pata_ftide010.c
9246 F:      drivers/ata/sata_gemini.c
9247 F:      drivers/ata/sata_gemini.h
9248
9249 LIBATA SATA AHCI PLATFORM devices support
9250 M:      Hans de Goede <[email protected]>
9251 M:      Jens Axboe <[email protected]>
9252 L:      [email protected]
9253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9254 S:      Maintained
9255 F:      drivers/ata/ahci_platform.c
9256 F:      drivers/ata/libahci_platform.c
9257 F:      include/linux/ahci_platform.h
9258
9259 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9260 M:      Mikael Pettersson <[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/sata_promise.*
9265
9266 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9267 M:      Jens Axboe <[email protected]>
9268 L:      [email protected]
9269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9270 S:      Maintained
9271 F:      drivers/ata/
9272 F:      include/linux/ata.h
9273 F:      include/linux/libata.h
9274 F:      Documentation/devicetree/bindings/ata/
9275
9276 LIBLOCKDEP
9277 M:      Sasha Levin <[email protected]>
9278 S:      Maintained
9279 F:      tools/lib/lockdep/
9280
9281 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9282 M:      Dan Williams <[email protected]>
9283 M:      Vishal Verma <[email protected]>
9284 M:      Dave Jiang <[email protected]>
9285 L:      [email protected]
9286 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9287 S:      Supported
9288 F:      drivers/nvdimm/blk.c
9289 F:      drivers/nvdimm/region_devs.c
9290
9291 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9292 M:      Vishal Verma <[email protected]>
9293 M:      Dan Williams <[email protected]>
9294 M:      Dave Jiang <[email protected]>
9295 L:      [email protected]
9296 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9297 S:      Supported
9298 F:      drivers/nvdimm/btt*
9299
9300 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9301 M:      Dan Williams <[email protected]>
9302 M:      Vishal Verma <[email protected]>
9303 M:      Dave Jiang <[email protected]>
9304 L:      [email protected]
9305 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9306 S:      Supported
9307 F:      drivers/nvdimm/pmem*
9308
9309 LIBNVDIMM: DEVICETREE BINDINGS
9310 M:      Oliver O'Halloran <[email protected]>
9311 L:      [email protected]
9312 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9313 S:      Supported
9314 F:      drivers/nvdimm/of_pmem.c
9315 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9316
9317 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9318 M:      Dan Williams <[email protected]>
9319 M:      Vishal Verma <[email protected]>
9320 M:      Dave Jiang <[email protected]>
9321 M:      Keith Busch <[email protected]>
9322 M:      Ira Weiny <[email protected]>
9323 L:      [email protected]
9324 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9326 S:      Supported
9327 F:      drivers/nvdimm/*
9328 F:      drivers/acpi/nfit/*
9329 F:      include/linux/nd.h
9330 F:      include/linux/libnvdimm.h
9331 F:      include/uapi/linux/ndctl.h
9332
9333 LICENSES and SPDX stuff
9334 M:      Thomas Gleixner <[email protected]>
9335 M:      Greg Kroah-Hartman <[email protected]>
9336 L:      [email protected]
9337 S:      Maintained
9338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9339 F:      COPYING
9340 F:      Documentation/process/license-rules.rst
9341 F:      LICENSES/
9342 F:      scripts/spdxcheck-test.sh
9343 F:      scripts/spdxcheck.py
9344
9345 LIGHTNVM PLATFORM SUPPORT
9346 M:      Matias Bjorling <[email protected]>
9347 W:      http://github/OpenChannelSSD
9348 L:      [email protected]
9349 S:      Maintained
9350 F:      drivers/lightnvm/
9351 F:      include/linux/lightnvm.h
9352 F:      include/uapi/linux/lightnvm.h
9353
9354 LINUX FOR POWER MACINTOSH
9355 M:      Benjamin Herrenschmidt <[email protected]>
9356 W:      http://www.penguinppc.org/
9357 L:      [email protected]
9358 S:      Maintained
9359 F:      arch/powerpc/platforms/powermac/
9360 F:      drivers/macintosh/
9361
9362 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9363 M:      Benjamin Herrenschmidt <[email protected]>
9364 M:      Paul Mackerras <[email protected]>
9365 M:      Michael Ellerman <[email protected]>
9366 W:      https://github.com/linuxppc/linux/wiki
9367 L:      [email protected]
9368 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9370 S:      Supported
9371 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9372 F:      Documentation/devicetree/bindings/powerpc/
9373 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9374 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9375 F:      Documentation/powerpc/
9376 F:      arch/powerpc/
9377 F:      drivers/char/tpm/tpm_ibmvtpm*
9378 F:      drivers/crypto/nx/
9379 F:      drivers/crypto/vmx/
9380 F:      drivers/i2c/busses/i2c-opal.c
9381 F:      drivers/net/ethernet/ibm/ibmveth.*
9382 F:      drivers/net/ethernet/ibm/ibmvnic.*
9383 F:      drivers/pci/hotplug/pnv_php.c
9384 F:      drivers/pci/hotplug/rpa*
9385 F:      drivers/rtc/rtc-opal.c
9386 F:      drivers/scsi/ibmvscsi/
9387 F:      drivers/tty/hvc/hvc_opal.c
9388 F:      drivers/watchdog/wdrtas.c
9389 F:      tools/testing/selftests/powerpc
9390 N:      /pmac
9391 N:      powermac
9392 N:      powernv
9393 N:      [^a-z0-9]ps3
9394 N:      pseries
9395
9396 LINUX FOR POWERPC EMBEDDED MPC5XXX
9397 M:      Anatolij Gustschin <[email protected]>
9398 L:      [email protected]
9399 T:      git git://git.denx.de/linux-denx-agust.git
9400 S:      Maintained
9401 F:      arch/powerpc/platforms/512x/
9402 F:      arch/powerpc/platforms/52xx/
9403
9404 LINUX FOR POWERPC EMBEDDED PPC4XX
9405 M:      Alistair Popple <[email protected]>
9406 M:      Matt Porter <[email protected]>
9407 W:      http://www.penguinppc.org/
9408 L:      [email protected]
9409 S:      Maintained
9410 F:      arch/powerpc/platforms/40x/
9411 F:      arch/powerpc/platforms/44x/
9412
9413 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9414 M:      Scott Wood <[email protected]>
9415 M:      Kumar Gala <[email protected]>
9416 W:      http://www.penguinppc.org/
9417 L:      [email protected]
9418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9419 S:      Maintained
9420 F:      arch/powerpc/platforms/83xx/
9421 F:      arch/powerpc/platforms/85xx/
9422 F:      Documentation/devicetree/bindings/powerpc/fsl/
9423
9424 LINUX FOR POWERPC EMBEDDED PPC8XX
9425 M:      Vitaly Bordug <[email protected]>
9426 W:      http://www.penguinppc.org/
9427 L:      [email protected]
9428 S:      Maintained
9429 F:      arch/powerpc/platforms/8xx/
9430
9431 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
9432 L:      [email protected]
9433 S:      Orphan
9434 F:      arch/powerpc/*/*virtex*
9435 F:      arch/powerpc/*/*/*virtex*
9436
9437 LINUX FOR POWERPC PA SEMI PWRFICIENT
9438 L:      [email protected]
9439 S:      Orphan
9440 F:      arch/powerpc/platforms/pasemi/
9441 F:      drivers/*/*pasemi*
9442 F:      drivers/*/*/*pasemi*
9443
9444 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9445 M:      Kees Cook <[email protected]>
9446 S:      Maintained
9447 F:      drivers/misc/lkdtm/*
9448
9449 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9450 M:      Alan Stern <[email protected]>
9451 M:      Andrea Parri <[email protected]>
9452 M:      Will Deacon <[email protected]>
9453 M:      Peter Zijlstra <[email protected]>
9454 M:      Boqun Feng <[email protected]>
9455 M:      Nicholas Piggin <[email protected]>
9456 M:      David Howells <[email protected]>
9457 M:      Jade Alglave <[email protected]>
9458 M:      Luc Maranget <[email protected]>
9459 M:      "Paul E. McKenney" <[email protected]>
9460 R:      Akira Yokosawa <[email protected]>
9461 R:      Daniel Lustig <[email protected]>
9462 L:      [email protected]
9463 L:      [email protected]
9464 S:      Supported
9465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9466 F:      tools/memory-model/
9467 F:      Documentation/atomic_bitops.txt
9468 F:      Documentation/atomic_t.txt
9469 F:      Documentation/core-api/atomic_ops.rst
9470 F:      Documentation/core-api/refcount-vs-atomic.rst
9471 F:      Documentation/memory-barriers.txt
9472
9473 LIS3LV02D ACCELEROMETER DRIVER
9474 M:      Eric Piel <[email protected]>
9475 S:      Maintained
9476 F:      Documentation/misc-devices/lis3lv02d.rst
9477 F:      drivers/misc/lis3lv02d/
9478 F:      drivers/platform/x86/hp_accel.c
9479
9480 LIVE PATCHING
9481 M:      Josh Poimboeuf <[email protected]>
9482 M:      Jiri Kosina <[email protected]>
9483 M:      Miroslav Benes <[email protected]>
9484 M:      Petr Mladek <[email protected]>
9485 R:      Joe Lawrence <[email protected]>
9486 S:      Maintained
9487 F:      kernel/livepatch/
9488 F:      include/linux/livepatch.h
9489 F:      arch/x86/include/asm/livepatch.h
9490 F:      arch/x86/kernel/livepatch.c
9491 F:      Documentation/livepatch/
9492 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9493 F:      samples/livepatch/
9494 F:      tools/testing/selftests/livepatch/
9495 L:      [email protected]
9496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9497
9498 LLC (802.2)
9499 L:      [email protected]
9500 S:      Odd fixes
9501 F:      include/linux/llc.h
9502 F:      include/uapi/linux/llc.h
9503 F:      include/net/llc*
9504 F:      net/llc/
9505
9506 LM73 HARDWARE MONITOR DRIVER
9507 M:      Guillaume Ligneul <[email protected]>
9508 L:      [email protected]
9509 S:      Maintained
9510 F:      drivers/hwmon/lm73.c
9511
9512 LM78 HARDWARE MONITOR DRIVER
9513 M:      Jean Delvare <[email protected]>
9514 L:      [email protected]
9515 S:      Maintained
9516 F:      Documentation/hwmon/lm78.rst
9517 F:      drivers/hwmon/lm78.c
9518
9519 LM83 HARDWARE MONITOR DRIVER
9520 M:      Jean Delvare <[email protected]>
9521 L:      [email protected]
9522 S:      Maintained
9523 F:      Documentation/hwmon/lm83.rst
9524 F:      drivers/hwmon/lm83.c
9525
9526 LM90 HARDWARE MONITOR DRIVER
9527 M:      Jean Delvare <[email protected]>
9528 L:      [email protected]
9529 S:      Maintained
9530 F:      Documentation/hwmon/lm90.rst
9531 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
9532 F:      drivers/hwmon/lm90.c
9533 F:      include/dt-bindings/thermal/lm90.h
9534
9535 LM95234 HARDWARE MONITOR DRIVER
9536 M:      Guenter Roeck <[email protected]>
9537 L:      [email protected]
9538 S:      Maintained
9539 F:      Documentation/hwmon/lm95234.rst
9540 F:      drivers/hwmon/lm95234.c
9541
9542 LME2510 MEDIA DRIVER
9543 M:      Malcolm Priestley <[email protected]>
9544 L:      [email protected]
9545 W:      https://linuxtv.org
9546 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9547 S:      Maintained
9548 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
9549
9550 LOADPIN SECURITY MODULE
9551 M:      Kees Cook <[email protected]>
9552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
9553 S:      Supported
9554 F:      security/loadpin/
9555 F:      Documentation/admin-guide/LSM/LoadPin.rst
9556
9557 LOCKING PRIMITIVES
9558 M:      Peter Zijlstra <[email protected]>
9559 M:      Ingo Molnar <[email protected]>
9560 M:      Will Deacon <[email protected]>
9561 L:      [email protected]
9562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9563 S:      Maintained
9564 F:      Documentation/locking/
9565 F:      include/linux/lockdep.h
9566 F:      include/linux/spinlock*.h
9567 F:      arch/*/include/asm/spinlock*.h
9568 F:      include/linux/rwlock*.h
9569 F:      include/linux/mutex*.h
9570 F:      include/linux/rwsem*.h
9571 F:      include/linux/seqlock.h
9572 F:      lib/locking*.[ch]
9573 F:      kernel/locking/
9574 X:      kernel/locking/locktorture.c
9575
9576 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
9577 M:      "Richard Russon (FlatCap)" <[email protected]>
9578 L:      [email protected]
9579 W:      http://www.linux-ntfs.org/content/view/19/37/
9580 S:      Maintained
9581 F:      Documentation/admin-guide/ldm.rst
9582 F:      block/partitions/ldm.*
9583
9584 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
9585 M:      Sathya Prakash <[email protected]>
9586 M:      Chaitra P B <[email protected]>
9587 M:      Suganath Prabu Subramani <[email protected]>
9588 L:      [email protected]
9589 L:      [email protected]
9590 W:      http://www.avagotech.com/support/
9591 S:      Supported
9592 F:      drivers/message/fusion/
9593 F:      drivers/scsi/mpt3sas/
9594
9595 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
9596 M:      Matthew Wilcox <[email protected]>
9597 L:      [email protected]
9598 S:      Maintained
9599 F:      drivers/scsi/sym53c8xx_2/
9600
9601 LTC1660 DAC DRIVER
9602 M:      Marcus Folkesson <[email protected]>
9603 L:      [email protected]
9604 S:      Maintained
9605 F:      Documentation/devicetree/bindings/iio/dac/ltc1660.txt
9606 F:      drivers/iio/dac/ltc1660.c
9607
9608 LTC4261 HARDWARE MONITOR DRIVER
9609 M:      Guenter Roeck <[email protected]>
9610 L:      [email protected]
9611 S:      Maintained
9612 F:      Documentation/hwmon/ltc4261.rst
9613 F:      drivers/hwmon/ltc4261.c
9614
9615 LTC4306 I2C MULTIPLEXER DRIVER
9616 M:      Michael Hennerich <[email protected]>
9617 W:      http://ez.analog.com/community/linux-device-drivers
9618 L:      [email protected]
9619 S:      Supported
9620 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
9621 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
9622
9623 LTP (Linux Test Project)
9624 M:      Mike Frysinger <[email protected]>
9625 M:      Cyril Hrubis <[email protected]>
9626 M:      Wanlong Gao <[email protected]>
9627 M:      Jan Stancek <[email protected]>
9628 M:      Stanislav Kholmanskikh <[email protected]>
9629 M:      Alexey Kodanev <[email protected]>
9630 L:      [email protected] (subscribers-only)
9631 W:      http://linux-test-project.github.io/
9632 T:      git git://github.com/linux-test-project/ltp.git
9633 S:      Maintained
9634
9635 M68K ARCHITECTURE
9636 M:      Geert Uytterhoeven <[email protected]>
9637 L:      [email protected]
9638 W:      http://www.linux-m68k.org/
9639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
9640 S:      Maintained
9641 F:      arch/m68k/
9642 F:      drivers/zorro/
9643
9644 M68K ON APPLE MACINTOSH
9645 M:      Joshua Thompson <[email protected]>
9646 W:      http://www.mac.linux-m68k.org/
9647 L:      [email protected]
9648 S:      Maintained
9649 F:      arch/m68k/mac/
9650
9651 M68K ON HP9000/300
9652 M:      Philip Blundell <[email protected]>
9653 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
9654 S:      Maintained
9655 F:      arch/m68k/hp300/
9656
9657 M88DS3103 MEDIA DRIVER
9658 M:      Antti Palosaari <[email protected]>
9659 L:      [email protected]
9660 W:      https://linuxtv.org
9661 W:      http://palosaari.fi/linux/
9662 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9663 T:      git git://linuxtv.org/anttip/media_tree.git
9664 S:      Maintained
9665 F:      drivers/media/dvb-frontends/m88ds3103*
9666
9667 M88RS2000 MEDIA DRIVER
9668 M:      Malcolm Priestley <[email protected]>
9669 L:      [email protected]
9670 W:      https://linuxtv.org
9671 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9672 S:      Maintained
9673 F:      drivers/media/dvb-frontends/m88rs2000*
9674
9675 MA901 MASTERKIT USB FM RADIO DRIVER
9676 M:      Alexey Klimov <[email protected]>
9677 L:      [email protected]
9678 T:      git git://linuxtv.org/media_tree.git
9679 S:      Maintained
9680 F:      drivers/media/radio/radio-ma901.c
9681
9682 MAC80211
9683 M:      Johannes Berg <[email protected]>
9684 L:      [email protected]
9685 W:      http://wireless.kernel.org/
9686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9688 S:      Maintained
9689 F:      Documentation/networking/mac80211-injection.txt
9690 F:      include/net/mac80211.h
9691 F:      net/mac80211/
9692 F:      drivers/net/wireless/mac80211_hwsim.[ch]
9693 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
9694
9695 MAILBOX API
9696 M:      Jassi Brar <[email protected]>
9697 L:      [email protected]
9698 S:      Maintained
9699 F:      drivers/mailbox/
9700 F:      include/linux/mailbox_client.h
9701 F:      include/linux/mailbox_controller.h
9702
9703 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
9704 M:      Michael Kerrisk <[email protected]>
9705 W:      http://www.kernel.org/doc/man-pages
9706 L:      [email protected]
9707 S:      Maintained
9708
9709 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
9710 M:      Rahul Bedarkar <[email protected]>
9711 L:      [email protected]
9712 S:      Maintained
9713 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
9714
9715 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
9716 M:      Andrew Lunn <[email protected]>
9717 M:      Vivien Didelot <[email protected]>
9718 L:      [email protected]
9719 S:      Maintained
9720 F:      drivers/net/dsa/mv88e6xxx/
9721 F:      include/linux/platform_data/mv88e6xxx.h
9722 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
9723
9724 MARVELL ARMADA DRM SUPPORT
9725 M:      Russell King <[email protected]>
9726 S:      Maintained
9727 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
9728 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
9729 F:      drivers/gpu/drm/armada/
9730 F:      include/uapi/drm/armada_drm.h
9731 F:      Documentation/devicetree/bindings/display/armada/
9732
9733 MARVELL ARMADA 3700 PHY DRIVERS
9734 M:      Miquel Raynal <[email protected]>
9735 S:      Maintained
9736 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
9737 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
9738 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
9739 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
9740
9741 MARVELL CRYPTO DRIVER
9742 M:      Boris Brezillon <[email protected]>
9743 M:      Arnaud Ebalard <[email protected]>
9744 F:      drivers/crypto/marvell/
9745 S:      Maintained
9746 L:      [email protected]
9747
9748 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
9749 M:      Mirko Lindner <[email protected]>
9750 M:      Stephen Hemminger <[email protected]>
9751 L:      [email protected]
9752 S:      Maintained
9753 F:      drivers/net/ethernet/marvell/sk*
9754
9755 MARVELL LIBERTAS WIRELESS DRIVER
9756 L:      [email protected]
9757 S:      Orphan
9758 F:      drivers/net/wireless/marvell/libertas/
9759
9760 MARVELL MACCHIATOBIN SUPPORT
9761 M:      Russell King <[email protected]>
9762 L:      [email protected]
9763 S:      Maintained
9764 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
9765
9766 MARVELL MV643XX ETHERNET DRIVER
9767 M:      Sebastian Hesselbarth <[email protected]>
9768 L:      [email protected]
9769 S:      Maintained
9770 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
9771 F:      include/linux/mv643xx.h
9772
9773 MARVELL MV88X3310 PHY DRIVER
9774 M:      Russell King <[email protected]>
9775 L:      [email protected]
9776 S:      Maintained
9777 F:      drivers/net/phy/marvell10g.c
9778
9779 MARVELL MVEBU THERMAL DRIVER
9780 M:      Miquel Raynal <[email protected]>
9781 S:      Maintained
9782 F:      drivers/thermal/armada_thermal.c
9783
9784 MARVELL MVNETA ETHERNET DRIVER
9785 M:      Thomas Petazzoni <[email protected]>
9786 L:      [email protected]
9787 S:      Maintained
9788 F:      drivers/net/ethernet/marvell/mvneta.*
9789
9790 MARVELL MWIFIEX WIRELESS DRIVER
9791 M:      Amitkumar Karwar <[email protected]>
9792 M:      Nishant Sarmukadam <[email protected]>
9793 M:      Ganapathi Bhat <[email protected]>
9794 M:      Xinming Hu <[email protected]>
9795 L:      [email protected]
9796 S:      Maintained
9797 F:      drivers/net/wireless/marvell/mwifiex/
9798
9799 MARVELL MWL8K WIRELESS DRIVER
9800 M:      Lennert Buytenhek <[email protected]>
9801 L:      [email protected]
9802 S:      Odd Fixes
9803 F:      drivers/net/wireless/marvell/mwl8k.c
9804
9805 MARVELL NAND CONTROLLER DRIVER
9806 M:      Miquel Raynal <[email protected]>
9807 L:      [email protected]
9808 S:      Maintained
9809 F:      drivers/mtd/nand/raw/marvell_nand.c
9810 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
9811
9812 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
9813 M:      Nicolas Pitre <[email protected]>
9814 S:      Odd Fixes
9815 F:      drivers/mmc/host/mvsdio.*
9816
9817 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
9818 M:      Hu Ziji <[email protected]>
9819 L:      [email protected]
9820 S:      Supported
9821 F:      drivers/mmc/host/sdhci-xenon*
9822 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
9823
9824 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
9825 M:      Sunil Goutham <[email protected]>
9826 M:      Linu Cherian <[email protected]>
9827 M:      Geetha sowjanya <[email protected]>
9828 M:      Jerin Jacob <[email protected]>
9829 L:      [email protected]
9830 S:      Supported
9831 F:      drivers/net/ethernet/marvell/octeontx2/af/
9832
9833 MATROX FRAMEBUFFER DRIVER
9834 L:      [email protected]
9835 S:      Orphan
9836 F:      drivers/video/fbdev/matrox/matroxfb_*
9837 F:      include/uapi/linux/matroxfb.h
9838
9839 MAX16065 HARDWARE MONITOR DRIVER
9840 M:      Guenter Roeck <[email protected]>
9841 L:      [email protected]
9842 S:      Maintained
9843 F:      Documentation/hwmon/max16065.rst
9844 F:      drivers/hwmon/max16065.c
9845
9846 MAX2175 SDR TUNER DRIVER
9847 M:      Ramesh Shanmugasundaram <[email protected]>
9848 L:      [email protected]
9849 T:      git git://linuxtv.org/media_tree.git
9850 S:      Maintained
9851 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
9852 F:      Documentation/media/v4l-drivers/max2175.rst
9853 F:      drivers/media/i2c/max2175*
9854 F:      include/uapi/linux/max2175.h
9855
9856 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
9857 L:      [email protected]
9858 S:      Orphan
9859 F:      Documentation/hwmon/max6650.rst
9860 F:      drivers/hwmon/max6650.c
9861
9862 MAX6697 HARDWARE MONITOR DRIVER
9863 M:      Guenter Roeck <[email protected]>
9864 L:      [email protected]
9865 S:      Maintained
9866 F:      Documentation/hwmon/max6697.rst
9867 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
9868 F:      drivers/hwmon/max6697.c
9869 F:      include/linux/platform_data/max6697.h
9870
9871 MAX9860 MONO AUDIO VOICE CODEC DRIVER
9872 M:      Peter Rosin <[email protected]>
9873 L:      [email protected] (moderated for non-subscribers)
9874 S:      Maintained
9875 F:      Documentation/devicetree/bindings/sound/max9860.txt
9876 F:      sound/soc/codecs/max9860.*
9877
9878 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
9879 M:      Andreas Klinger <[email protected]>
9880 L:      [email protected]
9881 S:      Maintained
9882 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.txt
9883 F:      drivers/iio/proximity/mb1232.c
9884
9885 MAXIM MAX77650 PMIC MFD DRIVER
9886 M:      Bartosz Golaszewski <[email protected]>
9887 L:      [email protected]
9888 S:      Maintained
9889 F:      Documentation/devicetree/bindings/*/*max77650.txt
9890 F:      Documentation/devicetree/bindings/*/max77650*.txt
9891 F:      include/linux/mfd/max77650.h
9892 F:      drivers/mfd/max77650.c
9893 F:      drivers/regulator/max77650-regulator.c
9894 F:      drivers/power/supply/max77650-charger.c
9895 F:      drivers/input/misc/max77650-onkey.c
9896 F:      drivers/leds/leds-max77650.c
9897 F:      drivers/gpio/gpio-max77650.c
9898
9899 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
9900 M:      Javier Martinez Canillas <[email protected]>
9901 L:      [email protected]
9902 S:      Supported
9903 F:      drivers/regulator/max77802-regulator.c
9904 F:      Documentation/devicetree/bindings/*/*max77802.txt
9905 F:      include/dt-bindings/*/*max77802.h
9906
9907 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
9908 M:      Krzysztof Kozlowski <[email protected]>
9909 M:      Bartlomiej Zolnierkiewicz <[email protected]>
9910 L:      [email protected]
9911 S:      Supported
9912 F:      drivers/power/supply/max14577_charger.c
9913 F:      drivers/power/supply/max77693_charger.c
9914
9915 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
9916 M:      Chanwoo Choi <[email protected]>
9917 M:      Krzysztof Kozlowski <[email protected]>
9918 M:      Bartlomiej Zolnierkiewicz <[email protected]>
9919 L:      [email protected]
9920 S:      Supported
9921 F:      drivers/*/max14577*.c
9922 F:      drivers/*/max77686*.c
9923 F:      drivers/*/max77693*.c
9924 F:      drivers/extcon/extcon-max14577.c
9925 F:      drivers/extcon/extcon-max77693.c
9926 F:      drivers/rtc/rtc-max77686.c
9927 F:      drivers/clk/clk-max77686.c
9928 F:      Documentation/devicetree/bindings/mfd/max14577.txt
9929 F:      Documentation/devicetree/bindings/*/max77686.txt
9930 F:      Documentation/devicetree/bindings/mfd/max77693.txt
9931 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
9932 F:      include/linux/mfd/max14577*.h
9933 F:      include/linux/mfd/max77686*.h
9934 F:      include/linux/mfd/max77693*.h
9935
9936 MAXIRADIO FM RADIO RECEIVER DRIVER
9937 M:      Hans Verkuil <[email protected]>
9938 L:      [email protected]
9939 T:      git git://linuxtv.org/media_tree.git
9940 W:      https://linuxtv.org
9941 S:      Maintained
9942 F:      drivers/media/radio/radio-maxiradio*
9943
9944 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
9945 M:      Peter Rosin <[email protected]>
9946 L:      [email protected]
9947 S:      Maintained
9948 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
9949 F:      drivers/iio/potentiometer/mcp4018.c
9950 F:      drivers/iio/potentiometer/mcp4531.c
9951
9952 MCR20A IEEE-802.15.4 RADIO DRIVER
9953 M:      Xue Liu <[email protected]>
9954 L:      [email protected]
9955 W:      https://github.com/xueliu/mcr20a-linux
9956 S:      Maintained
9957 F:      drivers/net/ieee802154/mcr20a.c
9958 F:      drivers/net/ieee802154/mcr20a.h
9959 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
9960
9961 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
9962 M:      William Breathitt Gray <[email protected]>
9963 L:      [email protected]
9964 S:      Maintained
9965 F:      drivers/iio/dac/cio-dac.c
9966
9967 MEDIA CONTROLLER FRAMEWORK
9968 M:      Sakari Ailus <[email protected]>
9969 M:      Laurent Pinchart <[email protected]>
9970 L:      [email protected]
9971 W:      https://www.linuxtv.org
9972 T:      git git://linuxtv.org/media_tree.git
9973 S:      Supported
9974 F:      drivers/media/mc/
9975 F:      include/media/media-*.h
9976 F:      include/uapi/linux/media.h
9977
9978 MEDIA DRIVERS FOR ASCOT2E
9979 M:      Sergey Kozlov <[email protected]>
9980 M:      Abylay Ospan <[email protected]>
9981 L:      [email protected]
9982 W:      https://linuxtv.org
9983 W:      http://netup.tv/
9984 T:      git git://linuxtv.org/media_tree.git
9985 S:      Supported
9986 F:      drivers/media/dvb-frontends/ascot2e*
9987
9988 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
9989 M:      Jasmin Jessich <[email protected]>
9990 L:      [email protected]
9991 W:      https://linuxtv.org
9992 T:      git git://linuxtv.org/media_tree.git
9993 S:      Maintained
9994 F:      drivers/media/dvb-frontends/cxd2099*
9995
9996 MEDIA DRIVERS FOR CXD2841ER
9997 M:      Sergey Kozlov <[email protected]>
9998 M:      Abylay Ospan <[email protected]>
9999 L:      [email protected]
10000 W:      https://linuxtv.org
10001 W:      http://netup.tv/
10002 T:      git git://linuxtv.org/media_tree.git
10003 S:      Supported
10004 F:      drivers/media/dvb-frontends/cxd2841er*
10005
10006 MEDIA DRIVERS FOR CXD2880
10007 M:      Yasunari Takiguchi <[email protected]>
10008 L:      [email protected]
10009 W:      http://linuxtv.org/
10010 T:      git git://linuxtv.org/media_tree.git
10011 S:      Supported
10012 F:      drivers/media/dvb-frontends/cxd2880/*
10013 F:      drivers/media/spi/cxd2880*
10014
10015 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10016 L:      [email protected]
10017 W:      https://linuxtv.org
10018 T:      git git://linuxtv.org/media_tree.git
10019 S:      Orphan
10020 F:      drivers/media/pci/ddbridge/*
10021
10022 MEDIA DRIVERS FOR FREESCALE IMX
10023 M:      Steve Longerbeam <[email protected]>
10024 M:      Philipp Zabel <[email protected]>
10025 L:      [email protected]
10026 T:      git git://linuxtv.org/media_tree.git
10027 S:      Maintained
10028 F:      Documentation/devicetree/bindings/media/imx.txt
10029 F:      Documentation/media/v4l-drivers/imx.rst
10030 F:      drivers/staging/media/imx/
10031 F:      include/linux/imx-media.h
10032 F:      include/media/imx.h
10033
10034 MEDIA DRIVER FOR FREESCALE IMX PXP
10035 M:      Philipp Zabel <[email protected]>
10036 L:      [email protected]
10037 T:      git git://linuxtv.org/media_tree.git
10038 S:      Maintained
10039 F:      drivers/media/platform/imx-pxp.[ch]
10040
10041 MEDIA DRIVERS FOR FREESCALE IMX7
10042 M:      Rui Miguel Silva <[email protected]>
10043 L:      [email protected]
10044 T:      git git://linuxtv.org/media_tree.git
10045 S:      Maintained
10046 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10047 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10048 F:      Documentation/media/v4l-drivers/imx7.rst
10049 F:      drivers/staging/media/imx/imx7-media-csi.c
10050 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10051
10052 MEDIA DRIVERS FOR HELENE
10053 M:      Abylay Ospan <[email protected]>
10054 L:      [email protected]
10055 W:      https://linuxtv.org
10056 W:      http://netup.tv/
10057 T:      git git://linuxtv.org/media_tree.git
10058 S:      Supported
10059 F:      drivers/media/dvb-frontends/helene*
10060
10061 MEDIA DRIVERS FOR HORUS3A
10062 M:      Sergey Kozlov <[email protected]>
10063 M:      Abylay Ospan <[email protected]>
10064 L:      [email protected]
10065 W:      https://linuxtv.org
10066 W:      http://netup.tv/
10067 T:      git git://linuxtv.org/media_tree.git
10068 S:      Supported
10069 F:      drivers/media/dvb-frontends/horus3a*
10070
10071 MEDIA DRIVERS FOR LNBH25
10072 M:      Sergey Kozlov <[email protected]>
10073 M:      Abylay Ospan <[email protected]>
10074 L:      [email protected]
10075 W:      https://linuxtv.org
10076 W:      http://netup.tv/
10077 T:      git git://linuxtv.org/media_tree.git
10078 S:      Supported
10079 F:      drivers/media/dvb-frontends/lnbh25*
10080
10081 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10082 L:      [email protected]
10083 W:      https://linuxtv.org
10084 T:      git git://linuxtv.org/media_tree.git
10085 S:      Orphan
10086 F:      drivers/media/dvb-frontends/mxl5xx*
10087
10088 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10089 M:      Sergey Kozlov <[email protected]>
10090 M:      Abylay Ospan <[email protected]>
10091 L:      [email protected]
10092 W:      https://linuxtv.org
10093 W:      http://netup.tv/
10094 T:      git git://linuxtv.org/media_tree.git
10095 S:      Supported
10096 F:      drivers/media/pci/netup_unidvb/*
10097
10098 MEDIA DRIVERS FOR RENESAS - CEU
10099 M:      Jacopo Mondi <[email protected]>
10100 L:      [email protected]
10101 L:      [email protected]
10102 T:      git git://linuxtv.org/media_tree.git
10103 S:      Supported
10104 F:      Documentation/devicetree/bindings/media/renesas,ceu.txt
10105 F:      drivers/media/platform/renesas-ceu.c
10106 F:      include/media/drv-intf/renesas-ceu.h
10107
10108 MEDIA DRIVERS FOR RENESAS - DRIF
10109 M:      Ramesh Shanmugasundaram <[email protected]>
10110 L:      [email protected]
10111 L:      [email protected]
10112 T:      git git://linuxtv.org/media_tree.git
10113 S:      Supported
10114 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10115 F:      drivers/media/platform/rcar_drif.c
10116
10117 MEDIA DRIVERS FOR RENESAS - FCP
10118 M:      Laurent Pinchart <[email protected]>
10119 L:      [email protected]
10120 L:      [email protected]
10121 T:      git git://linuxtv.org/media_tree.git
10122 S:      Supported
10123 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10124 F:      drivers/media/platform/rcar-fcp.c
10125 F:      include/media/rcar-fcp.h
10126
10127 MEDIA DRIVERS FOR RENESAS - FDP1
10128 M:      Kieran Bingham <[email protected]>
10129 L:      [email protected]
10130 L:      [email protected]
10131 T:      git git://linuxtv.org/media_tree.git
10132 S:      Supported
10133 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10134 F:      drivers/media/platform/rcar_fdp1.c
10135
10136 MEDIA DRIVERS FOR RENESAS - VIN
10137 M:      Niklas Söderlund <[email protected]>
10138 L:      [email protected]
10139 L:      [email protected]
10140 T:      git git://linuxtv.org/media_tree.git
10141 S:      Supported
10142 F:      Documentation/devicetree/bindings/media/renesas,csi2.txt
10143 F:      Documentation/devicetree/bindings/media/renesas,vin.txt
10144 F:      drivers/media/platform/rcar-vin/
10145
10146 MEDIA DRIVERS FOR RENESAS - VSP1
10147 M:      Laurent Pinchart <[email protected]>
10148 M:      Kieran Bingham <[email protected]>
10149 L:      [email protected]
10150 L:      [email protected]
10151 T:      git git://linuxtv.org/media_tree.git
10152 S:      Supported
10153 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10154 F:      drivers/media/platform/vsp1/
10155
10156 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR 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/stv0910*
10162
10163 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10164 L:      [email protected]
10165 W:      https://linuxtv.org
10166 T:      git git://linuxtv.org/media_tree.git
10167 S:      Orphan
10168 F:      drivers/media/dvb-frontends/stv6111*
10169
10170 MEDIA DRIVERS FOR STM32 - DCMI
10171 M:      Hugues Fruchet <[email protected]>
10172 L:      [email protected]
10173 T:      git git://linuxtv.org/media_tree.git
10174 S:      Supported
10175 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.txt
10176 F:      drivers/media/platform/stm32/stm32-dcmi.c
10177
10178 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10179 M:      Dmitry Osipenko <[email protected]>
10180 L:      [email protected]
10181 L:      [email protected]
10182 T:      git git://linuxtv.org/media_tree.git
10183 S:      Maintained
10184 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10185 F:      drivers/staging/media/tegra-vde/
10186
10187 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10188 M:      Mauro Carvalho Chehab <[email protected]>
10189 P:      LinuxTV.org Project
10190 L:      [email protected]
10191 W:      https://linuxtv.org
10192 Q:      http://patchwork.kernel.org/project/linux-media/list/
10193 T:      git git://linuxtv.org/media_tree.git
10194 S:      Maintained
10195 F:      Documentation/devicetree/bindings/media/
10196 F:      Documentation/media/
10197 F:      drivers/media/
10198 F:      drivers/staging/media/
10199 F:      include/linux/platform_data/media/
10200 F:      include/media/
10201 F:      include/uapi/linux/dvb/
10202 F:      include/uapi/linux/videodev2.h
10203 F:      include/uapi/linux/media.h
10204 F:      include/uapi/linux/v4l2-*
10205 F:      include/uapi/linux/meye.h
10206 F:      include/uapi/linux/ivtv*
10207 F:      include/uapi/linux/uvcvideo.h
10208
10209 MEDIATEK BLUETOOTH DRIVER
10210 M:      Sean Wang <[email protected]>
10211 L:      [email protected]
10212 L:      [email protected] (moderated for non-subscribers)
10213 S:      Maintained
10214 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10215 F:      drivers/bluetooth/btmtkuart.c
10216
10217 MEDIATEK CIR DRIVER
10218 M:      Sean Wang <[email protected]>
10219 S:      Maintained
10220 F:      drivers/media/rc/mtk-cir.c
10221
10222 MEDIATEK DMA DRIVER
10223 M:      Sean Wang <[email protected]>
10224 L:      [email protected]
10225 L:      [email protected] (moderated for non-subscribers)
10226 L:      [email protected] (moderated for non-subscribers)
10227 S:      Maintained
10228 F:      Documentation/devicetree/bindings/dma/mtk-*
10229 F:      drivers/dma/mediatek/
10230
10231 MEDIATEK PMIC LED DRIVER
10232 M:      Sean Wang <[email protected]>
10233 S:      Maintained
10234 F:      drivers/leds/leds-mt6323.c
10235 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10236
10237 MEDIATEK ETHERNET DRIVER
10238 M:      Felix Fietkau <[email protected]>
10239 M:      John Crispin <[email protected]>
10240 M:      Sean Wang <[email protected]>
10241 M:      Nelson Chang <[email protected]>
10242 L:      [email protected]
10243 S:      Maintained
10244 F:      drivers/net/ethernet/mediatek/
10245
10246 MEDIATEK SWITCH DRIVER
10247 M:      Sean Wang <[email protected]>
10248 L:      [email protected]
10249 S:      Maintained
10250 F:      drivers/net/dsa/mt7530.*
10251 F:      net/dsa/tag_mtk.c
10252
10253 MEDIATEK JPEG DRIVER
10254 M:      Rick Chang <[email protected]>
10255 M:      Bin Liu <[email protected]>
10256 S:      Supported
10257 F:      drivers/media/platform/mtk-jpeg/
10258 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10259
10260 MEDIATEK MDP DRIVER
10261 M:      Minghsiu Tsai <[email protected]>
10262 M:      Houlong Wei <[email protected]>
10263 M:      Andrew-CT Chen <[email protected]>
10264 S:      Supported
10265 F:      drivers/media/platform/mtk-mdp/
10266 F:      drivers/media/platform/mtk-vpu/
10267 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10268
10269 MEDIATEK MEDIA DRIVER
10270 M:      Tiffany Lin <[email protected]>
10271 M:      Andrew-CT Chen <[email protected]>
10272 S:      Supported
10273 F:      drivers/media/platform/mtk-vcodec/
10274 F:      drivers/media/platform/mtk-vpu/
10275 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10276 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10277
10278 MEDIATEK MMC/SD/SDIO DRIVER
10279 M:      Chaotian Jing <[email protected]>
10280 S:      Maintained
10281 F:      drivers/mmc/host/mtk-sd.c
10282 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10283
10284 MEDIATEK MT76 WIRELESS LAN DRIVER
10285 M:      Felix Fietkau <[email protected]>
10286 M:      Lorenzo Bianconi <[email protected]>
10287 R:      Ryder Lee <[email protected]>
10288 R:      Roy Luo <[email protected]>
10289 L:      [email protected]
10290 S:      Maintained
10291 F:      drivers/net/wireless/mediatek/mt76/
10292
10293 MEDIATEK MT7601U WIRELESS LAN DRIVER
10294 M:      Jakub Kicinski <[email protected]>
10295 L:      [email protected]
10296 S:      Maintained
10297 F:      drivers/net/wireless/mediatek/mt7601u/
10298
10299 MEDIATEK MT7621/28/88 I2C DRIVER
10300 M:      Stefan Roese <[email protected]>
10301 L:      [email protected]
10302 S:      Maintained
10303 F:      drivers/i2c/busses/i2c-mt7621.c
10304 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10305
10306 MEDIATEK NAND CONTROLLER DRIVER
10307 M:      Xiaolei Li <[email protected]>
10308 L:      [email protected]
10309 S:      Maintained
10310 F:      drivers/mtd/nand/raw/mtk_*
10311 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10312
10313 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10314 M:      Sean Wang <[email protected]>
10315 S:      Maintained
10316 F:      drivers/char/hw_random/mtk-rng.c
10317
10318 MEDIATEK USB3 DRD IP DRIVER
10319 M:      Chunfeng Yun <[email protected]>
10320 L:      [email protected] (moderated for non-subscribers)
10321 L:      [email protected] (moderated for non-subscribers)
10322 L:      [email protected] (moderated for non-subscribers)
10323 S:      Maintained
10324 F:      drivers/usb/mtu3/
10325
10326 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10327 M:      Peter Senna Tschudin <[email protected]>
10328 M:      Martin Donnelly <[email protected]>
10329 M:      Martyn Welch <[email protected]>
10330 S:      Maintained
10331 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10332 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10333
10334 MEGARAID SCSI/SAS DRIVERS
10335 M:      Kashyap Desai <[email protected]>
10336 M:      Sumit Saxena <[email protected]>
10337 M:      Shivasharan S <[email protected]>
10338 L:      [email protected]
10339 L:      [email protected]
10340 W:      http://www.avagotech.com/support/
10341 S:      Maintained
10342 F:      Documentation/scsi/megaraid.txt
10343 F:      drivers/scsi/megaraid.*
10344 F:      drivers/scsi/megaraid/
10345
10346 MELEXIS MLX90614 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/mlx90614.c
10352
10353 MELEXIS MLX90632 DRIVER
10354 M:      Crt Mori <[email protected]>
10355 L:      [email protected]
10356 W:      http://www.melexis.com
10357 S:      Supported
10358 F:      drivers/iio/temperature/mlx90632.c
10359
10360 MELFAS MIP4 TOUCHSCREEN DRIVER
10361 M:      Sangwon Jee <[email protected]>
10362 W:      http://www.melfas.com
10363 S:      Supported
10364 F:      drivers/input/touchscreen/melfas_mip4.c
10365 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10366
10367 MELLANOX ETHERNET DRIVER (mlx4_en)
10368 M:      Tariq Toukan <[email protected]>
10369 L:      [email protected]
10370 S:      Supported
10371 W:      http://www.mellanox.com
10372 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10373 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10374
10375 MELLANOX ETHERNET DRIVER (mlx5e)
10376 M:      Saeed Mahameed <[email protected]>
10377 L:      [email protected]
10378 S:      Supported
10379 W:      http://www.mellanox.com
10380 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10381 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10382
10383 MELLANOX ETHERNET INNOVA DRIVERS
10384 R:      Boris Pismenny <[email protected]>
10385 L:      [email protected]
10386 S:      Supported
10387 W:      http://www.mellanox.com
10388 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10389 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10390 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10391 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10392 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10393
10394 MELLANOX ETHERNET SWITCH DRIVERS
10395 M:      Jiri Pirko <[email protected]>
10396 M:      Ido Schimmel <[email protected]>
10397 L:      [email protected]
10398 S:      Supported
10399 W:      http://www.mellanox.com
10400 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10401 F:      drivers/net/ethernet/mellanox/mlxsw/
10402 F:      tools/testing/selftests/drivers/net/mlxsw/
10403
10404 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10405 M:      [email protected]
10406 L:      [email protected]
10407 S:      Supported
10408 W:      http://www.mellanox.com
10409 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10410 F:      drivers/net/ethernet/mellanox/mlxfw/
10411
10412 MELLANOX HARDWARE PLATFORM SUPPORT
10413 M:      Andy Shevchenko <[email protected]>
10414 M:      Darren Hart <[email protected]>
10415 M:      Vadim Pasternak <[email protected]>
10416 L:      [email protected]
10417 S:      Supported
10418 F:      drivers/platform/mellanox/
10419 F:      include/linux/platform_data/mlxreg.h
10420
10421 MELLANOX MLX4 core VPI driver
10422 M:      Tariq Toukan <[email protected]>
10423 L:      [email protected]
10424 L:      [email protected]
10425 W:      http://www.mellanox.com
10426 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10427 S:      Supported
10428 F:      drivers/net/ethernet/mellanox/mlx4/
10429 F:      include/linux/mlx4/
10430
10431 MELLANOX MLX4 IB driver
10432 M:      Yishai Hadas <[email protected]>
10433 L:      [email protected]
10434 W:      http://www.mellanox.com
10435 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10436 S:      Supported
10437 F:      drivers/infiniband/hw/mlx4/
10438 F:      include/linux/mlx4/
10439 F:      include/uapi/rdma/mlx4-abi.h
10440
10441 MELLANOX MLX5 core VPI driver
10442 M:      Saeed Mahameed <[email protected]>
10443 M:      Leon Romanovsky <[email protected]>
10444 L:      [email protected]
10445 L:      [email protected]
10446 W:      http://www.mellanox.com
10447 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10448 S:      Supported
10449 F:      drivers/net/ethernet/mellanox/mlx5/core/
10450 F:      include/linux/mlx5/
10451 F:      Documentation/networking/device_drivers/mellanox/
10452
10453 MELLANOX MLX5 IB driver
10454 M:      Leon Romanovsky <[email protected]>
10455 L:      [email protected]
10456 W:      http://www.mellanox.com
10457 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10458 S:      Supported
10459 F:      drivers/infiniband/hw/mlx5/
10460 F:      include/linux/mlx5/
10461 F:      include/uapi/rdma/mlx5-abi.h
10462
10463 MELLANOX MLXCPLD I2C AND MUX DRIVER
10464 M:      Vadim Pasternak <[email protected]>
10465 M:      Michael Shych <[email protected]>
10466 L:      [email protected]
10467 S:      Supported
10468 F:      drivers/i2c/busses/i2c-mlxcpld.c
10469 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
10470 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
10471
10472 MELLANOX MLXCPLD LED DRIVER
10473 M:      Vadim Pasternak <[email protected]>
10474 L:      [email protected]
10475 S:      Supported
10476 F:      drivers/leds/leds-mlxcpld.c
10477 F:      drivers/leds/leds-mlxreg.c
10478 F:      Documentation/leds/leds-mlxcpld.rst
10479
10480 MELLANOX PLATFORM DRIVER
10481 M:      Vadim Pasternak <[email protected]>
10482 L:      [email protected]
10483 S:      Supported
10484 F:      drivers/platform/x86/mlx-platform.c
10485
10486 MEMBARRIER SUPPORT
10487 M:      Mathieu Desnoyers <[email protected]>
10488 M:      "Paul E. McKenney" <[email protected]>
10489 L:      [email protected]
10490 S:      Supported
10491 F:      kernel/sched/membarrier.c
10492 F:      include/uapi/linux/membarrier.h
10493 F:      arch/powerpc/include/asm/membarrier.h
10494
10495 MEMBLOCK
10496 M:      Mike Rapoport <[email protected]>
10497 L:      [email protected]
10498 S:      Maintained
10499 F:      include/linux/memblock.h
10500 F:      mm/memblock.c
10501 F:      Documentation/core-api/boot-time-mm.rst
10502
10503 MEMORY MANAGEMENT
10504 L:      [email protected]
10505 W:      http://www.linux-mm.org
10506 S:      Maintained
10507 F:      include/linux/mm.h
10508 F:      include/linux/gfp.h
10509 F:      include/linux/mmzone.h
10510 F:      include/linux/memory_hotplug.h
10511 F:      include/linux/vmalloc.h
10512 F:      mm/
10513
10514 MEMORY TECHNOLOGY DEVICES (MTD)
10515 M:      David Woodhouse <[email protected]>
10516 M:      Brian Norris <[email protected]>
10517 M:      Marek Vasut <[email protected]>
10518 M:      Miquel Raynal <[email protected]>
10519 M:      Richard Weinberger <[email protected]>
10520 M:      Vignesh Raghavendra <[email protected]>
10521 L:      [email protected]
10522 W:      http://www.linux-mtd.infradead.org/
10523 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
10525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
10526 S:      Maintained
10527 F:      Documentation/devicetree/bindings/mtd/
10528 F:      drivers/mtd/
10529 F:      include/linux/mtd/
10530 F:      include/uapi/mtd/
10531
10532 MEN A21 WATCHDOG DRIVER
10533 M:      Johannes Thumshirn <[email protected]>
10534 L:      [email protected]
10535 S:      Maintained
10536 F:      drivers/watchdog/mena21_wdt.c
10537
10538 MEN CHAMELEON BUS (mcb)
10539 M:      Johannes Thumshirn <[email protected]>
10540 S:      Maintained
10541 F:      drivers/mcb/
10542 F:      include/linux/mcb.h
10543 F:      Documentation/driver-api/men-chameleon-bus.rst
10544
10545 MEN F21BMC (Board Management Controller)
10546 M:      Andreas Werner <[email protected]>
10547 S:      Supported
10548 F:      drivers/mfd/menf21bmc.c
10549 F:      drivers/watchdog/menf21bmc_wdt.c
10550 F:      drivers/leds/leds-menf21bmc.c
10551 F:      drivers/hwmon/menf21bmc_hwmon.c
10552 F:      Documentation/hwmon/menf21bmc.rst
10553
10554 MEN Z069 WATCHDOG DRIVER
10555 M:      Johannes Thumshirn <[email protected]>
10556 L:      [email protected]
10557 S:      Maintained
10558 F:      drivers/watchdog/menz69_wdt.c
10559
10560 MESON AO CEC DRIVER FOR AMLOGIC SOCS
10561 M:      Neil Armstrong <[email protected]>
10562 L:      [email protected]
10563 L:      [email protected]
10564 W:      http://linux-meson.com/
10565 S:      Supported
10566 F:      drivers/media/platform/meson/ao-cec.c
10567 F:      drivers/media/platform/meson/ao-cec-g12a.c
10568 F:      Documentation/devicetree/bindings/media/meson-ao-cec.txt
10569 T:      git git://linuxtv.org/media_tree.git
10570
10571 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
10572 M:      Liang Yang <[email protected]>
10573 L:      [email protected]
10574 S:      Maintained
10575 F:      drivers/mtd/nand/raw/meson_*
10576 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
10577
10578 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
10579 M:      Maxime Jourdan <[email protected]>
10580 L:      [email protected]
10581 L:      [email protected]
10582 S:      Supported
10583 F:      drivers/staging/media/meson/vdec/
10584 T:      git git://linuxtv.org/media_tree.git
10585
10586 METHODE UDPU SUPPORT
10587 M:      Vladimir Vid <[email protected]>
10588 S:      Maintained
10589 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
10590
10591 MICROBLAZE ARCHITECTURE
10592 M:      Michal Simek <[email protected]>
10593 W:      http://www.monstr.eu/fdt/
10594 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
10595 S:      Supported
10596 F:      arch/microblaze/
10597
10598 MICROCHIP AT91 SERIAL DRIVER
10599 M:      Richard Genoud <[email protected]>
10600 S:      Maintained
10601 F:      drivers/tty/serial/atmel_serial.c
10602 F:      drivers/tty/serial/atmel_serial.h
10603 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10604
10605 MICROCHIP AUDIO ASOC DRIVERS
10606 M:      Codrin Ciubotariu <[email protected]>
10607 L:      [email protected] (moderated for non-subscribers)
10608 S:      Supported
10609 F:      sound/soc/atmel
10610
10611 MICROCHIP DMA DRIVER
10612 M:      Ludovic Desroches <[email protected]>
10613 L:      [email protected] (moderated for non-subscribers)
10614 L:      [email protected]
10615 S:      Supported
10616 F:      drivers/dma/at_hdmac.c
10617 F:      drivers/dma/at_hdmac_regs.h
10618 F:      include/linux/platform_data/dma-atmel.h
10619 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
10620 F:      include/dt-bindings/dma/at91.h
10621
10622 MICROCHIP ECC DRIVER
10623 M:      Tudor Ambarus <[email protected]>
10624 L:      [email protected]
10625 S:      Maintained
10626 F:      drivers/crypto/atmel-ecc.*
10627
10628 MICROCHIP I2C DRIVER
10629 M:      Ludovic Desroches <[email protected]>
10630 L:      [email protected]
10631 S:      Supported
10632 F:      drivers/i2c/busses/i2c-at91.h
10633 F:      drivers/i2c/busses/i2c-at91-*.c
10634
10635 MICROCHIP ISC DRIVER
10636 M:      Eugen Hristev <[email protected]>
10637 L:      [email protected]
10638 S:      Supported
10639 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
10640 F:      drivers/media/platform/atmel/atmel-isc.h
10641 F:      drivers/media/platform/atmel/atmel-isc-base.c
10642 F:      drivers/media/platform/atmel/atmel-isc-regs.h
10643 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
10644
10645 MICROCHIP ISI DRIVER
10646 M:      Eugen Hristev <[email protected]>
10647 L:      [email protected]
10648 S:      Supported
10649 F:      drivers/media/platform/atmel/atmel-isi.c
10650 F:      drivers/media/platform/atmel/atmel-isi.h
10651
10652 MICROCHIP AT91 USART MFD DRIVER
10653 M:      Radu Pirea <[email protected]>
10654 L:      [email protected]
10655 S:      Supported
10656 F:      drivers/mfd/at91-usart.c
10657 F:      include/dt-bindings/mfd/at91-usart.h
10658 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10659
10660 MICROCHIP AT91 USART SPI DRIVER
10661 M:      Radu Pirea <[email protected]>
10662 L:      [email protected]
10663 S:      Supported
10664 F:      drivers/spi/spi-at91-usart.c
10665 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10666
10667 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
10668 M:      Woojung Huh <[email protected]>
10669 M:      Microchip Linux Driver Support <[email protected]>
10670 L:      [email protected]
10671 S:      Maintained
10672 F:      net/dsa/tag_ksz.c
10673 F:      drivers/net/dsa/microchip/*
10674 F:      include/linux/platform_data/microchip-ksz.h
10675 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
10676
10677 MICROCHIP LAN743X ETHERNET DRIVER
10678 M:      Bryan Whitehead <[email protected]>
10679 M:      Microchip Linux Driver Support <[email protected]>
10680 L:      [email protected]
10681 S:      Maintained
10682 F:      drivers/net/ethernet/microchip/lan743x_*
10683
10684 MICROCHIP LCDFB DRIVER
10685 M:      Nicolas Ferre <[email protected]>
10686 L:      [email protected]
10687 S:      Maintained
10688 F:      drivers/video/fbdev/atmel_lcdfb.c
10689 F:      include/video/atmel_lcdc.h
10690
10691 MICROCHIP MMC/SD/SDIO MCI DRIVER
10692 M:      Ludovic Desroches <[email protected]>
10693 S:      Maintained
10694 F:      drivers/mmc/host/atmel-mci.c
10695
10696 MICROCHIP MCP16502 PMIC DRIVER
10697 M:      Andrei Stefanescu <[email protected]>
10698 L:      [email protected] (moderated for non-subscribers)
10699 S:      Maintained
10700 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
10701 F:      drivers/regulator/mcp16502.c
10702
10703 MICROCHIP MCP3911 ADC DRIVER
10704 M:      Marcus Folkesson <[email protected]>
10705 M:      Kent Gustavsson <[email protected]>
10706 L:      [email protected]
10707 S:      Supported
10708 F:      drivers/iio/adc/mcp3911.c
10709 F:      Documentation/devicetree/bindings/iio/adc/mcp3911.txt
10710
10711 MICROCHIP NAND DRIVER
10712 M:      Tudor Ambarus <[email protected]>
10713 L:      [email protected]
10714 S:      Supported
10715 F:      drivers/mtd/nand/raw/atmel/*
10716 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
10717
10718 MICROCHIP PWM DRIVER
10719 M:      Claudiu Beznea <[email protected]>
10720 L:      [email protected] (moderated for non-subscribers)
10721 L:      [email protected]
10722 S:      Supported
10723 F:      drivers/pwm/pwm-atmel.c
10724 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
10725
10726 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
10727 M:      Ludovic Desroches <[email protected]>
10728 M:      Eugen Hristev <[email protected]>
10729 L:      [email protected]
10730 S:      Supported
10731 F:      drivers/iio/adc/at91-sama5d2_adc.c
10732 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
10733 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
10734
10735 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
10736 M:      Nicolas Ferre <[email protected]>
10737 S:      Supported
10738 F:      drivers/power/reset/at91-sama5d2_shdwc.c
10739
10740 MICROCHIP SPI DRIVER
10741 M:      Nicolas Ferre <[email protected]>
10742 S:      Supported
10743 F:      drivers/spi/spi-atmel.*
10744
10745 MICROCHIP SSC DRIVER
10746 M:      Nicolas Ferre <[email protected]>
10747 L:      [email protected] (moderated for non-subscribers)
10748 S:      Supported
10749 F:      drivers/misc/atmel-ssc.c
10750 F:      include/linux/atmel-ssc.h
10751
10752 MICROCHIP USBA UDC DRIVER
10753 M:      Cristian Birsan <[email protected]>
10754 L:      [email protected] (moderated for non-subscribers)
10755 S:      Supported
10756 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
10757
10758 MICROCHIP USB251XB DRIVER
10759 M:      Richard Leitner <[email protected]>
10760 L:      [email protected]
10761 S:      Maintained
10762 F:      drivers/usb/misc/usb251xb.c
10763 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
10764
10765 MICROCHIP XDMA DRIVER
10766 M:      Ludovic Desroches <[email protected]>
10767 L:      [email protected]
10768 L:      [email protected]
10769 S:      Supported
10770 F:      drivers/dma/at_xdmac.c
10771
10772 MICROSEMI MIPS SOCS
10773 M:      Alexandre Belloni <[email protected]>
10774 M:      Microchip Linux Driver Support <[email protected]>
10775 L:      [email protected]
10776 S:      Supported
10777 F:      arch/mips/generic/board-ocelot.c
10778 F:      arch/mips/configs/generic/board-ocelot.config
10779 F:      arch/mips/boot/dts/mscc/
10780 F:      Documentation/devicetree/bindings/mips/mscc.txt
10781
10782 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
10783 M:      Don Brace <[email protected]>
10784 L:      [email protected]
10785 L:      [email protected]
10786 S:      Supported
10787 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
10788 F:      drivers/scsi/smartpqi/Kconfig
10789 F:      drivers/scsi/smartpqi/Makefile
10790 F:      include/linux/cciss*.h
10791 F:      include/uapi/linux/cciss*.h
10792 F:      Documentation/scsi/smartpqi.txt
10793
10794 MICROSEMI ETHERNET SWITCH DRIVER
10795 M:      Alexandre Belloni <[email protected]>
10796 M:      Microchip Linux Driver Support <[email protected]>
10797 L:      [email protected]
10798 S:      Supported
10799 F:      drivers/net/ethernet/mscc/
10800
10801 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
10802 M:      Chen Yu <[email protected]>
10803 L:      [email protected]
10804 S:      Supported
10805 F:      drivers/platform/x86/surfacepro3_button.c
10806
10807 MICROTEK X6 SCANNER
10808 M:      Oliver Neukum <[email protected]>
10809 S:      Maintained
10810 F:      drivers/usb/image/microtek.*
10811
10812 MIPS
10813 M:      Ralf Baechle <[email protected]>
10814 M:      Paul Burton <[email protected]>
10815 M:      James Hogan <[email protected]>
10816 L:      [email protected]
10817 W:      http://www.linux-mips.org/
10818 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
10819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
10820 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10821 S:      Supported
10822 F:      Documentation/devicetree/bindings/mips/
10823 F:      Documentation/mips/
10824 F:      arch/mips/
10825 F:      drivers/platform/mips/
10826
10827 MIPS BOSTON DEVELOPMENT BOARD
10828 M:      Paul Burton <[email protected]>
10829 L:      [email protected]
10830 S:      Maintained
10831 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
10832 F:      arch/mips/boot/dts/img/boston.dts
10833 F:      arch/mips/configs/generic/board-boston.config
10834 F:      drivers/clk/imgtec/clk-boston.c
10835 F:      include/dt-bindings/clock/boston-clock.h
10836
10837 MIPS GENERIC PLATFORM
10838 M:      Paul Burton <[email protected]>
10839 L:      [email protected]
10840 S:      Supported
10841 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
10842 F:      arch/mips/generic/
10843 F:      arch/mips/tools/generic-board-config.sh
10844
10845 MIPS/LOONGSON1 ARCHITECTURE
10846 M:      Keguang Zhang <[email protected]>
10847 L:      [email protected]
10848 S:      Maintained
10849 F:      arch/mips/loongson32/
10850 F:      arch/mips/include/asm/mach-loongson32/
10851 F:      drivers/*/*loongson1*
10852 F:      drivers/*/*/*loongson1*
10853
10854 MIPS/LOONGSON2 ARCHITECTURE
10855 M:      Jiaxun Yang <[email protected]>
10856 L:      [email protected]
10857 S:      Maintained
10858 F:      arch/mips/loongson64/fuloong-2e/
10859 F:      arch/mips/loongson64/lemote-2f/
10860 F:      arch/mips/include/asm/mach-loongson64/
10861 F:      drivers/*/*loongson2*
10862 F:      drivers/*/*/*loongson2*
10863
10864 MIPS/LOONGSON3 ARCHITECTURE
10865 M:      Huacai Chen <[email protected]>
10866 L:      [email protected]
10867 S:      Maintained
10868 F:      arch/mips/loongson64/
10869 F:      arch/mips/include/asm/mach-loongson64/
10870 F:      drivers/platform/mips/cpu_hwmon.c
10871 F:      drivers/*/*loongson3*
10872 F:      drivers/*/*/*loongson3*
10873
10874 MIPS RINT INSTRUCTION EMULATION
10875 M:      Aleksandar Markovic <[email protected]>
10876 L:      [email protected]
10877 S:      Supported
10878 F:      arch/mips/math-emu/sp_rint.c
10879 F:      arch/mips/math-emu/dp_rint.c
10880
10881 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
10882 M:      Hans Verkuil <[email protected]>
10883 L:      [email protected]
10884 T:      git git://linuxtv.org/media_tree.git
10885 W:      https://linuxtv.org
10886 S:      Odd Fixes
10887 F:      drivers/media/radio/radio-miropcm20*
10888
10889 MMP SUPPORT
10890 R:      Lubomir Rintel <[email protected]>
10891 L:      [email protected] (moderated for non-subscribers)
10892 S:      Odd Fixes
10893 F:      arch/arm/boot/dts/mmp*
10894 F:      arch/arm/mach-mmp/
10895
10896 MMU GATHER AND TLB INVALIDATION
10897 M:      Will Deacon <[email protected]>
10898 M:      "Aneesh Kumar K.V" <[email protected]>
10899 M:      Andrew Morton <[email protected]>
10900 M:      Nick Piggin <[email protected]>
10901 M:      Peter Zijlstra <[email protected]>
10902 L:      [email protected]
10903 L:      [email protected]
10904 S:      Maintained
10905 F:      arch/*/include/asm/tlb.h
10906 F:      include/asm-generic/tlb.h
10907 F:      mm/mmu_gather.c
10908
10909 MN88472 MEDIA DRIVER
10910 M:      Antti Palosaari <[email protected]>
10911 L:      [email protected]
10912 W:      https://linuxtv.org
10913 W:      http://palosaari.fi/linux/
10914 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10915 S:      Maintained
10916 F:      drivers/media/dvb-frontends/mn88472*
10917
10918 MN88473 MEDIA DRIVER
10919 M:      Antti Palosaari <[email protected]>
10920 L:      [email protected]
10921 W:      https://linuxtv.org
10922 W:      http://palosaari.fi/linux/
10923 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10924 S:      Maintained
10925 F:      drivers/media/dvb-frontends/mn88473*
10926
10927 MODULE SUPPORT
10928 M:      Jessica Yu <[email protected]>
10929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
10930 S:      Maintained
10931 F:      include/linux/module.h
10932 F:      kernel/module.c
10933
10934 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
10935 W:      http://popies.net/meye/
10936 S:      Orphan
10937 F:      Documentation/media/v4l-drivers/meye*
10938 F:      drivers/media/pci/meye/
10939 F:      include/uapi/linux/meye.h
10940
10941 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
10942 M:      Jiri Slaby <[email protected]>
10943 S:      Maintained
10944 F:      Documentation/driver-api/serial/moxa-smartio.rst
10945 F:      drivers/tty/mxser.*
10946
10947 MR800 AVERMEDIA USB FM RADIO DRIVER
10948 M:      Alexey Klimov <[email protected]>
10949 L:      [email protected]
10950 T:      git git://linuxtv.org/media_tree.git
10951 S:      Maintained
10952 F:      drivers/media/radio/radio-mr800.c
10953
10954 MRF24J40 IEEE 802.15.4 RADIO DRIVER
10955 M:      Alan Ott <[email protected]>
10956 L:      [email protected]
10957 S:      Maintained
10958 F:      drivers/net/ieee802154/mrf24j40.c
10959 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
10960
10961 MSI LAPTOP SUPPORT
10962 M:      "Lee, Chun-Yi" <[email protected]>
10963 L:      [email protected]
10964 S:      Maintained
10965 F:      drivers/platform/x86/msi-laptop.c
10966
10967 MSI WMI SUPPORT
10968 L:      [email protected]
10969 S:      Orphan
10970 F:      drivers/platform/x86/msi-wmi.c
10971
10972 MSI001 MEDIA DRIVER
10973 M:      Antti Palosaari <[email protected]>
10974 L:      [email protected]
10975 W:      https://linuxtv.org
10976 W:      http://palosaari.fi/linux/
10977 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10978 T:      git git://linuxtv.org/anttip/media_tree.git
10979 S:      Maintained
10980 F:      drivers/media/tuners/msi001*
10981
10982 MSI2500 MEDIA DRIVER
10983 M:      Antti Palosaari <[email protected]>
10984 L:      [email protected]
10985 W:      https://linuxtv.org
10986 W:      http://palosaari.fi/linux/
10987 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10988 T:      git git://linuxtv.org/anttip/media_tree.git
10989 S:      Maintained
10990 F:      drivers/media/usb/msi2500/
10991
10992 MSYSTEMS DISKONCHIP G3 MTD DRIVER
10993 M:      Robert Jarzmik <[email protected]>
10994 L:      [email protected]
10995 S:      Maintained
10996 F:      drivers/mtd/devices/docg3*
10997
10998 MT9M032 APTINA SENSOR DRIVER
10999 M:      Laurent Pinchart <[email protected]>
11000 L:      [email protected]
11001 T:      git git://linuxtv.org/media_tree.git
11002 S:      Maintained
11003 F:      drivers/media/i2c/mt9m032.c
11004 F:      include/media/i2c/mt9m032.h
11005
11006 MT9P031 APTINA CAMERA SENSOR
11007 M:      Laurent Pinchart <[email protected]>
11008 L:      [email protected]
11009 T:      git git://linuxtv.org/media_tree.git
11010 S:      Maintained
11011 F:      drivers/media/i2c/mt9p031.c
11012 F:      include/media/i2c/mt9p031.h
11013
11014 MT9T001 APTINA CAMERA SENSOR
11015 M:      Laurent Pinchart <[email protected]>
11016 L:      [email protected]
11017 T:      git git://linuxtv.org/media_tree.git
11018 S:      Maintained
11019 F:      drivers/media/i2c/mt9t001.c
11020 F:      include/media/i2c/mt9t001.h
11021
11022 MT9T112 APTINA CAMERA SENSOR
11023 M:      Jacopo Mondi <[email protected]>
11024 L:      [email protected]
11025 T:      git git://linuxtv.org/media_tree.git
11026 S:      Odd Fixes
11027 F:      drivers/media/i2c/mt9t112.c
11028 F:      include/media/i2c/mt9t112.h
11029
11030 MT9V032 APTINA CAMERA SENSOR
11031 M:      Laurent Pinchart <[email protected]>
11032 L:      [email protected]
11033 T:      git git://linuxtv.org/media_tree.git
11034 S:      Maintained
11035 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11036 F:      drivers/media/i2c/mt9v032.c
11037 F:      include/media/i2c/mt9v032.h
11038
11039 MT9V111 APTINA CAMERA SENSOR
11040 M:      Jacopo Mondi <[email protected]>
11041 L:      [email protected]
11042 T:      git git://linuxtv.org/media_tree.git
11043 S:      Maintained
11044 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11045 F:      drivers/media/i2c/mt9v111.c
11046
11047 MULTIFUNCTION DEVICES (MFD)
11048 M:      Lee Jones <[email protected]>
11049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11050 S:      Supported
11051 F:      Documentation/devicetree/bindings/mfd/
11052 F:      drivers/mfd/
11053 F:      include/linux/mfd/
11054 F:      include/dt-bindings/mfd/
11055
11056 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11057 S:      Orphan
11058 F:      drivers/mmc/host/mmc_spi.c
11059 F:      include/linux/spi/mmc_spi.h
11060
11061 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11062 M:      Ulf Hansson <[email protected]>
11063 L:      [email protected]
11064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11065 S:      Maintained
11066 F:      Documentation/devicetree/bindings/mmc/
11067 F:      drivers/mmc/
11068 F:      include/linux/mmc/
11069 F:      include/uapi/linux/mmc/
11070
11071 MULTIPLEXER SUBSYSTEM
11072 M:      Peter Rosin <[email protected]>
11073 S:      Maintained
11074 F:      Documentation/ABI/testing/sysfs-class-mux*
11075 F:      Documentation/devicetree/bindings/mux/
11076 F:      include/dt-bindings/mux/
11077 F:      include/linux/mux/
11078 F:      drivers/mux/
11079
11080 MULTITECH MULTIPORT CARD (ISICOM)
11081 S:      Orphan
11082 F:      drivers/tty/isicom.c
11083 F:      include/linux/isicom.h
11084
11085 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11086 M:      Bin Liu <[email protected]>
11087 L:      [email protected]
11088 S:      Maintained
11089 F:      drivers/usb/musb/
11090
11091 MXL301RF MEDIA DRIVER
11092 M:      Akihiro Tsukada <[email protected]>
11093 L:      [email protected]
11094 S:      Odd Fixes
11095 F:      drivers/media/tuners/mxl301rf*
11096
11097 MXL5007T MEDIA DRIVER
11098 M:      Michael Krufky <[email protected]>
11099 L:      [email protected]
11100 W:      https://linuxtv.org
11101 W:      http://github.com/mkrufky
11102 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11103 T:      git git://linuxtv.org/mkrufky/tuners.git
11104 S:      Maintained
11105 F:      drivers/media/tuners/mxl5007t.*
11106
11107 MXSFB DRM DRIVER
11108 M:      Marek Vasut <[email protected]>
11109 M:      Stefan Agner <[email protected]>
11110 L:      [email protected]
11111 S:      Supported
11112 F:      drivers/gpu/drm/mxsfb/
11113 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11114 T:      git git://anongit.freedesktop.org/drm/drm-misc
11115
11116 MYLEX DAC960 PCI RAID Controller
11117 M:      Hannes Reinecke <[email protected]>
11118 L:      [email protected]
11119 S:      Supported
11120 F:      drivers/scsi/myrb.*
11121 F:      drivers/scsi/myrs.*
11122
11123 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11124 M:      Chris Lee <[email protected]>
11125 L:      [email protected]
11126 W:      https://www.cspi.com/ethernet-products/support/downloads/
11127 S:      Supported
11128 F:      drivers/net/ethernet/myricom/myri10ge/
11129
11130 NAND FLASH SUBSYSTEM
11131 M:      Miquel Raynal <[email protected]>
11132 R:      Richard Weinberger <[email protected]>
11133 L:      [email protected]
11134 W:      http://www.linux-mtd.infradead.org/
11135 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11137 S:      Maintained
11138 F:      drivers/mtd/nand/
11139 F:      include/linux/mtd/*nand*.h
11140
11141 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11142 M:      Daniel Mack <[email protected]>
11143 S:      Maintained
11144 L:      [email protected] (moderated for non-subscribers)
11145 W:      http://www.native-instruments.com
11146 F:      sound/usb/caiaq/
11147
11148 NATSEMI ETHERNET DRIVER (DP8381x)
11149 S:      Orphan
11150 F:      drivers/net/ethernet/natsemi/natsemi.c
11151
11152 NCR 5380 SCSI DRIVERS
11153 M:      Finn Thain <[email protected]>
11154 M:      Michael Schmitz <[email protected]>
11155 L:      [email protected]
11156 S:      Maintained
11157 F:      Documentation/scsi/g_NCR5380.txt
11158 F:      drivers/scsi/NCR5380.*
11159 F:      drivers/scsi/arm/cumana_1.c
11160 F:      drivers/scsi/arm/oak.c
11161 F:      drivers/scsi/atari_scsi.*
11162 F:      drivers/scsi/dmx3191d.c
11163 F:      drivers/scsi/g_NCR5380.*
11164 F:      drivers/scsi/mac_scsi.*
11165 F:      drivers/scsi/sun3_scsi.*
11166 F:      drivers/scsi/sun3_scsi_vme.c
11167
11168 NCSI LIBRARY:
11169 M:      Samuel Mendoza-Jonas <[email protected]>
11170 S:      Maintained
11171 F:      net/ncsi/
11172
11173 NCT6775 HARDWARE MONITOR DRIVER
11174 M:      Guenter Roeck <[email protected]>
11175 L:      [email protected]
11176 S:      Maintained
11177 F:      Documentation/hwmon/nct6775.rst
11178 F:      drivers/hwmon/nct6775.c
11179
11180 NET_FAILOVER MODULE
11181 M:      Sridhar Samudrala <[email protected]>
11182 L:      [email protected]
11183 S:      Supported
11184 F:      drivers/net/net_failover.c
11185 F:      include/net/net_failover.h
11186 F:      Documentation/networking/net_failover.rst
11187
11188 NETEM NETWORK EMULATOR
11189 M:      Stephen Hemminger <[email protected]>
11190 L:      [email protected] (moderated for non-subscribers)
11191 S:      Maintained
11192 F:      net/sched/sch_netem.c
11193
11194 NETERION 10GbE DRIVERS (s2io/vxge)
11195 M:      Jon Mason <[email protected]>
11196 L:      [email protected]
11197 S:      Supported
11198 F:      Documentation/networking/device_drivers/neterion/s2io.txt
11199 F:      Documentation/networking/device_drivers/neterion/vxge.txt
11200 F:      drivers/net/ethernet/neterion/
11201
11202 NETFILTER
11203 M:      Pablo Neira Ayuso <[email protected]>
11204 M:      Jozsef Kadlecsik <[email protected]>
11205 M:      Florian Westphal <[email protected]>
11206 L:      [email protected]
11207 L:      [email protected]
11208 W:      http://www.netfilter.org/
11209 W:      http://www.iptables.org/
11210 W:      http://www.nftables.org/
11211 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11214 S:      Maintained
11215 F:      include/linux/netfilter*
11216 F:      include/linux/netfilter/
11217 F:      include/net/netfilter/
11218 F:      include/uapi/linux/netfilter*
11219 F:      include/uapi/linux/netfilter/
11220 F:      net/*/netfilter.c
11221 F:      net/*/netfilter/
11222 F:      net/netfilter/
11223 F:      net/bridge/br_netfilter*.c
11224
11225 NETROM NETWORK LAYER
11226 M:      Ralf Baechle <[email protected]>
11227 L:      [email protected]
11228 W:      http://www.linux-ax25.org/
11229 S:      Maintained
11230 F:      include/net/netrom.h
11231 F:      include/uapi/linux/netrom.h
11232 F:      net/netrom/
11233
11234 NETRONOME ETHERNET DRIVERS
11235 M:      Jakub Kicinski <[email protected]>
11236 L:      [email protected]
11237 S:      Maintained
11238 F:      drivers/net/ethernet/netronome/
11239
11240 NETWORK BLOCK DEVICE (NBD)
11241 M:      Josef Bacik <[email protected]>
11242 S:      Maintained
11243 L:      [email protected]
11244 L:      [email protected]
11245 F:      Documentation/admin-guide/blockdev/nbd.rst
11246 F:      drivers/block/nbd.c
11247 F:      include/trace/events/nbd.h
11248 F:      include/uapi/linux/nbd.h
11249
11250 NETWORK DROP MONITOR
11251 M:      Neil Horman <[email protected]>
11252 L:      [email protected]
11253 S:      Maintained
11254 W:      https://fedorahosted.org/dropwatch/
11255 F:      net/core/drop_monitor.c
11256 F:      include/uapi/linux/net_dropmon.h
11257 F:      include/net/drop_monitor.h
11258
11259 NETWORKING DRIVERS
11260 M:      "David S. Miller" <[email protected]>
11261 L:      [email protected]
11262 W:      http://www.linuxfoundation.org/en/Net
11263 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
11266 S:      Odd Fixes
11267 F:      Documentation/devicetree/bindings/net/
11268 F:      drivers/net/
11269 F:      include/linux/if_*
11270 F:      include/linux/netdevice.h
11271 F:      include/linux/etherdevice.h
11272 F:      include/linux/fcdevice.h
11273 F:      include/linux/fddidevice.h
11274 F:      include/linux/hippidevice.h
11275 F:      include/linux/inetdevice.h
11276 F:      include/uapi/linux/if_*
11277 F:      include/uapi/linux/netdevice.h
11278
11279 NETWORKING DRIVERS (WIRELESS)
11280 M:      Kalle Valo <[email protected]>
11281 L:      [email protected]
11282 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11285 S:      Maintained
11286 F:      Documentation/devicetree/bindings/net/wireless/
11287 F:      drivers/net/wireless/
11288
11289 NETWORKING [DSA]
11290 M:      Andrew Lunn <[email protected]>
11291 M:      Vivien Didelot <[email protected]>
11292 M:      Florian Fainelli <[email protected]>
11293 S:      Maintained
11294 F:      Documentation/devicetree/bindings/net/dsa/
11295 F:      net/dsa/
11296 F:      include/net/dsa.h
11297 F:      include/linux/dsa/
11298 F:      include/linux/platform_data/dsa.h
11299 F:      drivers/net/dsa/
11300
11301 NETWORKING [GENERAL]
11302 M:      "David S. Miller" <[email protected]>
11303 L:      [email protected]
11304 W:      http://www.linuxfoundation.org/en/Net
11305 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
11308 B:      mailto:[email protected]
11309 S:      Maintained
11310 F:      net/
11311 F:      include/net/
11312 F:      include/linux/in.h
11313 F:      include/linux/net.h
11314 F:      include/linux/netdevice.h
11315 F:      include/uapi/linux/in.h
11316 F:      include/uapi/linux/net.h
11317 F:      include/uapi/linux/netdevice.h
11318 F:      include/uapi/linux/net_namespace.h
11319 F:      tools/testing/selftests/net/
11320 F:      lib/net_utils.c
11321 F:      lib/random32.c
11322 F:      Documentation/networking/
11323
11324 NETWORKING [IPSEC]
11325 M:      Steffen Klassert <[email protected]>
11326 M:      Herbert Xu <[email protected]>
11327 M:      "David S. Miller" <[email protected]>
11328 L:      [email protected]
11329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11331 S:      Maintained
11332 F:      net/xfrm/
11333 F:      net/key/
11334 F:      net/ipv4/xfrm*
11335 F:      net/ipv4/esp4*
11336 F:      net/ipv4/ah4.c
11337 F:      net/ipv4/ipcomp.c
11338 F:      net/ipv4/ip_vti.c
11339 F:      net/ipv6/xfrm*
11340 F:      net/ipv6/esp6*
11341 F:      net/ipv6/ah6.c
11342 F:      net/ipv6/ipcomp6.c
11343 F:      net/ipv6/ip6_vti.c
11344 F:      include/uapi/linux/xfrm.h
11345 F:      include/net/xfrm.h
11346
11347 NETWORKING [IPv4/IPv6]
11348 M:      "David S. Miller" <[email protected]>
11349 M:      Alexey Kuznetsov <[email protected]>
11350 M:      Hideaki YOSHIFUJI <[email protected]>
11351 L:      [email protected]
11352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11353 S:      Maintained
11354 F:      net/ipv4/
11355 F:      net/ipv6/
11356 F:      include/net/ip*
11357 F:      arch/x86/net/*
11358
11359 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11360 M:      Paul Moore <[email protected]>
11361 W:      https://github.com/netlabel
11362 L:      [email protected]
11363 L:      [email protected]
11364 S:      Maintained
11365 F:      Documentation/netlabel/
11366 F:      include/net/calipso.h
11367 F:      include/net/cipso_ipv4.h
11368 F:      include/net/netlabel.h
11369 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11370 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11371 F:      net/netlabel/
11372 F:      net/ipv4/cipso_ipv4.c
11373 F:      net/ipv6/calipso.c
11374 F:      net/netfilter/xt_CONNSECMARK.c
11375 F:      net/netfilter/xt_SECMARK.c
11376
11377 NETWORKING [TCP]
11378 M:      Eric Dumazet <[email protected]>
11379 L:      [email protected]
11380 S:      Maintained
11381 F:      net/ipv4/tcp*.c
11382 F:      net/ipv4/syncookies.c
11383 F:      net/ipv6/tcp*.c
11384 F:      net/ipv6/syncookies.c
11385 F:      include/uapi/linux/tcp.h
11386 F:      include/net/tcp.h
11387 F:      include/linux/tcp.h
11388 F:      include/trace/events/tcp.h
11389
11390 NETWORKING [TLS]
11391 M:      Boris Pismenny <[email protected]>
11392 M:      Aviad Yehezkel <[email protected]>
11393 M:      Dave Watson <[email protected]>
11394 M:      John Fastabend <[email protected]>
11395 M:      Daniel Borkmann <[email protected]>
11396 M:      Jakub Kicinski <[email protected]>
11397 L:      [email protected]
11398 S:      Maintained
11399 F:      net/tls/*
11400 F:      include/uapi/linux/tls.h
11401 F:      include/net/tls.h
11402
11403 NETWORKING [WIRELESS]
11404 L:      [email protected]
11405 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11406
11407 NETDEVSIM
11408 M:      Jakub Kicinski <[email protected]>
11409 S:      Maintained
11410 F:      drivers/net/netdevsim/*
11411
11412 NETXEN (1/10) GbE SUPPORT
11413 M:      Manish Chopra <[email protected]>
11414 M:      Rahul Verma <[email protected]>
11415 M:      [email protected]
11416 L:      [email protected]
11417 S:      Supported
11418 F:      drivers/net/ethernet/qlogic/netxen/
11419
11420 NEXTHOP
11421 M:      David Ahern <[email protected]>
11422 L:      [email protected]
11423 S:      Maintained
11424 F:      include/net/nexthop.h
11425 F:      include/uapi/linux/nexthop.h
11426 F:      include/net/netns/nexthop.h
11427 F:      net/ipv4/nexthop.c
11428
11429 NFC SUBSYSTEM
11430 L:      [email protected]
11431 S:      Orphan
11432 F:      net/nfc/
11433 F:      include/net/nfc/
11434 F:      include/uapi/linux/nfc.h
11435 F:      drivers/nfc/
11436 F:      include/linux/platform_data/nfcmrvl.h
11437 F:      Documentation/devicetree/bindings/net/nfc/
11438
11439 NFS, SUNRPC, AND LOCKD CLIENTS
11440 M:      Trond Myklebust <[email protected]>
11441 M:      Anna Schumaker <[email protected]>
11442 L:      [email protected]
11443 W:      http://client.linux-nfs.org
11444 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
11445 S:      Maintained
11446 F:      fs/lockd/
11447 F:      fs/nfs/
11448 F:      fs/nfs_common/
11449 F:      net/sunrpc/
11450 F:      include/linux/lockd/
11451 F:      include/linux/nfs*
11452 F:      include/linux/sunrpc/
11453 F:      include/uapi/linux/nfs*
11454 F:      include/uapi/linux/sunrpc/
11455
11456 NILFS2 FILESYSTEM
11457 M:      Ryusuke Konishi <[email protected]>
11458 L:      [email protected]
11459 W:      https://nilfs.sourceforge.io/
11460 W:      https://nilfs.osdn.jp/
11461 T:      git git://github.com/konis/nilfs2.git
11462 S:      Supported
11463 F:      Documentation/filesystems/nilfs2.txt
11464 F:      fs/nilfs2/
11465 F:      include/trace/events/nilfs2.h
11466 F:      include/uapi/linux/nilfs2_api.h
11467 F:      include/uapi/linux/nilfs2_ondisk.h
11468
11469 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
11470 M:      YOKOTA Hiroshi <[email protected]>
11471 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11472 S:      Maintained
11473 F:      Documentation/scsi/NinjaSCSI.txt
11474 F:      drivers/scsi/pcmcia/nsp_*
11475
11476 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
11477 M:      GOTO Masanori <[email protected]>
11478 M:      YOKOTA Hiroshi <[email protected]>
11479 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11480 S:      Maintained
11481 F:      Documentation/scsi/NinjaSCSI.txt
11482 F:      drivers/scsi/nsp32*
11483
11484 NIOS2 ARCHITECTURE
11485 M:      Ley Foon Tan <[email protected]>
11486 L:      [email protected] (moderated for non-subscribers)
11487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
11488 S:      Maintained
11489 F:      arch/nios2/
11490
11491 NOHZ, DYNTICKS SUPPORT
11492 M:      Frederic Weisbecker <[email protected]>
11493 M:      Thomas Gleixner <[email protected]>
11494 M:      Ingo Molnar <[email protected]>
11495 L:      [email protected]
11496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
11497 S:      Maintained
11498 F:      kernel/time/tick*.*
11499 F:      include/linux/tick.h
11500 F:      include/linux/sched/nohz.h
11501
11502 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
11503 M:      Pavel Machek <[email protected]>
11504 M:      Sakari Ailus <[email protected]>
11505 L:      [email protected]
11506 S:      Maintained
11507 F:      drivers/media/i2c/et8ek8
11508 F:      drivers/media/i2c/ad5820.c
11509
11510 NOKIA N900 POWER SUPPLY DRIVERS
11511 R:      Pali Rohár <[email protected]>
11512 F:      include/linux/power/bq2415x_charger.h
11513 F:      include/linux/power/bq27xxx_battery.h
11514 F:      drivers/power/supply/bq2415x_charger.c
11515 F:      drivers/power/supply/bq27xxx_battery.c
11516 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11517 F:      drivers/power/supply/isp1704_charger.c
11518 F:      drivers/power/supply/rx51_battery.c
11519
11520 NOLIBC HEADER FILE
11521 M:      Willy Tarreau <[email protected]>
11522 S:      Maintained
11523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
11524 F:      tools/include/nolibc/
11525
11526 NSDEPS
11527 M:      Matthias Maennich <[email protected]>
11528 S:      Maintained
11529 F:      scripts/nsdeps
11530
11531 NTB AMD DRIVER
11532 M:      Shyam Sundar S K <[email protected]>
11533 L:      [email protected]
11534 S:      Supported
11535 F:      drivers/ntb/hw/amd/
11536
11537 NTB DRIVER CORE
11538 M:      Jon Mason <[email protected]>
11539 M:      Dave Jiang <[email protected]>
11540 M:      Allen Hubbe <[email protected]>
11541 L:      [email protected]
11542 S:      Supported
11543 W:      https://github.com/jonmason/ntb/wiki
11544 T:      git git://github.com/jonmason/ntb.git
11545 F:      drivers/ntb/
11546 F:      drivers/net/ntb_netdev.c
11547 F:      include/linux/ntb.h
11548 F:      include/linux/ntb_transport.h
11549 F:      tools/testing/selftests/ntb/
11550
11551 NTB IDT DRIVER
11552 M:      Serge Semin <[email protected]>
11553 L:      [email protected]
11554 S:      Supported
11555 F:      drivers/ntb/hw/idt/
11556
11557 NTB INTEL DRIVER
11558 M:      Dave Jiang <[email protected]>
11559 L:      [email protected]
11560 S:      Supported
11561 W:      https://github.com/davejiang/linux/wiki
11562 T:      git https://github.com/davejiang/linux.git
11563 F:      drivers/ntb/hw/intel/
11564
11565 NTFS FILESYSTEM
11566 M:      Anton Altaparmakov <[email protected]>
11567 L:      [email protected]
11568 W:      http://www.tuxera.com/
11569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
11570 S:      Supported
11571 F:      Documentation/filesystems/ntfs.txt
11572 F:      fs/ntfs/
11573
11574 NUBUS SUBSYSTEM
11575 M:      Finn Thain <[email protected]>
11576 L:      [email protected]
11577 S:      Maintained
11578 F:      arch/*/include/asm/nubus.h
11579 F:      drivers/nubus/
11580 F:      include/linux/nubus.h
11581 F:      include/uapi/linux/nubus.h
11582
11583 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
11584 M:      Antonino Daplas <[email protected]>
11585 L:      [email protected]
11586 S:      Maintained
11587 F:      drivers/video/fbdev/riva/
11588 F:      drivers/video/fbdev/nvidia/
11589
11590 NVM EXPRESS DRIVER
11591 M:      Keith Busch <[email protected]>
11592 M:      Jens Axboe <[email protected]>
11593 M:      Christoph Hellwig <[email protected]>
11594 M:      Sagi Grimberg <[email protected]>
11595 L:      [email protected]
11596 T:      git://git.infradead.org/nvme.git
11597 W:      http://git.infradead.org/nvme.git
11598 S:      Supported
11599 F:      drivers/nvme/host/
11600 F:      include/linux/nvme.h
11601 F:      include/uapi/linux/nvme_ioctl.h
11602
11603 NVM EXPRESS FC TRANSPORT DRIVERS
11604 M:      James Smart <[email protected]>
11605 L:      [email protected]
11606 S:      Supported
11607 F:      include/linux/nvme-fc.h
11608 F:      include/linux/nvme-fc-driver.h
11609 F:      drivers/nvme/host/fc.c
11610 F:      drivers/nvme/target/fc.c
11611 F:      drivers/nvme/target/fcloop.c
11612
11613 NVM EXPRESS TARGET DRIVER
11614 M:      Christoph Hellwig <[email protected]>
11615 M:      Sagi Grimberg <[email protected]>
11616 L:      [email protected]
11617 T:      git://git.infradead.org/nvme.git
11618 W:      http://git.infradead.org/nvme.git
11619 S:      Supported
11620 F:      drivers/nvme/target/
11621
11622 NVMEM FRAMEWORK
11623 M:      Srinivas Kandagatla <[email protected]>
11624 S:      Maintained
11625 F:      drivers/nvmem/
11626 F:      Documentation/devicetree/bindings/nvmem/
11627 F:      Documentation/ABI/stable/sysfs-bus-nvmem
11628 F:      include/linux/nvmem-consumer.h
11629 F:      include/linux/nvmem-provider.h
11630
11631 NXP FXAS21002C DRIVER
11632 M:      Rui Miguel Silva <[email protected]>
11633 L:      [email protected]
11634 S:      Maintained
11635 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
11636 F:      drivers/iio/gyro/fxas21002c_core.c
11637 F:      drivers/iio/gyro/fxas21002c.h
11638 F:      drivers/iio/gyro/fxas21002c_i2c.c
11639 F:      drivers/iio/gyro/fxas21002c_spi.c
11640
11641 NXP SGTL5000 DRIVER
11642 M:      Fabio Estevam <[email protected]>
11643 L:      [email protected] (moderated for non-subscribers)
11644 S:      Maintained
11645 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
11646 F:      sound/soc/codecs/sgtl5000*
11647
11648 NXP SJA1105 ETHERNET SWITCH DRIVER
11649 M:      Vladimir Oltean <[email protected]>
11650 L:      [email protected]
11651 S:      Maintained
11652 F:      drivers/net/dsa/sja1105
11653
11654 NXP TDA998X DRM DRIVER
11655 M:      Russell King <[email protected]>
11656 S:      Maintained
11657 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
11658 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
11659 F:      drivers/gpu/drm/i2c/tda998x_drv.c
11660 F:      include/drm/i2c/tda998x.h
11661 F:      include/dt-bindings/display/tda998x.h
11662 K:      "nxp,tda998x"
11663
11664 NXP TFA9879 DRIVER
11665 M:      Peter Rosin <[email protected]>
11666 L:      [email protected] (moderated for non-subscribers)
11667 S:      Maintained
11668 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
11669 F:      sound/soc/codecs/tfa9879*
11670
11671 NXP-NCI NFC DRIVER
11672 M:      Clément Perrochaud <[email protected]>
11673 R:      Charles Gorand <[email protected]>
11674 L:      [email protected] (moderated for non-subscribers)
11675 S:      Supported
11676 F:      drivers/nfc/nxp-nci
11677
11678 OBJAGG
11679 M:      Jiri Pirko <[email protected]>
11680 L:      [email protected]
11681 S:      Supported
11682 F:      lib/objagg.c
11683 F:      lib/test_objagg.c
11684 F:      include/linux/objagg.h
11685
11686 NXP FSPI DRIVER
11687 R:      Yogesh Gaur <[email protected]>
11688 M:      Ashish Kumar <[email protected]>
11689 L:      [email protected]
11690 S:      Maintained
11691 F:      drivers/spi/spi-nxp-fspi.c
11692 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
11693
11694 OBJTOOL
11695 M:      Josh Poimboeuf <[email protected]>
11696 M:      Peter Zijlstra <[email protected]>
11697 S:      Supported
11698 F:      tools/objtool/
11699
11700 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
11701 M:      Frederic Barrat <[email protected]>
11702 M:      Andrew Donnellan <[email protected]>
11703 L:      [email protected]
11704 S:      Supported
11705 F:      arch/powerpc/platforms/powernv/ocxl.c
11706 F:      arch/powerpc/include/asm/pnv-ocxl.h
11707 F:      drivers/misc/ocxl/
11708 F:      include/misc/ocxl*
11709 F:      include/uapi/misc/ocxl.h
11710 F:      Documentation/userspace-api/accelerators/ocxl.rst
11711
11712 OMAP AUDIO SUPPORT
11713 M:      Peter Ujfalusi <[email protected]>
11714 M:      Jarkko Nikula <[email protected]>
11715 L:      [email protected] (moderated for non-subscribers)
11716 L:      [email protected]
11717 S:      Maintained
11718 F:      sound/soc/ti/omap*
11719 F:      sound/soc/ti/rx51.c
11720 F:      sound/soc/ti/n810.c
11721 F:      sound/soc/ti/sdma-pcm.*
11722
11723 OMAP CLOCK FRAMEWORK SUPPORT
11724 M:      Paul Walmsley <[email protected]>
11725 L:      [email protected]
11726 S:      Maintained
11727 F:      arch/arm/*omap*/*clock*
11728
11729 OMAP DEVICE TREE SUPPORT
11730 M:      Benoît Cousson <[email protected]>
11731 M:      Tony Lindgren <[email protected]>
11732 L:      [email protected]
11733 L:      [email protected]
11734 S:      Maintained
11735 F:      arch/arm/boot/dts/*omap*
11736 F:      arch/arm/boot/dts/*am3*
11737 F:      arch/arm/boot/dts/*am4*
11738 F:      arch/arm/boot/dts/*am5*
11739 F:      arch/arm/boot/dts/*dra7*
11740
11741 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
11742 L:      [email protected]
11743 L:      [email protected]
11744 S:      Orphan
11745 F:      drivers/video/fbdev/omap2/
11746 F:      Documentation/arm/omap/dss.rst
11747
11748 OMAP FRAMEBUFFER SUPPORT
11749 L:      [email protected]
11750 L:      [email protected]
11751 S:      Orphan
11752 F:      drivers/video/fbdev/omap/
11753
11754 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
11755 M:      Roger Quadros <[email protected]>
11756 M:      Tony Lindgren <[email protected]>
11757 L:      [email protected]
11758 S:      Maintained
11759 F:      drivers/memory/omap-gpmc.c
11760 F:      arch/arm/mach-omap2/*gpmc*
11761
11762 OMAP GPIO DRIVER
11763 M:      Grygorii Strashko <[email protected]>
11764 M:      Santosh Shilimkar <[email protected]>
11765 M:      Kevin Hilman <[email protected]>
11766 L:      [email protected]
11767 S:      Maintained
11768 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
11769 F:      drivers/gpio/gpio-omap.c
11770
11771 OMAP HARDWARE SPINLOCK SUPPORT
11772 M:      Ohad Ben-Cohen <[email protected]>
11773 L:      [email protected]
11774 S:      Maintained
11775 F:      drivers/hwspinlock/omap_hwspinlock.c
11776
11777 OMAP HS MMC SUPPORT
11778 L:      [email protected]
11779 L:      [email protected]
11780 S:      Orphan
11781 F:      drivers/mmc/host/omap_hsmmc.c
11782
11783 OMAP HWMOD DATA
11784 M:      Paul Walmsley <[email protected]>
11785 L:      [email protected]
11786 S:      Maintained
11787 F:      arch/arm/mach-omap2/omap_hwmod*data*
11788
11789 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
11790 M:      Benoît Cousson <[email protected]>
11791 L:      [email protected]
11792 S:      Maintained
11793 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
11794
11795 OMAP HWMOD SUPPORT
11796 M:      Benoît Cousson <[email protected]>
11797 M:      Paul Walmsley <[email protected]>
11798 L:      [email protected]
11799 S:      Maintained
11800 F:      arch/arm/mach-omap2/omap_hwmod.*
11801
11802 OMAP I2C DRIVER
11803 M:      Vignesh R <[email protected]>
11804 L:      [email protected]
11805 L:      [email protected]
11806 S:      Maintained
11807 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
11808 F:      drivers/i2c/busses/i2c-omap.c
11809
11810 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
11811 M:      Laurent Pinchart <[email protected]>
11812 L:      [email protected]
11813 S:      Maintained
11814 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
11815 F:      drivers/media/platform/omap3isp/
11816 F:      drivers/staging/media/omap4iss/
11817
11818 OMAP MMC SUPPORT
11819 M:      Aaro Koskinen <[email protected]>
11820 L:      [email protected]
11821 S:      Odd Fixes
11822 F:      drivers/mmc/host/omap.c
11823
11824 OMAP POWER MANAGEMENT SUPPORT
11825 M:      Kevin Hilman <[email protected]>
11826 L:      [email protected]
11827 S:      Maintained
11828 F:      arch/arm/*omap*/*pm*
11829 F:      drivers/cpufreq/omap-cpufreq.c
11830
11831 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
11832 M:      Rajendra Nayak <[email protected]>
11833 M:      Paul Walmsley <[email protected]>
11834 L:      [email protected]
11835 S:      Maintained
11836 F:      arch/arm/mach-omap2/prm*
11837
11838 OMAP RANDOM NUMBER GENERATOR SUPPORT
11839 M:      Deepak Saxena <[email protected]>
11840 S:      Maintained
11841 F:      drivers/char/hw_random/omap-rng.c
11842
11843 OMAP USB SUPPORT
11844 L:      [email protected]
11845 L:      [email protected]
11846 S:      Orphan
11847 F:      drivers/usb/*/*omap*
11848 F:      arch/arm/*omap*/usb*
11849
11850 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
11851 M:      Mark Jackson <[email protected]>
11852 L:      [email protected]
11853 S:      Maintained
11854 F:      arch/arm/boot/dts/am335x-nano.dts
11855
11856 OMAP1 SUPPORT
11857 M:      Aaro Koskinen <[email protected]>
11858 M:      Tony Lindgren <[email protected]>
11859 L:      [email protected]
11860 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11862 S:      Maintained
11863 F:      arch/arm/mach-omap1/
11864 F:      arch/arm/plat-omap/
11865 F:      arch/arm/configs/omap1_defconfig
11866 F:      drivers/i2c/busses/i2c-omap.c
11867 F:      include/linux/platform_data/i2c-omap.h
11868 F:      include/linux/platform_data/ams-delta-fiq.h
11869
11870 OMAP2+ SUPPORT
11871 M:      Tony Lindgren <[email protected]>
11872 L:      [email protected]
11873 W:      http://www.muru.com/linux/omap/
11874 W:      http://linux.omap.com/
11875 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11877 S:      Maintained
11878 F:      arch/arm/mach-omap2/
11879 F:      arch/arm/plat-omap/
11880 F:      arch/arm/configs/omap2plus_defconfig
11881 F:      drivers/bus/ti-sysc.c
11882 F:      drivers/i2c/busses/i2c-omap.c
11883 F:      drivers/irqchip/irq-omap-intc.c
11884 F:      drivers/mfd/*omap*.c
11885 F:      drivers/mfd/menelaus.c
11886 F:      drivers/mfd/palmas.c
11887 F:      drivers/mfd/tps65217.c
11888 F:      drivers/mfd/tps65218.c
11889 F:      drivers/mfd/tps65910.c
11890 F:      drivers/mfd/twl-core.[ch]
11891 F:      drivers/mfd/twl4030*.c
11892 F:      drivers/mfd/twl6030*.c
11893 F:      drivers/mfd/twl6040*.c
11894 F:      drivers/regulator/palmas-regulator*.c
11895 F:      drivers/regulator/pbias-regulator.c
11896 F:      drivers/regulator/tps65217-regulator.c
11897 F:      drivers/regulator/tps65218-regulator.c
11898 F:      drivers/regulator/tps65910-regulator.c
11899 F:      drivers/regulator/twl-regulator.c
11900 F:      drivers/regulator/twl6030-regulator.c
11901 F:      include/linux/platform_data/i2c-omap.h
11902 F:      include/linux/platform_data/ti-sysc.h
11903
11904 ONION OMEGA2+ BOARD
11905 M:      Harvey Hunt <[email protected]>
11906 L:      [email protected]
11907 S:      Maintained
11908 F:      arch/mips/boot/dts/ralink/omega2p.dts
11909
11910 OMFS FILESYSTEM
11911 M:      Bob Copeland <[email protected]>
11912 L:      [email protected]
11913 S:      Maintained
11914 F:      Documentation/filesystems/omfs.txt
11915 F:      fs/omfs/
11916
11917 OMNIKEY CARDMAN 4000 DRIVER
11918 M:      Harald Welte <[email protected]>
11919 S:      Maintained
11920 F:      drivers/char/pcmcia/cm4000_cs.c
11921 F:      include/linux/cm4000_cs.h
11922 F:      include/uapi/linux/cm4000_cs.h
11923
11924 OMNIKEY CARDMAN 4040 DRIVER
11925 M:      Harald Welte <[email protected]>
11926 S:      Maintained
11927 F:      drivers/char/pcmcia/cm4040_cs.*
11928
11929 OMNIVISION OV13858 SENSOR DRIVER
11930 M:      Sakari Ailus <[email protected]>
11931 L:      [email protected]
11932 T:      git git://linuxtv.org/media_tree.git
11933 S:      Maintained
11934 F:      drivers/media/i2c/ov13858.c
11935
11936 OMNIVISION OV2680 SENSOR DRIVER
11937 M:      Rui Miguel Silva <[email protected]>
11938 L:      [email protected]
11939 T:      git git://linuxtv.org/media_tree.git
11940 S:      Maintained
11941 F:      drivers/media/i2c/ov2680.c
11942 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
11943
11944 OMNIVISION OV2685 SENSOR DRIVER
11945 M:      Shunqian Zheng <[email protected]>
11946 L:      [email protected]
11947 T:      git git://linuxtv.org/media_tree.git
11948 S:      Maintained
11949 F:      drivers/media/i2c/ov2685.c
11950
11951 OMNIVISION OV5640 SENSOR DRIVER
11952 M:      Steve Longerbeam <[email protected]>
11953 L:      [email protected]
11954 T:      git git://linuxtv.org/media_tree.git
11955 S:      Maintained
11956 F:      drivers/media/i2c/ov5640.c
11957
11958 OMNIVISION OV5647 SENSOR DRIVER
11959 M:      Luis Oliveira <[email protected]>
11960 L:      [email protected]
11961 T:      git git://linuxtv.org/media_tree.git
11962 S:      Maintained
11963 F:      drivers/media/i2c/ov5647.c
11964
11965 OMNIVISION OV5670 SENSOR DRIVER
11966 M:      Chiranjeevi Rapolu <[email protected]>
11967 M:      Hyungwoo Yang <[email protected]>
11968 L:      [email protected]
11969 T:      git git://linuxtv.org/media_tree.git
11970 S:      Maintained
11971 F:      drivers/media/i2c/ov5670.c
11972
11973 OMNIVISION OV5675 SENSOR DRIVER
11974 M:      Shawn Tu <[email protected]>
11975 L:      [email protected]
11976 T:      git git://linuxtv.org/media_tree.git
11977 S:      Maintained
11978 F:      drivers/media/i2c/ov5675.c
11979
11980 OMNIVISION OV5695 SENSOR DRIVER
11981 M:      Shunqian Zheng <[email protected]>
11982 L:      [email protected]
11983 T:      git git://linuxtv.org/media_tree.git
11984 S:      Maintained
11985 F:      drivers/media/i2c/ov5695.c
11986
11987 OMNIVISION OV7670 SENSOR DRIVER
11988 M:      Jonathan Corbet <[email protected]>
11989 L:      [email protected]
11990 T:      git git://linuxtv.org/media_tree.git
11991 S:      Maintained
11992 F:      drivers/media/i2c/ov7670.c
11993 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
11994
11995 OMNIVISION OV772x SENSOR DRIVER
11996 M:      Jacopo Mondi <[email protected]>
11997 L:      [email protected]
11998 T:      git git://linuxtv.org/media_tree.git
11999 S:      Odd fixes
12000 F:      drivers/media/i2c/ov772x.c
12001 F:      include/media/i2c/ov772x.h
12002 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12003
12004 OMNIVISION OV7740 SENSOR DRIVER
12005 M:      Wenyou Yang <[email protected]>
12006 L:      [email protected]
12007 T:      git git://linuxtv.org/media_tree.git
12008 S:      Maintained
12009 F:      drivers/media/i2c/ov7740.c
12010 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12011
12012 OMNIVISION OV9640 SENSOR DRIVER
12013 M:      Petr Cvek <[email protected]>
12014 L:      [email protected]
12015 S:      Maintained
12016 F:      drivers/media/i2c/ov9640.*
12017
12018 OMNIVISION OV8856 SENSOR DRIVER
12019 M:      Ben Kao <[email protected]>
12020 L:      [email protected]
12021 T:      git git://linuxtv.org/media_tree.git
12022 S:      Maintained
12023 F:      drivers/media/i2c/ov8856.c
12024
12025 OMNIVISION OV9650 SENSOR DRIVER
12026 M:      Sakari Ailus <[email protected]>
12027 R:      Akinobu Mita <[email protected]>
12028 R:      Sylwester Nawrocki <[email protected]>
12029 L:      [email protected]
12030 T:      git git://linuxtv.org/media_tree.git
12031 S:      Maintained
12032 F:      drivers/media/i2c/ov9650.c
12033 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12034
12035 ONENAND FLASH DRIVER
12036 M:      Kyungmin Park <[email protected]>
12037 L:      [email protected]
12038 S:      Maintained
12039 F:      drivers/mtd/nand/onenand/
12040 F:      include/linux/mtd/onenand*.h
12041
12042 OP-TEE DRIVER
12043 M:      Jens Wiklander <[email protected]>
12044 L:      [email protected]
12045 S:      Maintained
12046 F:      drivers/tee/optee/
12047
12048 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12049 M:      Sumit Garg <[email protected]>
12050 L:      [email protected]
12051 S:      Maintained
12052 F:      drivers/char/hw_random/optee-rng.c
12053
12054 OPA-VNIC DRIVER
12055 M:      Dennis Dalessandro <[email protected]>
12056 M:      Niranjana Vishwanathapura <[email protected]>
12057 L:      [email protected]
12058 S:      Supported
12059 F:      drivers/infiniband/ulp/opa_vnic
12060
12061 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12062 M:      Pantelis Antoniou <[email protected]>
12063 M:      Frank Rowand <[email protected]>
12064 L:      [email protected]
12065 S:      Maintained
12066 F:      Documentation/devicetree/dynamic-resolution-notes.txt
12067 F:      Documentation/devicetree/overlay-notes.txt
12068 F:      drivers/of/overlay.c
12069 F:      drivers/of/resolver.c
12070 K:      of_overlay_notifier_
12071
12072 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12073 M:      Rob Herring <[email protected]>
12074 M:      Frank Rowand <[email protected]>
12075 L:      [email protected]
12076 W:      http://www.devicetree.org/
12077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12078 S:      Maintained
12079 F:      drivers/of/
12080 F:      include/linux/of*.h
12081 F:      scripts/dtc/
12082 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12083
12084 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12085 M:      Rob Herring <[email protected]>
12086 M:      Mark Rutland <[email protected]>
12087 L:      [email protected]
12088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12089 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12090 S:      Maintained
12091 F:      Documentation/devicetree/
12092 F:      arch/*/boot/dts/
12093 F:      include/dt-bindings/
12094
12095 OPENCORES I2C BUS DRIVER
12096 M:      Peter Korsgaard <[email protected]>
12097 M:      Andrew Lunn <[email protected]>
12098 L:      [email protected]
12099 S:      Maintained
12100 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12101 F:      Documentation/i2c/busses/i2c-ocores.rst
12102 F:      drivers/i2c/busses/i2c-ocores.c
12103 F:      include/linux/platform_data/i2c-ocores.h
12104
12105 OPENRISC ARCHITECTURE
12106 M:      Jonas Bonn <[email protected]>
12107 M:      Stefan Kristiansson <[email protected]>
12108 M:      Stafford Horne <[email protected]>
12109 T:      git git://github.com/openrisc/linux.git
12110 L:      [email protected]
12111 W:      http://openrisc.io
12112 S:      Maintained
12113 F:      Documentation/devicetree/bindings/openrisc/
12114 F:      Documentation/openrisc/
12115 F:      arch/openrisc/
12116 F:      drivers/irqchip/irq-ompic.c
12117 F:      drivers/irqchip/irq-or1k-*
12118
12119 OPENVSWITCH
12120 M:      Pravin B Shelar <[email protected]>
12121 L:      [email protected]
12122 L:      [email protected]
12123 W:      http://openvswitch.org
12124 S:      Maintained
12125 F:      net/openvswitch/
12126 F:      include/uapi/linux/openvswitch.h
12127
12128 OPERATING PERFORMANCE POINTS (OPP)
12129 M:      Viresh Kumar <[email protected]>
12130 M:      Nishanth Menon <[email protected]>
12131 M:      Stephen Boyd <[email protected]>
12132 L:      [email protected]
12133 S:      Maintained
12134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12135 F:      drivers/opp/
12136 F:      include/linux/pm_opp.h
12137 F:      Documentation/power/opp.rst
12138 F:      Documentation/devicetree/bindings/opp/
12139
12140 OPL4 DRIVER
12141 M:      Clemens Ladisch <[email protected]>
12142 L:      [email protected] (moderated for non-subscribers)
12143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12144 S:      Maintained
12145 F:      sound/drivers/opl4/
12146
12147 OPROFILE
12148 M:      Robert Richter <[email protected]>
12149 L:      [email protected]
12150 S:      Maintained
12151 F:      arch/*/include/asm/oprofile*.h
12152 F:      arch/*/oprofile/
12153 F:      drivers/oprofile/
12154 F:      include/linux/oprofile.h
12155
12156 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12157 M:      Mark Fasheh <[email protected]>
12158 M:      Joel Becker <[email protected]>
12159 M:      Joseph Qi <[email protected]>
12160 L:      [email protected] (moderated for non-subscribers)
12161 W:      http://ocfs2.wiki.kernel.org
12162 S:      Supported
12163 F:      Documentation/filesystems/ocfs2.txt
12164 F:      Documentation/filesystems/dlmfs.txt
12165 F:      fs/ocfs2/
12166
12167 ORANGEFS FILESYSTEM
12168 M:      Mike Marshall <[email protected]>
12169 R:      Martin Brandenburg <[email protected]>
12170 L:      [email protected]
12171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12172 S:      Supported
12173 F:      fs/orangefs/
12174 F:      Documentation/filesystems/orangefs.txt
12175
12176 ORINOCO DRIVER
12177 L:      [email protected]
12178 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
12179 W:      http://www.nongnu.org/orinoco/
12180 S:      Orphan
12181 F:      drivers/net/wireless/intersil/orinoco/
12182
12183 OV2659 OMNIVISION SENSOR DRIVER
12184 M:      "Lad, Prabhakar" <[email protected]>
12185 L:      [email protected]
12186 W:      https://linuxtv.org
12187 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12188 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12189 S:      Maintained
12190 F:      drivers/media/i2c/ov2659.c
12191 F:      include/media/i2c/ov2659.h
12192
12193 OVERLAY FILESYSTEM
12194 M:      Miklos Szeredi <[email protected]>
12195 L:      [email protected]
12196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12197 S:      Supported
12198 F:      fs/overlayfs/
12199 F:      Documentation/filesystems/overlayfs.txt
12200
12201 P54 WIRELESS DRIVER
12202 M:      Christian Lamparter <[email protected]>
12203 L:      [email protected]
12204 W:      http://wireless.kernel.org/en/users/Drivers/p54
12205 S:      Maintained
12206 F:      drivers/net/wireless/intersil/p54/
12207
12208 PA SEMI ETHERNET DRIVER
12209 L:      [email protected]
12210 S:      Orphan
12211 F:      drivers/net/ethernet/pasemi/*
12212
12213 PA SEMI SMBUS DRIVER
12214 L:      [email protected]
12215 S:      Orphan
12216 F:      drivers/i2c/busses/i2c-pasemi.c
12217
12218 PACKING
12219 M:      Vladimir Oltean <[email protected]>
12220 L:      [email protected]
12221 S:      Supported
12222 F:      lib/packing.c
12223 F:      include/linux/packing.h
12224 F:      Documentation/core-api/packing.rst
12225
12226 PADATA PARALLEL EXECUTION MECHANISM
12227 M:      Steffen Klassert <[email protected]>
12228 L:      [email protected]
12229 S:      Maintained
12230 F:      kernel/padata.c
12231 F:      include/linux/padata.h
12232 F:      Documentation/padata.txt
12233
12234 PAGE POOL
12235 M:      Jesper Dangaard Brouer <[email protected]>
12236 M:      Ilias Apalodimas <[email protected]>
12237 L:      [email protected]
12238 S:      Supported
12239 F:      net/core/page_pool.c
12240 F:      include/net/page_pool.h
12241
12242 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12243 M:      Harald Welte <[email protected]>
12244 L:      [email protected]
12245 S:      Maintained
12246 F:      drivers/platform/x86/panasonic-laptop.c
12247
12248 PARALLEL LCD/KEYPAD PANEL DRIVER
12249 M:      Willy Tarreau <[email protected]>
12250 M:      Ksenija Stanojevic <[email protected]>
12251 S:      Odd Fixes
12252 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12253 F:      drivers/auxdisplay/panel.c
12254
12255 PARALLEL PORT SUBSYSTEM
12256 M:      Sudip Mukherjee <[email protected]>
12257 M:      Sudip Mukherjee <[email protected]>
12258 L:      [email protected] (subscribers-only)
12259 S:      Maintained
12260 F:      drivers/parport/
12261 F:      include/linux/parport*.h
12262 F:      drivers/char/ppdev.c
12263 F:      include/uapi/linux/ppdev.h
12264 F:      Documentation/driver-api/parport*.rst
12265
12266 PARAVIRT_OPS INTERFACE
12267 M:      Juergen Gross <[email protected]>
12268 M:      Thomas Hellstrom <[email protected]>
12269 M:      "VMware, Inc." <[email protected]>
12270 L:      [email protected]
12271 S:      Supported
12272 F:      Documentation/virt/paravirt_ops.rst
12273 F:      arch/*/kernel/paravirt*
12274 F:      arch/*/include/asm/paravirt*.h
12275 F:      include/linux/hypervisor.h
12276
12277 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12278 M:      Tim Waugh <[email protected]>
12279 L:      [email protected] (subscribers-only)
12280 S:      Maintained
12281 F:      Documentation/admin-guide/blockdev/paride.rst
12282 F:      drivers/block/paride/
12283
12284 PARISC ARCHITECTURE
12285 M:      "James E.J. Bottomley" <[email protected]>
12286 M:      Helge Deller <[email protected]>
12287 L:      [email protected]
12288 W:      http://www.parisc-linux.org/
12289 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12292 S:      Maintained
12293 F:      arch/parisc/
12294 F:      Documentation/parisc/
12295 F:      drivers/parisc/
12296 F:      drivers/char/agp/parisc-agp.c
12297 F:      drivers/input/serio/gscps2.c
12298 F:      drivers/parport/parport_gsc.*
12299 F:      drivers/tty/serial/8250/8250_gsc.c
12300 F:      drivers/video/fbdev/sti*
12301 F:      drivers/video/console/sti*
12302 F:      drivers/video/logo/logo_parisc*
12303
12304 PARMAN
12305 M:      Jiri Pirko <[email protected]>
12306 L:      [email protected]
12307 S:      Supported
12308 F:      lib/parman.c
12309 F:      lib/test_parman.c
12310 F:      include/linux/parman.h
12311
12312 PC ENGINES APU BOARD DRIVER
12313 M:      Enrico Weigelt, metux IT consult <[email protected]>
12314 S:      Maintained
12315 F:      drivers/platform/x86/pcengines-apuv2.c
12316
12317 PC87360 HARDWARE MONITORING DRIVER
12318 M:      Jim Cromie <[email protected]>
12319 L:      [email protected]
12320 S:      Maintained
12321 F:      Documentation/hwmon/pc87360.rst
12322 F:      drivers/hwmon/pc87360.c
12323
12324 PC8736x GPIO DRIVER
12325 M:      Jim Cromie <[email protected]>
12326 S:      Maintained
12327 F:      drivers/char/pc8736x_gpio.c
12328
12329 PC87427 HARDWARE MONITORING DRIVER
12330 M:      Jean Delvare <[email protected]>
12331 L:      [email protected]
12332 S:      Maintained
12333 F:      Documentation/hwmon/pc87427.rst
12334 F:      drivers/hwmon/pc87427.c
12335
12336 PCA9532 LED DRIVER
12337 M:      Riku Voipio <[email protected]>
12338 S:      Maintained
12339 F:      drivers/leds/leds-pca9532.c
12340 F:      include/linux/leds-pca9532.h
12341
12342 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12343 M:      Guenter Roeck <[email protected]>
12344 L:      [email protected]
12345 S:      Maintained
12346 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12347
12348 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12349 M:      Khalid Aziz <[email protected]>
12350 S:      Maintained
12351 F:      drivers/firmware/pcdp.*
12352
12353 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12354 M:      Thomas Petazzoni <[email protected]>
12355 L:      [email protected]
12356 L:      [email protected] (moderated for non-subscribers)
12357 S:      Maintained
12358 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
12359 F:      drivers/pci/controller/pci-aardvark.c
12360
12361 PCI DRIVER FOR ALTERA PCIE IP
12362 M:      Ley Foon Tan <[email protected]>
12363 L:      [email protected] (moderated for non-subscribers)
12364 L:      [email protected]
12365 S:      Supported
12366 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
12367 F:      drivers/pci/controller/pcie-altera.c
12368
12369 PCI DRIVER FOR APPLIEDMICRO XGENE
12370 M:      Toan Le <[email protected]>
12371 L:      [email protected]
12372 L:      [email protected]
12373 S:      Maintained
12374 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
12375 F:      drivers/pci/controller/pci-xgene.c
12376
12377 PCI DRIVER FOR ARM VERSATILE PLATFORM
12378 M:      Rob Herring <[email protected]>
12379 L:      [email protected]
12380 L:      [email protected]
12381 S:      Maintained
12382 F:      Documentation/devicetree/bindings/pci/versatile.txt
12383 F:      drivers/pci/controller/pci-versatile.c
12384
12385 PCI DRIVER FOR ARMADA 8K
12386 M:      Thomas Petazzoni <[email protected]>
12387 L:      [email protected]
12388 L:      [email protected]
12389 S:      Maintained
12390 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
12391 F:      drivers/pci/controller/dwc/pcie-armada8k.c
12392
12393 PCI DRIVER FOR CADENCE PCIE IP
12394 M:      Tom Joseph <[email protected]>
12395 L:      [email protected]
12396 S:      Maintained
12397 F:      Documentation/devicetree/bindings/pci/cdns,*.txt
12398 F:      drivers/pci/controller/pcie-cadence*
12399
12400 PCI DRIVER FOR FREESCALE LAYERSCAPE
12401 M:      Minghuan Lian <[email protected]>
12402 M:      Mingkai Hu <[email protected]>
12403 M:      Roy Zang <[email protected]>
12404 L:      [email protected]
12405 L:      [email protected]
12406 L:      [email protected]
12407 S:      Maintained
12408 F:      drivers/pci/controller/dwc/*layerscape*
12409
12410 PCI DRIVER FOR GENERIC OF HOSTS
12411 M:      Will Deacon <[email protected]>
12412 L:      [email protected]
12413 L:      [email protected] (moderated for non-subscribers)
12414 S:      Maintained
12415 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
12416 F:      drivers/pci/controller/pci-host-common.c
12417 F:      drivers/pci/controller/pci-host-generic.c
12418
12419 PCI DRIVER FOR IMX6
12420 M:      Richard Zhu <[email protected]>
12421 M:      Lucas Stach <[email protected]>
12422 L:      [email protected]
12423 L:      [email protected] (moderated for non-subscribers)
12424 S:      Maintained
12425 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
12426 F:      drivers/pci/controller/dwc/*imx6*
12427
12428 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
12429 M:      Keith Busch <[email protected]>
12430 M:      Jonathan Derrick <[email protected]>
12431 L:      [email protected]
12432 S:      Supported
12433 F:      drivers/pci/controller/vmd.c
12434
12435 PCI DRIVER FOR MICROSEMI SWITCHTEC
12436 M:      Kurt Schwemmer <[email protected]>
12437 M:      Logan Gunthorpe <[email protected]>
12438 L:      [email protected]
12439 S:      Maintained
12440 F:      Documentation/driver-api/switchtec.rst
12441 F:      Documentation/ABI/testing/sysfs-class-switchtec
12442 F:      drivers/pci/switch/switchtec*
12443 F:      include/uapi/linux/switchtec_ioctl.h
12444 F:      include/linux/switchtec.h
12445 F:      drivers/ntb/hw/mscc/
12446
12447 PCI DRIVER FOR MOBIVEIL PCIE IP
12448 M:      Karthikeyan Mitran <[email protected]>
12449 M:      Hou Zhiqiang <[email protected]>
12450 L:      [email protected]
12451 S:      Supported
12452 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
12453 F:      drivers/pci/controller/pcie-mobiveil.c
12454
12455 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
12456 M:      Thomas Petazzoni <[email protected]>
12457 M:      Jason Cooper <[email protected]>
12458 L:      [email protected]
12459 L:      [email protected] (moderated for non-subscribers)
12460 S:      Maintained
12461 F:      drivers/pci/controller/*mvebu*
12462
12463 PCI DRIVER FOR NVIDIA TEGRA
12464 M:      Thierry Reding <[email protected]>
12465 L:      [email protected]
12466 L:      [email protected]
12467 S:      Supported
12468 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
12469 F:      drivers/pci/controller/pci-tegra.c
12470
12471 PCI DRIVER FOR RENESAS R-CAR
12472 M:      Simon Horman <[email protected]>
12473 L:      [email protected]
12474 L:      [email protected]
12475 S:      Maintained
12476 F:      drivers/pci/controller/*rcar*
12477
12478 PCI DRIVER FOR SAMSUNG EXYNOS
12479 M:      Jingoo Han <[email protected]>
12480 L:      [email protected]
12481 L:      [email protected] (moderated for non-subscribers)
12482 L:      [email protected] (moderated for non-subscribers)
12483 S:      Maintained
12484 F:      drivers/pci/controller/dwc/pci-exynos.c
12485
12486 PCI DRIVER FOR SYNOPSYS DESIGNWARE
12487 M:      Jingoo Han <[email protected]>
12488 M:      Gustavo Pimentel <[email protected]>
12489 L:      [email protected]
12490 S:      Maintained
12491 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
12492 F:      drivers/pci/controller/dwc/*designware*
12493
12494 PCI DRIVER FOR TI DRA7XX
12495 M:      Kishon Vijay Abraham I <[email protected]>
12496 L:      [email protected]
12497 L:      [email protected]
12498 S:      Supported
12499 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
12500 F:      drivers/pci/controller/dwc/pci-dra7xx.c
12501
12502 PCI DRIVER FOR TI KEYSTONE
12503 M:      Murali Karicheri <[email protected]>
12504 L:      [email protected]
12505 L:      [email protected] (moderated for non-subscribers)
12506 S:      Maintained
12507 F:      drivers/pci/controller/dwc/pci-keystone.c
12508
12509 PCI ENDPOINT SUBSYSTEM
12510 M:      Kishon Vijay Abraham I <[email protected]>
12511 M:      Lorenzo Pieralisi <[email protected]>
12512 L:      [email protected]
12513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
12514 S:      Supported
12515 F:      drivers/pci/endpoint/
12516 F:      drivers/misc/pci_endpoint_test.c
12517 F:      tools/pci/
12518
12519 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
12520 M:      Russell Currey <[email protected]>
12521 M:      Sam Bobroff <[email protected]>
12522 M:      Oliver O'Halloran <[email protected]>
12523 L:      [email protected]
12524 S:      Supported
12525 F:      Documentation/PCI/pci-error-recovery.rst
12526 F:      drivers/pci/pcie/aer.c
12527 F:      drivers/pci/pcie/dpc.c
12528 F:      drivers/pci/pcie/err.c
12529 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
12530 F:      arch/powerpc/kernel/eeh*.c
12531 F:      arch/powerpc/platforms/*/eeh*.c
12532 F:      arch/powerpc/include/*/eeh*.h
12533
12534 PCI ERROR RECOVERY
12535 M:      Linas Vepstas <[email protected]>
12536 L:      [email protected]
12537 S:      Supported
12538 F:      Documentation/PCI/pci-error-recovery.rst
12539
12540 PCI MSI DRIVER FOR ALTERA MSI IP
12541 M:      Ley Foon Tan <[email protected]>
12542 L:      [email protected] (moderated for non-subscribers)
12543 L:      [email protected]
12544 S:      Supported
12545 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
12546 F:      drivers/pci/controller/pcie-altera-msi.c
12547
12548 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
12549 M:      Toan Le <[email protected]>
12550 L:      [email protected]
12551 L:      [email protected]
12552 S:      Maintained
12553 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
12554 F:      drivers/pci/controller/pci-xgene-msi.c
12555
12556 PCI SUBSYSTEM
12557 M:      Bjorn Helgaas <[email protected]>
12558 L:      [email protected]
12559 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
12561 S:      Supported
12562 F:      Documentation/devicetree/bindings/pci/
12563 F:      Documentation/PCI/
12564 F:      drivers/acpi/pci*
12565 F:      drivers/pci/
12566 F:      include/asm-generic/pci*
12567 F:      include/linux/pci*
12568 F:      include/linux/of_pci.h
12569 F:      include/uapi/linux/pci*
12570 F:      lib/pci*
12571 F:      arch/x86/pci/
12572 F:      arch/x86/kernel/quirks.c
12573 F:      arch/x86/kernel/early-quirks.c
12574
12575 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
12576 M:      Lorenzo Pieralisi <[email protected]>
12577 L:      [email protected]
12578 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
12580 S:      Supported
12581 F:      drivers/pci/controller/
12582
12583 PCIE DRIVER FOR ANNAPURNA LABS
12584 M:      Jonathan Chocron <[email protected]>
12585 L:      [email protected]
12586 S:      Maintained
12587 F:      drivers/pci/controller/dwc/pcie-al.c
12588
12589 PCIE DRIVER FOR AMLOGIC MESON
12590 M:      Yue Wang <[email protected]>
12591 L:      [email protected]
12592 L:      [email protected]
12593 S:      Maintained
12594 F:      drivers/pci/controller/dwc/pci-meson.c
12595
12596 PCIE DRIVER FOR AXIS ARTPEC
12597 M:      Jesper Nilsson <[email protected]>
12598 L:      [email protected]
12599 L:      [email protected]
12600 S:      Maintained
12601 F:      Documentation/devicetree/bindings/pci/axis,artpec*
12602 F:      drivers/pci/controller/dwc/*artpec*
12603
12604 PCIE DRIVER FOR CAVIUM THUNDERX
12605 M:      David Daney <[email protected]>
12606 L:      [email protected]
12607 L:      [email protected] (moderated for non-subscribers)
12608 S:      Supported
12609 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
12610 F:      drivers/pci/controller/pci-thunder-*
12611
12612 PCIE DRIVER FOR HISILICON
12613 M:      Zhou Wang <[email protected]>
12614 L:      [email protected]
12615 S:      Maintained
12616 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
12617 F:      drivers/pci/controller/dwc/pcie-hisi.c
12618
12619 PCIE DRIVER FOR HISILICON KIRIN
12620 M:      Xiaowei Song <[email protected]>
12621 M:      Binghui Wang <[email protected]>
12622 L:      [email protected]
12623 S:      Maintained
12624 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
12625 F:      drivers/pci/controller/dwc/pcie-kirin.c
12626
12627 PCIE DRIVER FOR HISILICON STB
12628 M:      Shawn Guo <[email protected]>
12629 L:      [email protected]
12630 S:      Maintained
12631 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
12632 F:      drivers/pci/controller/dwc/pcie-histb.c
12633
12634 PCIE DRIVER FOR MEDIATEK
12635 M:      Ryder Lee <[email protected]>
12636 L:      [email protected]
12637 L:      [email protected]
12638 S:      Supported
12639 F:      Documentation/devicetree/bindings/pci/mediatek*
12640 F:      drivers/pci/controller/*mediatek*
12641
12642 PCIE DRIVER FOR QUALCOMM MSM
12643 M:      Stanimir Varbanov <[email protected]>
12644 L:      [email protected]
12645 L:      [email protected]
12646 S:      Maintained
12647 F:      drivers/pci/controller/dwc/*qcom*
12648
12649 PCIE DRIVER FOR ROCKCHIP
12650 M:      Shawn Lin <[email protected]>
12651 L:      [email protected]
12652 L:      [email protected]
12653 S:      Maintained
12654 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
12655 F:      drivers/pci/controller/pcie-rockchip*
12656
12657 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
12658 M:      Linus Walleij <[email protected]>
12659 L:      [email protected]
12660 S:      Maintained
12661 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
12662 F:      drivers/pci/controller/pci-v3-semi.c
12663
12664 PCIE DRIVER FOR SOCIONEXT UNIPHIER
12665 M:      Kunihiko Hayashi <[email protected]>
12666 L:      [email protected]
12667 S:      Maintained
12668 F:      Documentation/devicetree/bindings/pci/uniphier-pcie.txt
12669 F:      drivers/pci/controller/dwc/pcie-uniphier.c
12670
12671 PCIE DRIVER FOR ST SPEAR13XX
12672 M:      Pratyush Anand <[email protected]>
12673 L:      [email protected]
12674 S:      Maintained
12675 F:      drivers/pci/controller/dwc/*spear*
12676
12677 PCMCIA SUBSYSTEM
12678 M:      Dominik Brodowski <[email protected]>
12679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
12680 S:      Odd Fixes
12681 F:      Documentation/pcmcia/
12682 F:      tools/pcmcia/
12683 F:      drivers/pcmcia/
12684 F:      include/pcmcia/
12685
12686 PCNET32 NETWORK DRIVER
12687 M:      Don Fry <[email protected]>
12688 L:      [email protected]
12689 S:      Maintained
12690 F:      drivers/net/ethernet/amd/pcnet32.c
12691
12692 PCRYPT PARALLEL CRYPTO ENGINE
12693 M:      Steffen Klassert <[email protected]>
12694 L:      [email protected]
12695 S:      Maintained
12696 F:      crypto/pcrypt.c
12697 F:      include/crypto/pcrypt.h
12698
12699 PEAQ WMI HOTKEYS DRIVER
12700 M:      Hans de Goede <[email protected]>
12701 L:      [email protected]
12702 S:      Maintained
12703 F:      drivers/platform/x86/peaq-wmi.c
12704
12705 PENSANDO ETHERNET DRIVERS
12706 M:      Shannon Nelson <[email protected]>
12707 M:      Pensando Drivers <[email protected]>
12708 L:      [email protected]
12709 S:      Supported
12710 F:      Documentation/networking/device_drivers/pensando/ionic.rst
12711 F:      drivers/net/ethernet/pensando/
12712
12713 PER-CPU MEMORY ALLOCATOR
12714 M:      Dennis Zhou <[email protected]>
12715 M:      Tejun Heo <[email protected]>
12716 M:      Christoph Lameter <[email protected]>
12717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
12718 S:      Maintained
12719 F:      include/linux/percpu*.h
12720 F:      mm/percpu*.c
12721 F:      arch/*/include/asm/percpu.h
12722
12723 PER-TASK DELAY ACCOUNTING
12724 M:      Balbir Singh <[email protected]>
12725 S:      Maintained
12726 F:      include/linux/delayacct.h
12727 F:      kernel/delayacct.c
12728
12729 PERFORMANCE EVENTS SUBSYSTEM
12730 M:      Peter Zijlstra <[email protected]>
12731 M:      Ingo Molnar <[email protected]>
12732 M:      Arnaldo Carvalho de Melo <[email protected]>
12733 R:      Mark Rutland <[email protected]>
12734 R:      Alexander Shishkin <[email protected]>
12735 R:      Jiri Olsa <[email protected]>
12736 R:      Namhyung Kim <[email protected]>
12737 L:      [email protected]
12738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
12739 S:      Supported
12740 F:      kernel/events/*
12741 F:      include/linux/perf_event.h
12742 F:      include/uapi/linux/perf_event.h
12743 F:      arch/*/kernel/perf_event*.c
12744 F:      arch/*/kernel/*/perf_event*.c
12745 F:      arch/*/kernel/*/*/perf_event*.c
12746 F:      arch/*/include/asm/perf_event.h
12747 F:      arch/*/kernel/perf_callchain.c
12748 F:      arch/*/events/*
12749 F:      arch/*/events/*/*
12750 F:      tools/perf/
12751
12752 PERSONALITY HANDLING
12753 M:      Christoph Hellwig <[email protected]>
12754 L:      [email protected]
12755 S:      Maintained
12756 F:      include/linux/personality.h
12757 F:      include/uapi/linux/personality.h
12758
12759 PHOENIX RC FLIGHT CONTROLLER ADAPTER
12760 M:      Marcus Folkesson <[email protected]>
12761 L:      [email protected]
12762 S:      Maintained
12763 F:      Documentation/input/devices/pxrc.rst
12764 F:      drivers/input/joystick/pxrc.c
12765
12766 FLYSKY FSIA6B RC RECEIVER
12767 M:      Markus Koch <[email protected]>
12768 L:      [email protected]
12769 S:      Maintained
12770 F:      drivers/input/joystick/fsia6b.c
12771
12772 PHONET PROTOCOL
12773 M:      Remi Denis-Courmont <[email protected]>
12774 S:      Supported
12775 F:      Documentation/networking/phonet.txt
12776 F:      include/linux/phonet.h
12777 F:      include/net/phonet/
12778 F:      include/uapi/linux/phonet.h
12779 F:      net/phonet/
12780
12781 PHRAM MTD DRIVER
12782 M:      Joern Engel <[email protected]>
12783 L:      [email protected]
12784 S:      Maintained
12785 F:      drivers/mtd/devices/phram.c
12786
12787 PICOLCD HID DRIVER
12788 M:      Bruno Prémont <[email protected]>
12789 L:      [email protected]
12790 S:      Maintained
12791 F:      drivers/hid/hid-picolcd*
12792
12793 PICOXCELL SUPPORT
12794 M:      Jamie Iles <[email protected]>
12795 L:      [email protected] (moderated for non-subscribers)
12796 T:      git git://github.com/jamieiles/linux-2.6-ji.git
12797 S:      Supported
12798 F:      arch/arm/boot/dts/picoxcell*
12799 F:      arch/arm/mach-picoxcell/
12800 F:      drivers/crypto/picoxcell*
12801
12802 PIDFD API
12803 M:      Christian Brauner <[email protected]>
12804 L:      [email protected]
12805 S:      Maintained
12806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
12807 F:      samples/pidfd/
12808 F:      tools/testing/selftests/pidfd/
12809 K:      (?i)pidfd
12810 K:      (?i)clone3
12811 K:      \b(clone_args|kernel_clone_args)\b
12812
12813 PIN CONTROL SUBSYSTEM
12814 M:      Linus Walleij <[email protected]>
12815 L:      [email protected]
12816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
12817 S:      Maintained
12818 F:      Documentation/devicetree/bindings/pinctrl/
12819 F:      Documentation/driver-api/pinctl.rst
12820 F:      drivers/pinctrl/
12821 F:      include/linux/pinctrl/
12822
12823 PIN CONTROLLER - MICROCHIP AT91
12824 M:      Ludovic Desroches <[email protected]>
12825 L:      [email protected] (moderated for non-subscribers)
12826 L:      [email protected]
12827 S:      Supported
12828 F:      drivers/pinctrl/pinctrl-at91*
12829 F:      drivers/gpio/gpio-sama5d2-piobu.c
12830
12831 PIN CONTROLLER - FREESCALE
12832 M:      Dong Aisheng <[email protected]>
12833 M:      Fabio Estevam <[email protected]>
12834 M:      Shawn Guo <[email protected]>
12835 M:      Stefan Agner <[email protected]>
12836 R:      Pengutronix Kernel Team <[email protected]>
12837 L:      [email protected]
12838 S:      Maintained
12839 F:      drivers/pinctrl/freescale/
12840 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
12841
12842 PIN CONTROLLER - INTEL
12843 M:      Mika Westerberg <[email protected]>
12844 M:      Andy Shevchenko <[email protected]>
12845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
12846 S:      Maintained
12847 F:      drivers/pinctrl/intel/
12848
12849 PIN CONTROLLER - MEDIATEK
12850 M:      Sean Wang <[email protected]>
12851 L:      [email protected] (moderated for non-subscribers)
12852 S:      Maintained
12853 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
12854 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
12855 F:      drivers/pinctrl/mediatek/
12856
12857 PIN CONTROLLER - QUALCOMM
12858 M:      Bjorn Andersson <[email protected]>
12859 S:      Maintained
12860 L:      [email protected]
12861 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
12862 F:      drivers/pinctrl/qcom/
12863
12864 PIN CONTROLLER - RENESAS
12865 M:      Geert Uytterhoeven <[email protected]>
12866 L:      [email protected]
12867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
12868 S:      Maintained
12869 F:      drivers/pinctrl/pinctrl-rz*
12870 F:      drivers/pinctrl/sh-pfc/
12871
12872 PIN CONTROLLER - SAMSUNG
12873 M:      Tomasz Figa <[email protected]>
12874 M:      Krzysztof Kozlowski <[email protected]>
12875 M:      Sylwester Nawrocki <[email protected]>
12876 L:      [email protected] (moderated for non-subscribers)
12877 L:      [email protected] (moderated for non-subscribers)
12878 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
12879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
12880 S:      Maintained
12881 F:      drivers/pinctrl/samsung/
12882 F:      include/dt-bindings/pinctrl/samsung.h
12883 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
12884
12885 PIN CONTROLLER - SINGLE
12886 M:      Tony Lindgren <[email protected]>
12887 M:      Haojian Zhuang <[email protected]>
12888 L:      [email protected] (moderated for non-subscribers)
12889 L:      [email protected]
12890 S:      Maintained
12891 F:      drivers/pinctrl/pinctrl-single.c
12892
12893 PIN CONTROLLER - ST SPEAR
12894 M:      Viresh Kumar <[email protected]>
12895 L:      [email protected] (moderated for non-subscribers)
12896 W:      http://www.st.com/spear
12897 S:      Maintained
12898 F:      drivers/pinctrl/spear/
12899
12900 PISTACHIO SOC SUPPORT
12901 M:      James Hartley <[email protected]>
12902 L:      [email protected]
12903 S:      Odd Fixes
12904 F:      arch/mips/pistachio/
12905 F:      arch/mips/include/asm/mach-pistachio/
12906 F:      arch/mips/boot/dts/img/pistachio*
12907 F:      arch/mips/configs/pistachio*_defconfig
12908
12909 PKTCDVD DRIVER
12910 S:      Orphan
12911 M:      [email protected]
12912 F:      drivers/block/pktcdvd.c
12913 F:      include/linux/pktcdvd.h
12914 F:      include/uapi/linux/pktcdvd.h
12915
12916 PKUNITY SOC DRIVERS
12917 M:      Guan Xuetao <[email protected]>
12918 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
12919 S:      Maintained
12920 T:      git git://github.com/gxt/linux.git
12921 F:      drivers/input/serio/i8042-unicore32io.h
12922 F:      drivers/i2c/busses/i2c-puv3.c
12923 F:      drivers/video/fbdev/fb-puv3.c
12924 F:      drivers/rtc/rtc-puv3.c
12925
12926 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
12927 M:      Tomasz Duszynski <[email protected]>
12928 S:      Maintained
12929 F:      drivers/iio/chemical/pms7003.c
12930 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
12931
12932 PMBUS HARDWARE MONITORING DRIVERS
12933 M:      Guenter Roeck <[email protected]>
12934 L:      [email protected]
12935 W:      http://hwmon.wiki.kernel.org/
12936 W:      http://www.roeck-us.net/linux/drivers/
12937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
12938 S:      Maintained
12939 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
12940 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
12941 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
12942 F:      Documentation/hwmon/adm1275.rst
12943 F:      Documentation/hwmon/ibm-cffps.rst
12944 F:      Documentation/hwmon/ir35221.rst
12945 F:      Documentation/hwmon/lm25066.rst
12946 F:      Documentation/hwmon/ltc2978.rst
12947 F:      Documentation/hwmon/ltc3815.rst
12948 F:      Documentation/hwmon/max16064.rst
12949 F:      Documentation/hwmon/max20751.rst
12950 F:      Documentation/hwmon/max31785.rst
12951 F:      Documentation/hwmon/max34440.rst
12952 F:      Documentation/hwmon/max8688.rst
12953 F:      Documentation/hwmon/pmbus.rst
12954 F:      Documentation/hwmon/pmbus-core.rst
12955 F:      Documentation/hwmon/tps40422.rst
12956 F:      Documentation/hwmon/ucd9000.rst
12957 F:      Documentation/hwmon/ucd9200.rst
12958 F:      Documentation/hwmon/zl6100.rst
12959 F:      drivers/hwmon/pmbus/
12960 F:      include/linux/pmbus.h
12961
12962 PMC SIERRA MaxRAID DRIVER
12963 L:      [email protected]
12964 W:      http://www.pmc-sierra.com/
12965 S:      Orphan
12966 F:      drivers/scsi/pmcraid.*
12967
12968 PMC SIERRA PM8001 DRIVER
12969 M:      Jack Wang <[email protected]>
12970 L:      [email protected]
12971 S:      Supported
12972 F:      drivers/scsi/pm8001/
12973
12974 PNP SUPPORT
12975 M:      "Rafael J. Wysocki" <[email protected]>
12976 S:      Maintained
12977 F:      drivers/pnp/
12978
12979 PNI RM3100 IIO DRIVER
12980 M:      Song Qiang <[email protected]>
12981 L:      [email protected]
12982 S:      Maintained
12983 F:      drivers/iio/magnetometer/rm3100*
12984 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
12985
12986 POSIX CLOCKS and TIMERS
12987 M:      Thomas Gleixner <[email protected]>
12988 L:      [email protected]
12989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
12990 S:      Maintained
12991 F:      fs/timerfd.c
12992 F:      include/linux/timer*
12993 F:      kernel/time/*timer*
12994
12995 POWER MANAGEMENT CORE
12996 M:      "Rafael J. Wysocki" <[email protected]>
12997 L:      [email protected]
12998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
12999 B:      https://bugzilla.kernel.org
13000 S:      Supported
13001 F:      drivers/base/power/
13002 F:      include/linux/pm.h
13003 F:      include/linux/pm_*
13004 F:      include/linux/powercap.h
13005 F:      include/linux/intel_rapl.h
13006 F:      drivers/powercap/
13007 F:      kernel/configs/nopm.config
13008
13009 POWER STATE COORDINATION INTERFACE (PSCI)
13010 M:      Mark Rutland <[email protected]>
13011 M:      Lorenzo Pieralisi <[email protected]>
13012 L:      [email protected]
13013 S:      Maintained
13014 F:      drivers/firmware/psci/
13015 F:      include/linux/psci.h
13016 F:      include/uapi/linux/psci.h
13017
13018 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13019 M:      Sebastian Reichel <[email protected]>
13020 L:      [email protected]
13021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13022 S:      Maintained
13023 F:      Documentation/ABI/testing/sysfs-class-power
13024 F:      Documentation/devicetree/bindings/power/supply/
13025 F:      include/linux/power_supply.h
13026 F:      drivers/power/supply/
13027
13028 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13029 M:      Suraj Jitindar Singh <[email protected]>
13030 L:      [email protected]
13031 S:      Maintained
13032 F:      drivers/char/powernv-op-panel.c
13033
13034 PPP OVER ATM (RFC 2364)
13035 M:      Mitchell Blank Jr <[email protected]>
13036 S:      Maintained
13037 F:      net/atm/pppoatm.c
13038 F:      include/uapi/linux/atmppp.h
13039
13040 PPP OVER ETHERNET
13041 M:      Michal Ostrowski <[email protected]>
13042 S:      Maintained
13043 F:      drivers/net/ppp/pppoe.c
13044 F:      drivers/net/ppp/pppox.c
13045
13046 PPP OVER L2TP
13047 M:      James Chapman <[email protected]>
13048 S:      Maintained
13049 F:      net/l2tp/l2tp_ppp.c
13050 F:      include/linux/if_pppol2tp.h
13051 F:      include/uapi/linux/if_pppol2tp.h
13052
13053 PPP PROTOCOL DRIVERS AND COMPRESSORS
13054 M:      Paul Mackerras <[email protected]>
13055 L:      [email protected]
13056 S:      Maintained
13057 F:      drivers/net/ppp/ppp_*
13058
13059 PPS SUPPORT
13060 M:      Rodolfo Giometti <[email protected]>
13061 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13062 L:      [email protected] (subscribers-only)
13063 S:      Maintained
13064 F:      Documentation/driver-api/pps.rst
13065 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13066 F:      Documentation/ABI/testing/sysfs-pps
13067 F:      drivers/pps/
13068 F:      include/linux/pps*.h
13069 F:      include/uapi/linux/pps.h
13070
13071 PPTP DRIVER
13072 M:      Dmitry Kozlov <[email protected]>
13073 L:      [email protected]
13074 S:      Maintained
13075 F:      drivers/net/ppp/pptp.c
13076 W:      http://sourceforge.net/projects/accel-pptp
13077
13078 PRINTK
13079 M:      Petr Mladek <[email protected]>
13080 M:      Sergey Senozhatsky <[email protected]>
13081 R:      Steven Rostedt <[email protected]>
13082 S:      Maintained
13083 F:      kernel/printk/
13084 F:      include/linux/printk.h
13085
13086 PRISM54 WIRELESS DRIVER
13087 M:      Luis Chamberlain <[email protected]>
13088 L:      [email protected]
13089 W:      http://wireless.kernel.org/en/users/Drivers/p54
13090 S:      Obsolete
13091 F:      drivers/net/wireless/intersil/prism54/
13092
13093 PROC FILESYSTEM
13094 R:      Alexey Dobriyan <[email protected]>
13095 L:      [email protected]
13096 L:      [email protected]
13097 S:      Maintained
13098 F:      fs/proc/
13099 F:      include/linux/proc_fs.h
13100 F:      tools/testing/selftests/proc/
13101 F:      Documentation/filesystems/proc.txt
13102
13103 PROC SYSCTL
13104 M:      Luis Chamberlain <[email protected]>
13105 M:      Kees Cook <[email protected]>
13106 L:      [email protected]
13107 L:      [email protected]
13108 S:      Maintained
13109 F:      fs/proc/proc_sysctl.c
13110 F:      include/linux/sysctl.h
13111 F:      kernel/sysctl.c
13112 F:      tools/testing/selftests/sysctl/
13113
13114 PS3 NETWORK SUPPORT
13115 M:      Geoff Levand <[email protected]>
13116 L:      [email protected]
13117 L:      [email protected]
13118 S:      Maintained
13119 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13120
13121 PS3 PLATFORM SUPPORT
13122 M:      Geoff Levand <[email protected]>
13123 L:      [email protected]
13124 S:      Maintained
13125 F:      arch/powerpc/boot/ps3*
13126 F:      arch/powerpc/include/asm/lv1call.h
13127 F:      arch/powerpc/include/asm/ps3*.h
13128 F:      arch/powerpc/platforms/ps3/
13129 F:      drivers/*/ps3*
13130 F:      drivers/ps3/
13131 F:      drivers/rtc/rtc-ps3.c
13132 F:      drivers/usb/host/*ps3.c
13133 F:      sound/ppc/snd_ps3*
13134
13135 PS3VRAM DRIVER
13136 M:      Jim Paris <[email protected]>
13137 M:      Geoff Levand <[email protected]>
13138 L:      [email protected]
13139 S:      Maintained
13140 F:      drivers/block/ps3vram.c
13141
13142 PSAMPLE PACKET SAMPLING SUPPORT:
13143 M:      Yotam Gigi <[email protected]>
13144 S:      Maintained
13145 F:      net/psample
13146 F:      include/net/psample.h
13147 F:      include/uapi/linux/psample.h
13148
13149 PSTORE FILESYSTEM
13150 M:      Kees Cook <[email protected]>
13151 M:      Anton Vorontsov <[email protected]>
13152 M:      Colin Cross <[email protected]>
13153 M:      Tony Luck <[email protected]>
13154 S:      Maintained
13155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13156 F:      fs/pstore/
13157 F:      include/linux/pstore*
13158 F:      drivers/firmware/efi/efi-pstore.c
13159 F:      drivers/acpi/apei/erst.c
13160 F:      Documentation/admin-guide/ramoops.rst
13161 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13162 K:      \b(pstore|ramoops)
13163
13164 PTP HARDWARE CLOCK SUPPORT
13165 M:      Richard Cochran <[email protected]>
13166 L:      [email protected]
13167 S:      Maintained
13168 W:      http://linuxptp.sourceforge.net/
13169 F:      Documentation/ABI/testing/sysfs-ptp
13170 F:      Documentation/driver-api/ptp.rst
13171 F:      drivers/net/phy/dp83640*
13172 F:      drivers/ptp/*
13173 F:      include/linux/ptp_cl*
13174
13175 PTRACE SUPPORT
13176 M:      Oleg Nesterov <[email protected]>
13177 S:      Maintained
13178 F:      include/asm-generic/syscall.h
13179 F:      include/linux/ptrace.h
13180 F:      include/linux/regset.h
13181 F:      include/linux/tracehook.h
13182 F:      include/uapi/linux/ptrace.h
13183 F:      include/uapi/linux/ptrace.h
13184 F:      kernel/ptrace.c
13185 F:      arch/*/ptrace*.c
13186 F:      arch/*/*/ptrace*.c
13187 F:      arch/*/include/asm/ptrace*.h
13188
13189 PULSE8-CEC DRIVER
13190 M:      Hans Verkuil <[email protected]>
13191 L:      [email protected]
13192 T:      git git://linuxtv.org/media_tree.git
13193 S:      Maintained
13194 F:      drivers/media/usb/pulse8-cec/*
13195 F:      Documentation/media/cec-drivers/pulse8-cec.rst
13196
13197 PVRUSB2 VIDEO4LINUX DRIVER
13198 M:      Mike Isely <[email protected]>
13199 L:      [email protected]       (subscribers-only)
13200 L:      [email protected]
13201 W:      http://www.isely.net/pvrusb2/
13202 T:      git git://linuxtv.org/media_tree.git
13203 S:      Maintained
13204 F:      Documentation/media/v4l-drivers/pvrusb2*
13205 F:      drivers/media/usb/pvrusb2/
13206
13207 PWC WEBCAM DRIVER
13208 M:      Hans Verkuil <[email protected]>
13209 L:      [email protected]
13210 T:      git git://linuxtv.org/media_tree.git
13211 S:      Odd Fixes
13212 F:      drivers/media/usb/pwc/*
13213 F:      include/trace/events/pwc.h
13214
13215 PWM FAN DRIVER
13216 M:      Kamil Debski <[email protected]>
13217 M:      Bartlomiej Zolnierkiewicz <[email protected]>
13218 L:      [email protected]
13219 S:      Supported
13220 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13221 F:      Documentation/hwmon/pwm-fan.rst
13222 F:      drivers/hwmon/pwm-fan.c
13223
13224 PWM IR Transmitter
13225 M:      Sean Young <[email protected]>
13226 L:      [email protected]
13227 S:      Maintained
13228 F:      drivers/media/rc/pwm-ir-tx.c
13229
13230 PWM SUBSYSTEM
13231 M:      Thierry Reding <[email protected]>
13232 L:      [email protected]
13233 S:      Maintained
13234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13235 F:      Documentation/driver-api/pwm.rst
13236 F:      Documentation/devicetree/bindings/pwm/
13237 F:      include/linux/pwm.h
13238 F:      drivers/pwm/
13239 F:      drivers/video/backlight/pwm_bl.c
13240 F:      include/linux/pwm_backlight.h
13241 F:      drivers/gpio/gpio-mvebu.c
13242 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13243
13244 PXA GPIO DRIVER
13245 M:      Robert Jarzmik <[email protected]>
13246 L:      [email protected]
13247 S:      Maintained
13248 F:      drivers/gpio/gpio-pxa.c
13249
13250 PXA MMCI DRIVER
13251 S:      Orphan
13252
13253 PXA RTC DRIVER
13254 M:      Robert Jarzmik <[email protected]>
13255 L:      [email protected]
13256 S:      Maintained
13257
13258 PXA2xx/PXA3xx SUPPORT
13259 M:      Daniel Mack <[email protected]>
13260 M:      Haojian Zhuang <[email protected]>
13261 M:      Robert Jarzmik <[email protected]>
13262 L:      [email protected] (moderated for non-subscribers)
13263 T:      git git://github.com/hzhuang1/linux.git
13264 T:      git git://github.com/rjarzmik/linux.git
13265 S:      Maintained
13266 F:      arch/arm/boot/dts/pxa*
13267 F:      arch/arm/mach-pxa/
13268 F:      drivers/dma/pxa*
13269 F:      drivers/pcmcia/pxa2xx*
13270 F:      drivers/pinctrl/pxa/
13271 F:      drivers/spi/spi-pxa2xx*
13272 F:      drivers/usb/gadget/udc/pxa2*
13273 F:      include/sound/pxa2xx-lib.h
13274 F:      sound/arm/pxa*
13275 F:      sound/soc/pxa/
13276
13277 QAT DRIVER
13278 M:      Giovanni Cabiddu <[email protected]>
13279 L:      [email protected]
13280 S:      Supported
13281 F:      drivers/crypto/qat/
13282
13283 QCOM AUDIO (ASoC) DRIVERS
13284 M:      Patrick Lai <[email protected]>
13285 M:      Banajit Goswami <[email protected]>
13286 L:      [email protected] (moderated for non-subscribers)
13287 S:      Supported
13288 F:      sound/soc/qcom/
13289
13290 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13291 M:      Gabriel Somlo <[email protected]>
13292 M:      "Michael S. Tsirkin" <[email protected]>
13293 L:      [email protected]
13294 S:      Maintained
13295 F:      drivers/firmware/qemu_fw_cfg.c
13296 F:      include/uapi/linux/qemu_fw_cfg.h
13297
13298 QIB DRIVER
13299 M:      Dennis Dalessandro <[email protected]>
13300 M:      Mike Marciniszyn <[email protected]>
13301 L:      [email protected]
13302 S:      Supported
13303 F:      drivers/infiniband/hw/qib/
13304
13305 QLOGIC QL41xxx FCOE DRIVER
13306 M:      [email protected]
13307 L:      [email protected]
13308 S:      Supported
13309 F:      drivers/scsi/qedf/
13310
13311 QLOGIC QL41xxx ISCSI DRIVER
13312 M:      [email protected]
13313 L:      [email protected]
13314 S:      Supported
13315 F:      drivers/scsi/qedi/
13316
13317 QLOGIC QL4xxx ETHERNET DRIVER
13318 M:      Ariel Elior <[email protected]>
13319 M:      [email protected]
13320 L:      [email protected]
13321 S:      Supported
13322 F:      drivers/net/ethernet/qlogic/qed/
13323 F:      include/linux/qed/
13324 F:      drivers/net/ethernet/qlogic/qede/
13325
13326 QLOGIC QL4xxx RDMA DRIVER
13327 M:      Michal Kalderon <[email protected]>
13328 M:      Ariel Elior <[email protected]>
13329 L:      [email protected]
13330 S:      Supported
13331 F:      drivers/infiniband/hw/qedr/
13332 F:      include/uapi/rdma/qedr-abi.h
13333
13334 QLOGIC QLA1280 SCSI DRIVER
13335 M:      Michael Reed <[email protected]>
13336 L:      [email protected]
13337 S:      Maintained
13338 F:      drivers/scsi/qla1280.[ch]
13339
13340 QLOGIC QLA2XXX FC-SCSI DRIVER
13341 M:      [email protected]
13342 L:      [email protected]
13343 S:      Supported
13344 F:      Documentation/scsi/LICENSE.qla2xxx
13345 F:      drivers/scsi/qla2xxx/
13346
13347 QLOGIC QLA3XXX NETWORK DRIVER
13348 M:      [email protected]
13349 L:      [email protected]
13350 S:      Supported
13351 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
13352 F:      drivers/net/ethernet/qlogic/qla3xxx.*
13353
13354 QLOGIC QLA4XXX iSCSI DRIVER
13355 M:      [email protected]
13356 L:      [email protected]
13357 S:      Supported
13358 F:      Documentation/scsi/LICENSE.qla4xxx
13359 F:      drivers/scsi/qla4xxx/
13360
13361 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
13362 M:      Shahed Shaikh <[email protected]>
13363 M:      Manish Chopra <[email protected]>
13364 M:      [email protected]
13365 L:      [email protected]
13366 S:      Supported
13367 F:      drivers/net/ethernet/qlogic/qlcnic/
13368
13369 QLOGIC QLGE 10Gb ETHERNET DRIVER
13370 M:      Manish Chopra <[email protected]>
13371 M:      [email protected]
13372 L:      [email protected]
13373 S:      Supported
13374 F:      drivers/staging/qlge/
13375
13376 QM1D1B0004 MEDIA DRIVER
13377 M:      Akihiro Tsukada <[email protected]>
13378 L:      [email protected]
13379 S:      Odd Fixes
13380 F:      drivers/media/tuners/qm1d1b0004*
13381
13382 QM1D1C0042 MEDIA DRIVER
13383 M:      Akihiro Tsukada <[email protected]>
13384 L:      [email protected]
13385 S:      Odd Fixes
13386 F:      drivers/media/tuners/qm1d1c0042*
13387
13388 QNX4 FILESYSTEM
13389 M:      Anders Larsen <[email protected]>
13390 W:      http://www.alarsen.net/linux/qnx4fs/
13391 S:      Maintained
13392 F:      fs/qnx4/
13393 F:      include/uapi/linux/qnx4_fs.h
13394 F:      include/uapi/linux/qnxtypes.h
13395
13396 QORIQ DPAA2 FSL-MC BUS DRIVER
13397 M:      Stuart Yoder <[email protected]>
13398 M:      Laurentiu Tudor <[email protected]>
13399 L:      [email protected]
13400 S:      Maintained
13401 F:      drivers/bus/fsl-mc/
13402 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
13403 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
13404
13405 QT1010 MEDIA DRIVER
13406 M:      Antti Palosaari <[email protected]>
13407 L:      [email protected]
13408 W:      https://linuxtv.org
13409 W:      http://palosaari.fi/linux/
13410 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13411 T:      git git://linuxtv.org/anttip/media_tree.git
13412 S:      Maintained
13413 F:      drivers/media/tuners/qt1010*
13414
13415 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
13416 M:      Kalle Valo <[email protected]>
13417 L:      [email protected]
13418 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
13419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13420 S:      Supported
13421 F:      drivers/net/wireless/ath/ath10k/
13422
13423 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
13424 M:      QCA ath9k Development <[email protected]>
13425 L:      [email protected]
13426 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
13427 S:      Supported
13428 F:      drivers/net/wireless/ath/ath9k/
13429
13430 QUALCOMM CAMERA SUBSYSTEM DRIVER
13431 M:      Todor Tomov <[email protected]>
13432 L:      [email protected]
13433 S:      Maintained
13434 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
13435 F:      Documentation/media/v4l-drivers/qcom_camss.rst
13436 F:      drivers/media/platform/qcom/camss/
13437
13438 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
13439 M:      Ilia Lin <[email protected]>
13440 L:      [email protected]
13441 S:      Maintained
13442 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
13443 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
13444
13445 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
13446 M:      Timur Tabi <[email protected]>
13447 L:      [email protected]
13448 S:      Maintained
13449 F:      drivers/net/ethernet/qualcomm/emac/
13450
13451 QUALCOMM ETHQOS ETHERNET DRIVER
13452 M:      Vinod Koul <[email protected]>
13453 M:      Niklas Cassel <[email protected]>
13454 L:      [email protected]
13455 S:      Maintained
13456 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
13457 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
13458
13459 QUALCOMM GENERIC INTERFACE I2C DRIVER
13460 M:      Alok Chauhan <[email protected]>
13461 L:      [email protected]
13462 L:      [email protected]
13463 S:      Supported
13464 F:      drivers/i2c/busses/i2c-qcom-geni.c
13465
13466 QUALCOMM HEXAGON ARCHITECTURE
13467 M:      Brian Cain <[email protected]>
13468 L:      [email protected]
13469 S:      Supported
13470 F:      arch/hexagon/
13471
13472 QUALCOMM HIDMA DRIVER
13473 M:      Sinan Kaya <[email protected]>
13474 L:      [email protected]
13475 L:      [email protected]
13476 L:      [email protected]
13477 S:      Supported
13478 F:      drivers/dma/qcom/hidma*
13479
13480 QUALCOMM IOMMU
13481 M:      Rob Clark <[email protected]>
13482 L:      [email protected]
13483 L:      [email protected]
13484 S:      Maintained
13485 F:      drivers/iommu/qcom_iommu.c
13486
13487 QUALCOMM TSENS THERMAL DRIVER
13488 M:      Amit Kucheria <[email protected]>
13489 L:      [email protected]
13490 L:      [email protected]
13491 S:      Maintained
13492 F:      drivers/thermal/qcom/
13493
13494 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
13495 M:      Stanimir Varbanov <[email protected]>
13496 L:      [email protected]
13497 L:      [email protected]
13498 T:      git git://linuxtv.org/media_tree.git
13499 S:      Maintained
13500 F:      drivers/media/platform/qcom/venus/
13501
13502 QUALCOMM WCN36XX WIRELESS DRIVER
13503 M:      Kalle Valo <[email protected]>
13504 L:      [email protected]
13505 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
13506 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
13507 S:      Supported
13508 F:      drivers/net/wireless/ath/wcn36xx/
13509
13510 QUANTENNA QTNFMAC WIRELESS DRIVER
13511 M:      Igor Mitsyanko <[email protected]>
13512 M:      Avinash Patil <[email protected]>
13513 M:      Sergey Matyukevich <[email protected]>
13514 L:      [email protected]
13515 S:      Maintained
13516 F:      drivers/net/wireless/quantenna
13517
13518 RADEON and AMDGPU DRM DRIVERS
13519 M:      Alex Deucher <[email protected]>
13520 M:      Christian König <[email protected]>
13521 M:      David (ChunMing) Zhou <[email protected]>
13522 L:      [email protected]
13523 T:      git git://people.freedesktop.org/~agd5f/linux
13524 S:      Supported
13525 F:      drivers/gpu/drm/radeon/
13526 F:      include/uapi/drm/radeon_drm.h
13527 F:      drivers/gpu/drm/amd/
13528 F:      include/uapi/drm/amdgpu_drm.h
13529
13530 RADEON FRAMEBUFFER DISPLAY DRIVER
13531 M:      Benjamin Herrenschmidt <[email protected]>
13532 L:      [email protected]
13533 S:      Maintained
13534 F:      drivers/video/fbdev/aty/radeon*
13535 F:      include/uapi/linux/radeonfb.h
13536
13537 RADIOSHARK RADIO DRIVER
13538 M:      Hans Verkuil <[email protected]>
13539 L:      [email protected]
13540 T:      git git://linuxtv.org/media_tree.git
13541 S:      Maintained
13542 F:      drivers/media/radio/radio-shark.c
13543
13544 RADIOSHARK2 RADIO DRIVER
13545 M:      Hans Verkuil <[email protected]>
13546 L:      [email protected]
13547 T:      git git://linuxtv.org/media_tree.git
13548 S:      Maintained
13549 F:      drivers/media/radio/radio-shark2.c
13550 F:      drivers/media/radio/radio-tea5777.c
13551
13552 RADOS BLOCK DEVICE (RBD)
13553 M:      Ilya Dryomov <[email protected]>
13554 M:      Sage Weil <[email protected]>
13555 M:      Alex Elder <[email protected]>
13556 L:      [email protected]
13557 W:      http://ceph.com/
13558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
13559 T:      git git://github.com/ceph/ceph-client.git
13560 S:      Supported
13561 F:      Documentation/ABI/testing/sysfs-bus-rbd
13562 F:      drivers/block/rbd.c
13563 F:      drivers/block/rbd_types.h
13564
13565 RAGE128 FRAMEBUFFER DISPLAY DRIVER
13566 M:      Paul Mackerras <[email protected]>
13567 L:      [email protected]
13568 S:      Maintained
13569 F:      drivers/video/fbdev/aty/aty128fb.c
13570
13571 RAINSHADOW-CEC DRIVER
13572 M:      Hans Verkuil <[email protected]>
13573 L:      [email protected]
13574 T:      git git://linuxtv.org/media_tree.git
13575 S:      Maintained
13576 F:      drivers/media/usb/rainshadow-cec/*
13577
13578 RALINK MIPS ARCHITECTURE
13579 M:      John Crispin <[email protected]>
13580 L:      [email protected]
13581 S:      Maintained
13582 F:      arch/mips/ralink
13583
13584 RALINK RT2X00 WIRELESS LAN DRIVER
13585 P:      rt2x00 project
13586 M:      Stanislaw Gruszka <[email protected]>
13587 M:      Helmut Schaa <[email protected]>
13588 L:      [email protected]
13589 S:      Maintained
13590 F:      drivers/net/wireless/ralink/rt2x00/
13591
13592 RAMDISK RAM BLOCK DEVICE DRIVER
13593 M:      Jens Axboe <[email protected]>
13594 S:      Maintained
13595 F:      Documentation/admin-guide/blockdev/ramdisk.rst
13596 F:      drivers/block/brd.c
13597
13598 RANCHU VIRTUAL BOARD FOR MIPS
13599 M:      Miodrag Dinic <[email protected]>
13600 L:      [email protected]
13601 S:      Supported
13602 F:      arch/mips/generic/board-ranchu.c
13603 F:      arch/mips/configs/generic/board-ranchu.config
13604
13605 RANDOM NUMBER DRIVER
13606 M:      "Theodore Ts'o" <[email protected]>
13607 S:      Maintained
13608 F:      drivers/char/random.c
13609
13610 RAPIDIO SUBSYSTEM
13611 M:      Matt Porter <[email protected]>
13612 M:      Alexandre Bounine <[email protected]>
13613 S:      Maintained
13614 F:      drivers/rapidio/
13615
13616 RAS INFRASTRUCTURE
13617 M:      Tony Luck <[email protected]>
13618 M:      Borislav Petkov <[email protected]>
13619 L:      [email protected]
13620 S:      Maintained
13621 F:      drivers/ras/
13622 F:      include/linux/ras.h
13623 F:      include/ras/ras_event.h
13624 F:      Documentation/admin-guide/ras.rst
13625
13626 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
13627 L:      [email protected]
13628 S:      Orphan
13629 F:      drivers/net/wireless/ray*
13630
13631 RCUTORTURE TEST FRAMEWORK
13632 M:      "Paul E. McKenney" <[email protected]>
13633 M:      Josh Triplett <[email protected]>
13634 R:      Steven Rostedt <[email protected]>
13635 R:      Mathieu Desnoyers <[email protected]>
13636 R:      Lai Jiangshan <[email protected]>
13637 L:      [email protected]
13638 S:      Supported
13639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13640 F:      tools/testing/selftests/rcutorture
13641
13642 RDC R-321X SoC
13643 M:      Florian Fainelli <[email protected]>
13644 S:      Maintained
13645
13646 RDC R6040 FAST ETHERNET DRIVER
13647 M:      Florian Fainelli <[email protected]>
13648 L:      [email protected]
13649 S:      Maintained
13650 F:      drivers/net/ethernet/rdc/r6040.c
13651
13652 RDMAVT - RDMA verbs software
13653 M:      Dennis Dalessandro <[email protected]>
13654 M:      Mike Marciniszyn <[email protected]>
13655 L:      [email protected]
13656 S:      Supported
13657 F:      drivers/infiniband/sw/rdmavt
13658
13659 RDS - RELIABLE DATAGRAM SOCKETS
13660 M:      Santosh Shilimkar <[email protected]>
13661 L:      [email protected]
13662 L:      [email protected]
13663 L:      [email protected] (moderated for non-subscribers)
13664 W:      https://oss.oracle.com/projects/rds/
13665 S:      Supported
13666 F:      net/rds/
13667 F:      Documentation/networking/rds.txt
13668
13669 RDT - RESOURCE ALLOCATION
13670 M:      Fenghua Yu <[email protected]>
13671 M:      Reinette Chatre <[email protected]>
13672 L:      [email protected]
13673 S:      Supported
13674 F:      arch/x86/kernel/cpu/resctrl/
13675 F:      arch/x86/include/asm/resctrl_sched.h
13676 F:      Documentation/x86/resctrl*
13677
13678 READ-COPY UPDATE (RCU)
13679 M:      "Paul E. McKenney" <[email protected]>
13680 M:      Josh Triplett <[email protected]>
13681 R:      Steven Rostedt <[email protected]>
13682 R:      Mathieu Desnoyers <[email protected]>
13683 R:      Lai Jiangshan <[email protected]>
13684 R:      Joel Fernandes <[email protected]>
13685 L:      [email protected]
13686 W:      http://www.rdrop.com/users/paulmck/RCU/
13687 S:      Supported
13688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13689 F:      Documentation/RCU/
13690 X:      Documentation/RCU/torture.txt
13691 F:      include/linux/rcu*
13692 X:      include/linux/srcu*.h
13693 F:      kernel/rcu/
13694 X:      kernel/rcu/srcu*.c
13695
13696 REAL TIME CLOCK (RTC) SUBSYSTEM
13697 M:      Alessandro Zummo <[email protected]>
13698 M:      Alexandre Belloni <[email protected]>
13699 L:      [email protected]
13700 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
13701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
13702 S:      Maintained
13703 F:      Documentation/devicetree/bindings/rtc/
13704 F:      Documentation/admin-guide/rtc.rst
13705 F:      drivers/rtc/
13706 F:      include/linux/rtc.h
13707 F:      include/uapi/linux/rtc.h
13708 F:      include/linux/rtc/
13709 F:      include/linux/platform_data/rtc-*
13710 F:      tools/testing/selftests/rtc/
13711
13712 REALTEK AUDIO CODECS
13713 M:      Bard Liao <[email protected]>
13714 M:      Oder Chiou <[email protected]>
13715 S:      Maintained
13716 F:      sound/soc/codecs/rt*
13717 F:      include/sound/rt*.h
13718
13719 REALTEK RTL83xx SMI DSA ROUTER CHIPS
13720 M:      Linus Walleij <[email protected]>
13721 S:      Maintained
13722 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
13723 F:      drivers/net/dsa/realtek-smi*
13724 F:      drivers/net/dsa/rtl83*
13725
13726 REDPINE WIRELESS DRIVER
13727 M:      Amitkumar Karwar <[email protected]>
13728 M:      Siva Rebbagondla <[email protected]>
13729 L:      [email protected]
13730 S:      Maintained
13731 F:      drivers/net/wireless/rsi/
13732
13733 REGISTER MAP ABSTRACTION
13734 M:      Mark Brown <[email protected]>
13735 L:      [email protected]
13736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
13737 S:      Supported
13738 F:      Documentation/devicetree/bindings/regmap/
13739 F:      drivers/base/regmap/
13740 F:      include/linux/regmap.h
13741
13742 REISERFS FILE SYSTEM
13743 L:      [email protected]
13744 S:      Supported
13745 F:      fs/reiserfs/
13746
13747 REMOTE PROCESSOR (REMOTEPROC) 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/andersson/remoteproc.git rproc-next
13752 S:      Maintained
13753 F:      Documentation/devicetree/bindings/remoteproc/
13754 F:      Documentation/ABI/testing/sysfs-class-remoteproc
13755 F:      Documentation/remoteproc.txt
13756 F:      drivers/remoteproc/
13757 F:      include/linux/remoteproc.h
13758 F:      include/linux/remoteproc/
13759
13760 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
13761 M:      Ohad Ben-Cohen <[email protected]>
13762 M:      Bjorn Andersson <[email protected]>
13763 L:      [email protected]
13764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
13765 S:      Maintained
13766 F:      drivers/rpmsg/
13767 F:      Documentation/rpmsg.txt
13768 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
13769 F:      include/linux/rpmsg.h
13770 F:      include/linux/rpmsg/
13771 F:      include/uapi/linux/rpmsg.h
13772 F:      samples/rpmsg/
13773
13774 RENESAS CLOCK DRIVERS
13775 M:      Geert Uytterhoeven <[email protected]>
13776 L:      [email protected]
13777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
13778 S:      Supported
13779 F:      drivers/clk/renesas/
13780
13781 RENESAS EMEV2 I2C DRIVER
13782 M:      Wolfram Sang <[email protected]>
13783 S:      Supported
13784 F:      Documentation/devicetree/bindings/i2c/i2c-emev2.txt
13785 F:      drivers/i2c/busses/i2c-emev2.c
13786
13787 RENESAS ETHERNET DRIVERS
13788 R:      Sergei Shtylyov <[email protected]>
13789 L:      [email protected]
13790 L:      [email protected]
13791 F:      Documentation/devicetree/bindings/net/renesas,*.txt
13792 F:      Documentation/devicetree/bindings/net/sh_eth.txt
13793 F:      drivers/net/ethernet/renesas/
13794 F:      include/linux/sh_eth.h
13795
13796 RENESAS R-CAR GYROADC DRIVER
13797 M:      Marek Vasut <[email protected]>
13798 L:      [email protected]
13799 S:      Supported
13800 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
13801 F:      drivers/iio/adc/rcar-gyroadc.c
13802
13803 RENESAS R-CAR I2C DRIVERS
13804 M:      Wolfram Sang <[email protected]>
13805 S:      Supported
13806 F:      Documentation/devicetree/bindings/i2c/i2c-rcar.txt
13807 F:      Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt
13808 F:      drivers/i2c/busses/i2c-rcar.c
13809 F:      drivers/i2c/busses/i2c-sh_mobile.c
13810
13811 RENESAS RIIC DRIVER
13812 M:      Chris Brandt <[email protected]>
13813 S:      Supported
13814 F:      Documentation/devicetree/bindings/i2c/i2c-riic.txt
13815 F:      drivers/i2c/busses/i2c-riic.c
13816
13817 RENESAS USB PHY DRIVER
13818 M:      Yoshihiro Shimoda <[email protected]>
13819 L:      [email protected]
13820 S:      Maintained
13821 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
13822
13823 RESET CONTROLLER FRAMEWORK
13824 M:      Philipp Zabel <[email protected]>
13825 T:      git git://git.pengutronix.de/git/pza/linux
13826 S:      Maintained
13827 F:      drivers/reset/
13828 F:      Documentation/devicetree/bindings/reset/
13829 F:      include/dt-bindings/reset/
13830 F:      include/linux/reset.h
13831 F:      include/linux/reset/
13832 F:      include/linux/reset-controller.h
13833
13834 RESTARTABLE SEQUENCES SUPPORT
13835 M:      Mathieu Desnoyers <[email protected]>
13836 M:      Peter Zijlstra <[email protected]>
13837 M:      "Paul E. McKenney" <[email protected]>
13838 M:      Boqun Feng <[email protected]>
13839 L:      [email protected]
13840 S:      Supported
13841 F:      kernel/rseq.c
13842 F:      include/uapi/linux/rseq.h
13843 F:      include/trace/events/rseq.h
13844 F:      tools/testing/selftests/rseq/
13845
13846 RFKILL
13847 M:      Johannes Berg <[email protected]>
13848 L:      [email protected]
13849 W:      http://wireless.kernel.org/
13850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
13851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
13852 S:      Maintained
13853 F:      Documentation/driver-api/rfkill.rst
13854 F:      Documentation/ABI/stable/sysfs-class-rfkill
13855 F:      net/rfkill/
13856 F:      include/linux/rfkill.h
13857 F:      include/uapi/linux/rfkill.h
13858
13859 RHASHTABLE
13860 M:      Thomas Graf <[email protected]>
13861 M:      Herbert Xu <[email protected]>
13862 L:      [email protected]
13863 S:      Maintained
13864 F:      lib/rhashtable.c
13865 F:      lib/test_rhashtable.c
13866 F:      include/linux/rhashtable.h
13867 F:      include/linux/rhashtable-types.h
13868
13869 RICOH R5C592 MEMORYSTICK DRIVER
13870 M:      Maxim Levitsky <[email protected]>
13871 S:      Maintained
13872 F:      drivers/memstick/host/r592.*
13873
13874 RICOH SMARTMEDIA/XD DRIVER
13875 M:      Maxim Levitsky <[email protected]>
13876 S:      Maintained
13877 F:      drivers/mtd/nand/raw/r852.c
13878 F:      drivers/mtd/nand/raw/r852.h
13879
13880 RISC-V ARCHITECTURE
13881 M:      Paul Walmsley <[email protected]>
13882 M:      Palmer Dabbelt <[email protected]>
13883 M:      Albert Ou <[email protected]>
13884 L:      [email protected]
13885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
13886 S:      Supported
13887 F:      arch/riscv/
13888 K:      riscv
13889 N:      riscv
13890
13891 ROCCAT DRIVERS
13892 M:      Stefan Achatz <[email protected]>
13893 W:      http://sourceforge.net/projects/roccat/
13894 S:      Maintained
13895 F:      drivers/hid/hid-roccat*
13896 F:      include/linux/hid-roccat*
13897 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
13898
13899 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
13900 M:      Jacob Chen <[email protected]>
13901 M:      Ezequiel Garcia <[email protected]>
13902 L:      [email protected]
13903 S:      Maintained
13904 F:      drivers/media/platform/rockchip/rga/
13905 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
13906
13907 HANTRO VPU CODEC DRIVER
13908 M:      Ezequiel Garcia <[email protected]>
13909 L:      [email protected]
13910 S:      Maintained
13911 F:      drivers/staging/media/hantro/
13912 F:      Documentation/devicetree/bindings/media/rockchip-vpu.txt
13913
13914 ROCKER DRIVER
13915 M:      Jiri Pirko <[email protected]>
13916 L:      [email protected]
13917 S:      Supported
13918 F:      drivers/net/ethernet/rocker/
13919
13920 ROCKETPORT DRIVER
13921 P:      Comtrol Corp.
13922 W:      http://www.comtrol.com
13923 S:      Maintained
13924 F:      Documentation/driver-api/serial/rocket.rst
13925 F:      drivers/tty/rocket*
13926
13927 ROCKETPORT EXPRESS/INFINITY DRIVER
13928 M:      Kevin Cernekee <[email protected]>
13929 L:      [email protected]
13930 S:      Odd Fixes
13931 F:      drivers/tty/serial/rp2.*
13932
13933 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
13934 M:      Marek Vasut <[email protected]>
13935 L:      [email protected]
13936 L:      [email protected]
13937 S:      Supported
13938 F:      drivers/mfd/bd9571mwv.c
13939 F:      drivers/regulator/bd9571mwv-regulator.c
13940 F:      drivers/gpio/gpio-bd9571mwv.c
13941 F:      include/linux/mfd/bd9571mwv.h
13942 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
13943
13944 ROSE NETWORK LAYER
13945 M:      Ralf Baechle <[email protected]>
13946 L:      [email protected]
13947 W:      http://www.linux-ax25.org/
13948 S:      Maintained
13949 F:      include/net/rose.h
13950 F:      include/uapi/linux/rose.h
13951 F:      net/rose/
13952
13953 RTL2830 MEDIA DRIVER
13954 M:      Antti Palosaari <[email protected]>
13955 L:      [email protected]
13956 W:      https://linuxtv.org
13957 W:      http://palosaari.fi/linux/
13958 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13959 T:      git git://linuxtv.org/anttip/media_tree.git
13960 S:      Maintained
13961 F:      drivers/media/dvb-frontends/rtl2830*
13962
13963 RTL2832 MEDIA DRIVER
13964 M:      Antti Palosaari <[email protected]>
13965 L:      [email protected]
13966 W:      https://linuxtv.org
13967 W:      http://palosaari.fi/linux/
13968 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13969 T:      git git://linuxtv.org/anttip/media_tree.git
13970 S:      Maintained
13971 F:      drivers/media/dvb-frontends/rtl2832*
13972
13973 RTL2832_SDR MEDIA DRIVER
13974 M:      Antti Palosaari <[email protected]>
13975 L:      [email protected]
13976 W:      https://linuxtv.org
13977 W:      http://palosaari.fi/linux/
13978 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13979 T:      git git://linuxtv.org/anttip/media_tree.git
13980 S:      Maintained
13981 F:      drivers/media/dvb-frontends/rtl2832_sdr*
13982
13983 RTL8180 WIRELESS DRIVER
13984 L:      [email protected]
13985 W:      http://wireless.kernel.org/
13986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
13987 S:      Orphan
13988 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
13989
13990 RTL8187 WIRELESS DRIVER
13991 M:      Herton Ronaldo Krzesinski <[email protected]>
13992 M:      Hin-Tak Leung <[email protected]>
13993 M:      Larry Finger <[email protected]>
13994 L:      [email protected]
13995 W:      http://wireless.kernel.org/
13996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
13997 S:      Maintained
13998 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
13999
14000 REALTEK WIRELESS DRIVER (rtlwifi family)
14001 M:      Ping-Ke Shih <[email protected]>
14002 L:      [email protected]
14003 W:      http://wireless.kernel.org/
14004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14005 S:      Maintained
14006 F:      drivers/net/wireless/realtek/rtlwifi/
14007
14008 REALTEK WIRELESS DRIVER (rtw88)
14009 M:      Yan-Hsuan Chuang <[email protected]>
14010 L:      [email protected]
14011 S:      Maintained
14012 F:      drivers/net/wireless/realtek/rtw88/
14013
14014 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14015 M:      Jes Sorensen <[email protected]>
14016 L:      [email protected]
14017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14018 S:      Maintained
14019 F:      drivers/net/wireless/realtek/rtl8xxxu/
14020
14021 RXRPC SOCKETS (AF_RXRPC)
14022 M:      David Howells <[email protected]>
14023 L:      [email protected]
14024 S:      Supported
14025 F:      net/rxrpc/
14026 F:      include/keys/rxrpc-type.h
14027 F:      include/net/af_rxrpc.h
14028 F:      include/trace/events/rxrpc.h
14029 F:      include/uapi/linux/rxrpc.h
14030 F:      Documentation/networking/rxrpc.txt
14031 W:      https://www.infradead.org/~dhowells/kafs/
14032
14033 S3 SAVAGE FRAMEBUFFER DRIVER
14034 M:      Antonino Daplas <[email protected]>
14035 L:      [email protected]
14036 S:      Maintained
14037 F:      drivers/video/fbdev/savage/
14038
14039 S390
14040 M:      Heiko Carstens <[email protected]>
14041 M:      Vasily Gorbik <[email protected]>
14042 M:      Christian Borntraeger <[email protected]>
14043 L:      [email protected]
14044 W:      http://www.ibm.com/developerworks/linux/linux390/
14045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14046 S:      Supported
14047 F:      arch/s390/
14048 F:      drivers/s390/
14049 F:      Documentation/s390/
14050 F:      Documentation/driver-api/s390-drivers.rst
14051
14052 S390 COMMON I/O LAYER
14053 M:      Sebastian Ott <[email protected]>
14054 M:      Peter Oberparleiter <[email protected]>
14055 L:      [email protected]
14056 W:      http://www.ibm.com/developerworks/linux/linux390/
14057 S:      Supported
14058 F:      drivers/s390/cio/
14059
14060 S390 DASD DRIVER
14061 M:      Stefan Haberland <[email protected]>
14062 M:      Jan Hoeppner <[email protected]>
14063 L:      [email protected]
14064 W:      http://www.ibm.com/developerworks/linux/linux390/
14065 S:      Supported
14066 F:      drivers/s390/block/dasd*
14067 F:      block/partitions/ibm.c
14068
14069 S390 IOMMU (PCI)
14070 M:      Gerald Schaefer <[email protected]>
14071 L:      [email protected]
14072 W:      http://www.ibm.com/developerworks/linux/linux390/
14073 S:      Supported
14074 F:      drivers/iommu/s390-iommu.c
14075
14076 S390 IUCV NETWORK LAYER
14077 M:      Julian Wiedmann <[email protected]>
14078 M:      Ursula Braun <[email protected]>
14079 L:      [email protected]
14080 W:      http://www.ibm.com/developerworks/linux/linux390/
14081 S:      Supported
14082 F:      drivers/s390/net/*iucv*
14083 F:      include/net/iucv/
14084 F:      net/iucv/
14085
14086 S390 NETWORK DRIVERS
14087 M:      Julian Wiedmann <[email protected]>
14088 M:      Ursula Braun <[email protected]>
14089 L:      [email protected]
14090 W:      http://www.ibm.com/developerworks/linux/linux390/
14091 S:      Supported
14092 F:      drivers/s390/net/
14093
14094 S390 PCI SUBSYSTEM
14095 M:      Sebastian Ott <[email protected]>
14096 M:      Gerald Schaefer <[email protected]>
14097 L:      [email protected]
14098 W:      http://www.ibm.com/developerworks/linux/linux390/
14099 S:      Supported
14100 F:      arch/s390/pci/
14101 F:      drivers/pci/hotplug/s390_pci_hpc.c
14102
14103 S390 VFIO-CCW DRIVER
14104 M:      Cornelia Huck <[email protected]>
14105 M:      Eric Farman <[email protected]>
14106 R:      Halil Pasic <[email protected]>
14107 L:      [email protected]
14108 L:      [email protected]
14109 S:      Supported
14110 F:      drivers/s390/cio/vfio_ccw*
14111 F:      Documentation/s390/vfio-ccw.rst
14112 F:      include/uapi/linux/vfio_ccw.h
14113
14114 S390 ZCRYPT DRIVER
14115 M:      Harald Freudenberger <[email protected]>
14116 L:      [email protected]
14117 W:      http://www.ibm.com/developerworks/linux/linux390/
14118 S:      Supported
14119 F:      drivers/s390/crypto/
14120
14121 S390 VFIO AP DRIVER
14122 M:      Tony Krowiak <[email protected]>
14123 M:      Pierre Morel <[email protected]>
14124 M:      Halil Pasic <[email protected]>
14125 L:      [email protected]
14126 W:      http://www.ibm.com/developerworks/linux/linux390/
14127 S:      Supported
14128 F:      drivers/s390/crypto/vfio_ap_drv.c
14129 F:      drivers/s390/crypto/vfio_ap_private.h
14130 F:      drivers/s390/crypto/vfio_ap_ops.c
14131 F:      Documentation/s390/vfio-ap.rst
14132
14133 S390 ZFCP DRIVER
14134 M:      Steffen Maier <[email protected]>
14135 M:      Benjamin Block <[email protected]>
14136 L:      [email protected]
14137 W:      http://www.ibm.com/developerworks/linux/linux390/
14138 S:      Supported
14139 F:      drivers/s390/scsi/zfcp_*
14140
14141 S3C24XX SD/MMC Driver
14142 M:      Ben Dooks <[email protected]>
14143 L:      [email protected] (moderated for non-subscribers)
14144 S:      Supported
14145 F:      drivers/mmc/host/s3cmci.*
14146
14147 SAA6588 RDS RECEIVER DRIVER
14148 M:      Hans Verkuil <[email protected]>
14149 L:      [email protected]
14150 T:      git git://linuxtv.org/media_tree.git
14151 W:      https://linuxtv.org
14152 S:      Odd Fixes
14153 F:      drivers/media/i2c/saa6588*
14154
14155 SAA7134 VIDEO4LINUX DRIVER
14156 M:      Mauro Carvalho Chehab <[email protected]>
14157 L:      [email protected]
14158 W:      https://linuxtv.org
14159 T:      git git://linuxtv.org/media_tree.git
14160 S:      Odd fixes
14161 F:      Documentation/media/v4l-drivers/saa7134*
14162 F:      drivers/media/pci/saa7134/
14163
14164 SAA7146 VIDEO4LINUX-2 DRIVER
14165 M:      Hans Verkuil <[email protected]>
14166 L:      [email protected]
14167 T:      git git://linuxtv.org/media_tree.git
14168 S:      Maintained
14169 F:      drivers/media/common/saa7146/
14170 F:      drivers/media/pci/saa7146/
14171 F:      include/media/drv-intf/saa7146*
14172
14173 SAFESETID SECURITY MODULE
14174 M:     Micah Morton <[email protected]>
14175 S:     Supported
14176 F:     security/safesetid/
14177 F:     Documentation/admin-guide/LSM/SafeSetID.rst
14178
14179 SAMSUNG AUDIO (ASoC) DRIVERS
14180 M:      Krzysztof Kozlowski <[email protected]>
14181 M:      Sangbeom Kim <[email protected]>
14182 M:      Sylwester Nawrocki <[email protected]>
14183 L:      [email protected] (moderated for non-subscribers)
14184 S:      Supported
14185 F:      sound/soc/samsung/
14186 F:      Documentation/devicetree/bindings/sound/samsung*
14187
14188 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14189 M:      Krzysztof Kozlowski <[email protected]>
14190 L:      [email protected]
14191 L:      [email protected]
14192 S:      Maintained
14193 F:      drivers/crypto/exynos-rng.c
14194 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.txt
14195
14196 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14197 M:      Łukasz Stelmach <[email protected]>
14198 L:      [email protected]
14199 S:      Maintained
14200 F:      drivers/char/hw_random/exynos-trng.c
14201 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14202
14203 SAMSUNG FRAMEBUFFER DRIVER
14204 M:      Jingoo Han <[email protected]>
14205 L:      [email protected]
14206 S:      Maintained
14207 F:      drivers/video/fbdev/s3c-fb.c
14208
14209 SAMSUNG LAPTOP DRIVER
14210 M:      Corentin Chary <[email protected]>
14211 L:      [email protected]
14212 S:      Maintained
14213 F:      drivers/platform/x86/samsung-laptop.c
14214
14215 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14216 M:      Sangbeom Kim <[email protected]>
14217 M:      Krzysztof Kozlowski <[email protected]>
14218 M:      Bartlomiej Zolnierkiewicz <[email protected]>
14219 L:      [email protected]
14220 L:      [email protected]
14221 S:      Supported
14222 F:      drivers/mfd/sec*.c
14223 F:      drivers/regulator/s2m*.c
14224 F:      drivers/regulator/s5m*.c
14225 F:      drivers/clk/clk-s2mps11.c
14226 F:      drivers/rtc/rtc-s5m.c
14227 F:      include/linux/mfd/samsung/
14228 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14229 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14230 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14231 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14232
14233 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14234 M:      Sylwester Nawrocki <[email protected]>
14235 L:      [email protected]
14236 L:      [email protected] (moderated for non-subscribers)
14237 S:      Maintained
14238 F:      drivers/media/platform/s3c-camif/
14239 F:      include/media/drv-intf/s3c_camif.h
14240
14241 SAMSUNG S3FWRN5 NFC DRIVER
14242 M:      Robert Baldyga <[email protected]>
14243 M:      Krzysztof Opasiak <[email protected]>
14244 L:      [email protected] (moderated for non-subscribers)
14245 S:      Supported
14246 F:      drivers/nfc/s3fwrn5
14247
14248 SAMSUNG S5C73M3 CAMERA DRIVER
14249 M:      Kyungmin Park <[email protected]>
14250 M:      Andrzej Hajda <[email protected]>
14251 L:      [email protected]
14252 S:      Supported
14253 F:      drivers/media/i2c/s5c73m3/*
14254
14255 SAMSUNG S5K5BAF CAMERA DRIVER
14256 M:      Kyungmin Park <[email protected]>
14257 M:      Andrzej Hajda <[email protected]>
14258 L:      [email protected]
14259 S:      Supported
14260 F:      drivers/media/i2c/s5k5baf.c
14261
14262 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14263 M:      Krzysztof Kozlowski <[email protected]>
14264 M:      Vladimir Zapolskiy <[email protected]>
14265 M:      Kamil Konieczny <[email protected]>
14266 L:      [email protected]
14267 L:      [email protected]
14268 S:      Maintained
14269 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.txt
14270 F:      Documentation/devicetree/bindings/crypto/samsung-sss.txt
14271 F:      drivers/crypto/s5p-sss.c
14272
14273 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14274 M:      Kyungmin Park <[email protected]>
14275 M:      Sylwester Nawrocki <[email protected]>
14276 L:      [email protected]
14277 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14278 S:      Supported
14279 F:      drivers/media/platform/exynos4-is/
14280
14281 SAMSUNG SOC CLOCK DRIVERS
14282 M:      Sylwester Nawrocki <[email protected]>
14283 M:      Tomasz Figa <[email protected]>
14284 M:      Chanwoo Choi <[email protected]>
14285 S:      Supported
14286 L:      [email protected] (moderated for non-subscribers)
14287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
14288 F:      drivers/clk/samsung/
14289 F:      include/dt-bindings/clock/exynos*.h
14290 F:      Documentation/devicetree/bindings/clock/exynos*.txt
14291 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
14292 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
14293
14294 SAMSUNG SPI DRIVERS
14295 M:      Kukjin Kim <[email protected]>
14296 M:      Krzysztof Kozlowski <[email protected]>
14297 M:      Andi Shyti <[email protected]>
14298 L:      [email protected]
14299 L:      [email protected] (moderated for non-subscribers)
14300 S:      Maintained
14301 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
14302 F:      drivers/spi/spi-s3c*
14303 F:      include/linux/platform_data/spi-s3c64xx.h
14304
14305 SAMSUNG SXGBE DRIVERS
14306 M:      Byungho An <[email protected]>
14307 M:      Girish K S <[email protected]>
14308 M:      Vipul Pandya <[email protected]>
14309 S:      Supported
14310 L:      [email protected]
14311 F:      drivers/net/ethernet/samsung/sxgbe/
14312
14313 SAMSUNG THERMAL DRIVER
14314 M:      Bartlomiej Zolnierkiewicz <[email protected]>
14315 L:      [email protected]
14316 L:      [email protected]
14317 S:      Supported
14318 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
14319 F:      drivers/thermal/samsung/
14320
14321 SAMSUNG USB2 PHY DRIVER
14322 M:      Kamil Debski <[email protected]>
14323 M:      Sylwester Nawrocki <[email protected]>
14324 L:      [email protected]
14325 S:      Supported
14326 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
14327 F:      Documentation/driver-api/phy/samsung-usb2.rst
14328 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
14329 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
14330 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
14331 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
14332 F:      drivers/phy/samsung/phy-samsung-usb2.c
14333 F:      drivers/phy/samsung/phy-samsung-usb2.h
14334
14335 SC1200 WDT DRIVER
14336 M:      Zwane Mwaikambo <[email protected]>
14337 S:      Maintained
14338 F:      drivers/watchdog/sc1200wdt.c
14339
14340 SCHEDULER
14341 M:      Ingo Molnar <[email protected]>
14342 M:      Peter Zijlstra <[email protected]>
14343 M:      Juri Lelli <[email protected]> (SCHED_DEADLINE)
14344 M:      Vincent Guittot <[email protected]> (SCHED_NORMAL)
14345 R:      Dietmar Eggemann <[email protected]> (SCHED_NORMAL)
14346 R:      Steven Rostedt <[email protected]> (SCHED_FIFO/SCHED_RR)
14347 R:      Ben Segall <[email protected]> (CONFIG_CFS_BANDWIDTH)
14348 R:      Mel Gorman <[email protected]> (CONFIG_NUMA_BALANCING)
14349 L:      [email protected]
14350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
14351 S:      Maintained
14352 F:      kernel/sched/
14353 F:      include/linux/sched.h
14354 F:      include/uapi/linux/sched.h
14355 F:      include/linux/wait.h
14356 F:      include/linux/preempt.h
14357
14358 SCR24X CHIP CARD INTERFACE DRIVER
14359 M:      Lubomir Rintel <[email protected]>
14360 S:      Supported
14361 F:      drivers/char/pcmcia/scr24x_cs.c
14362
14363 SCSI CDROM DRIVER
14364 M:      Jens Axboe <[email protected]>
14365 L:      [email protected]
14366 W:      http://www.kernel.dk
14367 S:      Maintained
14368 F:      drivers/scsi/sr*
14369
14370 SCSI RDMA PROTOCOL (SRP) INITIATOR
14371 M:      Bart Van Assche <[email protected]>
14372 L:      [email protected]
14373 S:      Supported
14374 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14375 F:      drivers/infiniband/ulp/srp/
14376 F:      include/scsi/srp.h
14377
14378 SCSI RDMA PROTOCOL (SRP) TARGET
14379 M:      Bart Van Assche <[email protected]>
14380 L:      [email protected]
14381 L:      [email protected]
14382 S:      Supported
14383 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14384 F:      drivers/infiniband/ulp/srpt/
14385
14386 SCSI SG DRIVER
14387 M:      Doug Gilbert <[email protected]>
14388 L:      [email protected]
14389 W:      http://sg.danny.cz/sg
14390 S:      Maintained
14391 F:      Documentation/scsi/scsi-generic.txt
14392 F:      drivers/scsi/sg.c
14393 F:      include/scsi/sg.h
14394
14395 SCSI SUBSYSTEM
14396 M:      "James E.J. Bottomley" <[email protected]>
14397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
14398 M:      "Martin K. Petersen" <[email protected]>
14399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14400 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
14401 L:      [email protected]
14402 S:      Maintained
14403 F:      Documentation/devicetree/bindings/scsi/
14404 F:      drivers/scsi/
14405 F:      include/scsi/
14406
14407 SCSI TAPE DRIVER
14408 M:      Kai Mäkisara <[email protected]>
14409 L:      [email protected]
14410 S:      Maintained
14411 F:      Documentation/scsi/st.txt
14412 F:      drivers/scsi/st.*
14413 F:      drivers/scsi/st_*.h
14414
14415 SCSI TARGET SUBSYSTEM
14416 M:      "Martin K. Petersen" <[email protected]>
14417 L:      [email protected]
14418 L:      [email protected]
14419 W:      http://www.linux-iscsi.org
14420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14421 Q:      https://patchwork.kernel.org/project/target-devel/list/
14422 S:      Supported
14423 F:      drivers/target/
14424 F:      include/target/
14425 F:      Documentation/target/
14426
14427 SCTP PROTOCOL
14428 M:      Vlad Yasevich <[email protected]>
14429 M:      Neil Horman <[email protected]>
14430 M:      Marcelo Ricardo Leitner <[email protected]>
14431 L:      [email protected]
14432 W:      http://lksctp.sourceforge.net
14433 S:      Maintained
14434 F:      Documentation/networking/sctp.txt
14435 F:      include/linux/sctp.h
14436 F:      include/uapi/linux/sctp.h
14437 F:      include/net/sctp/
14438 F:      net/sctp/
14439
14440 SCx200 CPU SUPPORT
14441 M:      Jim Cromie <[email protected]>
14442 S:      Odd Fixes
14443 F:      Documentation/i2c/busses/scx200_acb.rst
14444 F:      arch/x86/platform/scx200/
14445 F:      drivers/watchdog/scx200_wdt.c
14446 F:      drivers/i2c/busses/scx200*
14447 F:      drivers/mtd/maps/scx200_docflash.c
14448 F:      include/linux/scx200.h
14449
14450 SCx200 GPIO DRIVER
14451 M:      Jim Cromie <[email protected]>
14452 S:      Maintained
14453 F:      drivers/char/scx200_gpio.c
14454 F:      include/linux/scx200_gpio.h
14455
14456 SCx200 HRT CLOCKSOURCE DRIVER
14457 M:      Jim Cromie <[email protected]>
14458 S:      Maintained
14459 F:      drivers/clocksource/scx200_hrt.c
14460
14461 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
14462 M:      Sascha Sommer <[email protected]>
14463 L:      [email protected] (subscribers-only)
14464 S:      Maintained
14465 F:      drivers/mmc/host/sdricoh_cs.c
14466
14467 SECO BOARDS CEC DRIVER
14468 M:      Ettore Chimenti <[email protected]>
14469 S:      Maintained
14470 F:      drivers/media/platform/seco-cec/seco-cec.c
14471 F:      drivers/media/platform/seco-cec/seco-cec.h
14472
14473 SECURE COMPUTING
14474 M:      Kees Cook <[email protected]>
14475 R:      Andy Lutomirski <[email protected]>
14476 R:      Will Drewry <[email protected]>
14477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
14478 S:      Supported
14479 F:      kernel/seccomp.c
14480 F:      include/uapi/linux/seccomp.h
14481 F:      include/linux/seccomp.h
14482 F:      tools/testing/selftests/seccomp/*
14483 F:      tools/testing/selftests/kselftest_harness.h
14484 F:      Documentation/userspace-api/seccomp_filter.rst
14485 K:      \bsecure_computing
14486 K:      \bTIF_SECCOMP\b
14487
14488 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
14489 M:      Al Cooper <[email protected]>
14490 L:      [email protected]
14491 L:      [email protected]
14492 S:      Maintained
14493 F:      drivers/mmc/host/sdhci-brcmstb*
14494
14495 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
14496 M:      Adrian Hunter <[email protected]>
14497 L:      [email protected]
14498 S:      Maintained
14499 F:      drivers/mmc/host/sdhci*
14500 F:      include/linux/mmc/sdhci*
14501
14502 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
14503 M:      Adrian Hunter <[email protected]>
14504 M:      Ritesh Harjani <[email protected]>
14505 M:      Asutosh Das <[email protected]>
14506 L:      [email protected]
14507 S:      Maintained
14508 F:      drivers/mmc/host/cqhci*
14509
14510 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
14511 M:      Prabu Thangamuthu <[email protected]>
14512 M:      Manjunath M B <[email protected]>
14513 L:      [email protected]
14514 S:      Maintained
14515 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
14516
14517 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
14518 M:      Ludovic Desroches <[email protected]>
14519 L:      [email protected]
14520 S:      Supported
14521 F:      drivers/mmc/host/sdhci-of-at91.c
14522
14523 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
14524 M:      Ben Dooks <[email protected]>
14525 M:      Jaehoon Chung <[email protected]>
14526 L:      [email protected]
14527 S:      Maintained
14528 F:      drivers/mmc/host/sdhci-s3c*
14529
14530 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
14531 M:      Viresh Kumar <[email protected]>
14532 L:      [email protected]
14533 S:      Maintained
14534 F:      drivers/mmc/host/sdhci-spear.c
14535
14536 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
14537 M:      Kishon Vijay Abraham I <[email protected]>
14538 L:      [email protected]
14539 S:      Maintained
14540 F:      drivers/mmc/host/sdhci-omap.c
14541
14542 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
14543 M:      Scott Bauer <[email protected]>
14544 M:      Jonathan Derrick <[email protected]>
14545 L:      [email protected]
14546 S:      Supported
14547 F:      block/sed*
14548 F:      block/opal_proto.h
14549 F:      include/linux/sed*
14550 F:      include/uapi/linux/sed*
14551
14552 SECURITY CONTACT
14553 M:      Security Officers <[email protected]>
14554 S:      Supported
14555
14556 SECURITY SUBSYSTEM
14557 M:      James Morris <[email protected]>
14558 M:      "Serge E. Hallyn" <[email protected]>
14559 L:      [email protected] (suggested Cc:)
14560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
14561 W:      http://kernsec.org/
14562 S:      Supported
14563 F:      security/
14564 X:      security/selinux/
14565
14566 SELINUX SECURITY MODULE
14567 M:      Paul Moore <[email protected]>
14568 M:      Stephen Smalley <[email protected]>
14569 M:      Eric Paris <[email protected]>
14570 L:      [email protected]
14571 W:      https://selinuxproject.org
14572 W:      https://github.com/SELinuxProject
14573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
14574 S:      Supported
14575 F:      include/uapi/linux/selinux_netlink.h
14576 F:      security/selinux/
14577 F:      scripts/selinux/
14578 F:      Documentation/admin-guide/LSM/SELinux.rst
14579
14580 SENSABLE PHANTOM
14581 M:      Jiri Slaby <[email protected]>
14582 S:      Maintained
14583 F:      drivers/misc/phantom.c
14584 F:      include/uapi/linux/phantom.h
14585
14586 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
14587 M:      Tomasz Duszynski <[email protected]>
14588 S:      Maintained
14589 F:      drivers/iio/chemical/sps30.c
14590 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
14591
14592 SERIAL DEVICE BUS
14593 M:      Rob Herring <[email protected]>
14594 L:      [email protected]
14595 S:      Maintained
14596 F:      Documentation/devicetree/bindings/serial/slave-device.txt
14597 F:      drivers/tty/serdev/
14598 F:      include/linux/serdev.h
14599
14600 SERIAL DRIVERS
14601 M:      Greg Kroah-Hartman <[email protected]>
14602 L:      [email protected]
14603 S:      Maintained
14604 F:      Documentation/devicetree/bindings/serial/
14605 F:      drivers/tty/serial/
14606
14607 SERIAL IR RECEIVER
14608 M:      Sean Young <[email protected]>
14609 L:      [email protected]
14610 S:      Maintained
14611 F:      drivers/media/rc/serial_ir.c
14612
14613 SFC NETWORK DRIVER
14614 M:      Solarflare linux maintainers <[email protected]>
14615 M:      Edward Cree <[email protected]>
14616 M:      Martin Habets <[email protected]>
14617 L:      [email protected]
14618 S:      Supported
14619 F:      drivers/net/ethernet/sfc/
14620
14621 SFF/SFP/SFP+ MODULE SUPPORT
14622 M:      Russell King <[email protected]>
14623 L:      [email protected]
14624 S:      Maintained
14625 F:      drivers/net/phy/phylink.c
14626 F:      drivers/net/phy/sfp*
14627 F:      include/linux/phylink.h
14628 F:      include/linux/sfp.h
14629 K:      phylink
14630
14631 SGI GRU DRIVER
14632 M:      Dimitri Sivanich <[email protected]>
14633 S:      Maintained
14634 F:      drivers/misc/sgi-gru/
14635
14636 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
14637 M:      Pat Gefre <[email protected]>
14638 L:      [email protected]
14639 S:      Supported
14640 F:      Documentation/ia64/serial.rst
14641 F:      drivers/tty/serial/ioc?_serial.c
14642 F:      include/linux/ioc?.h
14643
14644 SGI XP/XPC/XPNET DRIVER
14645 M:      Cliff Whickman <[email protected]>
14646 M:      Robin Holt <[email protected]>
14647 S:      Maintained
14648 F:      drivers/misc/sgi-xp/
14649
14650 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
14651 M:      Ursula Braun <[email protected]>
14652 M:      Karsten Graul <[email protected]>
14653 L:      [email protected]
14654 W:      http://www.ibm.com/developerworks/linux/linux390/
14655 S:      Supported
14656 F:      net/smc/
14657
14658 SHARP RJ54N1CB0C SENSOR DRIVER
14659 M:      Jacopo Mondi <[email protected]>
14660 L:      [email protected]
14661 T:      git git://linuxtv.org/media_tree.git
14662 S:      Odd fixes
14663 F:      drivers/media/i2c/rj54n1cb0c.c
14664 F:      include/media/i2c/rj54n1cb0c.h
14665
14666 SH_VEU V4L2 MEM2MEM DRIVER
14667 L:      [email protected]
14668 S:      Orphan
14669 F:      drivers/media/platform/sh_veu.c
14670
14671 SH_VOU V4L2 OUTPUT DRIVER
14672 L:      [email protected]
14673 S:      Orphan
14674 F:      drivers/media/platform/sh_vou.c
14675 F:      include/media/drv-intf/sh_vou.h
14676
14677 SI2157 MEDIA DRIVER
14678 M:      Antti Palosaari <[email protected]>
14679 L:      [email protected]
14680 W:      https://linuxtv.org
14681 W:      http://palosaari.fi/linux/
14682 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14683 T:      git git://linuxtv.org/anttip/media_tree.git
14684 S:      Maintained
14685 F:      drivers/media/tuners/si2157*
14686
14687 SI2165 MEDIA DRIVER
14688 M:      Matthias Schwarzott <[email protected]>
14689 L:      [email protected]
14690 W:      https://linuxtv.org
14691 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14692 S:      Maintained
14693 F:      drivers/media/dvb-frontends/si2165*
14694
14695 SI2168 MEDIA DRIVER
14696 M:      Antti Palosaari <[email protected]>
14697 L:      [email protected]
14698 W:      https://linuxtv.org
14699 W:      http://palosaari.fi/linux/
14700 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14701 T:      git git://linuxtv.org/anttip/media_tree.git
14702 S:      Maintained
14703 F:      drivers/media/dvb-frontends/si2168*
14704
14705 SI470X FM RADIO RECEIVER I2C DRIVER
14706 M:      Hans Verkuil <[email protected]>
14707 L:      [email protected]
14708 T:      git git://linuxtv.org/media_tree.git
14709 W:      https://linuxtv.org
14710 S:      Odd Fixes
14711 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
14712
14713 SI470X FM RADIO RECEIVER USB DRIVER
14714 M:      Hans Verkuil <[email protected]>
14715 L:      [email protected]
14716 T:      git git://linuxtv.org/media_tree.git
14717 W:      https://linuxtv.org
14718 S:      Maintained
14719 F:      drivers/media/radio/si470x/radio-si470x-common.c
14720 F:      drivers/media/radio/si470x/radio-si470x.h
14721 F:      drivers/media/radio/si470x/radio-si470x-usb.c
14722
14723 SI4713 FM RADIO TRANSMITTER I2C DRIVER
14724 M:      Eduardo Valentin <[email protected]>
14725 L:      [email protected]
14726 T:      git git://linuxtv.org/media_tree.git
14727 W:      https://linuxtv.org
14728 S:      Odd Fixes
14729 F:      drivers/media/radio/si4713/si4713.?
14730
14731 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
14732 M:      Eduardo Valentin <[email protected]>
14733 L:      [email protected]
14734 T:      git git://linuxtv.org/media_tree.git
14735 W:      https://linuxtv.org
14736 S:      Odd Fixes
14737 F:      drivers/media/radio/si4713/radio-platform-si4713.c
14738
14739 SI4713 FM RADIO TRANSMITTER USB DRIVER
14740 M:      Hans Verkuil <[email protected]>
14741 L:      [email protected]
14742 T:      git git://linuxtv.org/media_tree.git
14743 W:      https://linuxtv.org
14744 S:      Maintained
14745 F:      drivers/media/radio/si4713/radio-usb-si4713.c
14746
14747 SIANO DVB DRIVER
14748 M:      Mauro Carvalho Chehab <[email protected]>
14749 L:      [email protected]
14750 W:      https://linuxtv.org
14751 T:      git git://linuxtv.org/media_tree.git
14752 S:      Odd fixes
14753 F:      drivers/media/common/siano/
14754 F:      drivers/media/usb/siano/
14755 F:      drivers/media/usb/siano/
14756 F:      drivers/media/mmc/siano/
14757
14758 SIFIVE DRIVERS
14759 M:      Palmer Dabbelt <[email protected]>
14760 M:      Paul Walmsley <[email protected]>
14761 L:      [email protected]
14762 T:      git git://github.com/sifive/riscv-linux.git
14763 S:      Supported
14764 K:      [^@]sifive
14765 N:      sifive
14766
14767 SIFIVE FU540 SYSTEM-ON-CHIP
14768 M:      Paul Walmsley <[email protected]>
14769 M:      Palmer Dabbelt <[email protected]>
14770 L:      [email protected]
14771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
14772 S:      Supported
14773 K:      fu540
14774 N:      fu540
14775
14776 SILEAD TOUCHSCREEN DRIVER
14777 M:      Hans de Goede <[email protected]>
14778 L:      [email protected]
14779 L:      [email protected]
14780 S:      Maintained
14781 F:      drivers/input/touchscreen/silead.c
14782 F:      drivers/platform/x86/touchscreen_dmi.c
14783
14784 SILICON MOTION SM712 FRAME BUFFER DRIVER
14785 M:      Sudip Mukherjee <[email protected]>
14786 M:      Teddy Wang <[email protected]>
14787 M:      Sudip Mukherjee <[email protected]>
14788 L:      [email protected]
14789 S:      Maintained
14790 F:      drivers/video/fbdev/sm712*
14791 F:      Documentation/fb/sm712fb.rst
14792
14793 SIMPLE FIRMWARE INTERFACE (SFI)
14794 M:      Len Brown <[email protected]>
14795 L:      [email protected]
14796 W:      http://simplefirmware.org/
14797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
14798 S:      Supported
14799 F:      arch/x86/platform/sfi/
14800 F:      drivers/sfi/
14801 F:      include/linux/sfi*.h
14802
14803 SIMPLEFB FB DRIVER
14804 M:      Hans de Goede <[email protected]>
14805 L:      [email protected]
14806 S:      Maintained
14807 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
14808 F:      drivers/video/fbdev/simplefb.c
14809 F:      include/linux/platform_data/simplefb.h
14810
14811 SIMTEC EB110ATX (Chalice CATS)
14812 P:      Ben Dooks
14813 P:      Vincent Sanders <[email protected]>
14814 M:      Simtec Linux Team <[email protected]>
14815 W:      http://www.simtec.co.uk/products/EB110ATX/
14816 S:      Supported
14817
14818 SIMTEC EB2410ITX (BAST)
14819 P:      Ben Dooks
14820 P:      Vincent Sanders <[email protected]>
14821 M:      Simtec Linux Team <[email protected]>
14822 W:      http://www.simtec.co.uk/products/EB2410ITX/
14823 S:      Supported
14824 F:      arch/arm/mach-s3c24xx/mach-bast.c
14825 F:      arch/arm/mach-s3c24xx/bast-ide.c
14826 F:      arch/arm/mach-s3c24xx/bast-irq.c
14827
14828 SIPHASH PRF ROUTINES
14829 M:      Jason A. Donenfeld <[email protected]>
14830 S:      Maintained
14831 F:      lib/siphash.c
14832 F:      lib/test_siphash.c
14833 F:      include/linux/siphash.h
14834
14835 SIOX
14836 M:      Thorsten Scherer <[email protected]>
14837 M:      Uwe Kleine-König <[email protected]>
14838 R:      Pengutronix Kernel Team <[email protected]>
14839 S:      Supported
14840 F:      drivers/siox/*
14841 F:      drivers/gpio/gpio-siox.c
14842 F:      include/trace/events/siox.h
14843
14844 SIS 190 ETHERNET DRIVER
14845 M:      Francois Romieu <[email protected]>
14846 L:      [email protected]
14847 S:      Maintained
14848 F:      drivers/net/ethernet/sis/sis190.c
14849
14850 SIS 900/7016 FAST ETHERNET DRIVER
14851 M:      Daniele Venzano <[email protected]>
14852 W:      http://www.brownhat.org/sis900.html
14853 L:      [email protected]
14854 S:      Maintained
14855 F:      drivers/net/ethernet/sis/sis900.*
14856
14857 SIS FRAMEBUFFER DRIVER
14858 M:      Thomas Winischhofer <[email protected]>
14859 W:      http://www.winischhofer.net/linuxsisvga.shtml
14860 S:      Maintained
14861 F:      Documentation/fb/sisfb.rst
14862 F:      drivers/video/fbdev/sis/
14863 F:      include/video/sisfb.h
14864
14865 SIS USB2VGA DRIVER
14866 M:      Thomas Winischhofer <[email protected]>
14867 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
14868 S:      Maintained
14869 F:      drivers/usb/misc/sisusbvga/
14870
14871 SLAB ALLOCATOR
14872 M:      Christoph Lameter <[email protected]>
14873 M:      Pekka Enberg <[email protected]>
14874 M:      David Rientjes <[email protected]>
14875 M:      Joonsoo Kim <[email protected]>
14876 M:      Andrew Morton <[email protected]>
14877 L:      [email protected]
14878 S:      Maintained
14879 F:      include/linux/sl?b*.h
14880 F:      mm/sl?b*
14881
14882 SLEEPABLE READ-COPY UPDATE (SRCU)
14883 M:      Lai Jiangshan <[email protected]>
14884 M:      "Paul E. McKenney" <[email protected]>
14885 M:      Josh Triplett <[email protected]>
14886 R:      Steven Rostedt <[email protected]>
14887 R:      Mathieu Desnoyers <[email protected]>
14888 L:      [email protected]
14889 W:      http://www.rdrop.com/users/paulmck/RCU/
14890 S:      Supported
14891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14892 F:      include/linux/srcu*.h
14893 F:      kernel/rcu/srcu*.c
14894
14895 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
14896 M:      Srinivas Kandagatla <[email protected]>
14897 L:      [email protected] (moderated for non-subscribers)
14898 S:      Maintained
14899 F:      drivers/slimbus/
14900 F:      Documentation/devicetree/bindings/slimbus/
14901 F:      include/linux/slimbus.h
14902
14903 SMACK SECURITY MODULE
14904 M:      Casey Schaufler <[email protected]>
14905 L:      [email protected]
14906 W:      http://schaufler-ca.com
14907 T:      git git://github.com/cschaufler/smack-next
14908 S:      Maintained
14909 F:      Documentation/admin-guide/LSM/Smack.rst
14910 F:      security/smack/
14911
14912 SMC91x ETHERNET DRIVER
14913 M:      Nicolas Pitre <[email protected]>
14914 S:      Odd Fixes
14915 F:      drivers/net/ethernet/smsc/smc91x.*
14916
14917 SMIA AND SMIA++ IMAGE SENSOR DRIVER
14918 M:      Sakari Ailus <[email protected]>
14919 L:      [email protected]
14920 S:      Maintained
14921 F:      drivers/media/i2c/smiapp/
14922 F:      include/media/i2c/smiapp.h
14923 F:      drivers/media/i2c/smiapp-pll.c
14924 F:      drivers/media/i2c/smiapp-pll.h
14925 F:      include/uapi/linux/smiapp.h
14926 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
14927
14928 SMM665 HARDWARE MONITOR DRIVER
14929 M:      Guenter Roeck <[email protected]>
14930 L:      [email protected]
14931 S:      Maintained
14932 F:      Documentation/hwmon/smm665.rst
14933 F:      drivers/hwmon/smm665.c
14934
14935 SMSC EMC2103 HARDWARE MONITOR DRIVER
14936 M:      Steve Glendinning <[email protected]>
14937 L:      [email protected]
14938 S:      Maintained
14939 F:      Documentation/hwmon/emc2103.rst
14940 F:      drivers/hwmon/emc2103.c
14941
14942 SMSC SCH5627 HARDWARE MONITOR DRIVER
14943 M:      Hans de Goede <[email protected]>
14944 L:      [email protected]
14945 S:      Supported
14946 F:      Documentation/hwmon/sch5627.rst
14947 F:      drivers/hwmon/sch5627.c
14948
14949 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
14950 M:      Steve Glendinning <[email protected]>
14951 L:      [email protected]
14952 S:      Maintained
14953 F:      drivers/video/fbdev/smscufx.c
14954
14955 SMSC47B397 HARDWARE MONITOR DRIVER
14956 M:      Jean Delvare <[email protected]>
14957 L:      [email protected]
14958 S:      Maintained
14959 F:      Documentation/hwmon/smsc47b397.rst
14960 F:      drivers/hwmon/smsc47b397.c
14961
14962 SMSC911x ETHERNET DRIVER
14963 M:      Steve Glendinning <[email protected]>
14964 L:      [email protected]
14965 S:      Maintained
14966 F:      include/linux/smsc911x.h
14967 F:      drivers/net/ethernet/smsc/smsc911x.*
14968
14969 SMSC9420 PCI ETHERNET DRIVER
14970 M:      Steve Glendinning <[email protected]>
14971 L:      [email protected]
14972 S:      Maintained
14973 F:      drivers/net/ethernet/smsc/smsc9420.*
14974
14975 SOC-CAMERA V4L2 SUBSYSTEM
14976 L:      [email protected]
14977 T:      git git://linuxtv.org/media_tree.git
14978 S:      Orphan
14979 F:      include/media/soc_camera.h
14980 F:      drivers/staging/media/soc_camera/
14981
14982 SOCIONEXT SYNQUACER I2C DRIVER
14983 M:      Ard Biesheuvel <[email protected]>
14984 L:      [email protected]
14985 S:      Maintained
14986 F:      drivers/i2c/busses/i2c-synquacer.c
14987 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
14988
14989 SOCIONEXT UNIPHIER SOUND DRIVER
14990 L:      [email protected] (moderated for non-subscribers)
14991 S:      Orphan
14992 F:      sound/soc/uniphier/
14993
14994 SOEKRIS NET48XX LED SUPPORT
14995 M:      Chris Boot <[email protected]>
14996 S:      Maintained
14997 F:      drivers/leds/leds-net48xx.c
14998
14999 SOFT-IWARP DRIVER (siw)
15000 M:      Bernard Metzler <[email protected]>
15001 L:      [email protected]
15002 S:      Supported
15003 F:      drivers/infiniband/sw/siw/
15004 F:      include/uapi/rdma/siw-abi.h
15005
15006 SOFT-ROCE DRIVER (rxe)
15007 M:      Moni Shoua <[email protected]>
15008 L:      [email protected]
15009 S:      Supported
15010 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
15011 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15012 F:      drivers/infiniband/sw/rxe/
15013 F:      include/uapi/rdma/rdma_user_rxe.h
15014
15015 SOFTLOGIC 6x10 MPEG CODEC
15016 M:      Bluecherry Maintainers <[email protected]>
15017 M:      Anton Sviridenko <[email protected]>
15018 M:      Andrey Utkin <[email protected]>
15019 M:      Andrey Utkin <[email protected]>
15020 M:      Ismael Luceno <[email protected]>
15021 L:      [email protected]
15022 S:      Supported
15023 F:      drivers/media/pci/solo6x10/
15024
15025 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15026 M:      James Morse <[email protected]>
15027 L:      [email protected]
15028 S:      Maintained
15029 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15030 F:      drivers/firmware/arm_sdei.c
15031 F:      include/linux/arm_sdei.h
15032 F:      include/uapi/linux/arm_sdei.h
15033
15034 SOFTWARE RAID (Multiple Disks) SUPPORT
15035 M:      Song Liu <[email protected]>
15036 L:      [email protected]
15037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15038 S:      Supported
15039 F:      drivers/md/Makefile
15040 F:      drivers/md/Kconfig
15041 F:      drivers/md/md*
15042 F:      drivers/md/raid*
15043 F:      include/linux/raid/
15044 F:      include/uapi/linux/raid/
15045
15046 SOCIONEXT (SNI) AVE NETWORK DRIVER
15047 M:      Kunihiko Hayashi <[email protected]>
15048 L:      [email protected]
15049 S:      Maintained
15050 F:      drivers/net/ethernet/socionext/sni_ave.c
15051 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
15052
15053 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15054 M:      Jassi Brar <[email protected]>
15055 M:      Ilias Apalodimas <[email protected]>
15056 L:      [email protected]
15057 S:      Maintained
15058 F:      drivers/net/ethernet/socionext/netsec.c
15059 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15060
15061 SOCIONEXT (SNI) Synquacer SPI DRIVER
15062 M:      Masahisa Kojima <[email protected]>
15063 M:      Jassi Brar <[email protected]>
15064 L:      [email protected]
15065 S:      Maintained
15066 F:      drivers/spi/spi-synquacer.c
15067 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15068
15069 SOLIDRUN CLEARFOG SUPPORT
15070 M:      Russell King <[email protected]>
15071 S:      Maintained
15072 F:      arch/arm/boot/dts/armada-388-clearfog*
15073 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15074
15075 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15076 M:      Russell King <[email protected]>
15077 S:      Maintained
15078 F:      arch/arm/boot/dts/imx6*-cubox-i*
15079 F:      arch/arm/boot/dts/imx6*-hummingboard*
15080 F:      arch/arm/boot/dts/imx6*-sr-*
15081
15082 SONIC NETWORK DRIVER
15083 M:      Thomas Bogendoerfer <[email protected]>
15084 L:      [email protected]
15085 S:      Maintained
15086 F:      drivers/net/ethernet/natsemi/sonic.*
15087
15088 SONICS SILICON BACKPLANE DRIVER (SSB)
15089 M:      Michael Buesch <[email protected]>
15090 L:      [email protected]
15091 S:      Maintained
15092 F:      drivers/ssb/
15093 F:      include/linux/ssb/
15094
15095 SONY IMX214 SENSOR DRIVER
15096 M:      Ricardo Ribalda <[email protected]>
15097 L:      [email protected]
15098 T:      git git://linuxtv.org/media_tree.git
15099 S:      Maintained
15100 F:      drivers/media/i2c/imx214.c
15101 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15102
15103 SONY IMX258 SENSOR DRIVER
15104 M:      Sakari Ailus <[email protected]>
15105 L:      [email protected]
15106 T:      git git://linuxtv.org/media_tree.git
15107 S:      Maintained
15108 F:      drivers/media/i2c/imx258.c
15109
15110 SONY IMX274 SENSOR DRIVER
15111 M:      Leon Luo <[email protected]>
15112 L:      [email protected]
15113 T:      git git://linuxtv.org/media_tree.git
15114 S:      Maintained
15115 F:      drivers/media/i2c/imx274.c
15116 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15117
15118 SONY IMX319 SENSOR DRIVER
15119 M:      Bingbu Cao <[email protected]>
15120 L:      [email protected]
15121 T:      git git://linuxtv.org/media_tree.git
15122 S:      Maintained
15123 F:      drivers/media/i2c/imx319.c
15124
15125 SONY IMX355 SENSOR DRIVER
15126 M:      Tianshu Qiu <[email protected]>
15127 L:      [email protected]
15128 T:      git git://linuxtv.org/media_tree.git
15129 S:      Maintained
15130 F:      drivers/media/i2c/imx355.c
15131
15132 SONY MEMORYSTICK SUBSYSTEM
15133 M:      Maxim Levitsky <[email protected]>
15134 M:      Alex Dubov <[email protected]>
15135 M:      Ulf Hansson <[email protected]>
15136 L:      [email protected]
15137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15138 S:      Maintained
15139 F:      drivers/memstick/
15140 F:      include/linux/memstick.h
15141
15142 SONY VAIO CONTROL DEVICE DRIVER
15143 M:      Mattia Dongili <[email protected]>
15144 L:      [email protected]
15145 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15146 S:      Maintained
15147 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15148 F:      drivers/char/sonypi.c
15149 F:      drivers/platform/x86/sony-laptop.c
15150 F:      include/linux/sony-laptop.h
15151
15152 SOUND
15153 M:      Jaroslav Kysela <[email protected]>
15154 M:      Takashi Iwai <[email protected]>
15155 L:      [email protected] (moderated for non-subscribers)
15156 W:      http://www.alsa-project.org/
15157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15158 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15159 S:      Maintained
15160 F:      Documentation/sound/
15161 F:      include/sound/
15162 F:      include/uapi/sound/
15163 F:      sound/
15164
15165 SOUND - COMPRESSED AUDIO
15166 M:      Vinod Koul <[email protected]>
15167 L:      [email protected] (moderated for non-subscribers)
15168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15169 S:      Supported
15170 F:      Documentation/sound/designs/compress-offload.rst
15171 F:      include/sound/compress_driver.h
15172 F:      include/uapi/sound/compress_*
15173 F:      sound/core/compress_offload.c
15174 F:      sound/soc/soc-compress.c
15175
15176 SOUND - DMAENGINE HELPERS
15177 M:      Lars-Peter Clausen <[email protected]>
15178 S:      Supported
15179 F:      include/sound/dmaengine_pcm.h
15180 F:      sound/core/pcm_dmaengine.c
15181 F:      sound/soc/soc-generic-dmaengine-pcm.c
15182
15183 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15184 M:      Liam Girdwood <[email protected]>
15185 M:      Mark Brown <[email protected]>
15186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15187 L:      [email protected] (moderated for non-subscribers)
15188 W:      http://alsa-project.org/main/index.php/ASoC
15189 S:      Supported
15190 F:      Documentation/devicetree/bindings/sound/
15191 F:      Documentation/sound/soc/
15192 F:      sound/soc/
15193 F:      include/dt-bindings/sound/
15194 F:      include/sound/soc*
15195
15196 SOUNDWIRE SUBSYSTEM
15197 M:      Vinod Koul <[email protected]>
15198 M:      Sanyog Kale <[email protected]>
15199 R:      Pierre-Louis Bossart <[email protected]>
15200 L:      [email protected] (moderated for non-subscribers)
15201 S:      Supported
15202 F:      Documentation/driver-api/soundwire/
15203 F:      drivers/soundwire/
15204 F:      include/linux/soundwire/
15205
15206 SP2 MEDIA DRIVER
15207 M:      Olli Salonen <[email protected]>
15208 L:      [email protected]
15209 W:      https://linuxtv.org
15210 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15211 S:      Maintained
15212 F:      drivers/media/dvb-frontends/sp2*
15213
15214 SPARC + UltraSPARC (sparc/sparc64)
15215 M:      "David S. Miller" <[email protected]>
15216 L:      [email protected]
15217 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15220 S:      Maintained
15221 F:      arch/sparc/
15222 F:      drivers/sbus/
15223
15224 SPARC SERIAL DRIVERS
15225 M:      "David S. Miller" <[email protected]>
15226 L:      [email protected]
15227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15229 S:      Maintained
15230 F:      include/linux/sunserialcore.h
15231 F:      drivers/tty/serial/suncore.c
15232 F:      drivers/tty/serial/sunhv.c
15233 F:      drivers/tty/serial/sunsab.c
15234 F:      drivers/tty/serial/sunsab.h
15235 F:      drivers/tty/serial/sunsu.c
15236 F:      drivers/tty/serial/sunzilog.c
15237 F:      drivers/tty/serial/sunzilog.h
15238 F:      drivers/tty/vcc.c
15239
15240 SPARSE CHECKER
15241 M:      "Luc Van Oostenryck" <[email protected]>
15242 L:      [email protected]
15243 W:      https://sparse.wiki.kernel.org/
15244 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15245 S:      Maintained
15246 F:      include/linux/compiler.h
15247
15248 SPEAR CLOCK FRAMEWORK SUPPORT
15249 M:      Viresh Kumar <[email protected]>
15250 L:      [email protected] (moderated for non-subscribers)
15251 W:      http://www.st.com/spear
15252 S:      Maintained
15253 F:      drivers/clk/spear/
15254
15255 SPEAR PLATFORM SUPPORT
15256 M:      Viresh Kumar <[email protected]>
15257 M:      Shiraz Hashim <[email protected]>
15258 L:      [email protected] (moderated for non-subscribers)
15259 W:      http://www.st.com/spear
15260 S:      Maintained
15261 F:      arch/arm/boot/dts/spear*
15262 F:      arch/arm/mach-spear/
15263
15264 SPI NOR SUBSYSTEM
15265 M:      Marek Vasut <[email protected]>
15266 M:      Tudor Ambarus <[email protected]>
15267 L:      [email protected]
15268 W:      http://www.linux-mtd.infradead.org/
15269 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
15270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
15271 S:      Maintained
15272 F:      drivers/mtd/spi-nor/
15273 F:      include/linux/mtd/spi-nor.h
15274
15275 SPI SUBSYSTEM
15276 M:      Mark Brown <[email protected]>
15277 L:      [email protected]
15278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
15279 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
15280 S:      Maintained
15281 F:      Documentation/devicetree/bindings/spi/
15282 F:      Documentation/spi/
15283 F:      drivers/spi/
15284 F:      include/linux/spi/
15285 F:      include/uapi/linux/spi/
15286 F:      tools/spi/
15287
15288 SPIDERNET NETWORK DRIVER for CELL
15289 M:      Ishizaki Kou <[email protected]>
15290 L:      [email protected]
15291 S:      Supported
15292 F:      Documentation/networking/device_drivers/toshiba/spider_net.txt
15293 F:      drivers/net/ethernet/toshiba/spider_net*
15294
15295 SPMI SUBSYSTEM
15296 R:      Stephen Boyd <[email protected]>
15297 L:      [email protected]
15298 F:      Documentation/devicetree/bindings/spmi/
15299 F:      drivers/spmi/
15300 F:      include/dt-bindings/spmi/spmi.h
15301 F:      include/linux/spmi.h
15302 F:      include/trace/events/spmi.h
15303
15304 SPU FILE SYSTEM
15305 M:      Jeremy Kerr <[email protected]>
15306 L:      [email protected]
15307 W:      http://www.ibm.com/developerworks/power/cell/
15308 S:      Supported
15309 F:      Documentation/filesystems/spufs.txt
15310 F:      arch/powerpc/platforms/cell/spufs/
15311
15312 SQUASHFS FILE SYSTEM
15313 M:      Phillip Lougher <[email protected]>
15314 L:      [email protected] (subscribers-only)
15315 W:      http://squashfs.org.uk
15316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
15317 S:      Maintained
15318 F:      Documentation/filesystems/squashfs.txt
15319 F:      fs/squashfs/
15320
15321 SRM (Alpha) environment access
15322 M:      Jan-Benedict Glaw <[email protected]>
15323 S:      Maintained
15324 F:      arch/alpha/kernel/srm_env.c
15325
15326 ST LSM6DSx IMU IIO DRIVER
15327 M:      Lorenzo Bianconi <[email protected]>
15328 L:      [email protected]
15329 W:      http://www.st.com/
15330 S:      Maintained
15331 F:      drivers/iio/imu/st_lsm6dsx/
15332 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
15333
15334 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
15335 M:      Mickael Guene <[email protected]>
15336 L:      [email protected]
15337 T:      git git://linuxtv.org/media_tree.git
15338 S:      Maintained
15339 F:      drivers/media/i2c/st-mipid02.c
15340 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
15341
15342 ST STM32 I2C/SMBUS DRIVER
15343 M:      Pierre-Yves MORDRET <[email protected]>
15344 L:      [email protected]
15345 S:      Maintained
15346 F:      drivers/i2c/busses/i2c-stm32*
15347
15348 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
15349 M:      Song Qiang <[email protected]>
15350 L:      [email protected]
15351 S:      Maintained
15352 F:      drivers/iio/proximity/vl53l0x-i2c.c
15353 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
15354
15355 STABLE BRANCH
15356 M:      Greg Kroah-Hartman <[email protected]>
15357 M:      Sasha Levin <[email protected]>
15358 L:      [email protected]
15359 S:      Supported
15360 F:      Documentation/process/stable-kernel-rules.rst
15361
15362 STAGING - COMEDI
15363 M:      Ian Abbott <[email protected]>
15364 M:      H Hartley Sweeten <[email protected]>
15365 S:      Odd Fixes
15366 F:      drivers/staging/comedi/
15367
15368 STAGING - FIELDBUS SUBSYSTEM
15369 M:      Sven Van Asbroeck <[email protected]>
15370 S:      Maintained
15371 F:      drivers/staging/fieldbus/*
15372 F:      drivers/staging/fieldbus/Documentation/
15373
15374 STAGING - HMS ANYBUS-S BUS
15375 M:      Sven Van Asbroeck <[email protected]>
15376 S:      Maintained
15377 F:      drivers/staging/fieldbus/anybuss/
15378
15379 STAGING - INDUSTRIAL IO
15380 M:      Jonathan Cameron <[email protected]>
15381 L:      [email protected]
15382 S:      Odd Fixes
15383 F:      Documentation/devicetree/bindings/staging/iio/
15384 F:      drivers/staging/iio/
15385
15386 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
15387 M:      Marc Dietrich <[email protected]>
15388 L:      [email protected] (moderated for non-subscribers)
15389 L:      [email protected]
15390 S:      Maintained
15391 F:      drivers/staging/nvec/
15392
15393 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
15394 M:      Jens Frederich <[email protected]>
15395 M:      Daniel Drake <[email protected]>
15396 M:      Jon Nettleton <[email protected]>
15397 W:      http://wiki.laptop.org/go/DCON
15398 S:      Maintained
15399 F:      drivers/staging/olpc_dcon/
15400
15401 STAGING - REALTEK RTL8712U DRIVERS
15402 M:      Larry Finger <[email protected]>
15403 M:      Florian Schilhabel <[email protected]>.
15404 S:      Odd Fixes
15405 F:      drivers/staging/rtl8712/
15406
15407 STAGING - REALTEK RTL8188EU DRIVERS
15408 M:      Larry Finger <[email protected]>
15409 S:      Odd Fixes
15410 F:      drivers/staging/rtl8188eu/
15411
15412 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
15413 M:      Sudip Mukherjee <[email protected]>
15414 M:      Teddy Wang <[email protected]>
15415 M:      Sudip Mukherjee <[email protected]>
15416 L:      [email protected]
15417 S:      Maintained
15418 F:      drivers/staging/sm750fb/
15419
15420 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
15421 M:      William Hubbs <[email protected]>
15422 M:      Chris Brannon <[email protected]>
15423 M:      Kirk Reiser <[email protected]>
15424 M:      Samuel Thibault <[email protected]>
15425 L:      [email protected]
15426 W:      http://www.linux-speakup.org/
15427 S:      Odd Fixes
15428 F:      drivers/staging/speakup/
15429
15430 STAGING - VIA VT665X DRIVERS
15431 M:      Forest Bond <[email protected]>
15432 S:      Odd Fixes
15433 F:      drivers/staging/vt665?/
15434
15435 STAGING - WILC1000 WIFI DRIVER
15436 M:      Adham Abozaeid <[email protected]>
15437 M:      Ajay Singh <[email protected]>
15438 L:      [email protected]
15439 S:      Supported
15440 F:      drivers/staging/wilc1000/
15441
15442 STAGING SUBSYSTEM
15443 M:      Greg Kroah-Hartman <[email protected]>
15444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
15445 L:      [email protected]
15446 S:      Supported
15447 F:      drivers/staging/
15448
15449 STARFIRE/DURALAN NETWORK DRIVER
15450 M:      Ion Badulescu <[email protected]>
15451 S:      Odd Fixes
15452 F:      drivers/net/ethernet/adaptec/starfire*
15453
15454 STEC S1220 SKD DRIVER
15455 M:      Damien Le Moal <[email protected]>
15456 L:      [email protected]
15457 S:      Maintained
15458 F:      drivers/block/skd*[ch]
15459
15460 STI AUDIO (ASoC) DRIVERS
15461 M:      Arnaud Pouliquen <[email protected]>
15462 L:      [email protected] (moderated for non-subscribers)
15463 S:      Maintained
15464 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
15465 F:      sound/soc/sti/
15466
15467 STI CEC DRIVER
15468 M:      Benjamin Gaignard <[email protected]>
15469 S:      Maintained
15470 F:      drivers/media/platform/sti/cec/
15471 F:      Documentation/devicetree/bindings/media/stih-cec.txt
15472
15473 STK1160 USB VIDEO CAPTURE DRIVER
15474 M:      Ezequiel Garcia <[email protected]>
15475 L:      [email protected]
15476 T:      git git://linuxtv.org/media_tree.git
15477 S:      Maintained
15478 F:      drivers/media/usb/stk1160/
15479
15480 STM32 AUDIO (ASoC) DRIVERS
15481 M:      Olivier Moysan <[email protected]>
15482 M:      Arnaud Pouliquen <[email protected]>
15483 L:      [email protected] (moderated for non-subscribers)
15484 S:      Maintained
15485 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
15486 F:      sound/soc/stm/
15487
15488 STM32 TIMER/LPTIMER DRIVERS
15489 M:      Fabrice Gasnier <[email protected]>
15490 S:      Maintained
15491 F:      drivers/*/stm32-*timer*
15492 F:      drivers/pwm/pwm-stm32*
15493 F:      include/linux/*/stm32-*tim*
15494 F:      Documentation/ABI/testing/*timer-stm32
15495 F:      Documentation/devicetree/bindings/*/stm32-*timer*
15496 F:      Documentation/devicetree/bindings/pwm/pwm-stm32*
15497
15498 STMMAC ETHERNET DRIVER
15499 M:      Giuseppe Cavallaro <[email protected]>
15500 M:      Alexandre Torgue <[email protected]>
15501 M:      Jose Abreu <[email protected]>
15502 L:      [email protected]
15503 W:      http://www.stlinux.com
15504 S:      Supported
15505 F:      drivers/net/ethernet/stmicro/stmmac/
15506
15507 SUN3/3X
15508 M:      Sam Creasey <[email protected]>
15509 W:      http://sammy.net/sun3/
15510 S:      Maintained
15511 F:      arch/m68k/kernel/*sun3*
15512 F:      arch/m68k/sun3*/
15513 F:      arch/m68k/include/asm/sun3*
15514 F:      drivers/net/ethernet/i825xx/sun3*
15515
15516 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
15517 M:      Hans de Goede <[email protected]>
15518 L:      [email protected]
15519 S:      Maintained
15520 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
15521 F:      drivers/input/keyboard/sun4i-lradc-keys.c
15522
15523 SUNDANCE NETWORK DRIVER
15524 M:      Denis Kirjanov <[email protected]>
15525 L:      [email protected]
15526 S:      Maintained
15527 F:      drivers/net/ethernet/dlink/sundance.c
15528
15529 SUPERH
15530 M:      Yoshinori Sato <[email protected]>
15531 M:      Rich Felker <[email protected]>
15532 L:      [email protected]
15533 Q:      http://patchwork.kernel.org/project/linux-sh/list/
15534 S:      Maintained
15535 F:      Documentation/sh/
15536 F:      arch/sh/
15537 F:      drivers/sh/
15538
15539 SUSPEND TO RAM
15540 M:      "Rafael J. Wysocki" <[email protected]>
15541 M:      Len Brown <[email protected]>
15542 M:      Pavel Machek <[email protected]>
15543 L:      [email protected]
15544 B:      https://bugzilla.kernel.org
15545 S:      Supported
15546 F:      Documentation/power/
15547 F:      arch/x86/kernel/acpi/
15548 F:      drivers/base/power/
15549 F:      kernel/power/
15550 F:      include/linux/suspend.h
15551 F:      include/linux/freezer.h
15552 F:      include/linux/pm.h
15553
15554 SVGA HANDLING
15555 M:      Martin Mares <[email protected]>
15556 L:      [email protected]
15557 S:      Maintained
15558 F:      Documentation/admin-guide/svga.rst
15559 F:      arch/x86/boot/video*
15560
15561 SWIOTLB SUBSYSTEM
15562 M:      Konrad Rzeszutek Wilk <[email protected]>
15563 L:      [email protected]
15564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
15565 S:      Supported
15566 F:      kernel/dma/swiotlb.c
15567 F:      arch/*/kernel/pci-swiotlb.c
15568 F:      include/linux/swiotlb.h
15569
15570 SWITCHDEV
15571 M:      Jiri Pirko <[email protected]>
15572 M:      Ivan Vecera <[email protected]>
15573 L:      [email protected]
15574 S:      Supported
15575 F:      net/switchdev/
15576 F:      include/net/switchdev.h
15577
15578 SY8106A REGULATOR DRIVER
15579 M:      Icenowy Zheng <[email protected]>
15580 S:      Maintained
15581 F:      drivers/regulator/sy8106a-regulator.c
15582 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
15583
15584 SYNC FILE FRAMEWORK
15585 M:      Sumit Semwal <[email protected]>
15586 R:      Gustavo Padovan <[email protected]>
15587 S:      Maintained
15588 L:      [email protected]
15589 L:      [email protected]
15590 F:      drivers/dma-buf/sync_*
15591 F:      drivers/dma-buf/dma-fence*
15592 F:      drivers/dma-buf/sw_sync.c
15593 F:      include/linux/sync_file.h
15594 F:      include/uapi/linux/sync_file.h
15595 F:      Documentation/driver-api/sync_file.rst
15596 T:      git git://anongit.freedesktop.org/drm/drm-misc
15597
15598 SYNOPSYS ARC ARCHITECTURE
15599 M:      Vineet Gupta <[email protected]>
15600 L:      [email protected]
15601 S:      Supported
15602 F:      arch/arc/
15603 F:      Documentation/devicetree/bindings/arc/*
15604 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
15605 F:      drivers/clocksource/arc_timer.c
15606 F:      drivers/tty/serial/arc_uart.c
15607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
15608
15609 SYNOPSYS ARC HSDK SDP pll clock driver
15610 M:      Eugeniy Paltsev <[email protected]>
15611 S:      Supported
15612 F:      drivers/clk/clk-hsdk-pll.c
15613 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
15614
15615 SYNOPSYS ARC SDP clock driver
15616 M:      Eugeniy Paltsev <[email protected]>
15617 S:      Supported
15618 F:      drivers/clk/axs10x/*
15619 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
15620
15621 SYNOPSYS ARC SDP platform support
15622 M:      Alexey Brodkin <[email protected]>
15623 S:      Supported
15624 F:      arch/arc/plat-axs10x
15625 F:      arch/arc/boot/dts/ax*
15626 F:      Documentation/devicetree/bindings/arc/axs10*
15627
15628 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
15629 M:      Eugeniy Paltsev <[email protected]>
15630 S:      Supported
15631 F:      drivers/reset/reset-axs10x.c
15632 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
15633
15634 SYNOPSYS CREG GPIO DRIVER
15635 M:      Eugeniy Paltsev <[email protected]>
15636 S:      Maintained
15637 F:      drivers/gpio/gpio-creg-snps.c
15638 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
15639
15640 SYNOPSYS DESIGNWARE 8250 UART DRIVER
15641 R:      Andy Shevchenko <[email protected]>
15642 S:      Maintained
15643 F:      drivers/tty/serial/8250/8250_dw.c
15644
15645 SYNOPSYS DESIGNWARE APB GPIO DRIVER
15646 M:      Hoan Tran <[email protected]>
15647 L:      [email protected]
15648 S:      Maintained
15649 F:      drivers/gpio/gpio-dwapb.c
15650 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
15651
15652 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
15653 M:      Eugeniy Paltsev <[email protected]>
15654 S:      Maintained
15655 F:      drivers/dma/dw-axi-dmac/
15656 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
15657
15658 SYNOPSYS DESIGNWARE DMAC DRIVER
15659 M:      Viresh Kumar <[email protected]>
15660 R:      Andy Shevchenko <[email protected]>
15661 S:      Maintained
15662 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
15663 F:      drivers/dma/dw/
15664 F:      include/dt-bindings/dma/dw-dmac.h
15665 F:      include/linux/dma/dw.h
15666 F:      include/linux/platform_data/dma-dw.h
15667
15668 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
15669 M:      Jose Abreu <[email protected]>
15670 L:      [email protected]
15671 S:      Supported
15672 F:      drivers/net/ethernet/synopsys/
15673
15674 SYNOPSYS DESIGNWARE I2C DRIVER
15675 M:      Jarkko Nikula <[email protected]>
15676 R:      Andy Shevchenko <[email protected]>
15677 R:      Mika Westerberg <[email protected]>
15678 L:      [email protected]
15679 S:      Maintained
15680 F:      drivers/i2c/busses/i2c-designware-*
15681 F:      include/linux/platform_data/i2c-designware.h
15682
15683 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
15684 M:      Jaehoon Chung <[email protected]>
15685 L:      [email protected]
15686 S:      Maintained
15687 F:      drivers/mmc/host/dw_mmc*
15688
15689 SYNOPSYS HSDK RESET CONTROLLER DRIVER
15690 M:      Eugeniy Paltsev <[email protected]>
15691 S:      Supported
15692 F:      drivers/reset/reset-hsdk.c
15693 F:      include/dt-bindings/reset/snps,hsdk-reset.h
15694 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
15695
15696 SYSTEM CONFIGURATION (SYSCON)
15697 M:      Lee Jones <[email protected]>
15698 M:      Arnd Bergmann <[email protected]>
15699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
15700 S:      Supported
15701 F:      drivers/mfd/syscon.c
15702
15703 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
15704 M:      Sudeep Holla <[email protected]>
15705 L:      [email protected]
15706 S:      Maintained
15707 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
15708 F:      drivers/clk/clk-sc[mp]i.c
15709 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
15710 F:      drivers/firmware/arm_scpi.c
15711 F:      drivers/firmware/arm_scmi/
15712 F:      drivers/reset/reset-scmi.c
15713 F:      include/linux/sc[mp]i_protocol.h
15714
15715 SYSTEM RESET/SHUTDOWN DRIVERS
15716 M:      Sebastian Reichel <[email protected]>
15717 L:      [email protected]
15718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15719 S:      Maintained
15720 F:      Documentation/devicetree/bindings/power/reset/
15721 F:      drivers/power/reset/
15722
15723 SYSTEM TRACE MODULE CLASS
15724 M:      Alexander Shishkin <[email protected]>
15725 S:      Maintained
15726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
15727 F:      Documentation/trace/stm.rst
15728 F:      drivers/hwtracing/stm/
15729 F:      include/linux/stm.h
15730 F:      include/uapi/linux/stm.h
15731
15732 SYSV FILESYSTEM
15733 M:      Christoph Hellwig <[email protected]>
15734 S:      Maintained
15735 F:      Documentation/filesystems/sysv-fs.txt
15736 F:      fs/sysv/
15737 F:      include/linux/sysv_fs.h
15738
15739 TASKSTATS STATISTICS INTERFACE
15740 M:      Balbir Singh <[email protected]>
15741 S:      Maintained
15742 F:      Documentation/accounting/taskstats*
15743 F:      include/linux/taskstats*
15744 F:      kernel/taskstats.c
15745
15746 TC subsystem
15747 M:      Jamal Hadi Salim <[email protected]>
15748 M:      Cong Wang <[email protected]>
15749 M:      Jiri Pirko <[email protected]>
15750 L:      [email protected]
15751 S:      Maintained
15752 F:      include/net/pkt_cls.h
15753 F:      include/net/pkt_sched.h
15754 F:      include/net/tc_act/
15755 F:      include/uapi/linux/pkt_cls.h
15756 F:      include/uapi/linux/pkt_sched.h
15757 F:      include/uapi/linux/tc_act/
15758 F:      include/uapi/linux/tc_ematch/
15759 F:      net/sched/
15760
15761 TC90522 MEDIA DRIVER
15762 M:      Akihiro Tsukada <[email protected]>
15763 L:      [email protected]
15764 S:      Odd Fixes
15765 F:      drivers/media/dvb-frontends/tc90522*
15766
15767 TCP LOW PRIORITY MODULE
15768 M:      "Wong Hoi Sing, Edison" <[email protected]>
15769 M:      "Hung Hing Lun, Mike" <[email protected]>
15770 W:      http://tcp-lp-mod.sourceforge.net/
15771 S:      Maintained
15772 F:      net/ipv4/tcp_lp.c
15773
15774 TDA10071 MEDIA DRIVER
15775 M:      Antti Palosaari <[email protected]>
15776 L:      [email protected]
15777 W:      https://linuxtv.org
15778 W:      http://palosaari.fi/linux/
15779 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15780 T:      git git://linuxtv.org/anttip/media_tree.git
15781 S:      Maintained
15782 F:      drivers/media/dvb-frontends/tda10071*
15783
15784 TDA18212 MEDIA DRIVER
15785 M:      Antti Palosaari <[email protected]>
15786 L:      [email protected]
15787 W:      https://linuxtv.org
15788 W:      http://palosaari.fi/linux/
15789 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15790 T:      git git://linuxtv.org/anttip/media_tree.git
15791 S:      Maintained
15792 F:      drivers/media/tuners/tda18212*
15793
15794 TDA18218 MEDIA DRIVER
15795 M:      Antti Palosaari <[email protected]>
15796 L:      [email protected]
15797 W:      https://linuxtv.org
15798 W:      http://palosaari.fi/linux/
15799 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15800 T:      git git://linuxtv.org/anttip/media_tree.git
15801 S:      Maintained
15802 F:      drivers/media/tuners/tda18218*
15803
15804 TDA18250 MEDIA DRIVER
15805 M:      Olli Salonen <[email protected]>
15806 L:      [email protected]
15807 W:      https://linuxtv.org
15808 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15809 T:      git git://linuxtv.org/media_tree.git
15810 S:      Maintained
15811 F:      drivers/media/tuners/tda18250*
15812
15813 TDA18271 MEDIA DRIVER
15814 M:      Michael Krufky <[email protected]>
15815 L:      [email protected]
15816 W:      https://linuxtv.org
15817 W:      http://github.com/mkrufky
15818 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15819 T:      git git://linuxtv.org/mkrufky/tuners.git
15820 S:      Maintained
15821 F:      drivers/media/tuners/tda18271*
15822
15823 TDA1997x MEDIA DRIVER
15824 M:      Tim Harvey <[email protected]>
15825 L:      [email protected]
15826 W:      https://linuxtv.org
15827 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15828 S:      Maintained
15829 F:      drivers/media/i2c/tda1997x.*
15830
15831 TDA827x MEDIA DRIVER
15832 M:      Michael Krufky <[email protected]>
15833 L:      [email protected]
15834 W:      https://linuxtv.org
15835 W:      http://github.com/mkrufky
15836 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15837 T:      git git://linuxtv.org/mkrufky/tuners.git
15838 S:      Maintained
15839 F:      drivers/media/tuners/tda8290.*
15840
15841 TDA8290 MEDIA DRIVER
15842 M:      Michael Krufky <[email protected]>
15843 L:      [email protected]
15844 W:      https://linuxtv.org
15845 W:      http://github.com/mkrufky
15846 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15847 T:      git git://linuxtv.org/mkrufky/tuners.git
15848 S:      Maintained
15849 F:      drivers/media/tuners/tda8290.*
15850
15851 TDA9840 MEDIA DRIVER
15852 M:      Hans Verkuil <[email protected]>
15853 L:      [email protected]
15854 T:      git git://linuxtv.org/media_tree.git
15855 W:      https://linuxtv.org
15856 S:      Maintained
15857 F:      drivers/media/i2c/tda9840*
15858
15859 TEA5761 TUNER DRIVER
15860 M:      Mauro Carvalho Chehab <[email protected]>
15861 L:      [email protected]
15862 W:      https://linuxtv.org
15863 T:      git git://linuxtv.org/media_tree.git
15864 S:      Odd fixes
15865 F:      drivers/media/tuners/tea5761.*
15866
15867 TEA5767 TUNER DRIVER
15868 M:      Mauro Carvalho Chehab <[email protected]>
15869 L:      [email protected]
15870 W:      https://linuxtv.org
15871 T:      git git://linuxtv.org/media_tree.git
15872 S:      Maintained
15873 F:      drivers/media/tuners/tea5767.*
15874
15875 TEA6415C MEDIA DRIVER
15876 M:      Hans Verkuil <[email protected]>
15877 L:      [email protected]
15878 T:      git git://linuxtv.org/media_tree.git
15879 W:      https://linuxtv.org
15880 S:      Maintained
15881 F:      drivers/media/i2c/tea6415c*
15882
15883 TEA6420 MEDIA DRIVER
15884 M:      Hans Verkuil <[email protected]>
15885 L:      [email protected]
15886 T:      git git://linuxtv.org/media_tree.git
15887 W:      https://linuxtv.org
15888 S:      Maintained
15889 F:      drivers/media/i2c/tea6420*
15890
15891 TEAM DRIVER
15892 M:      Jiri Pirko <[email protected]>
15893 L:      [email protected]
15894 S:      Supported
15895 F:      drivers/net/team/
15896 F:      include/linux/if_team.h
15897 F:      include/uapi/linux/if_team.h
15898
15899 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
15900 M:      "Savoir-faire Linux Inc." <[email protected]>
15901 S:      Maintained
15902 F:      arch/x86/platform/ts5500/
15903
15904 TECHNOTREND USB IR RECEIVER
15905 M:      Sean Young <[email protected]>
15906 L:      [email protected]
15907 S:      Maintained
15908 F:      drivers/media/rc/ttusbir.c
15909
15910 TECHWELL TW9910 VIDEO DECODER
15911 L:      [email protected]
15912 S:      Orphan
15913 F:      drivers/media/i2c/tw9910.c
15914 F:      include/media/i2c/tw9910.h
15915
15916 TEE SUBSYSTEM
15917 M:      Jens Wiklander <[email protected]>
15918 L:      [email protected]
15919 S:      Maintained
15920 F:      include/linux/tee_drv.h
15921 F:      include/uapi/linux/tee.h
15922 F:      drivers/tee/
15923 F:      Documentation/tee.txt
15924
15925 TEGRA ARCHITECTURE SUPPORT
15926 M:      Thierry Reding <[email protected]>
15927 M:      Jonathan Hunter <[email protected]>
15928 L:      [email protected]
15929 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
15930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
15931 S:      Supported
15932 N:      [^a-z]tegra
15933
15934 TEGRA CLOCK DRIVER
15935 M:      Peter De Schrijver <[email protected]>
15936 M:      Prashant Gaikwad <[email protected]>
15937 S:      Supported
15938 F:      drivers/clk/tegra/
15939
15940 TEGRA DMA DRIVERS
15941 M:      Laxman Dewangan <[email protected]>
15942 M:      Jon Hunter <[email protected]>
15943 S:      Supported
15944 F:      drivers/dma/tegra*
15945
15946 TEGRA I2C DRIVER
15947 M:      Laxman Dewangan <[email protected]>
15948 R:      Dmitry Osipenko <[email protected]>
15949 S:      Supported
15950 F:      drivers/i2c/busses/i2c-tegra.c
15951
15952 TEGRA IOMMU DRIVERS
15953 M:      Thierry Reding <[email protected]>
15954 L:      [email protected]
15955 S:      Supported
15956 F:      drivers/iommu/tegra*
15957
15958 TEGRA KBC DRIVER
15959 M:      Laxman Dewangan <[email protected]>
15960 S:      Supported
15961 F:      drivers/input/keyboard/tegra-kbc.c
15962
15963 TEGRA NAND DRIVER
15964 M:      Stefan Agner <[email protected]>
15965 M:      Lucas Stach <[email protected]>
15966 S:      Maintained
15967 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
15968 F:      drivers/mtd/nand/raw/tegra_nand.c
15969
15970 TEGRA PWM DRIVER
15971 M:      Thierry Reding <[email protected]>
15972 S:      Supported
15973 F:      drivers/pwm/pwm-tegra.c
15974
15975 TEGRA SERIAL DRIVER
15976 M:      Laxman Dewangan <[email protected]>
15977 S:      Supported
15978 F:      drivers/tty/serial/serial-tegra.c
15979
15980 TEGRA SPI DRIVER
15981 M:      Laxman Dewangan <[email protected]>
15982 S:      Supported
15983 F:      drivers/spi/spi-tegra*
15984
15985 TEGRA XUSB PADCTL DRIVER
15986 M:      JC Kuo <[email protected]>
15987 S:      Supported
15988 F:      drivers/phy/tegra/xusb*
15989
15990 TEHUTI ETHERNET DRIVER
15991 M:      Andy Gospodarek <[email protected]>
15992 L:      [email protected]
15993 S:      Supported
15994 F:      drivers/net/ethernet/tehuti/*
15995
15996 Telecom Clock Driver for MCPL0010
15997 M:      Mark Gross <[email protected]>
15998 S:      Supported
15999 F:      drivers/char/tlclk.c
16000
16001 TENSILICA XTENSA PORT (xtensa)
16002 M:      Chris Zankel <[email protected]>
16003 M:      Max Filippov <[email protected]>
16004 L:      [email protected]
16005 T:      git git://github.com/czankel/xtensa-linux.git
16006 S:      Maintained
16007 F:      arch/xtensa/
16008 F:      drivers/irqchip/irq-xtensa-*
16009
16010 Texas Instruments' System Control Interface (TISCI) Protocol Driver
16011 M:      Nishanth Menon <[email protected]>
16012 M:      Tero Kristo <[email protected]>
16013 M:      Santosh Shilimkar <[email protected]>
16014 L:      [email protected]
16015 S:      Maintained
16016 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16017 F:      drivers/firmware/ti_sci*
16018 F:      include/linux/soc/ti/ti_sci_protocol.h
16019 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16020 F:      drivers/soc/ti/ti_sci_pm_domains.c
16021 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16022 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16023 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16024 F:      drivers/clk/keystone/sci-clk.c
16025 F:      drivers/reset/reset-ti-sci.c
16026 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16027 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16028 F:      drivers/irqchip/irq-ti-sci-intr.c
16029 F:      drivers/irqchip/irq-ti-sci-inta.c
16030 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16031 F:      drivers/soc/ti/ti_sci_inta_msi.c
16032
16033 Texas Instruments ASoC drivers
16034 M:      Peter Ujfalusi <[email protected]>
16035 L:      [email protected] (moderated for non-subscribers)
16036 S:      Maintained
16037 F:      sound/soc/ti/
16038
16039 Texas Instruments' DAC7612 DAC Driver
16040 M:      Ricardo Ribalda <[email protected]>
16041 L:      [email protected]
16042 S:      Supported
16043 F:      drivers/iio/dac/ti-dac7612.c
16044 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16045
16046 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16047 M:      Hans Verkuil <[email protected]>
16048 L:      [email protected]
16049 T:      git git://linuxtv.org/media_tree.git
16050 W:      https://linuxtv.org
16051 S:      Maintained
16052 F:      drivers/media/radio/radio-raremono.c
16053
16054 THERMAL
16055 M:      Zhang Rui <[email protected]>
16056 M:      Eduardo Valentin <[email protected]>
16057 R:      Daniel Lezcano <[email protected]>
16058 L:      [email protected]
16059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
16060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
16061 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16062 S:      Supported
16063 F:      drivers/thermal/
16064 F:      include/linux/thermal.h
16065 F:      include/uapi/linux/thermal.h
16066 F:      include/linux/cpu_cooling.h
16067 F:      Documentation/devicetree/bindings/thermal/
16068
16069 THERMAL/CPU_COOLING
16070 M:      Amit Daniel Kachhap <[email protected]>
16071 M:      Viresh Kumar <[email protected]>
16072 M:      Javi Merino <[email protected]>
16073 L:      [email protected]
16074 S:      Supported
16075 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16076 F:      drivers/thermal/cpu_cooling.c
16077 F:      include/linux/cpu_cooling.h
16078
16079 THINKPAD ACPI EXTRAS DRIVER
16080 M:      Henrique de Moraes Holschuh <[email protected]>
16081 L:      [email protected]
16082 L:      [email protected]
16083 W:      http://ibm-acpi.sourceforge.net
16084 W:      http://thinkwiki.org/wiki/Ibm-acpi
16085 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16086 S:      Maintained
16087 F:      drivers/platform/x86/thinkpad_acpi.c
16088
16089 THUNDERBOLT DRIVER
16090 M:      Andreas Noever <[email protected]>
16091 M:      Michael Jamet <[email protected]>
16092 M:      Mika Westerberg <[email protected]>
16093 M:      Yehezkel Bernat <[email protected]>
16094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16095 S:      Maintained
16096 F:      Documentation/admin-guide/thunderbolt.rst
16097 F:      drivers/thunderbolt/
16098 F:      include/linux/thunderbolt.h
16099
16100 THUNDERBOLT NETWORK DRIVER
16101 M:      Michael Jamet <[email protected]>
16102 M:      Mika Westerberg <[email protected]>
16103 M:      Yehezkel Bernat <[email protected]>
16104 L:      [email protected]
16105 S:      Maintained
16106 F:      drivers/net/thunderbolt.c
16107
16108 THUNDERX GPIO DRIVER
16109 M:      David Daney <[email protected]>
16110 S:      Maintained
16111 F:      drivers/gpio/gpio-thunderx.c
16112
16113 TI AM437X VPFE DRIVER
16114 M:      "Lad, Prabhakar" <[email protected]>
16115 L:      [email protected]
16116 W:      https://linuxtv.org
16117 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16118 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16119 S:      Maintained
16120 F:      drivers/media/platform/am437x/
16121
16122 TI BANDGAP AND THERMAL DRIVER
16123 M:      Eduardo Valentin <[email protected]>
16124 M:      Keerthy <[email protected]>
16125 L:      [email protected]
16126 L:      [email protected]
16127 S:      Maintained
16128 F:      drivers/thermal/ti-soc-thermal/
16129
16130 TI BQ27XXX POWER SUPPLY DRIVER
16131 R:      Andrew F. Davis <[email protected]>
16132 F:      include/linux/power/bq27xxx_battery.h
16133 F:      drivers/power/supply/bq27xxx_battery.c
16134 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16135
16136 TI CDCE706 CLOCK DRIVER
16137 M:      Max Filippov <[email protected]>
16138 S:      Maintained
16139 F:      drivers/clk/clk-cdce706.c
16140
16141 TI CLOCK DRIVER
16142 M:      Tero Kristo <[email protected]>
16143 L:      [email protected]
16144 S:      Maintained
16145 F:      drivers/clk/ti/
16146 F:      include/linux/clk/ti.h
16147
16148 TI DAVINCI MACHINE SUPPORT
16149 M:      Sekhar Nori <[email protected]>
16150 R:      Bartosz Golaszewski <[email protected]>
16151 L:      [email protected] (moderated for non-subscribers)
16152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16153 S:      Supported
16154 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16155 F:      arch/arm/mach-davinci/
16156 F:      drivers/i2c/busses/i2c-davinci.c
16157 F:      arch/arm/boot/dts/da850*
16158
16159 TI DAVINCI SERIES CLOCK DRIVER
16160 M:      David Lechner <[email protected]>
16161 R:      Sekhar Nori <[email protected]>
16162 S:      Maintained
16163 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16164 F:      drivers/clk/davinci/
16165
16166 TI DAVINCI SERIES GPIO DRIVER
16167 M:      Keerthy <[email protected]>
16168 L:      [email protected]
16169 S:      Maintained
16170 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16171 F:      drivers/gpio/gpio-davinci.c
16172
16173 TI DAVINCI SERIES MEDIA DRIVER
16174 M:      "Lad, Prabhakar" <[email protected]>
16175 L:      [email protected]
16176 W:      https://linuxtv.org
16177 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16178 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16179 S:      Maintained
16180 F:      drivers/media/platform/davinci/
16181 F:      include/media/davinci/
16182
16183 TI ETHERNET SWITCH DRIVER (CPSW)
16184 R:      Grygorii Strashko <[email protected]>
16185 L:      [email protected]
16186 L:      [email protected]
16187 S:      Maintained
16188 F:      drivers/net/ethernet/ti/cpsw*
16189 F:      drivers/net/ethernet/ti/davinci*
16190
16191 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
16192 M:      Alex Dubov <[email protected]>
16193 S:      Maintained
16194 W:      http://tifmxx.berlios.de/
16195 F:      drivers/memstick/host/tifm_ms.c
16196 F:      drivers/misc/tifm*
16197 F:      drivers/mmc/host/tifm_sd.c
16198 F:      include/linux/tifm.h
16199
16200 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
16201 M:      Santosh Shilimkar <[email protected]>
16202 L:      [email protected]
16203 L:      [email protected] (moderated for non-subscribers)
16204 S:      Maintained
16205 F:      drivers/soc/ti/*
16206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
16207
16208 TI LM49xxx FAMILY ASoC CODEC DRIVERS
16209 M:      M R Swami Reddy <[email protected]>
16210 M:      Vishwas A Deshpande <[email protected]>
16211 L:      [email protected] (moderated for non-subscribers)
16212 S:      Maintained
16213 F:      sound/soc/codecs/lm49453*
16214 F:      sound/soc/codecs/isabelle*
16215
16216 TI LP855x BACKLIGHT DRIVER
16217 M:      Milo Kim <[email protected]>
16218 S:      Maintained
16219 F:      Documentation/driver-api/backlight/lp855x-driver.rst
16220 F:      drivers/video/backlight/lp855x_bl.c
16221 F:      include/linux/platform_data/lp855x.h
16222
16223 TI LP8727 CHARGER DRIVER
16224 M:      Milo Kim <[email protected]>
16225 S:      Maintained
16226 F:      drivers/power/supply/lp8727_charger.c
16227 F:      include/linux/platform_data/lp8727.h
16228
16229 TI LP8788 MFD DRIVER
16230 M:      Milo Kim <[email protected]>
16231 S:      Maintained
16232 F:      drivers/iio/adc/lp8788_adc.c
16233 F:      drivers/leds/leds-lp8788.c
16234 F:      drivers/mfd/lp8788*.c
16235 F:      drivers/power/supply/lp8788-charger.c
16236 F:      drivers/regulator/lp8788-*.c
16237 F:      include/linux/mfd/lp8788*.h
16238
16239 TI NETCP ETHERNET DRIVER
16240 M:      Wingman Kwok <[email protected]>
16241 M:      Murali Karicheri <[email protected]>
16242 L:      [email protected]
16243 S:      Maintained
16244 F:      drivers/net/ethernet/ti/netcp*
16245
16246 TI PCM3060 ASoC CODEC DRIVER
16247 M:      Kirill Marinushkin <[email protected]>
16248 L:      [email protected] (moderated for non-subscribers)
16249 S:      Maintained
16250 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
16251 F:      sound/soc/codecs/pcm3060*
16252
16253 TI TAS571X FAMILY ASoC CODEC DRIVER
16254 M:      Kevin Cernekee <[email protected]>
16255 L:      [email protected] (moderated for non-subscribers)
16256 S:      Odd Fixes
16257 F:      sound/soc/codecs/tas571x*
16258
16259 TI TRF7970A NFC DRIVER
16260 M:      Mark Greer <[email protected]>
16261 L:      [email protected]
16262 L:      [email protected] (moderated for non-subscribers)
16263 S:      Supported
16264 F:      drivers/nfc/trf7970a.c
16265 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
16266
16267 TI TWL4030 SERIES SOC CODEC DRIVER
16268 M:      Peter Ujfalusi <[email protected]>
16269 L:      [email protected] (moderated for non-subscribers)
16270 S:      Maintained
16271 F:      sound/soc/codecs/twl4030*
16272
16273 TI VPE/CAL DRIVERS
16274 M:      Benoit Parrot <[email protected]>
16275 L:      [email protected]
16276 W:      http://linuxtv.org/
16277 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16278 S:      Maintained
16279 F:      drivers/media/platform/ti-vpe/
16280
16281 TI WILINK WIRELESS DRIVERS
16282 L:      [email protected]
16283 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
16284 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
16285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
16286 S:      Orphan
16287 F:      drivers/net/wireless/ti/
16288 F:      include/linux/wl12xx.h
16289
16290 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
16291 M:      John Stultz <[email protected]>
16292 M:      Thomas Gleixner <[email protected]>
16293 R:      Stephen Boyd <[email protected]>
16294 L:      [email protected]
16295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16296 S:      Supported
16297 F:      include/linux/clocksource.h
16298 F:      include/linux/time.h
16299 F:      include/linux/timex.h
16300 F:      include/uapi/linux/time.h
16301 F:      include/uapi/linux/timex.h
16302 F:      kernel/time/clocksource.c
16303 F:      kernel/time/time*.c
16304 F:      kernel/time/alarmtimer.c
16305 F:      kernel/time/ntp.c
16306 F:      tools/testing/selftests/timers/
16307
16308 TIPC NETWORK LAYER
16309 M:      Jon Maloy <[email protected]>
16310 M:      Ying Xue <[email protected]>
16311 L:      [email protected] (core kernel code)
16312 L:      [email protected] (user apps, general discussion)
16313 W:      http://tipc.sourceforge.net/
16314 S:      Maintained
16315 F:      include/uapi/linux/tipc*.h
16316 F:      net/tipc/
16317
16318 TLAN NETWORK DRIVER
16319 M:      Samuel Chessman <[email protected]>
16320 L:      [email protected] (subscribers-only)
16321 W:      http://sourceforge.net/projects/tlan/
16322 S:      Maintained
16323 F:      Documentation/networking/device_drivers/ti/tlan.txt
16324 F:      drivers/net/ethernet/ti/tlan.*
16325
16326 TM6000 VIDEO4LINUX DRIVER
16327 M:      Mauro Carvalho Chehab <[email protected]>
16328 L:      [email protected]
16329 W:      https://linuxtv.org
16330 T:      git git://linuxtv.org/media_tree.git
16331 S:      Odd fixes
16332 F:      drivers/media/usb/tm6000/
16333 F:      Documentation/media/v4l-drivers/tm6000*
16334
16335 TMIO/SDHI MMC DRIVER
16336 M:      Wolfram Sang <[email protected]>
16337 L:      [email protected]
16338 S:      Supported
16339 F:      drivers/mmc/host/tmio_mmc*
16340 F:      drivers/mmc/host/renesas_sdhi*
16341 F:      include/linux/mfd/tmio.h
16342
16343 TMP401 HARDWARE MONITOR DRIVER
16344 M:      Guenter Roeck <[email protected]>
16345 L:      [email protected]
16346 S:      Maintained
16347 F:      Documentation/hwmon/tmp401.rst
16348 F:      drivers/hwmon/tmp401.c
16349
16350 TMPFS (SHMEM FILESYSTEM)
16351 M:      Hugh Dickins <[email protected]>
16352 L:      [email protected]
16353 S:      Maintained
16354 F:      include/linux/shmem_fs.h
16355 F:      mm/shmem.c
16356
16357 TOMOYO SECURITY MODULE
16358 M:      Kentaro Takeda <[email protected]>
16359 M:      Tetsuo Handa <[email protected]>
16360 L:      [email protected] (subscribers-only, for developers in English)
16361 L:      [email protected] (subscribers-only, for users in English)
16362 L:      [email protected] (subscribers-only, for developers in Japanese)
16363 L:      [email protected] (subscribers-only, for users in Japanese)
16364 W:      https://tomoyo.osdn.jp/
16365 S:      Maintained
16366 F:      security/tomoyo/
16367
16368 TOPSTAR LAPTOP EXTRAS DRIVER
16369 M:      Herton Ronaldo Krzesinski <[email protected]>
16370 L:      [email protected]
16371 S:      Maintained
16372 F:      drivers/platform/x86/topstar-laptop.c
16373
16374 TORTURE-TEST MODULES
16375 M:      Davidlohr Bueso <[email protected]>
16376 M:      "Paul E. McKenney" <[email protected]>
16377 M:      Josh Triplett <[email protected]>
16378 L:      [email protected]
16379 S:      Supported
16380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16381 F:      Documentation/RCU/torture.txt
16382 F:      kernel/torture.c
16383 F:      kernel/rcu/rcutorture.c
16384 F:      kernel/rcu/rcuperf.c
16385 F:      kernel/locking/locktorture.c
16386
16387 TOSHIBA ACPI EXTRAS DRIVER
16388 M:      Azael Avalos <[email protected]>
16389 L:      [email protected]
16390 S:      Maintained
16391 F:      drivers/platform/x86/toshiba_acpi.c
16392
16393 TOSHIBA BLUETOOTH DRIVER
16394 M:      Azael Avalos <[email protected]>
16395 L:      [email protected]
16396 S:      Maintained
16397 F:      drivers/platform/x86/toshiba_bluetooth.c
16398
16399 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
16400 M:      Azael Avalos <[email protected]>
16401 L:      [email protected]
16402 S:      Maintained
16403 F:      drivers/platform/x86/toshiba_haps.c
16404
16405 TOSHIBA SMM DRIVER
16406 M:      Jonathan Buzzard <[email protected]>
16407 W:      http://www.buzzard.org.uk/toshiba/
16408 S:      Maintained
16409 F:      drivers/char/toshiba.c
16410 F:      include/linux/toshiba.h
16411 F:      include/uapi/linux/toshiba.h
16412
16413 TOSHIBA TC358743 DRIVER
16414 M:      Mats Randgaard <[email protected]>
16415 L:      [email protected]
16416 S:      Maintained
16417 F:      drivers/media/i2c/tc358743*
16418 F:      include/media/i2c/tc358743.h
16419
16420 TOSHIBA WMI HOTKEYS DRIVER
16421 M:      Azael Avalos <[email protected]>
16422 L:      [email protected]
16423 S:      Maintained
16424 F:      drivers/platform/x86/toshiba-wmi.c
16425
16426 TPM DEVICE DRIVER
16427 M:      Peter Huewe <[email protected]>
16428 M:      Jarkko Sakkinen <[email protected]>
16429 R:      Jason Gunthorpe <[email protected]>
16430 L:      [email protected]
16431 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
16432 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
16433 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
16434 S:      Maintained
16435 F:      drivers/char/tpm/
16436
16437 TRACING
16438 M:      Steven Rostedt <[email protected]>
16439 M:      Ingo Molnar <[email protected]>
16440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16441 S:      Maintained
16442 F:      Documentation/trace/ftrace.rst
16443 F:      arch/*/*/*/ftrace.h
16444 F:      arch/*/kernel/ftrace.c
16445 F:      include/*/ftrace.h
16446 F:      include/linux/trace*.h
16447 F:      include/trace/
16448 F:      kernel/trace/
16449 F:      tools/testing/selftests/ftrace/
16450
16451 TRACING MMIO ACCESSES (MMIOTRACE)
16452 M:      Steven Rostedt <[email protected]>
16453 M:      Ingo Molnar <[email protected]>
16454 R:      Karol Herbst <[email protected]>
16455 R:      Pekka Paalanen <[email protected]>
16456 S:      Maintained
16457 L:      [email protected]
16458 L:      [email protected]
16459 F:      kernel/trace/trace_mmiotrace.c
16460 F:      include/linux/mmiotrace.h
16461 F:      arch/x86/mm/kmmio.c
16462 F:      arch/x86/mm/mmio-mod.c
16463 F:      arch/x86/mm/testmmiotrace.c
16464
16465 TRIVIAL PATCHES
16466 M:      Jiri Kosina <[email protected]>
16467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
16468 S:      Maintained
16469 K:      ^Subject:.*(?i)trivial
16470
16471 TEMPO SEMICONDUCTOR DRIVERS
16472 M:      Steven Eckhoff <[email protected]>
16473 S:      Maintained
16474 F:      sound/soc/codecs/tscs*.c
16475 F:      sound/soc/codecs/tscs*.h
16476 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16477
16478 TTY LAYER
16479 M:      Greg Kroah-Hartman <[email protected]>
16480 M:      Jiri Slaby <[email protected]>
16481 S:      Supported
16482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
16483 F:      Documentation/driver-api/serial/
16484 F:      drivers/tty/
16485 F:      drivers/tty/serial/serial_core.c
16486 F:      include/linux/serial_core.h
16487 F:      include/linux/serial.h
16488 F:      include/linux/tty.h
16489 F:      include/uapi/linux/serial_core.h
16490 F:      include/uapi/linux/serial.h
16491 F:      include/uapi/linux/tty.h
16492
16493 TUA9001 MEDIA DRIVER
16494 M:      Antti Palosaari <[email protected]>
16495 L:      [email protected]
16496 W:      https://linuxtv.org
16497 W:      http://palosaari.fi/linux/
16498 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16499 T:      git git://linuxtv.org/anttip/media_tree.git
16500 S:      Maintained
16501 F:      drivers/media/tuners/tua9001*
16502
16503 TULIP NETWORK DRIVERS
16504 L:      [email protected]
16505 L:      [email protected]
16506 S:      Orphan
16507 F:      drivers/net/ethernet/dec/tulip/
16508
16509 TUN/TAP driver
16510 M:      Maxim Krasnyansky <[email protected]>
16511 W:      http://vtun.sourceforge.net/tun
16512 S:      Maintained
16513 F:      Documentation/networking/tuntap.txt
16514 F:      arch/um/os-Linux/drivers/
16515
16516 TURBOCHANNEL SUBSYSTEM
16517 M:      "Maciej W. Rozycki" <[email protected]>
16518 M:      Ralf Baechle <[email protected]>
16519 L:      [email protected]
16520 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
16521 S:      Maintained
16522 F:      drivers/tc/
16523 F:      include/linux/tc.h
16524
16525 TURBOSTAT UTILITY
16526 M:      "Len Brown" <[email protected]>
16527 L:      [email protected]
16528 B:      https://bugzilla.kernel.org
16529 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
16531 S:      Supported
16532 F:      tools/power/x86/turbostat/
16533
16534 TW5864 VIDEO4LINUX DRIVER
16535 M:      Bluecherry Maintainers <[email protected]>
16536 M:      Anton Sviridenko <[email protected]>
16537 M:      Andrey Utkin <[email protected]>
16538 M:      Andrey Utkin <[email protected]>
16539 L:      [email protected]
16540 S:      Supported
16541 F:      drivers/media/pci/tw5864/
16542
16543 TW68 VIDEO4LINUX DRIVER
16544 M:      Hans Verkuil <[email protected]>
16545 L:      [email protected]
16546 T:      git git://linuxtv.org/media_tree.git
16547 W:      https://linuxtv.org
16548 S:      Odd Fixes
16549 F:      drivers/media/pci/tw68/
16550
16551 TW686X VIDEO4LINUX DRIVER
16552 M:      Ezequiel Garcia <[email protected]>
16553 L:      [email protected]
16554 T:      git git://linuxtv.org/media_tree.git
16555 W:      http://linuxtv.org
16556 S:      Maintained
16557 F:      drivers/media/pci/tw686x/
16558
16559 UBI FILE SYSTEM (UBIFS)
16560 M:      Richard Weinberger <[email protected]>
16561 M:      Artem Bityutskiy <[email protected]>
16562 M:      Adrian Hunter <[email protected]>
16563 L:      [email protected]
16564 T:      git git://git.infradead.org/ubifs-2.6.git
16565 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
16566 S:      Supported
16567 F:      Documentation/filesystems/ubifs.txt
16568 F:      fs/ubifs/
16569
16570 UCLINUX (M68KNOMMU AND COLDFIRE)
16571 M:      Greg Ungerer <[email protected]>
16572 W:      http://www.linux-m68k.org/
16573 W:      http://www.uclinux.org/
16574 L:      [email protected]
16575 L:      [email protected]  (subscribers-only)
16576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
16577 S:      Maintained
16578 F:      arch/m68k/coldfire/
16579 F:      arch/m68k/68*/
16580 F:      arch/m68k/*/*_no.*
16581 F:      arch/m68k/include/asm/*_no.*
16582
16583 UDF FILESYSTEM
16584 M:      Jan Kara <[email protected]>
16585 S:      Maintained
16586 F:      Documentation/filesystems/udf.txt
16587 F:      fs/udf/
16588
16589 UDRAW TABLET
16590 M:      Bastien Nocera <[email protected]>
16591 L:      [email protected]
16592 S:      Maintained
16593 F:      drivers/hid/hid-udraw-ps3.c
16594
16595 UFS FILESYSTEM
16596 M:      Evgeniy Dushistov <[email protected]>
16597 S:      Maintained
16598 F:      Documentation/admin-guide/ufs.rst
16599 F:      fs/ufs/
16600
16601 UHID USERSPACE HID IO DRIVER:
16602 M:      David Herrmann <[email protected]>
16603 L:      [email protected]
16604 S:      Maintained
16605 F:      drivers/hid/uhid.c
16606 F:      include/uapi/linux/uhid.h
16607
16608 ULPI BUS
16609 M:      Heikki Krogerus <[email protected]>
16610 L:      [email protected]
16611 S:      Maintained
16612 F:      drivers/usb/common/ulpi.c
16613 F:      include/linux/ulpi/
16614
16615 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
16616 L:      [email protected]
16617 S:      Obsolete
16618 F:      drivers/staging/uwb/
16619
16620 UNICODE SUBSYSTEM:
16621 M:      Gabriel Krisman Bertazi <[email protected]>
16622 L:      [email protected]
16623 S:      Supported
16624 F:      fs/unicode/
16625
16626 UNICORE32 ARCHITECTURE:
16627 M:      Guan Xuetao <[email protected]>
16628 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
16629 S:      Maintained
16630 T:      git git://github.com/gxt/linux.git
16631 F:      arch/unicore32/
16632
16633 UNIFDEF
16634 M:      Tony Finch <[email protected]>
16635 W:      http://dotat.at/prog/unifdef
16636 S:      Maintained
16637 F:      scripts/unifdef.c
16638
16639 UNIFORM CDROM DRIVER
16640 M:      Jens Axboe <[email protected]>
16641 W:      http://www.kernel.dk
16642 S:      Maintained
16643 F:      Documentation/cdrom/
16644 F:      drivers/cdrom/cdrom.c
16645 F:      include/linux/cdrom.h
16646 F:      include/uapi/linux/cdrom.h
16647
16648 UNISYS S-PAR DRIVERS
16649 M:      David Kershner <[email protected]>
16650 L:      [email protected] (Unisys internal)
16651 S:      Supported
16652 F:      include/linux/visorbus.h
16653 F:      drivers/visorbus/
16654 F:      drivers/staging/unisys/
16655
16656 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
16657 R:      Alim Akhtar <[email protected]>
16658 R:      Avri Altman <[email protected]>
16659 R:      Pedro Sousa <[email protected]>
16660 L:      [email protected]
16661 S:      Supported
16662 F:      Documentation/scsi/ufs.txt
16663 F:      drivers/scsi/ufs/
16664
16665 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
16666 M:      Pedro Sousa <[email protected]>
16667 L:      [email protected]
16668 S:      Supported
16669 F:      drivers/scsi/ufs/*dwc*
16670
16671 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
16672 M:      Stanley Chu <[email protected]>
16673 L:      [email protected]
16674 L:      [email protected] (moderated for non-subscribers)
16675 S:      Maintained
16676 F:      drivers/scsi/ufs/ufs-mediatek*
16677
16678 UNSORTED BLOCK IMAGES (UBI)
16679 M:      Artem Bityutskiy <[email protected]>
16680 M:      Richard Weinberger <[email protected]>
16681 W:      http://www.linux-mtd.infradead.org/
16682 L:      [email protected]
16683 T:      git git://git.infradead.org/ubifs-2.6.git
16684 S:      Supported
16685 F:      drivers/mtd/ubi/
16686 F:      include/linux/mtd/ubi.h
16687 F:      include/uapi/mtd/ubi-user.h
16688
16689 USB "USBNET" DRIVER FRAMEWORK
16690 M:      Oliver Neukum <[email protected]>
16691 L:      [email protected]
16692 W:      http://www.linux-usb.org/usbnet
16693 S:      Maintained
16694 F:      drivers/net/usb/usbnet.c
16695 F:      include/linux/usb/usbnet.h
16696
16697 USB ACM DRIVER
16698 M:      Oliver Neukum <[email protected]>
16699 L:      [email protected]
16700 S:      Maintained
16701 F:      Documentation/usb/acm.rst
16702 F:      drivers/usb/class/cdc-acm.*
16703
16704 USB AR5523 WIRELESS DRIVER
16705 M:      Pontus Fuchs <[email protected]>
16706 L:      [email protected]
16707 S:      Maintained
16708 F:      drivers/net/wireless/ath/ar5523/
16709
16710 USB ATTACHED SCSI
16711 M:      Oliver Neukum <[email protected]>
16712 L:      [email protected]
16713 L:      [email protected]
16714 S:      Maintained
16715 F:      drivers/usb/storage/uas.c
16716
16717 USB CDC ETHERNET DRIVER
16718 M:      Oliver Neukum <[email protected]>
16719 L:      [email protected]
16720 S:      Maintained
16721 F:      drivers/net/usb/cdc_*.c
16722 F:      include/uapi/linux/usb/cdc.h
16723
16724 USB CHAOSKEY DRIVER
16725 M:      Keith Packard <[email protected]>
16726 L:      [email protected]
16727 S:      Maintained
16728 F:      drivers/usb/misc/chaoskey.c
16729
16730 USB CYPRESS C67X00 DRIVER
16731 M:      Peter Korsgaard <[email protected]>
16732 L:      [email protected]
16733 S:      Maintained
16734 F:      drivers/usb/c67x00/
16735
16736 USB DAVICOM DM9601 DRIVER
16737 M:      Peter Korsgaard <[email protected]>
16738 L:      [email protected]
16739 W:      http://www.linux-usb.org/usbnet
16740 S:      Maintained
16741 F:      drivers/net/usb/dm9601.c
16742
16743 USB DIAMOND RIO500 DRIVER
16744 M:      Cesar Miquel <[email protected]>
16745 L:      [email protected]
16746 W:      http://rio500.sourceforge.net
16747 S:      Maintained
16748 F:      drivers/usb/misc/rio500*
16749
16750 USB EHCI DRIVER
16751 M:      Alan Stern <[email protected]>
16752 L:      [email protected]
16753 S:      Maintained
16754 F:      Documentation/usb/ehci.rst
16755 F:      drivers/usb/host/ehci*
16756
16757 USB GADGET/PERIPHERAL SUBSYSTEM
16758 M:      Felipe Balbi <[email protected]>
16759 L:      [email protected]
16760 W:      http://www.linux-usb.org/gadget
16761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
16762 S:      Maintained
16763 F:      drivers/usb/gadget/
16764 F:      include/linux/usb/gadget*
16765
16766 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
16767 M:      Jiri Kosina <[email protected]>
16768 M:      Benjamin Tissoires <[email protected]>
16769 L:      [email protected]
16770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
16771 S:      Maintained
16772 F:      Documentation/hid/hiddev.rst
16773 F:      drivers/hid/usbhid/
16774
16775 USB INTEL XHCI ROLE MUX DRIVER
16776 M:      Hans de Goede <[email protected]>
16777 L:      [email protected]
16778 S:      Maintained
16779 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
16780
16781 USB IP DRIVER FOR HISILICON KIRIN
16782 M:      Yu Chen <[email protected]>
16783 M:      Binghui Wang <[email protected]>
16784 L:      [email protected]
16785 S:      Maintained
16786 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
16787 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
16788
16789 USB ISP116X DRIVER
16790 M:      Olav Kongas <[email protected]>
16791 L:      [email protected]
16792 S:      Maintained
16793 F:      drivers/usb/host/isp116x*
16794 F:      include/linux/usb/isp116x.h
16795
16796 USB LAN78XX ETHERNET DRIVER
16797 M:      Woojung Huh <[email protected]>
16798 M:      Microchip Linux Driver Support <[email protected]>
16799 L:      [email protected]
16800 S:      Maintained
16801 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
16802 F:      drivers/net/usb/lan78xx.*
16803 F:      include/dt-bindings/net/microchip-lan78xx.h
16804
16805 USB MASS STORAGE DRIVER
16806 M:      Alan Stern <[email protected]>
16807 L:      [email protected]
16808 L:      [email protected]
16809 S:      Maintained
16810 F:      drivers/usb/storage/
16811
16812 USB MIDI DRIVER
16813 M:      Clemens Ladisch <[email protected]>
16814 L:      [email protected] (moderated for non-subscribers)
16815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16816 S:      Maintained
16817 F:      sound/usb/midi.*
16818
16819 USB NETWORKING DRIVERS
16820 L:      [email protected]
16821 S:      Odd Fixes
16822 F:      drivers/net/usb/
16823
16824 USB OHCI DRIVER
16825 M:      Alan Stern <[email protected]>
16826 L:      [email protected]
16827 S:      Maintained
16828 F:      Documentation/usb/ohci.rst
16829 F:      drivers/usb/host/ohci*
16830
16831 USB OTG FSM (Finite State Machine)
16832 M:      Peter Chen <[email protected]>
16833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
16834 L:      [email protected]
16835 S:      Maintained
16836 F:      drivers/usb/common/usb-otg-fsm.c
16837
16838 USB OVER IP DRIVER
16839 M:      Valentina Manea <[email protected]>
16840 M:      Shuah Khan <[email protected]>
16841 M:      Shuah Khan <[email protected]>
16842 L:      [email protected]
16843 S:      Maintained
16844 F:      Documentation/usb/usbip_protocol.rst
16845 F:      drivers/usb/usbip/
16846 F:      tools/usb/usbip/
16847 F:      tools/testing/selftests/drivers/usb/usbip/
16848
16849 USB PEGASUS DRIVER
16850 M:      Petko Manolov <[email protected]>
16851 L:      [email protected]
16852 L:      [email protected]
16853 T:      git git://github.com/petkan/pegasus.git
16854 W:      https://github.com/petkan/pegasus
16855 S:      Maintained
16856 F:      drivers/net/usb/pegasus.*
16857
16858 USB PHY LAYER
16859 M:      Felipe Balbi <[email protected]>
16860 L:      [email protected]
16861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
16862 S:      Maintained
16863 F:      drivers/usb/phy/
16864
16865 USB PRINTER DRIVER (usblp)
16866 M:      Pete Zaitcev <[email protected]>
16867 L:      [email protected]
16868 S:      Supported
16869 F:      drivers/usb/class/usblp.c
16870
16871 USB QMI WWAN NETWORK DRIVER
16872 M:      Bjørn Mork <[email protected]>
16873 L:      [email protected]
16874 S:      Maintained
16875 F:      Documentation/ABI/testing/sysfs-class-net-qmi
16876 F:      drivers/net/usb/qmi_wwan.c
16877
16878 USB RTL8150 DRIVER
16879 M:      Petko Manolov <[email protected]>
16880 L:      [email protected]
16881 L:      [email protected]
16882 T:      git git://github.com/petkan/rtl8150.git
16883 W:      https://github.com/petkan/rtl8150
16884 S:      Maintained
16885 F:      drivers/net/usb/rtl8150.c
16886
16887 USB SERIAL SUBSYSTEM
16888 M:      Johan Hovold <[email protected]>
16889 L:      [email protected]
16890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
16891 S:      Maintained
16892 F:      Documentation/usb/usb-serial.rst
16893 F:      drivers/usb/serial/
16894 F:      include/linux/usb/serial.h
16895
16896 USB SMSC75XX ETHERNET DRIVER
16897 M:      Steve Glendinning <[email protected]>
16898 L:      [email protected]
16899 S:      Maintained
16900 F:      drivers/net/usb/smsc75xx.*
16901
16902 USB SMSC95XX ETHERNET DRIVER
16903 M:      Steve Glendinning <[email protected]>
16904 M:      Microchip Linux Driver Support <[email protected]>
16905 L:      [email protected]
16906 S:      Maintained
16907 F:      drivers/net/usb/smsc95xx.*
16908
16909 USB SUBSYSTEM
16910 M:      Greg Kroah-Hartman <[email protected]>
16911 L:      [email protected]
16912 W:      http://www.linux-usb.org
16913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
16914 S:      Supported
16915 F:      Documentation/devicetree/bindings/usb/
16916 F:      Documentation/usb/
16917 F:      drivers/usb/
16918 F:      include/linux/usb.h
16919 F:      include/linux/usb/
16920
16921 USB TYPEC PI3USB30532 MUX DRIVER
16922 M:      Hans de Goede <[email protected]>
16923 L:      [email protected]
16924 S:      Maintained
16925 F:      drivers/usb/typec/mux/pi3usb30532.c
16926
16927 USB TYPEC CLASS
16928 M:      Heikki Krogerus <[email protected]>
16929 L:      [email protected]
16930 S:      Maintained
16931 F:      Documentation/ABI/testing/sysfs-class-typec
16932 F:      Documentation/driver-api/usb/typec.rst
16933 F:      drivers/usb/typec/
16934 F:      include/linux/usb/typec.h
16935
16936 USB TYPEC BUS FOR ALTERNATE MODES
16937 M:      Heikki Krogerus <[email protected]>
16938 L:      [email protected]
16939 S:      Maintained
16940 F:      Documentation/ABI/testing/sysfs-bus-typec
16941 F:      Documentation/driver-api/usb/typec_bus.rst
16942 F:      drivers/usb/typec/altmodes/
16943 F:      include/linux/usb/typec_altmode.h
16944
16945 USB TYPEC PORT CONTROLLER DRIVERS
16946 M:      Guenter Roeck <[email protected]>
16947 L:      [email protected]
16948 S:      Maintained
16949 F:      drivers/usb/typec/tcpm/
16950
16951 USB UHCI DRIVER
16952 M:      Alan Stern <[email protected]>
16953 L:      [email protected]
16954 S:      Maintained
16955 F:      drivers/usb/host/uhci*
16956
16957 USB VIDEO CLASS
16958 M:      Laurent Pinchart <[email protected]>
16959 L:      [email protected] (subscribers-only)
16960 L:      [email protected]
16961 T:      git git://linuxtv.org/media_tree.git
16962 W:      http://www.ideasonboard.org/uvc/
16963 S:      Maintained
16964 F:      drivers/media/usb/uvc/
16965 F:      include/uapi/linux/uvcvideo.h
16966
16967 USB VISION DRIVER
16968 M:      Hans Verkuil <[email protected]>
16969 L:      [email protected]
16970 T:      git git://linuxtv.org/media_tree.git
16971 W:      https://linuxtv.org
16972 S:      Odd Fixes
16973 F:      drivers/media/usb/usbvision/
16974
16975 USB WEBCAM GADGET
16976 M:      Laurent Pinchart <[email protected]>
16977 L:      [email protected]
16978 S:      Maintained
16979 F:      drivers/usb/gadget/function/*uvc*
16980 F:      drivers/usb/gadget/legacy/webcam.c
16981 F:      include/uapi/linux/usb/g_uvc.h
16982
16983 USB WIRELESS RNDIS DRIVER (rndis_wlan)
16984 M:      Jussi Kivilinna <[email protected]>
16985 L:      [email protected]
16986 S:      Maintained
16987 F:      drivers/net/wireless/rndis_wlan.c
16988
16989 USB XHCI DRIVER
16990 M:      Mathias Nyman <[email protected]>
16991 L:      [email protected]
16992 S:      Supported
16993 F:      drivers/usb/host/xhci*
16994 F:      drivers/usb/host/pci-quirks*
16995
16996 USB ZD1201 DRIVER
16997 L:      [email protected]
16998 W:      http://linux-lc100020.sourceforge.net
16999 S:      Orphan
17000 F:      drivers/net/wireless/zydas/zd1201.*
17001
17002 USB ZR364XX DRIVER
17003 M:      Antoine Jacquet <[email protected]>
17004 L:      [email protected]
17005 L:      [email protected]
17006 T:      git git://linuxtv.org/media_tree.git
17007 W:      http://royale.zerezo.com/zr364xx/
17008 S:      Maintained
17009 F:      Documentation/media/v4l-drivers/zr364xx*
17010 F:      drivers/media/usb/zr364xx/
17011
17012 USER-MODE LINUX (UML)
17013 M:      Jeff Dike <[email protected]>
17014 M:      Richard Weinberger <[email protected]>
17015 M:      Anton Ivanov <[email protected]>
17016 L:      [email protected]
17017 W:      http://user-mode-linux.sourceforge.net
17018 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17020 S:      Maintained
17021 F:      Documentation/virt/uml/
17022 F:      arch/um/
17023 F:      arch/x86/um/
17024 F:      fs/hostfs/
17025
17026 USERSPACE COPYIN/COPYOUT (UIOVEC)
17027 M:      Alexander Viro <[email protected]>
17028 S:      Maintained
17029 F:      lib/iov_iter.c
17030 F:      include/linux/uio.h
17031
17032 USERSPACE DMA BUFFER DRIVER
17033 M:      Gerd Hoffmann <[email protected]>
17034 S:      Maintained
17035 L:      [email protected]
17036 F:      drivers/dma-buf/udmabuf.c
17037 F:      include/uapi/linux/udmabuf.h
17038 T:      git git://anongit.freedesktop.org/drm/drm-misc
17039
17040 USERSPACE I/O (UIO)
17041 M:      Greg Kroah-Hartman <[email protected]>
17042 S:      Maintained
17043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17044 F:      Documentation/driver-api/uio-howto.rst
17045 F:      drivers/uio/
17046 F:      include/linux/uio_driver.h
17047
17048 UTIL-LINUX PACKAGE
17049 M:      Karel Zak <[email protected]>
17050 L:      [email protected]
17051 W:      http://en.wikipedia.org/wiki/Util-linux
17052 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17053 S:      Maintained
17054
17055 UUID HELPERS
17056 M:      Christoph Hellwig <[email protected]>
17057 R:      Andy Shevchenko <[email protected]>
17058 L:      [email protected]
17059 T:      git git://git.infradead.org/users/hch/uuid.git
17060 F:      lib/uuid.c
17061 F:      lib/test_uuid.c
17062 F:      include/linux/uuid.h
17063 F:      include/uapi/linux/uuid.h
17064 S:      Maintained
17065
17066 UVESAFB DRIVER
17067 M:      Michal Januszewski <[email protected]>
17068 L:      [email protected]
17069 W:      https://github.com/mjanusz/v86d
17070 S:      Maintained
17071 F:      Documentation/fb/uvesafb.rst
17072 F:      drivers/video/fbdev/uvesafb.*
17073
17074 VF610 NAND DRIVER
17075 M:      Stefan Agner <[email protected]>
17076 L:      [email protected]
17077 S:      Supported
17078 F:      drivers/mtd/nand/raw/vf610_nfc.c
17079
17080 VFAT/FAT/MSDOS FILESYSTEM
17081 M:      OGAWA Hirofumi <[email protected]>
17082 S:      Maintained
17083 F:      Documentation/filesystems/vfat.txt
17084 F:      fs/fat/
17085
17086 VFIO DRIVER
17087 M:      Alex Williamson <[email protected]>
17088 R:      Cornelia Huck <[email protected]>
17089 L:      [email protected]
17090 T:      git git://github.com/awilliam/linux-vfio.git
17091 S:      Maintained
17092 F:      Documentation/driver-api/vfio.rst
17093 F:      drivers/vfio/
17094 F:      include/linux/vfio.h
17095 F:      include/uapi/linux/vfio.h
17096
17097 VFIO MEDIATED DEVICE DRIVERS
17098 M:      Kirti Wankhede <[email protected]>
17099 L:      [email protected]
17100 S:      Maintained
17101 F:      Documentation/driver-api/vfio-mediated-device.rst
17102 F:      drivers/vfio/mdev/
17103 F:      include/linux/mdev.h
17104 F:      samples/vfio-mdev/
17105
17106 VFIO PLATFORM DRIVER
17107 M:      Eric Auger <[email protected]>
17108 L:      [email protected]
17109 S:      Maintained
17110 F:      drivers/vfio/platform/
17111
17112 VGA_SWITCHEROO
17113 R:      Lukas Wunner <[email protected]>
17114 S:      Maintained
17115 F:      Documentation/gpu/vga-switcheroo.rst
17116 F:      drivers/gpu/vga/vga_switcheroo.c
17117 F:      include/linux/vga_switcheroo.h
17118 T:      git git://anongit.freedesktop.org/drm/drm-misc
17119
17120 VIA RHINE NETWORK DRIVER
17121 S:      Orphan
17122 F:      drivers/net/ethernet/via/via-rhine.c
17123
17124 VIA SD/MMC CARD CONTROLLER DRIVER
17125 M:      Bruce Chang <[email protected]>
17126 M:      Harald Welte <[email protected]>
17127 S:      Maintained
17128 F:      drivers/mmc/host/via-sdmmc.c
17129
17130 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17131 M:      Florian Tobias Schandinat <[email protected]>
17132 L:      [email protected]
17133 S:      Maintained
17134 F:      include/linux/via-core.h
17135 F:      include/linux/via-gpio.h
17136 F:      include/linux/via_i2c.h
17137 F:      drivers/video/fbdev/via/
17138
17139 VIA VELOCITY NETWORK DRIVER
17140 M:      Francois Romieu <[email protected]>
17141 L:      [email protected]
17142 S:      Maintained
17143 F:      drivers/net/ethernet/via/via-velocity.*
17144
17145 VICODEC VIRTUAL CODEC DRIVER
17146 M:      Hans Verkuil <[email protected]>
17147 L:      [email protected]
17148 T:      git git://linuxtv.org/media_tree.git
17149 W:      https://linuxtv.org
17150 S:      Maintained
17151 F:      drivers/media/platform/vicodec/*
17152
17153 VIDEO MULTIPLEXER DRIVER
17154 M:      Philipp Zabel <[email protected]>
17155 L:      [email protected]
17156 S:      Maintained
17157 F:      drivers/media/platform/video-mux.c
17158
17159 VIDEO I2C POLLING DRIVER
17160 M:      Matt Ranostay <[email protected]>
17161 L:      [email protected]
17162 S:      Maintained
17163 F:      drivers/media/i2c/video-i2c.c
17164
17165 VIDEOBUF2 FRAMEWORK
17166 M:      Pawel Osciak <[email protected]>
17167 M:      Marek Szyprowski <[email protected]>
17168 M:      Kyungmin Park <[email protected]>
17169 R:      Tomasz Figa <[email protected]>
17170 L:      [email protected]
17171 S:      Maintained
17172 F:      drivers/media/common/videobuf2/*
17173 F:      include/media/videobuf2-*
17174
17175 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
17176 M:      Helen Koike <[email protected]>
17177 L:      [email protected]
17178 T:      git git://linuxtv.org/media_tree.git
17179 W:      https://linuxtv.org
17180 S:      Maintained
17181 F:      drivers/media/platform/vimc/*
17182
17183 VIRT LIB
17184 M:      Alex Williamson <[email protected]>
17185 M:      Paolo Bonzini <[email protected]>
17186 L:      [email protected]
17187 S:      Supported
17188 F:      virt/lib/
17189
17190 VIRTIO AND VHOST VSOCK DRIVER
17191 M:      Stefan Hajnoczi <[email protected]>
17192 L:      [email protected]
17193 L:      [email protected]
17194 L:      [email protected]
17195 S:      Maintained
17196 F:      include/linux/virtio_vsock.h
17197 F:      include/uapi/linux/virtio_vsock.h
17198 F:      include/uapi/linux/vsockmon.h
17199 F:      include/uapi/linux/vm_sockets_diag.h
17200 F:      net/vmw_vsock/diag.c
17201 F:      net/vmw_vsock/af_vsock_tap.c
17202 F:      net/vmw_vsock/virtio_transport_common.c
17203 F:      net/vmw_vsock/virtio_transport.c
17204 F:      drivers/net/vsockmon.c
17205 F:      drivers/vhost/vsock.c
17206 F:      tools/testing/vsock/
17207
17208 VIRTIO CONSOLE DRIVER
17209 M:      Amit Shah <[email protected]>
17210 L:      [email protected]
17211 S:      Maintained
17212 F:      drivers/char/virtio_console.c
17213 F:      include/linux/virtio_console.h
17214 F:      include/uapi/linux/virtio_console.h
17215
17216 VIRTIO CORE AND NET DRIVERS
17217 M:      "Michael S. Tsirkin" <[email protected]>
17218 M:      Jason Wang <[email protected]>
17219 L:      [email protected]
17220 S:      Maintained
17221 F:      Documentation/devicetree/bindings/virtio/
17222 F:      drivers/virtio/
17223 F:      tools/virtio/
17224 F:      drivers/net/virtio_net.c
17225 F:      drivers/block/virtio_blk.c
17226 F:      include/linux/virtio*.h
17227 F:      include/uapi/linux/virtio_*.h
17228 F:      drivers/crypto/virtio/
17229 F:      mm/balloon_compaction.c
17230
17231 VIRTIO BLOCK AND SCSI DRIVERS
17232 M:      "Michael S. Tsirkin" <[email protected]>
17233 M:      Jason Wang <[email protected]>
17234 R:      Paolo Bonzini <[email protected]>
17235 R:      Stefan Hajnoczi <[email protected]>
17236 L:      [email protected]
17237 S:      Maintained
17238 F:      drivers/block/virtio_blk.c
17239 F:      drivers/scsi/virtio_scsi.c
17240 F:      include/uapi/linux/virtio_blk.h
17241 F:      include/uapi/linux/virtio_scsi.h
17242 F:      drivers/vhost/scsi.c
17243
17244 VIRTIO CRYPTO DRIVER
17245 M:      Gonglei <[email protected]>
17246 L:      [email protected]
17247 L:      [email protected]
17248 S:      Maintained
17249 F:      drivers/crypto/virtio/
17250 F:      include/uapi/linux/virtio_crypto.h
17251
17252 VIRTIO DRIVERS FOR S390
17253 M:      Cornelia Huck <[email protected]>
17254 M:      Halil Pasic <[email protected]>
17255 L:      [email protected]
17256 L:      [email protected]
17257 L:      [email protected]
17258 S:      Supported
17259 F:      drivers/s390/virtio/
17260 F:      arch/s390/include/uapi/asm/virtio-ccw.h
17261
17262 VIRTIO GPU DRIVER
17263 M:      David Airlie <[email protected]>
17264 M:      Gerd Hoffmann <[email protected]>
17265 L:      [email protected]
17266 L:      [email protected]
17267 T:      git git://anongit.freedesktop.org/drm/drm-misc
17268 S:      Maintained
17269 F:      drivers/gpu/drm/virtio/
17270 F:      include/uapi/linux/virtio_gpu.h
17271
17272 VIRTIO HOST (VHOST)
17273 M:      "Michael S. Tsirkin" <[email protected]>
17274 M:      Jason Wang <[email protected]>
17275 L:      [email protected]
17276 L:      [email protected]
17277 L:      [email protected]
17278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
17279 S:      Maintained
17280 F:      drivers/vhost/
17281 F:      include/uapi/linux/vhost.h
17282
17283 VIRTIO INPUT DRIVER
17284 M:      Gerd Hoffmann <[email protected]>
17285 S:      Maintained
17286 F:      drivers/virtio/virtio_input.c
17287 F:      include/uapi/linux/virtio_input.h
17288
17289 VIRTIO IOMMU DRIVER
17290 M:      Jean-Philippe Brucker <[email protected]>
17291 L:      [email protected]
17292 S:      Maintained
17293 F:      drivers/iommu/virtio-iommu.c
17294 F:      include/uapi/linux/virtio_iommu.h
17295
17296 VIRTUAL BOX GUEST DEVICE DRIVER
17297 M:      Hans de Goede <[email protected]>
17298 M:      Arnd Bergmann <[email protected]>
17299 M:      Greg Kroah-Hartman <[email protected]>
17300 S:      Maintained
17301 F:      include/linux/vbox_utils.h
17302 F:      include/uapi/linux/vbox*.h
17303 F:      drivers/virt/vboxguest/
17304
17305 VIRTUAL SERIO DEVICE DRIVER
17306 M:      Stephen Chandler Paul <[email protected]>
17307 S:      Maintained
17308 F:      drivers/input/serio/userio.c
17309 F:      include/uapi/linux/userio.h
17310
17311 VIVID VIRTUAL VIDEO DRIVER
17312 M:      Hans Verkuil <[email protected]>
17313 L:      [email protected]
17314 T:      git git://linuxtv.org/media_tree.git
17315 W:      https://linuxtv.org
17316 S:      Maintained
17317 F:      drivers/media/platform/vivid/*
17318
17319 VLYNQ BUS
17320 M:      Florian Fainelli <[email protected]>
17321 L:      [email protected] (subscribers-only)
17322 S:      Maintained
17323 F:      drivers/vlynq/vlynq.c
17324 F:      include/linux/vlynq.h
17325
17326 VME SUBSYSTEM
17327 M:      Martyn Welch <[email protected]>
17328 M:      Manohar Vanga <[email protected]>
17329 M:      Greg Kroah-Hartman <[email protected]>
17330 L:      [email protected]
17331 S:      Maintained
17332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17333 F:      Documentation/driver-api/vme.rst
17334 F:      drivers/staging/vme/
17335 F:      drivers/vme/
17336 F:      include/linux/vme*
17337
17338 VMWARE BALLOON DRIVER
17339 M:      Nadav Amit <[email protected]>
17340 M:      "VMware, Inc." <[email protected]>
17341 L:      [email protected]
17342 S:      Maintained
17343 F:      drivers/misc/vmw_balloon.c
17344
17345 VMWARE HYPERVISOR INTERFACE
17346 M:      Thomas Hellstrom <[email protected]>
17347 M:      "VMware, Inc." <[email protected]>
17348 L:      [email protected]
17349 S:      Supported
17350 F:      arch/x86/kernel/cpu/vmware.c
17351 F:      arch/x86/include/asm/vmware.h
17352
17353 VMWARE PVRDMA DRIVER
17354 M:      Adit Ranadive <[email protected]>
17355 M:      VMware PV-Drivers <[email protected]>
17356 L:      [email protected]
17357 S:      Maintained
17358 F:      drivers/infiniband/hw/vmw_pvrdma/
17359
17360 VMware PVSCSI driver
17361 M:      Jim Gill <[email protected]>
17362 M:      VMware PV-Drivers <[email protected]>
17363 L:      [email protected]
17364 S:      Maintained
17365 F:      drivers/scsi/vmw_pvscsi.c
17366 F:      drivers/scsi/vmw_pvscsi.h
17367
17368 VMWARE VMMOUSE SUBDRIVER
17369 M:      "VMware Graphics" <[email protected]>
17370 M:      "VMware, Inc." <[email protected]>
17371 L:      [email protected]
17372 S:      Maintained
17373 F:      drivers/input/mouse/vmmouse.c
17374 F:      drivers/input/mouse/vmmouse.h
17375
17376 VMWARE VMXNET3 ETHERNET DRIVER
17377 M:      Ronak Doshi <[email protected]>
17378 M:      "VMware, Inc." <[email protected]>
17379 L:      [email protected]
17380 S:      Maintained
17381 F:      drivers/net/vmxnet3/
17382
17383 VOCORE VOCORE2 BOARD
17384 M:      Harvey Hunt <[email protected]>
17385 L:      [email protected]
17386 S:      Maintained
17387 F:      arch/mips/boot/dts/ralink/vocore2.dts
17388
17389 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
17390 M:      Liam Girdwood <[email protected]>
17391 M:      Mark Brown <[email protected]>
17392 L:      [email protected]
17393 W:      http://www.slimlogic.co.uk/?p=48
17394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
17395 S:      Supported
17396 F:      Documentation/devicetree/bindings/regulator/
17397 F:      Documentation/power/regulator/
17398 F:      drivers/regulator/
17399 F:      include/dt-bindings/regulator/
17400 F:      include/linux/regulator/
17401 K:      regulator_get_optional
17402
17403 VRF
17404 M:      David Ahern <[email protected]>
17405 M:      Shrijeet Mukherjee <[email protected]>
17406 L:      [email protected]
17407 S:      Maintained
17408 F:      drivers/net/vrf.c
17409 F:      Documentation/networking/vrf.txt
17410
17411 VT1211 HARDWARE MONITOR DRIVER
17412 M:      Juerg Haefliger <[email protected]>
17413 L:      [email protected]
17414 S:      Maintained
17415 F:      Documentation/hwmon/vt1211.rst
17416 F:      drivers/hwmon/vt1211.c
17417
17418 VT8231 HARDWARE MONITOR DRIVER
17419 M:      Roger Lucas <[email protected]>
17420 L:      [email protected]
17421 S:      Maintained
17422 F:      drivers/hwmon/vt8231.c
17423
17424 VUB300 USB to SDIO/SD/MMC bridge chip
17425 M:      Tony Olech <[email protected]>
17426 L:      [email protected]
17427 L:      [email protected]
17428 S:      Supported
17429 F:      drivers/mmc/host/vub300.c
17430
17431 W1 DALLAS'S 1-WIRE BUS
17432 M:      Evgeniy Polyakov <[email protected]>
17433 S:      Maintained
17434 F:      Documentation/devicetree/bindings/w1/
17435 F:      Documentation/w1/
17436 F:      drivers/w1/
17437 F:      include/linux/w1.h
17438
17439 W83791D HARDWARE MONITORING DRIVER
17440 M:      Marc Hulsman <[email protected]>
17441 L:      [email protected]
17442 S:      Maintained
17443 F:      Documentation/hwmon/w83791d.rst
17444 F:      drivers/hwmon/w83791d.c
17445
17446 W83793 HARDWARE MONITORING DRIVER
17447 M:      Rudolf Marek <[email protected]>
17448 L:      [email protected]
17449 S:      Maintained
17450 F:      Documentation/hwmon/w83793.rst
17451 F:      drivers/hwmon/w83793.c
17452
17453 W83795 HARDWARE MONITORING DRIVER
17454 M:      Jean Delvare <[email protected]>
17455 L:      [email protected]
17456 S:      Maintained
17457 F:      drivers/hwmon/w83795.c
17458
17459 W83L51xD SD/MMC CARD INTERFACE DRIVER
17460 M:      Pierre Ossman <[email protected]>
17461 S:      Maintained
17462 F:      drivers/mmc/host/wbsd.*
17463
17464 WACOM PROTOCOL 4 SERIAL TABLETS
17465 M:      Julian Squires <[email protected]>
17466 M:      Hans de Goede <[email protected]>
17467 L:      [email protected]
17468 S:      Maintained
17469 F:      drivers/input/tablet/wacom_serial4.c
17470
17471 WATCHDOG DEVICE DRIVERS
17472 M:      Wim Van Sebroeck <[email protected]>
17473 M:      Guenter Roeck <[email protected]>
17474 L:      [email protected]
17475 W:      http://www.linux-watchdog.org/
17476 T:      git git://www.linux-watchdog.org/linux-watchdog.git
17477 S:      Maintained
17478 F:      Documentation/devicetree/bindings/watchdog/
17479 F:      Documentation/watchdog/
17480 F:      drivers/watchdog/
17481 F:      include/linux/watchdog.h
17482 F:      include/uapi/linux/watchdog.h
17483
17484 WHISKEYCOVE PMIC GPIO DRIVER
17485 M:      Kuppuswamy Sathyanarayanan <[email protected]>
17486 L:      [email protected]
17487 S:      Maintained
17488 F:      drivers/gpio/gpio-wcove.c
17489
17490 WHWAVE RTC DRIVER
17491 M:      Dianlong Li <[email protected]>
17492 L:      [email protected]
17493 S:      Maintained
17494 F:      drivers/rtc/rtc-sd3078.c
17495
17496 WIIMOTE HID DRIVER
17497 M:      David Herrmann <[email protected]>
17498 L:      [email protected]
17499 S:      Maintained
17500 F:      drivers/hid/hid-wiimote*
17501
17502 WILOCITY WIL6210 WIRELESS DRIVER
17503 M:      Maya Erez <[email protected]>
17504 L:      [email protected]
17505 L:      [email protected]
17506 S:      Supported
17507 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
17508 F:      drivers/net/wireless/ath/wil6210/
17509
17510 WIMAX STACK
17511 M:      Inaky Perez-Gonzalez <[email protected]>
17512 M:      [email protected]
17513 L:      [email protected] (subscribers-only)
17514 S:      Supported
17515 W:      http://linuxwimax.org
17516 F:      Documentation/admin-guide/wimax/wimax.rst
17517 F:      include/linux/wimax/debug.h
17518 F:      include/net/wimax.h
17519 F:      include/uapi/linux/wimax.h
17520 F:      net/wimax/
17521
17522 WINBOND CIR DRIVER
17523 M:      David Härdeman <[email protected]>
17524 S:      Maintained
17525 F:      drivers/media/rc/winbond-cir.c
17526
17527 RCMM REMOTE CONTROLS DECODER
17528 M:      Patrick Lerda <[email protected]>
17529 S:      Maintained
17530 F:      drivers/media/rc/ir-rcmm-decoder.c
17531
17532 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
17533 M:      William Breathitt Gray <[email protected]>
17534 L:      [email protected]
17535 S:      Maintained
17536 F:      drivers/watchdog/ebc-c384_wdt.c
17537
17538 WINSYSTEMS WS16C48 GPIO DRIVER
17539 M:      William Breathitt Gray <[email protected]>
17540 L:      [email protected]
17541 S:      Maintained
17542 F:      drivers/gpio/gpio-ws16c48.c
17543
17544 WISTRON LAPTOP BUTTON DRIVER
17545 M:      Miloslav Trmac <[email protected]>
17546 S:      Maintained
17547 F:      drivers/input/misc/wistron_btns.c
17548
17549 WL3501 WIRELESS PCMCIA CARD DRIVER
17550 L:      [email protected]
17551 S:      Odd fixes
17552 F:      drivers/net/wireless/wl3501*
17553
17554 WOLFSON MICROELECTRONICS DRIVERS
17555 L:      [email protected]
17556 T:      git https://github.com/CirrusLogic/linux-drivers.git
17557 W:      https://github.com/CirrusLogic/linux-drivers/wiki
17558 S:      Supported
17559 F:      Documentation/hwmon/wm83??.rst
17560 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
17561 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
17562 F:      Documentation/devicetree/bindings/mfd/arizona.txt
17563 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
17564 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
17565 F:      arch/arm/mach-s3c64xx/mach-crag6410*
17566 F:      drivers/clk/clk-wm83*.c
17567 F:      drivers/extcon/extcon-arizona.c
17568 F:      drivers/leds/leds-wm83*.c
17569 F:      drivers/gpio/gpio-*wm*.c
17570 F:      drivers/gpio/gpio-arizona.c
17571 F:      drivers/hwmon/wm83??-hwmon.c
17572 F:      drivers/input/misc/wm831x-on.c
17573 F:      drivers/input/touchscreen/wm831x-ts.c
17574 F:      drivers/input/touchscreen/wm97*.c
17575 F:      drivers/mfd/arizona*
17576 F:      drivers/mfd/wm*.c
17577 F:      drivers/mfd/cs47l24*
17578 F:      drivers/power/supply/wm83*.c
17579 F:      drivers/rtc/rtc-wm83*.c
17580 F:      drivers/regulator/wm8*.c
17581 F:      drivers/regulator/arizona*
17582 F:      drivers/video/backlight/wm83*_bl.c
17583 F:      drivers/watchdog/wm83*_wdt.c
17584 F:      include/linux/mfd/arizona/
17585 F:      include/linux/mfd/wm831x/
17586 F:      include/linux/mfd/wm8350/
17587 F:      include/linux/mfd/wm8400*
17588 F:      include/linux/regulator/arizona*
17589 F:      include/linux/wm97xx.h
17590 F:      include/sound/wm????.h
17591 F:      sound/soc/codecs/arizona.?
17592 F:      sound/soc/codecs/wm*
17593 F:      sound/soc/codecs/cs47l24*
17594
17595 WORKQUEUE
17596 M:      Tejun Heo <[email protected]>
17597 R:      Lai Jiangshan <[email protected]>
17598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
17599 S:      Maintained
17600 F:      include/linux/workqueue.h
17601 F:      kernel/workqueue.c
17602 F:      Documentation/core-api/workqueue.rst
17603
17604 X-POWERS AXP288 PMIC DRIVERS
17605 M:      Hans de Goede <[email protected]>
17606 S:      Maintained
17607 N:      axp288
17608 F:      drivers/acpi/pmic/intel_pmic_xpower.c
17609
17610 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
17611 M:      Chen-Yu Tsai <[email protected]>
17612 L:      [email protected]
17613 S:      Maintained
17614 N:      axp[128]
17615
17616 X.25 NETWORK LAYER
17617 M:      Andrew Hendry <[email protected]>
17618 L:      [email protected]
17619 S:      Odd Fixes
17620 F:      Documentation/networking/x25*
17621 F:      include/net/x25*
17622 F:      net/x25/
17623
17624 X86 ARCHITECTURE (32-BIT AND 64-BIT)
17625 M:      Thomas Gleixner <[email protected]>
17626 M:      Ingo Molnar <[email protected]>
17627 M:      Borislav Petkov <[email protected]>
17628 R:      "H. Peter Anvin" <[email protected]>
17629 M:      [email protected]
17630 L:      [email protected]
17631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17632 S:      Maintained
17633 F:      Documentation/devicetree/bindings/x86/
17634 F:      Documentation/x86/
17635 F:      arch/x86/
17636
17637 X86 ENTRY CODE
17638 M:      Andy Lutomirski <[email protected]>
17639 L:      [email protected]
17640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
17641 S:      Maintained
17642 F:      arch/x86/entry/
17643
17644 X86 MCE INFRASTRUCTURE
17645 M:      Tony Luck <[email protected]>
17646 M:      Borislav Petkov <[email protected]>
17647 L:      [email protected]
17648 S:      Maintained
17649 F:      arch/x86/kernel/cpu/mce/*
17650
17651 X86 MICROCODE UPDATE SUPPORT
17652 M:      Borislav Petkov <[email protected]>
17653 S:      Maintained
17654 F:      arch/x86/kernel/cpu/microcode/*
17655
17656 X86 MM
17657 M:      Dave Hansen <[email protected]>
17658 M:      Andy Lutomirski <[email protected]>
17659 M:      Peter Zijlstra <[email protected]>
17660 L:      [email protected]
17661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
17662 S:      Maintained
17663 F:      arch/x86/mm/
17664
17665 X86 PLATFORM DRIVERS
17666 M:      Darren Hart <[email protected]>
17667 M:      Andy Shevchenko <[email protected]>
17668 L:      [email protected]
17669 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
17670 S:      Odd Fixes
17671 F:      drivers/platform/x86/
17672 F:      drivers/platform/olpc/
17673
17674 X86 PLATFORM DRIVERS - ARCH
17675 R:      Darren Hart <[email protected]>
17676 R:      Andy Shevchenko <[email protected]>
17677 L:      [email protected]
17678 L:      [email protected]
17679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17680 S:      Maintained
17681 F:      arch/x86/platform
17682
17683 X86 VDSO
17684 M:      Andy Lutomirski <[email protected]>
17685 L:      [email protected]
17686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
17687 S:      Maintained
17688 F:      arch/x86/entry/vdso/
17689
17690 XARRAY
17691 M:      Matthew Wilcox <[email protected]>
17692 L:      [email protected]
17693 S:      Supported
17694 F:      Documentation/core-api/xarray.rst
17695 F:      lib/idr.c
17696 F:      lib/xarray.c
17697 F:      include/linux/idr.h
17698 F:      include/linux/xarray.h
17699 F:      tools/testing/radix-tree
17700
17701 XBOX DVD IR REMOTE
17702 M:      Benjamin Valentin <[email protected]>
17703 S:      Maintained
17704 F:      drivers/media/rc/xbox_remote.c
17705 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
17706
17707 XC2028/3028 TUNER DRIVER
17708 M:      Mauro Carvalho Chehab <[email protected]>
17709 L:      [email protected]
17710 W:      https://linuxtv.org
17711 T:      git git://linuxtv.org/media_tree.git
17712 S:      Maintained
17713 F:      drivers/media/tuners/tuner-xc2028.*
17714
17715 XDP (eXpress Data Path)
17716 M:      Alexei Starovoitov <[email protected]>
17717 M:      Daniel Borkmann <[email protected]>
17718 M:      David S. Miller <[email protected]>
17719 M:      Jakub Kicinski <[email protected]>
17720 M:      Jesper Dangaard Brouer <[email protected]>
17721 M:      John Fastabend <[email protected]>
17722 L:      [email protected]
17723 L:      [email protected]
17724 S:      Supported
17725 F:      net/core/xdp.c
17726 F:      include/net/xdp.h
17727 F:      kernel/bpf/devmap.c
17728 F:      kernel/bpf/cpumap.c
17729 F:      include/trace/events/xdp.h
17730 K:      xdp
17731 N:      xdp
17732
17733 XDP SOCKETS (AF_XDP)
17734 M:      Björn Töpel <[email protected]>
17735 M:      Magnus Karlsson <[email protected]>
17736 R:      Jonathan Lemon <[email protected]>
17737 L:      [email protected]
17738 L:      [email protected]
17739 S:      Maintained
17740 F:      kernel/bpf/xskmap.c
17741 F:      net/xdp/
17742
17743 XEN BLOCK SUBSYSTEM
17744 M:      Konrad Rzeszutek Wilk <[email protected]>
17745 M:      Roger Pau Monné <[email protected]>
17746 L:      [email protected] (moderated for non-subscribers)
17747 S:      Supported
17748 F:      drivers/block/xen-blkback/*
17749 F:      drivers/block/xen*
17750
17751 XEN HYPERVISOR ARM
17752 M:      Stefano Stabellini <[email protected]>
17753 L:      [email protected] (moderated for non-subscribers)
17754 S:      Maintained
17755 F:      arch/arm/xen/
17756 F:      arch/arm/include/asm/xen/
17757
17758 XEN HYPERVISOR ARM64
17759 M:      Stefano Stabellini <[email protected]>
17760 L:      [email protected] (moderated for non-subscribers)
17761 S:      Maintained
17762 F:      arch/arm64/xen/
17763 F:      arch/arm64/include/asm/xen/
17764
17765 XEN HYPERVISOR INTERFACE
17766 M:      Boris Ostrovsky <[email protected]>
17767 M:      Juergen Gross <[email protected]>
17768 R:      Stefano Stabellini <[email protected]>
17769 L:      [email protected] (moderated for non-subscribers)
17770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
17771 S:      Supported
17772 F:      arch/x86/xen/
17773 F:      arch/x86/platform/pvh/
17774 F:      drivers/*/xen-*front.c
17775 F:      drivers/xen/
17776 F:      arch/x86/include/asm/xen/
17777 F:      arch/x86/include/asm/pvclock-abi.h
17778 F:      include/xen/
17779 F:      include/uapi/xen/
17780 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
17781 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
17782
17783 XEN NETWORK BACKEND DRIVER
17784 M:      Wei Liu <[email protected]>
17785 M:      Paul Durrant <[email protected]>
17786 L:      [email protected] (moderated for non-subscribers)
17787 L:      [email protected]
17788 S:      Supported
17789 F:      drivers/net/xen-netback/*
17790
17791 XEN PCI SUBSYSTEM
17792 M:      Konrad Rzeszutek Wilk <[email protected]>
17793 L:      [email protected] (moderated for non-subscribers)
17794 S:      Supported
17795 F:      arch/x86/pci/*xen*
17796 F:      drivers/pci/*xen*
17797
17798 XEN PVSCSI DRIVERS
17799 M:      Juergen Gross <[email protected]>
17800 L:      [email protected] (moderated for non-subscribers)
17801 L:      [email protected]
17802 S:      Supported
17803 F:      drivers/scsi/xen-scsifront.c
17804 F:      drivers/xen/xen-scsiback.c
17805 F:      include/xen/interface/io/vscsiif.h
17806
17807 XEN SWIOTLB SUBSYSTEM
17808 M:      Konrad Rzeszutek Wilk <[email protected]>
17809 L:      [email protected] (moderated for non-subscribers)
17810 L:      [email protected]
17811 S:      Supported
17812 F:      arch/x86/xen/*swiotlb*
17813 F:      drivers/xen/*swiotlb*
17814
17815 XEN SOUND FRONTEND DRIVER
17816 M:      Oleksandr Andrushchenko <[email protected]>
17817 L:      [email protected] (moderated for non-subscribers)
17818 L:      [email protected] (moderated for non-subscribers)
17819 S:      Supported
17820 F:      sound/xen/*
17821
17822 XFS FILESYSTEM
17823 M:      Darrick J. Wong <[email protected]>
17824 M:      [email protected]
17825 L:      [email protected]
17826 W:      http://xfs.org/
17827 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
17828 S:      Supported
17829 F:      Documentation/admin-guide/xfs.rst
17830 F:      Documentation/ABI/testing/sysfs-fs-xfs
17831 F:      Documentation/filesystems/xfs-delayed-logging-design.txt
17832 F:      Documentation/filesystems/xfs-self-describing-metadata.txt
17833 F:      fs/xfs/
17834 F:      include/uapi/linux/dqblk_xfs.h
17835 F:      include/uapi/linux/fsmap.h
17836
17837 XILINX AXI ETHERNET DRIVER
17838 M:      Radhey Shyam Pandey <[email protected]>
17839 S:      Maintained
17840 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
17841
17842 XILINX UARTLITE SERIAL DRIVER
17843 M:      Peter Korsgaard <[email protected]>
17844 L:      [email protected]
17845 S:      Maintained
17846 F:      drivers/tty/serial/uartlite.c
17847
17848 XILINX VIDEO IP CORES
17849 M:      Hyun Kwon <[email protected]>
17850 M:      Laurent Pinchart <[email protected]>
17851 L:      [email protected]
17852 T:      git git://linuxtv.org/media_tree.git
17853 S:      Supported
17854 F:      Documentation/devicetree/bindings/media/xilinx/
17855 F:      drivers/media/platform/xilinx/
17856 F:      include/uapi/linux/xilinx-v4l2-controls.h
17857
17858 XILINX SD-FEC IP CORES
17859 M:      Derek Kiernan <[email protected]>
17860 M:      Dragan Cvetic <[email protected]>
17861 S:      Maintained
17862 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
17863 F:      Documentation/misc-devices/xilinx_sdfec.rst
17864 F:      drivers/misc/xilinx_sdfec.c
17865 F:      drivers/misc/Kconfig
17866 F:      drivers/misc/Makefile
17867 F:      include/uapi/misc/xilinx_sdfec.h
17868
17869 XILLYBUS DRIVER
17870 M:      Eli Billauer <[email protected]>
17871 L:      [email protected]
17872 S:      Supported
17873 F:      drivers/char/xillybus/
17874
17875 XLP9XX I2C DRIVER
17876 M:      George Cherian <[email protected]>
17877 M:      Jan Glauber <[email protected]>
17878 L:      [email protected]
17879 W:      http://www.cavium.com
17880 S:      Supported
17881 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
17882 F:      drivers/i2c/busses/i2c-xlp9xx.c
17883
17884 XRA1403 GPIO EXPANDER
17885 M:      Nandor Han <[email protected]>
17886 M:      Semi Malinen <[email protected]>
17887 L:      [email protected]
17888 S:      Maintained
17889 F:      drivers/gpio/gpio-xra1403.c
17890 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
17891
17892 XTENSA XTFPGA PLATFORM SUPPORT
17893 M:      Max Filippov <[email protected]>
17894 L:      [email protected]
17895 S:      Maintained
17896 F:      drivers/spi/spi-xtensa-xtfpga.c
17897 F:      sound/soc/xtensa/xtfpga-i2s.c
17898
17899 YAM DRIVER FOR AX.25
17900 M:      Jean-Paul Roubelat <[email protected]>
17901 L:      [email protected]
17902 S:      Maintained
17903 F:      drivers/net/hamradio/yam*
17904 F:      include/linux/yam.h
17905
17906 YAMA SECURITY MODULE
17907 M:      Kees Cook <[email protected]>
17908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
17909 S:      Supported
17910 F:      security/yama/
17911 F:      Documentation/admin-guide/LSM/Yama.rst
17912
17913 YEALINK PHONE DRIVER
17914 M:      Henk Vergonet <[email protected]>
17915 L:      [email protected]
17916 S:      Maintained
17917 F:      Documentation/input/devices/yealink.rst
17918 F:      drivers/input/misc/yealink.*
17919
17920 Z8530 DRIVER FOR AX.25
17921 M:      Joerg Reuter <[email protected]>
17922 W:      http://yaina.de/jreuter/
17923 W:      http://www.qsl.net/dl1bke/
17924 L:      [email protected]
17925 S:      Maintained
17926 F:      Documentation/networking/z8530drv.txt
17927 F:      drivers/net/hamradio/*scc.c
17928 F:      drivers/net/hamradio/z8530.h
17929
17930 ZBUD COMPRESSED PAGE ALLOCATOR
17931 M:      Seth Jennings <[email protected]>
17932 M:      Dan Streetman <[email protected]>
17933 L:      [email protected]
17934 S:      Maintained
17935 F:      mm/zbud.c
17936 F:      include/linux/zbud.h
17937
17938 ZD1211RW WIRELESS DRIVER
17939 M:      Daniel Drake <[email protected]>
17940 M:      Ulrich Kunitz <[email protected]>
17941 W:      http://zd1211.ath.cx/wiki/DriverRewrite
17942 L:      [email protected]
17943 L:      [email protected] (subscribers-only)
17944 S:      Maintained
17945 F:      drivers/net/wireless/zydas/zd1211rw/
17946
17947 ZD1301 MEDIA DRIVER
17948 M:      Antti Palosaari <[email protected]>
17949 L:      [email protected]
17950 W:      https://linuxtv.org/
17951 W:      http://palosaari.fi/linux/
17952 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17953 S:      Maintained
17954 F:      drivers/media/usb/dvb-usb-v2/zd1301*
17955
17956 ZD1301_DEMOD MEDIA DRIVER
17957 M:      Antti Palosaari <[email protected]>
17958 L:      [email protected]
17959 W:      https://linuxtv.org/
17960 W:      http://palosaari.fi/linux/
17961 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17962 S:      Maintained
17963 F:      drivers/media/dvb-frontends/zd1301_demod*
17964
17965 ZHAOXIN PROCESSOR SUPPORT
17966 M:      Tony W Wang-oc <[email protected]>
17967 L:      [email protected]
17968 S:      Maintained
17969 F:      arch/x86/kernel/cpu/zhaoxin.c
17970
17971 ZPOOL COMPRESSED PAGE STORAGE API
17972 M:      Dan Streetman <[email protected]>
17973 L:      [email protected]
17974 S:      Maintained
17975 F:      mm/zpool.c
17976 F:      include/linux/zpool.h
17977
17978 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
17979 M:      Minchan Kim <[email protected]>
17980 M:      Nitin Gupta <[email protected]>
17981 R:      Sergey Senozhatsky <[email protected]>
17982 L:      [email protected]
17983 S:      Maintained
17984 F:      drivers/block/zram/
17985 F:      Documentation/admin-guide/blockdev/zram.rst
17986
17987 ZS DECSTATION Z85C30 SERIAL DRIVER
17988 M:      "Maciej W. Rozycki" <[email protected]>
17989 S:      Maintained
17990 F:      drivers/tty/serial/zs.*
17991
17992 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
17993 M:      Minchan Kim <[email protected]>
17994 M:      Nitin Gupta <[email protected]>
17995 R:      Sergey Senozhatsky <[email protected]>
17996 L:      [email protected]
17997 S:      Maintained
17998 F:      mm/zsmalloc.c
17999 F:      include/linux/zsmalloc.h
18000 F:      Documentation/vm/zsmalloc.rst
18001
18002 ZSWAP COMPRESSED SWAP CACHING
18003 M:      Seth Jennings <[email protected]>
18004 M:      Dan Streetman <[email protected]>
18005 L:      [email protected]
18006 S:      Maintained
18007 F:      mm/zswap.c
18008
18009 THE REST
18010 M:      Linus Torvalds <[email protected]>
18011 L:      [email protected]
18012 Q:      http://patchwork.kernel.org/project/LKML/list/
18013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
18014 S:      Buried alive in reporters
18015 F:      *
18016 F:      */
This page took 1.042221 seconds and 4 git commands to generate.