]> Git Repo - linux.git/blob - MAINTAINERS
enetc: Migrate to PHYLINK and PCS_LYNX
[linux.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: [email protected], especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <[email protected]>
148 L:      [email protected]
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <[email protected]>
155 L:      [email protected]
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <[email protected]>
161 L:      [email protected]
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <[email protected]>
168 L:      [email protected]
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <[email protected]>
174 M:      Jukka Rissanen <[email protected]>
175 L:      [email protected]
176 L:      [email protected]
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <[email protected]>
184 L:      [email protected]
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <[email protected]>
190 L:      [email protected]
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Realtek linux nic maintainers <[email protected]>
207 M:      Heiner Kallweit <[email protected]>
208 L:      [email protected]
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <[email protected]>
214 L:      [email protected]
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      [email protected]
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <[email protected]>
227 M:      Latchesar Ionkov <[email protected]>
228 M:      Dominique Martinet <[email protected]>
229 L:      [email protected]
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <[email protected]>
244 L:      [email protected]
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <[email protected]>
254 L:      [email protected]
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      [email protected]
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264
265 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
266 M:      Hans de Goede <[email protected]>
267 L:      [email protected]
268 S:      Maintained
269 F:      drivers/hwmon/abituguru.c
270
271 ABIT UGURU 3 HARDWARE MONITOR DRIVER
272 M:      Alistair John Strachan <[email protected]>
273 L:      [email protected]
274 S:      Maintained
275 F:      drivers/hwmon/abituguru3.c
276
277 ACCES 104-DIO-48E GPIO DRIVER
278 M:      William Breathitt Gray <[email protected]>
279 L:      [email protected]
280 S:      Maintained
281 F:      drivers/gpio/gpio-104-dio-48e.c
282
283 ACCES 104-IDI-48 GPIO DRIVER
284 M:      "William Breathitt Gray" <[email protected]>
285 L:      [email protected]
286 S:      Maintained
287 F:      drivers/gpio/gpio-104-idi-48.c
288
289 ACCES 104-IDIO-16 GPIO DRIVER
290 M:      "William Breathitt Gray" <[email protected]>
291 L:      [email protected]
292 S:      Maintained
293 F:      drivers/gpio/gpio-104-idio-16.c
294
295 ACCES 104-QUAD-8 DRIVER
296 M:      William Breathitt Gray <[email protected]>
297 M:      Syed Nayyar Waris <[email protected]>
298 L:      [email protected]
299 S:      Maintained
300 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
301 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
302 F:      drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M:      William Breathitt Gray <[email protected]>
306 L:      [email protected]
307 S:      Maintained
308 F:      drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M:      William Breathitt Gray <[email protected]>
312 L:      [email protected]
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <[email protected]>
318 L:      [email protected]
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <[email protected]>
324 L:      [email protected]
325 S:      Maintained
326 W:      http://piie.net/?section=acerhdf
327 F:      drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M:      "Lee, Chun-Yi" <[email protected]>
331 L:      [email protected]
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <[email protected]>
337 M:      Len Brown <[email protected]>
338 L:      [email protected]
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <[email protected]>
358 M:      Len Brown <[email protected]>
359 R:      James Morse <[email protected]>
360 R:      Tony Luck <[email protected]>
361 R:      Borislav Petkov <[email protected]>
362 L:      [email protected]
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <[email protected]>
367 M:      Erik Kaneda <[email protected]>
368 M:      "Rafael J. Wysocki" <[email protected]>
369 L:      [email protected]
370 L:      [email protected]
371 S:      Supported
372 W:      https://acpica.org/
373 W:      https://github.com/acpica/acpica/
374 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
375 B:      https://bugzilla.kernel.org
376 B:      https://bugs.acpica.org
377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
378 F:      drivers/acpi/acpica/
379 F:      include/acpi/
380 F:      tools/power/acpi/
381
382 ACPI FAN DRIVER
383 M:      Zhang Rui <[email protected]>
384 L:      [email protected]
385 S:      Supported
386 W:      https://01.org/linux-acpi
387 B:      https://bugzilla.kernel.org
388 F:      drivers/acpi/fan.c
389
390 ACPI FOR ARM64 (ACPI/arm64)
391 M:      Lorenzo Pieralisi <[email protected]>
392 M:      Hanjun Guo <[email protected]>
393 M:      Sudeep Holla <[email protected]>
394 L:      [email protected]
395 L:      [email protected] (moderated for non-subscribers)
396 S:      Maintained
397 F:      drivers/acpi/arm64
398
399 ACPI I2C MULTI INSTANTIATE DRIVER
400 M:      Hans de Goede <[email protected]>
401 L:      [email protected]
402 S:      Maintained
403 F:      drivers/platform/x86/i2c-multi-instantiate.c
404
405 ACPI PMIC DRIVERS
406 M:      "Rafael J. Wysocki" <[email protected]>
407 M:      Len Brown <[email protected]>
408 R:      Andy Shevchenko <[email protected]>
409 R:      Mika Westerberg <[email protected]>
410 L:      [email protected]
411 S:      Supported
412 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
413 B:      https://bugzilla.kernel.org
414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F:      drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M:      Zhang Rui <[email protected]>
419 L:      [email protected]
420 S:      Supported
421 W:      https://01.org/linux-acpi
422 B:      https://bugzilla.kernel.org
423 F:      drivers/acpi/*thermal*
424
425 ACPI VIDEO DRIVER
426 M:      Zhang Rui <[email protected]>
427 L:      [email protected]
428 S:      Supported
429 W:      https://01.org/linux-acpi
430 B:      https://bugzilla.kernel.org
431 F:      drivers/acpi/acpi_video.c
432
433 ACPI WMI DRIVER
434 L:      [email protected]
435 S:      Orphan
436 F:      drivers/platform/x86/wmi.c
437 F:      include/uapi/linux/wmi.h
438
439 AD1889 ALSA SOUND DRIVER
440 L:      [email protected]
441 S:      Maintained
442 W:      https://parisc.wiki.kernel.org/index.php/AD1889
443 F:      sound/pci/ad1889.*
444
445 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
446 M:      Michael Hennerich <[email protected]>
447 S:      Supported
448 W:      http://wiki.analog.com/AD5254
449 W:      http://ez.analog.com/community/linux-device-drivers
450 F:      drivers/misc/ad525x_dpot.c
451
452 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
453 M:      Michael Hennerich <[email protected]>
454 S:      Supported
455 W:      http://wiki.analog.com/AD5398
456 W:      http://ez.analog.com/community/linux-device-drivers
457 F:      drivers/regulator/ad5398.c
458
459 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
460 M:      Michael Hennerich <[email protected]>
461 S:      Supported
462 W:      http://wiki.analog.com/AD7142
463 W:      http://ez.analog.com/community/linux-device-drivers
464 F:      drivers/input/misc/ad714x.c
465
466 AD7877 TOUCHSCREEN DRIVER
467 M:      Michael Hennerich <[email protected]>
468 S:      Supported
469 W:      http://wiki.analog.com/AD7877
470 W:      http://ez.analog.com/community/linux-device-drivers
471 F:      drivers/input/touchscreen/ad7877.c
472
473 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
474 M:      Michael Hennerich <[email protected]>
475 S:      Supported
476 W:      http://wiki.analog.com/AD7879
477 W:      http://ez.analog.com/community/linux-device-drivers
478 F:      drivers/input/touchscreen/ad7879.c
479
480 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
481 M:      Jiri Kosina <[email protected]>
482 S:      Maintained
483
484 ADF7242 IEEE 802.15.4 RADIO DRIVER
485 M:      Michael Hennerich <[email protected]>
486 L:      [email protected]
487 S:      Supported
488 W:      https://wiki.analog.com/ADF7242
489 W:      http://ez.analog.com/community/linux-device-drivers
490 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
491 F:      drivers/net/ieee802154/adf7242.c
492
493 ADM1025 HARDWARE MONITOR DRIVER
494 M:      Jean Delvare <[email protected]>
495 L:      [email protected]
496 S:      Maintained
497 F:      Documentation/hwmon/adm1025.rst
498 F:      drivers/hwmon/adm1025.c
499
500 ADM1029 HARDWARE MONITOR DRIVER
501 M:      Corentin Labbe <[email protected]>
502 L:      [email protected]
503 S:      Maintained
504 F:      drivers/hwmon/adm1029.c
505
506 ADM8211 WIRELESS DRIVER
507 L:      [email protected]
508 S:      Orphan
509 W:      https://wireless.wiki.kernel.org/
510 F:      drivers/net/wireless/admtek/adm8211.*
511
512 ADP1653 FLASH CONTROLLER DRIVER
513 M:      Sakari Ailus <[email protected]>
514 L:      [email protected]
515 S:      Maintained
516 F:      drivers/media/i2c/adp1653.c
517 F:      include/media/i2c/adp1653.h
518
519 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
520 M:      Michael Hennerich <[email protected]>
521 S:      Supported
522 W:      http://wiki.analog.com/ADP5520
523 W:      http://ez.analog.com/community/linux-device-drivers
524 F:      drivers/gpio/gpio-adp5520.c
525 F:      drivers/input/keyboard/adp5520-keys.c
526 F:      drivers/leds/leds-adp5520.c
527 F:      drivers/mfd/adp5520.c
528 F:      drivers/video/backlight/adp5520_bl.c
529
530 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
531 M:      Michael Hennerich <[email protected]>
532 S:      Supported
533 W:      http://wiki.analog.com/ADP5588
534 W:      http://ez.analog.com/community/linux-device-drivers
535 F:      drivers/gpio/gpio-adp5588.c
536 F:      drivers/input/keyboard/adp5588-keys.c
537
538 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
539 M:      Michael Hennerich <[email protected]>
540 S:      Supported
541 W:      http://wiki.analog.com/ADP8860
542 W:      http://ez.analog.com/community/linux-device-drivers
543 F:      drivers/video/backlight/adp8860_bl.c
544
545 ADT746X FAN DRIVER
546 M:      Colin Leroy <[email protected]>
547 S:      Maintained
548 F:      drivers/macintosh/therm_adt746x.c
549
550 ADT7475 HARDWARE MONITOR DRIVER
551 M:      Jean Delvare <[email protected]>
552 L:      [email protected]
553 S:      Maintained
554 F:      Documentation/hwmon/adt7475.rst
555 F:      drivers/hwmon/adt7475.c
556
557 ADVANSYS SCSI DRIVER
558 M:      Matthew Wilcox <[email protected]>
559 M:      Hannes Reinecke <[email protected]>
560 L:      [email protected]
561 S:      Maintained
562 F:      Documentation/scsi/advansys.rst
563 F:      drivers/scsi/advansys.c
564
565 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
566 M:      Michael Hennerich <[email protected]>
567 S:      Supported
568 W:      http://wiki.analog.com/ADXL345
569 W:      http://ez.analog.com/community/linux-device-drivers
570 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
571 F:      drivers/input/misc/adxl34x.c
572
573 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
574 M:      Michael Hennerich <[email protected]>
575 S:      Supported
576 W:      http://ez.analog.com/community/linux-device-drivers
577 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
578 F:      drivers/iio/accel/adxl372.c
579 F:      drivers/iio/accel/adxl372_i2c.c
580 F:      drivers/iio/accel/adxl372_spi.c
581
582 AF9013 MEDIA DRIVER
583 M:      Antti Palosaari <[email protected]>
584 L:      [email protected]
585 S:      Maintained
586 W:      https://linuxtv.org
587 W:      http://palosaari.fi/linux/
588 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
589 T:      git git://linuxtv.org/anttip/media_tree.git
590 F:      drivers/media/dvb-frontends/af9013*
591
592 AF9033 MEDIA DRIVER
593 M:      Antti Palosaari <[email protected]>
594 L:      [email protected]
595 S:      Maintained
596 W:      https://linuxtv.org
597 W:      http://palosaari.fi/linux/
598 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
599 T:      git git://linuxtv.org/anttip/media_tree.git
600 F:      drivers/media/dvb-frontends/af9033*
601
602 AFFS FILE SYSTEM
603 M:      David Sterba <[email protected]>
604 L:      [email protected]
605 S:      Odd Fixes
606 F:      Documentation/filesystems/affs.rst
607 F:      fs/affs/
608
609 AFS FILESYSTEM
610 M:      David Howells <[email protected]>
611 L:      [email protected]
612 S:      Supported
613 W:      https://www.infradead.org/~dhowells/kafs/
614 F:      Documentation/filesystems/afs.rst
615 F:      fs/afs/
616 F:      include/trace/events/afs.h
617
618 AGPGART DRIVER
619 M:      David Airlie <[email protected]>
620 S:      Maintained
621 T:      git git://anongit.freedesktop.org/drm/drm
622 F:      drivers/char/agp/
623 F:      include/linux/agp*
624 F:      include/uapi/linux/agp*
625
626 AHA152X SCSI DRIVER
627 M:      "Juergen E. Fischer" <[email protected]>
628 L:      [email protected]
629 S:      Maintained
630 F:      drivers/scsi/aha152x*
631 F:      drivers/scsi/pcmcia/aha152x*
632
633 AIC7XXX / AIC79XX SCSI DRIVER
634 M:      Hannes Reinecke <[email protected]>
635 L:      [email protected]
636 S:      Maintained
637 F:      drivers/scsi/aic7xxx/
638
639 AIMSLAB FM RADIO RECEIVER DRIVER
640 M:      Hans Verkuil <[email protected]>
641 L:      [email protected]
642 S:      Maintained
643 W:      https://linuxtv.org
644 T:      git git://linuxtv.org/media_tree.git
645 F:      drivers/media/radio/radio-aimslab*
646
647 AIO
648 M:      Benjamin LaHaise <[email protected]>
649 L:      [email protected]
650 S:      Supported
651 F:      fs/aio.c
652 F:      include/linux/*aio*.h
653
654 AIRSPY MEDIA DRIVER
655 M:      Antti Palosaari <[email protected]>
656 L:      [email protected]
657 S:      Maintained
658 W:      https://linuxtv.org
659 W:      http://palosaari.fi/linux/
660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
661 T:      git git://linuxtv.org/anttip/media_tree.git
662 F:      drivers/media/usb/airspy/
663
664 ALACRITECH GIGABIT ETHERNET DRIVER
665 M:      Lino Sanfilippo <[email protected]>
666 S:      Maintained
667 F:      drivers/net/ethernet/alacritech/*
668
669 ALCATEL SPEEDTOUCH USB DRIVER
670 M:      Duncan Sands <[email protected]>
671 L:      [email protected]
672 S:      Maintained
673 W:      http://www.linux-usb.org/SpeedTouch/
674 F:      drivers/usb/atm/speedtch.c
675 F:      drivers/usb/atm/usbatm.c
676
677 ALCHEMY AU1XX0 MMC DRIVER
678 M:      Manuel Lauss <[email protected]>
679 S:      Maintained
680 F:      drivers/mmc/host/au1xmmc.c
681
682 ALI1563 I2C DRIVER
683 M:      Rudolf Marek <[email protected]>
684 L:      [email protected]
685 S:      Maintained
686 F:      Documentation/i2c/busses/i2c-ali1563.rst
687 F:      drivers/i2c/busses/i2c-ali1563.c
688
689 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
690 M:      Tomislav Denis <[email protected]>
691 L:      [email protected]
692 S:      Maintained
693 W:      http://www.allsensors.com/
694 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
695 F:      drivers/iio/pressure/dlhl60d.c
696
697 ALLEGRO DVT VIDEO IP CORE DRIVER
698 M:      Michael Tretter <[email protected]>
699 R:      Pengutronix Kernel Team <[email protected]>
700 L:      [email protected]
701 S:      Maintained
702 F:      drivers/staging/media/allegro-dvt/
703
704 ALLWINNER A10 CSI DRIVER
705 M:      Maxime Ripard <[email protected]>
706 L:      [email protected]
707 S:      Maintained
708 T:      git git://linuxtv.org/media_tree.git
709 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
710 F:      drivers/media/platform/sunxi/sun4i-csi/
711
712 ALLWINNER CPUFREQ DRIVER
713 M:      Yangtao Li <[email protected]>
714 L:      [email protected]
715 S:      Maintained
716 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
717 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
718
719 ALLWINNER CRYPTO DRIVERS
720 M:      Corentin Labbe <[email protected]>
721 L:      [email protected]
722 S:      Maintained
723 F:      drivers/crypto/allwinner/
724
725 ALLWINNER THERMAL DRIVER
726 M:      Vasily Khoruzhick <[email protected]>
727 M:      Yangtao Li <[email protected]>
728 L:      [email protected]
729 S:      Maintained
730 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
731 F:      drivers/thermal/sun8i_thermal.c
732
733 ALLWINNER VPU DRIVER
734 M:      Maxime Ripard <[email protected]>
735 M:      Paul Kocialkowski <[email protected]>
736 L:      [email protected]
737 S:      Maintained
738 F:      drivers/staging/media/sunxi/cedrus/
739
740 ALPHA PORT
741 M:      Richard Henderson <[email protected]>
742 M:      Ivan Kokshaysky <[email protected]>
743 M:      Matt Turner <[email protected]>
744 L:      [email protected]
745 S:      Odd Fixes
746 F:      arch/alpha/
747
748 ALPS PS/2 TOUCHPAD DRIVER
749 R:      Pali Rohár <[email protected]>
750 F:      drivers/input/mouse/alps.*
751
752 ALTERA I2C CONTROLLER DRIVER
753 M:      Thor Thayer <[email protected]>
754 S:      Maintained
755 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
756 F:      drivers/i2c/busses/i2c-altera.c
757
758 ALTERA MAILBOX DRIVER
759 M:      Ley Foon Tan <[email protected]>
760 S:      Maintained
761 F:      drivers/mailbox/mailbox-altera.c
762
763 ALTERA PIO DRIVER
764 M:      Joyce Ooi <[email protected]>
765 L:      [email protected]
766 S:      Maintained
767 F:      drivers/gpio/gpio-altera.c
768
769 ALTERA SYSTEM MANAGER DRIVER
770 M:      Thor Thayer <[email protected]>
771 S:      Maintained
772 F:      drivers/mfd/altera-sysmgr.c
773 F:      include/linux/mfd/altera-sysmgr.h
774
775 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
776 M:      Thor Thayer <[email protected]>
777 S:      Maintained
778 F:      drivers/gpio/gpio-altera-a10sr.c
779 F:      drivers/mfd/altera-a10sr.c
780 F:      drivers/reset/reset-a10sr.c
781 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
782 F:      include/linux/mfd/altera-a10sr.h
783
784 ALTERA TRIPLE SPEED ETHERNET DRIVER
785 M:      Joyce Ooi <[email protected]>
786 L:      [email protected]
787 S:      Maintained
788 F:      drivers/net/ethernet/altera/
789
790 ALTERA UART/JTAG UART SERIAL DRIVERS
791 M:      Tobias Klauser <[email protected]>
792 L:      [email protected]
793 S:      Maintained
794 F:      drivers/tty/serial/altera_jtaguart.c
795 F:      drivers/tty/serial/altera_uart.c
796 F:      include/linux/altera_jtaguart.h
797 F:      include/linux/altera_uart.h
798
799 AMAZON ANNAPURNA LABS FIC DRIVER
800 M:      Talel Shenhar <[email protected]>
801 S:      Maintained
802 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
803 F:      drivers/irqchip/irq-al-fic.c
804
805 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
806 M:      Talel Shenhar <[email protected]>
807 S:      Maintained
808 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
809 F:      drivers/thermal/thermal_mmio.c
810
811 AMAZON ETHERNET DRIVERS
812 M:      Netanel Belgazal <[email protected]>
813 M:      Arthur Kiyanovski <[email protected]>
814 R:      Guy Tzalik <[email protected]>
815 R:      Saeed Bishara <[email protected]>
816 R:      Zorik Machulsky <[email protected]>
817 L:      [email protected]
818 S:      Supported
819 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
820 F:      drivers/net/ethernet/amazon/
821
822 AMAZON RDMA EFA DRIVER
823 M:      Gal Pressman <[email protected]>
824 R:      Yossi Leybovich <[email protected]>
825 L:      [email protected]
826 S:      Supported
827 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
828 F:      drivers/infiniband/hw/efa/
829 F:      include/uapi/rdma/efa-abi.h
830
831 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
832 M:      Tom Lendacky <[email protected]>
833 M:      John Allen <[email protected]>
834 L:      [email protected]
835 S:      Supported
836 F:      drivers/crypto/ccp/
837 F:      include/linux/ccp.h
838
839 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
840 M:      Brijesh Singh <[email protected]>
841 M:      Tom Lendacky <[email protected]>
842 L:      [email protected]
843 S:      Supported
844 F:      drivers/crypto/ccp/sev*
845 F:      include/uapi/linux/psp-sev.h
846
847 AMD DISPLAY CORE
848 M:      Harry Wentland <[email protected]>
849 M:      Leo Li <[email protected]>
850 L:      [email protected]
851 S:      Supported
852 T:      git git://people.freedesktop.org/~agd5f/linux
853 F:      drivers/gpu/drm/amd/display/
854
855 AMD ENERGY DRIVER
856 M:      Naveen Krishna Chatradhi <[email protected]>
857 L:      [email protected]
858 S:      Maintained
859 F:      Documentation/hwmon/amd_energy.rst
860 F:      drivers/hwmon/amd_energy.c
861
862 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
863 M:      Huang Rui <[email protected]>
864 L:      [email protected]
865 S:      Supported
866 F:      Documentation/hwmon/fam15h_power.rst
867 F:      drivers/hwmon/fam15h_power.c
868
869 AMD FCH GPIO DRIVER
870 M:      Enrico Weigelt, metux IT consult <[email protected]>
871 L:      [email protected]
872 S:      Maintained
873 F:      drivers/gpio/gpio-amd-fch.c
874 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
875
876 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
877 L:      [email protected] (moderated for non-subscribers)
878 S:      Orphan
879 F:      drivers/usb/gadget/udc/amd5536udc.*
880
881 AMD GEODE PROCESSOR/CHIPSET SUPPORT
882 M:      Andres Salomon <[email protected]>
883 L:      [email protected] (moderated for non-subscribers)
884 S:      Supported
885 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
886 F:      arch/x86/include/asm/geode.h
887 F:      drivers/char/hw_random/geode-rng.c
888 F:      drivers/crypto/geode*
889 F:      drivers/video/fbdev/geode/
890
891 AMD IOMMU (AMD-VI)
892 M:      Joerg Roedel <[email protected]>
893 L:      [email protected]
894 S:      Maintained
895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
896 F:      drivers/iommu/amd/
897 F:      include/linux/amd-iommu.h
898
899 AMD KFD
900 M:      Felix Kuehling <[email protected]>
901 L:      [email protected]
902 S:      Supported
903 T:      git git://people.freedesktop.org/~agd5f/linux
904 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
905 F:      drivers/gpu/drm/amd/amdkfd/
906 F:      drivers/gpu/drm/amd/include/cik_structs.h
907 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
908 F:      drivers/gpu/drm/amd/include/v9_structs.h
909 F:      drivers/gpu/drm/amd/include/vi_structs.h
910 F:      include/uapi/linux/kfd_ioctl.h
911
912 AMD SPI DRIVER
913 M:      Sanjay R Mehta <[email protected]>
914 S:      Maintained
915 F:      drivers/spi/spi-amd.c
916
917 AMD MP2 I2C DRIVER
918 M:      Elie Morisse <[email protected]>
919 M:      Nehal Shah <[email protected]>
920 M:      Shyam Sundar S K <[email protected]>
921 L:      [email protected]
922 S:      Maintained
923 F:      drivers/i2c/busses/i2c-amd-mp2*
924
925 AMD POWERPLAY
926 M:      Evan Quan <[email protected]>
927 L:      [email protected]
928 S:      Supported
929 T:      git git://people.freedesktop.org/~agd5f/linux
930 F:      drivers/gpu/drm/amd/powerplay/
931
932 AMD SEATTLE DEVICE TREE SUPPORT
933 M:      Brijesh Singh <[email protected]>
934 M:      Suravee Suthikulpanit <[email protected]>
935 M:      Tom Lendacky <[email protected]>
936 S:      Supported
937 F:      arch/arm64/boot/dts/amd/
938
939 AMD XGBE DRIVER
940 M:      Tom Lendacky <[email protected]>
941 L:      [email protected]
942 S:      Supported
943 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
944 F:      drivers/net/ethernet/amd/xgbe/
945
946 ANALOG DEVICES INC AD5686 DRIVER
947 M:      Michael Hennerich <[email protected]>
948 L:      [email protected]
949 S:      Supported
950 W:      http://ez.analog.com/community/linux-device-drivers
951 F:      drivers/iio/dac/ad5686*
952 F:      drivers/iio/dac/ad5696*
953
954 ANALOG DEVICES INC AD5758 DRIVER
955 M:      Michael Hennerich <[email protected]>
956 L:      [email protected]
957 S:      Supported
958 W:      http://ez.analog.com/community/linux-device-drivers
959 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
960 F:      drivers/iio/dac/ad5758.c
961
962 ANALOG DEVICES INC AD7091R5 DRIVER
963 M:      Beniamin Bia <[email protected]>
964 L:      [email protected]
965 S:      Supported
966 W:      http://ez.analog.com/community/linux-device-drivers
967 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7091r5.yaml
968 F:      drivers/iio/adc/ad7091r5.c
969
970 ANALOG DEVICES INC AD7124 DRIVER
971 M:      Michael Hennerich <[email protected]>
972 L:      [email protected]
973 S:      Supported
974 W:      http://ez.analog.com/community/linux-device-drivers
975 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
976 F:      drivers/iio/adc/ad7124.c
977
978 ANALOG DEVICES INC AD7192 DRIVER
979 M:      Alexandru Tachici <[email protected]>
980 L:      [email protected]
981 S:      Supported
982 W:      http://ez.analog.com/community/linux-device-drivers
983 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
984 F:      drivers/iio/adc/ad7192.c
985
986 ANALOG DEVICES INC AD7292 DRIVER
987 M:      Marcelo Schmitt <[email protected]>
988 L:      [email protected]
989 S:      Supported
990 W:      http://ez.analog.com/community/linux-device-drivers
991 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
992 F:      drivers/iio/adc/ad7292.c
993
994 ANALOG DEVICES INC AD7606 DRIVER
995 M:      Michael Hennerich <[email protected]>
996 M:      Beniamin Bia <[email protected]>
997 L:      [email protected]
998 S:      Supported
999 W:      http://ez.analog.com/community/linux-device-drivers
1000 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
1001 F:      drivers/iio/adc/ad7606.c
1002
1003 ANALOG DEVICES INC AD7768-1 DRIVER
1004 M:      Michael Hennerich <[email protected]>
1005 L:      [email protected]
1006 S:      Supported
1007 W:      http://ez.analog.com/community/linux-device-drivers
1008 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
1009 F:      drivers/iio/adc/ad7768-1.c
1010
1011 ANALOG DEVICES INC AD7780 DRIVER
1012 M:      Michael Hennerich <[email protected]>
1013 M:      Renato Lui Geh <[email protected]>
1014 L:      [email protected]
1015 S:      Supported
1016 W:      http://ez.analog.com/community/linux-device-drivers
1017 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1018 F:      drivers/iio/adc/ad7780.c
1019
1020 ANALOG DEVICES INC AD9389B DRIVER
1021 M:      Hans Verkuil <[email protected]>
1022 L:      [email protected]
1023 S:      Maintained
1024 F:      drivers/media/i2c/ad9389b*
1025
1026 ANALOG DEVICES INC ADGS1408 DRIVER
1027 M:      Mircea Caprioru <[email protected]>
1028 S:      Supported
1029 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1030 F:      drivers/mux/adgs1408.c
1031
1032 ANALOG DEVICES INC ADIN DRIVER
1033 M:      Alexandru Ardelean <[email protected]>
1034 L:      [email protected]
1035 S:      Supported
1036 W:      http://ez.analog.com/community/linux-device-drivers
1037 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1038 F:      drivers/net/phy/adin.c
1039
1040 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1041 M:      Alexandru Ardelean <[email protected]>
1042 L:      [email protected]
1043 S:      Supported
1044 F:      drivers/iio/imu/adis.c
1045 F:      include/linux/iio/imu/adis.h
1046
1047 ANALOG DEVICES INC ADIS16460 DRIVER
1048 M:      Dragos Bogdan <[email protected]>
1049 L:      [email protected]
1050 S:      Supported
1051 W:      http://ez.analog.com/community/linux-device-drivers
1052 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1053 F:      drivers/iio/imu/adis16460.c
1054
1055 ANALOG DEVICES INC ADIS16475 DRIVER
1056 M:      Nuno Sa <[email protected]>
1057 L:      [email protected]
1058 W:      http://ez.analog.com/community/linux-device-drivers
1059 S:      Supported
1060 F:      drivers/iio/imu/adis16475.c
1061 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1062
1063 ANALOG DEVICES INC ADM1177 DRIVER
1064 M:      Beniamin Bia <[email protected]>
1065 M:      Michael Hennerich <[email protected]>
1066 L:      [email protected]
1067 S:      Supported
1068 W:      http://ez.analog.com/community/linux-device-drivers
1069 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1070 F:      drivers/hwmon/adm1177.c
1071
1072 ANALOG DEVICES INC ADP5061 DRIVER
1073 M:      Michael Hennerich <[email protected]>
1074 L:      [email protected]
1075 S:      Supported
1076 W:      http://ez.analog.com/community/linux-device-drivers
1077 F:      drivers/power/supply/adp5061.c
1078
1079 ANALOG DEVICES INC ADV7180 DRIVER
1080 M:      Lars-Peter Clausen <[email protected]>
1081 L:      [email protected]
1082 S:      Supported
1083 W:      http://ez.analog.com/community/linux-device-drivers
1084 F:      drivers/media/i2c/adv7180.c
1085 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1086
1087 ANALOG DEVICES INC ADV748X DRIVER
1088 M:      Kieran Bingham <[email protected]>
1089 L:      [email protected]
1090 S:      Maintained
1091 F:      drivers/media/i2c/adv748x/*
1092
1093 ANALOG DEVICES INC ADV7511 DRIVER
1094 M:      Hans Verkuil <[email protected]>
1095 L:      [email protected]
1096 S:      Maintained
1097 F:      drivers/media/i2c/adv7511*
1098
1099 ANALOG DEVICES INC ADV7604 DRIVER
1100 M:      Hans Verkuil <[email protected]>
1101 L:      [email protected]
1102 S:      Maintained
1103 F:      drivers/media/i2c/adv7604*
1104
1105 ANALOG DEVICES INC ADV7842 DRIVER
1106 M:      Hans Verkuil <[email protected]>
1107 L:      [email protected]
1108 S:      Maintained
1109 F:      drivers/media/i2c/adv7842*
1110
1111 ANALOG DEVICES INC ASOC CODEC DRIVERS
1112 M:      Lars-Peter Clausen <[email protected]>
1113 M:      Nuno Sá <[email protected]>
1114 L:      [email protected] (moderated for non-subscribers)
1115 S:      Supported
1116 W:      http://wiki.analog.com/
1117 W:      http://ez.analog.com/community/linux-device-drivers
1118 F:      sound/soc/codecs/ad1*
1119 F:      sound/soc/codecs/ad7*
1120 F:      sound/soc/codecs/adau*
1121 F:      sound/soc/codecs/adav*
1122 F:      sound/soc/codecs/sigmadsp.*
1123 F:      sound/soc/codecs/ssm*
1124
1125 ANALOG DEVICES INC DMA DRIVERS
1126 M:      Lars-Peter Clausen <[email protected]>
1127 S:      Supported
1128 W:      http://ez.analog.com/community/linux-device-drivers
1129 F:      drivers/dma/dma-axi-dmac.c
1130
1131 ANALOG DEVICES INC HMC425A DRIVER
1132 M:      Beniamin Bia <[email protected]>
1133 M:      Michael Hennerich <[email protected]>
1134 L:      [email protected]
1135 S:      Supported
1136 W:      http://ez.analog.com/community/linux-device-drivers
1137 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,hmc425a.yaml
1138 F:      drivers/iio/amplifiers/hmc425a.c
1139
1140 ANALOG DEVICES INC IIO DRIVERS
1141 M:      Lars-Peter Clausen <[email protected]>
1142 M:      Michael Hennerich <[email protected]>
1143 S:      Supported
1144 W:      http://wiki.analog.com/
1145 W:      http://ez.analog.com/community/linux-device-drivers
1146 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1147 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1148 F:      drivers/iio/*/ad*
1149 F:      drivers/iio/adc/ltc249*
1150 F:      drivers/staging/iio/*/ad*
1151 X:      drivers/iio/*/adjd*
1152
1153 ANALOGBITS PLL LIBRARIES
1154 M:      Paul Walmsley <[email protected]>
1155 S:      Supported
1156 F:      drivers/clk/analogbits/*
1157 F:      include/linux/clk/analogbits*
1158
1159 ANDES ARCHITECTURE
1160 M:      Nick Hu <[email protected]>
1161 M:      Greentime Hu <[email protected]>
1162 M:      Vincent Chen <[email protected]>
1163 S:      Supported
1164 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1165 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1166 F:      Documentation/devicetree/bindings/nds32/
1167 F:      arch/nds32/
1168 N:      nds32
1169 K:      nds32
1170
1171 ANDROID CONFIG FRAGMENTS
1172 M:      Rob Herring <[email protected]>
1173 S:      Supported
1174 F:      kernel/configs/android*
1175
1176 ANDROID DRIVERS
1177 M:      Greg Kroah-Hartman <[email protected]>
1178 M:      Arve Hjønnevåg <[email protected]>
1179 M:      Todd Kjos <[email protected]>
1180 M:      Martijn Coenen <[email protected]>
1181 M:      Joel Fernandes <[email protected]>
1182 M:      Christian Brauner <[email protected]>
1183 M:      Hridya Valsaraju <[email protected]>
1184 M:      Suren Baghdasaryan <[email protected]>
1185 L:      [email protected]
1186 S:      Supported
1187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1188 F:      drivers/android/
1189 F:      drivers/staging/android/
1190
1191 ANDROID GOLDFISH PIC DRIVER
1192 M:      Miodrag Dinic <[email protected]>
1193 S:      Supported
1194 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1195 F:      drivers/irqchip/irq-goldfish-pic.c
1196
1197 ANDROID GOLDFISH RTC DRIVER
1198 M:      Miodrag Dinic <[email protected]>
1199 S:      Supported
1200 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1201 F:      drivers/rtc/rtc-goldfish.c
1202
1203 ANDROID ION DRIVER
1204 M:      Laura Abbott <[email protected]>
1205 M:      Sumit Semwal <[email protected]>
1206 L:      [email protected]
1207 L:      [email protected]
1208 L:      [email protected] (moderated for non-subscribers)
1209 S:      Supported
1210 F:      drivers/staging/android/ion
1211 F:      drivers/staging/android/uapi/ion.h
1212
1213 AOA (Apple Onboard Audio) ALSA DRIVER
1214 M:      Johannes Berg <[email protected]>
1215 L:      [email protected]
1216 L:      [email protected] (moderated for non-subscribers)
1217 S:      Maintained
1218 F:      sound/aoa/
1219
1220 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1221 M:      William Breathitt Gray <[email protected]>
1222 L:      [email protected]
1223 S:      Maintained
1224 F:      drivers/iio/adc/stx104.c
1225
1226 APM DRIVER
1227 M:      Jiri Kosina <[email protected]>
1228 S:      Odd fixes
1229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1230 F:      arch/x86/kernel/apm_32.c
1231 F:      drivers/char/apm-emulation.c
1232 F:      include/linux/apm_bios.h
1233 F:      include/uapi/linux/apm_bios.h
1234
1235 APPARMOR SECURITY MODULE
1236 M:      John Johansen <[email protected]>
1237 L:      [email protected] (subscribers-only, general discussion)
1238 S:      Supported
1239 W:      wiki.apparmor.net
1240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1241 F:      Documentation/admin-guide/LSM/apparmor.rst
1242 F:      security/apparmor/
1243
1244 APPLE BCM5974 MULTITOUCH DRIVER
1245 M:      Henrik Rydberg <[email protected]>
1246 L:      [email protected]
1247 S:      Odd fixes
1248 F:      drivers/input/mouse/bcm5974.c
1249
1250 APPLE SMC DRIVER
1251 M:      Henrik Rydberg <[email protected]>
1252 L:      [email protected]
1253 S:      Odd fixes
1254 F:      drivers/hwmon/applesmc.c
1255
1256 APPLETALK NETWORK LAYER
1257 L:      [email protected]
1258 S:      Odd fixes
1259 F:      drivers/net/appletalk/
1260 F:      include/linux/atalk.h
1261 F:      include/uapi/linux/atalk.h
1262 F:      net/appletalk/
1263
1264 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1265 M:      Khuong Dinh <[email protected]>
1266 S:      Supported
1267 F:      arch/arm64/boot/dts/apm/
1268
1269 APPLIED MICRO (APM) X-GENE SOC EDAC
1270 M:      Khuong Dinh <[email protected]>
1271 S:      Supported
1272 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1273 F:      drivers/edac/xgene_edac.c
1274
1275 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1276 M:      Iyappan Subramanian <[email protected]>
1277 M:      Keyur Chudgar <[email protected]>
1278 S:      Supported
1279 F:      drivers/net/ethernet/apm/xgene-v2/
1280
1281 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1282 M:      Iyappan Subramanian <[email protected]>
1283 M:      Keyur Chudgar <[email protected]>
1284 M:      Quan Nguyen <[email protected]>
1285 S:      Supported
1286 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1287 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1288 F:      drivers/net/ethernet/apm/xgene/
1289 F:      drivers/net/mdio/mdio-xgene.c
1290
1291 APPLIED MICRO (APM) X-GENE SOC PMU
1292 M:      Khuong Dinh <[email protected]>
1293 S:      Supported
1294 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1295 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1296 F:      drivers/perf/xgene_pmu.c
1297
1298 APTINA CAMERA SENSOR PLL
1299 M:      Laurent Pinchart <[email protected]>
1300 L:      [email protected]
1301 S:      Maintained
1302 F:      drivers/media/i2c/aptina-pll.*
1303
1304 AQUANTIA ETHERNET DRIVER (atlantic)
1305 M:      Igor Russkikh <[email protected]>
1306 L:      [email protected]
1307 S:      Supported
1308 W:      https://www.marvell.com/
1309 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1310 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1311 F:      drivers/net/ethernet/aquantia/atlantic/
1312
1313 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1314 M:      Egor Pomozov <[email protected]>
1315 L:      [email protected]
1316 S:      Supported
1317 W:      http://www.aquantia.com
1318 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1319
1320 ARASAN NAND CONTROLLER DRIVER
1321 M:      Naga Sureshkumar Relli <[email protected]>
1322 L:      [email protected]
1323 S:      Maintained
1324 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1325 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1326
1327 ARC FRAMEBUFFER DRIVER
1328 M:      Jaya Kumar <[email protected]>
1329 S:      Maintained
1330 F:      drivers/video/fbdev/arcfb.c
1331 F:      drivers/video/fbdev/core/fb_defio.c
1332
1333 ARC PGU DRM DRIVER
1334 M:      Alexey Brodkin <[email protected]>
1335 S:      Supported
1336 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1337 F:      drivers/gpu/drm/arc/
1338
1339 ARCNET NETWORK LAYER
1340 M:      Michael Grzeschik <[email protected]>
1341 L:      [email protected]
1342 S:      Maintained
1343 F:      drivers/net/arcnet/
1344 F:      include/uapi/linux/if_arcnet.h
1345
1346 ARM ARCHITECTED TIMER DRIVER
1347 M:      Mark Rutland <[email protected]>
1348 M:      Marc Zyngier <[email protected]>
1349 L:      [email protected] (moderated for non-subscribers)
1350 S:      Maintained
1351 F:      arch/arm/include/asm/arch_timer.h
1352 F:      arch/arm64/include/asm/arch_timer.h
1353 F:      drivers/clocksource/arm_arch_timer.c
1354
1355 ARM HDLCD DRM DRIVER
1356 M:      Liviu Dudau <[email protected]>
1357 S:      Supported
1358 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1359 F:      drivers/gpu/drm/arm/hdlcd_*
1360
1361 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1362 M:      Linus Walleij <[email protected]>
1363 L:      [email protected] (moderated for non-subscribers)
1364 S:      Maintained
1365 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1366 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1367 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1368 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1369 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1370 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1371 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1372 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1373 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1374 F:      arch/arm/boot/dts/arm-realview-*
1375 F:      arch/arm/boot/dts/integrator*
1376 F:      arch/arm/boot/dts/versatile*
1377 F:      arch/arm/mach-integrator/
1378 F:      arch/arm/mach-realview/
1379 F:      arch/arm/mach-versatile/
1380 F:      arch/arm/plat-versatile/
1381 F:      drivers/bus/arm-integrator-lm.c
1382 F:      drivers/clk/versatile/
1383 F:      drivers/i2c/busses/i2c-versatile.c
1384 F:      drivers/irqchip/irq-versatile-fpga.c
1385 F:      drivers/mtd/maps/physmap-versatile.*
1386 F:      drivers/power/reset/arm-versatile-reboot.c
1387 F:      drivers/soc/versatile/
1388
1389 ARM KOMEDA DRM-KMS DRIVER
1390 M:      James (Qian) Wang <[email protected]>
1391 M:      Liviu Dudau <[email protected]>
1392 M:      Mihail Atanassov <[email protected]>
1393 L:      Mali DP Maintainers <[email protected]>
1394 S:      Supported
1395 T:      git git://anongit.freedesktop.org/drm/drm-misc
1396 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1397 F:      Documentation/gpu/komeda-kms.rst
1398 F:      drivers/gpu/drm/arm/display/include/
1399 F:      drivers/gpu/drm/arm/display/komeda/
1400
1401 ARM MALI PANFROST DRM DRIVER
1402 M:      Rob Herring <[email protected]>
1403 M:      Tomeu Vizoso <[email protected]>
1404 R:      Steven Price <[email protected]>
1405 R:      Alyssa Rosenzweig <[email protected]>
1406 L:      [email protected]
1407 S:      Supported
1408 T:      git git://anongit.freedesktop.org/drm/drm-misc
1409 F:      drivers/gpu/drm/panfrost/
1410 F:      include/uapi/drm/panfrost_drm.h
1411
1412 ARM MALI-DP DRM DRIVER
1413 M:      Liviu Dudau <[email protected]>
1414 M:      Brian Starkey <[email protected]>
1415 L:      Mali DP Maintainers <[email protected]>
1416 S:      Supported
1417 T:      git git://anongit.freedesktop.org/drm/drm-misc
1418 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1419 F:      Documentation/gpu/afbc.rst
1420 F:      drivers/gpu/drm/arm/
1421
1422 ARM MFM AND FLOPPY DRIVERS
1423 M:      Ian Molton <[email protected]>
1424 S:      Maintained
1425 F:      arch/arm/include/asm/floppy.h
1426 F:      arch/arm/mach-rpc/floppydma.S
1427
1428 ARM PMU PROFILING AND DEBUGGING
1429 M:      Will Deacon <[email protected]>
1430 M:      Mark Rutland <[email protected]>
1431 L:      [email protected] (moderated for non-subscribers)
1432 S:      Maintained
1433 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1434 F:      Documentation/devicetree/bindings/perf/
1435 F:      arch/arm*/include/asm/hw_breakpoint.h
1436 F:      arch/arm*/include/asm/perf_event.h
1437 F:      arch/arm*/kernel/hw_breakpoint.c
1438 F:      arch/arm*/kernel/perf_*
1439 F:      arch/arm/oprofile/common.c
1440 F:      drivers/perf/
1441 F:      include/linux/perf/arm_pmu.h
1442
1443 ARM PORT
1444 M:      Russell King <[email protected]>
1445 L:      [email protected] (moderated for non-subscribers)
1446 S:      Odd Fixes
1447 W:      http://www.armlinux.org.uk/
1448 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1449 F:      arch/arm/
1450 X:      arch/arm/boot/dts/
1451
1452 ARM PRIMECELL AACI PL041 DRIVER
1453 M:      Russell King <[email protected]>
1454 S:      Odd Fixes
1455 F:      sound/arm/aaci.*
1456
1457 ARM PRIMECELL BUS SUPPORT
1458 M:      Russell King <[email protected]>
1459 S:      Odd Fixes
1460 F:      drivers/amba/
1461 F:      include/linux/amba/bus.h
1462
1463 ARM PRIMECELL CLCD PL110 DRIVER
1464 M:      Russell King <[email protected]>
1465 S:      Odd Fixes
1466 F:      drivers/video/fbdev/amba-clcd.*
1467
1468 ARM PRIMECELL KMI PL050 DRIVER
1469 M:      Russell King <[email protected]>
1470 S:      Odd Fixes
1471 F:      drivers/input/serio/ambakmi.*
1472 F:      include/linux/amba/kmi.h
1473
1474 ARM PRIMECELL MMCI PL180/1 DRIVER
1475 M:      Russell King <[email protected]>
1476 S:      Odd Fixes
1477 F:      drivers/mmc/host/mmci.*
1478 F:      include/linux/amba/mmci.h
1479
1480 ARM PRIMECELL SSP PL022 SPI DRIVER
1481 M:      Linus Walleij <[email protected]>
1482 L:      [email protected] (moderated for non-subscribers)
1483 S:      Maintained
1484 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1485 F:      drivers/spi/spi-pl022.c
1486
1487 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1488 M:      Russell King <[email protected]>
1489 S:      Odd Fixes
1490 F:      drivers/tty/serial/amba-pl01*.c
1491 F:      include/linux/amba/serial.h
1492
1493 ARM PRIMECELL VIC PL190/PL192 DRIVER
1494 M:      Linus Walleij <[email protected]>
1495 L:      [email protected] (moderated for non-subscribers)
1496 S:      Maintained
1497 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1498 F:      drivers/irqchip/irq-vic.c
1499
1500 ARM SMC WATCHDOG DRIVER
1501 M:      Julius Werner <[email protected]>
1502 R:      Evan Benn <[email protected]>
1503 S:      Maintained
1504 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1505 F:      drivers/watchdog/arm_smc_wdt.c
1506
1507 ARM SMMU DRIVERS
1508 M:      Will Deacon <[email protected]>
1509 R:      Robin Murphy <[email protected]>
1510 L:      [email protected] (moderated for non-subscribers)
1511 S:      Maintained
1512 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1513 F:      drivers/iommu/arm/
1514 F:      drivers/iommu/io-pgtable-arm-v7s.c
1515 F:      drivers/iommu/io-pgtable-arm.c
1516
1517 ARM SUB-ARCHITECTURES
1518 L:      [email protected] (moderated for non-subscribers)
1519 S:      Maintained
1520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1521 F:      arch/arm/mach-*/
1522 F:      arch/arm/plat-*/
1523
1524 ARM/ACTIONS SEMI ARCHITECTURE
1525 M:      Andreas Färber <[email protected]>
1526 M:      Manivannan Sadhasivam <[email protected]>
1527 L:      [email protected] (moderated for non-subscribers)
1528 S:      Maintained
1529 F:      Documentation/devicetree/bindings/arm/actions.yaml
1530 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1531 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1532 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1533 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1534 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1535 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1536 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1537 F:      arch/arm/boot/dts/owl-*
1538 F:      arch/arm/mach-actions/
1539 F:      arch/arm64/boot/dts/actions/
1540 F:      drivers/clk/actions/
1541 F:      drivers/clocksource/timer-owl*
1542 F:      drivers/dma/owl-dma.c
1543 F:      drivers/i2c/busses/i2c-owl.c
1544 F:      drivers/mmc/host/owl-mmc.c
1545 F:      drivers/pinctrl/actions/*
1546 F:      drivers/soc/actions/
1547 F:      include/dt-bindings/power/owl-*
1548 F:      include/dt-bindings/reset/actions,*
1549 F:      include/linux/soc/actions/
1550 N:      owl
1551
1552 ARM/ADS SPHERE MACHINE SUPPORT
1553 M:      Lennert Buytenhek <[email protected]>
1554 L:      [email protected] (moderated for non-subscribers)
1555 S:      Maintained
1556
1557 ARM/AFEB9260 MACHINE SUPPORT
1558 M:      Sergey Lapin <[email protected]>
1559 L:      [email protected] (moderated for non-subscribers)
1560 S:      Maintained
1561
1562 ARM/AJECO 1ARM MACHINE SUPPORT
1563 M:      Lennert Buytenhek <[email protected]>
1564 L:      [email protected] (moderated for non-subscribers)
1565 S:      Maintained
1566
1567 ARM/Allwinner SoC Clock Support
1568 M:      Emilio López <[email protected]>
1569 S:      Maintained
1570 F:      drivers/clk/sunxi/
1571
1572 ARM/Allwinner sunXi SoC support
1573 M:      Maxime Ripard <[email protected]>
1574 M:      Chen-Yu Tsai <[email protected]>
1575 L:      [email protected] (moderated for non-subscribers)
1576 S:      Maintained
1577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1578 F:      arch/arm/mach-sunxi/
1579 F:      arch/arm64/boot/dts/allwinner/
1580 F:      drivers/clk/sunxi-ng/
1581 F:      drivers/pinctrl/sunxi/
1582 F:      drivers/soc/sunxi/
1583 N:      sun[x456789]i
1584 N:      sun50i
1585
1586 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1587 M:      Neil Armstrong <[email protected]>
1588 M:      Jerome Brunet <[email protected]>
1589 L:      [email protected]
1590 S:      Maintained
1591 F:      Documentation/devicetree/bindings/clock/amlogic*
1592 F:      drivers/clk/meson/
1593 F:      include/dt-bindings/clock/gxbb*
1594 F:      include/dt-bindings/clock/meson*
1595
1596 ARM/Amlogic Meson SoC Crypto Drivers
1597 M:      Corentin Labbe <[email protected]>
1598 L:      [email protected]
1599 L:      [email protected]
1600 S:      Maintained
1601 F:      Documentation/devicetree/bindings/crypto/amlogic*
1602 F:      drivers/crypto/amlogic/
1603
1604 ARM/Amlogic Meson SoC Sound Drivers
1605 M:      Jerome Brunet <[email protected]>
1606 L:      [email protected] (moderated for non-subscribers)
1607 S:      Maintained
1608 F:      Documentation/devicetree/bindings/sound/amlogic*
1609 F:      sound/soc/meson/
1610
1611 ARM/Amlogic Meson SoC support
1612 M:      Kevin Hilman <[email protected]>
1613 R:      Neil Armstrong <[email protected]>
1614 R:      Jerome Brunet <[email protected]>
1615 R:      Martin Blumenstingl <[email protected]>
1616 L:      [email protected] (moderated for non-subscribers)
1617 L:      [email protected]
1618 S:      Maintained
1619 W:      http://linux-meson.com/
1620 F:      arch/arm/boot/dts/meson*
1621 F:      arch/arm/mach-meson/
1622 F:      arch/arm64/boot/dts/amlogic/
1623 F:      drivers/mmc/host/meson*
1624 F:      drivers/pinctrl/meson/
1625 F:      drivers/rtc/rtc-meson*
1626 F:      drivers/soc/amlogic/
1627 N:      meson
1628
1629 ARM/Annapurna Labs ALPINE ARCHITECTURE
1630 M:      Tsahee Zidenberg <[email protected]>
1631 M:      Antoine Tenart <[email protected]>
1632 L:      [email protected] (moderated for non-subscribers)
1633 S:      Maintained
1634 F:      arch/arm/boot/dts/alpine*
1635 F:      arch/arm/mach-alpine/
1636 F:      arch/arm64/boot/dts/amazon/
1637 F:      drivers/*/*alpine*
1638
1639 ARM/ARTPEC MACHINE SUPPORT
1640 M:      Jesper Nilsson <[email protected]>
1641 M:      Lars Persson <[email protected]>
1642 L:      [email protected]
1643 S:      Maintained
1644 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1645 F:      arch/arm/boot/dts/artpec6*
1646 F:      arch/arm/mach-artpec
1647 F:      drivers/clk/axis
1648 F:      drivers/crypto/axis
1649 F:      drivers/mmc/host/usdhi6rol0.c
1650 F:      drivers/pinctrl/pinctrl-artpec*
1651
1652 ARM/ASPEED I2C DRIVER
1653 M:      Brendan Higgins <[email protected]>
1654 R:      Benjamin Herrenschmidt <[email protected]>
1655 R:      Joel Stanley <[email protected]>
1656 L:      [email protected]
1657 L:      [email protected] (moderated for non-subscribers)
1658 S:      Maintained
1659 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1660 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1661 F:      drivers/i2c/busses/i2c-aspeed.c
1662 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1663
1664 ARM/ASPEED MACHINE SUPPORT
1665 M:      Joel Stanley <[email protected]>
1666 R:      Andrew Jeffery <[email protected]>
1667 L:      [email protected] (moderated for non-subscribers)
1668 L:      [email protected] (moderated for non-subscribers)
1669 S:      Supported
1670 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1672 F:      arch/arm/boot/dts/aspeed-*
1673 F:      arch/arm/mach-aspeed/
1674 N:      aspeed
1675
1676 ARM/BITMAIN ARCHITECTURE
1677 M:      Manivannan Sadhasivam <[email protected]>
1678 L:      [email protected] (moderated for non-subscribers)
1679 S:      Maintained
1680 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1681 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1682 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1683 F:      arch/arm64/boot/dts/bitmain/
1684 F:      drivers/clk/clk-bm1880.c
1685 F:      drivers/pinctrl/pinctrl-bm1880.c
1686
1687 ARM/CALXEDA HIGHBANK ARCHITECTURE
1688 M:      Andre Przywara <[email protected]>
1689 L:      [email protected] (moderated for non-subscribers)
1690 S:      Maintained
1691 F:      arch/arm/boot/dts/ecx-*.dts*
1692 F:      arch/arm/boot/dts/highbank.dts
1693 F:      arch/arm/mach-highbank/
1694
1695 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1696 M:      Krzysztof Halasa <[email protected]>
1697 S:      Maintained
1698 F:      arch/arm/mach-cns3xxx/
1699
1700 ARM/CAVIUM THUNDER NETWORK DRIVER
1701 M:      Sunil Goutham <[email protected]>
1702 L:      [email protected] (moderated for non-subscribers)
1703 S:      Supported
1704 F:      drivers/net/ethernet/cavium/thunder/
1705
1706 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1707 M:      Lukasz Majewski <[email protected]>
1708 L:      [email protected] (moderated for non-subscribers)
1709 S:      Maintained
1710 F:      arch/arm/mach-ep93xx/ts72xx.c
1711
1712 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1713 M:      Alexander Shiyan <[email protected]>
1714 L:      [email protected] (moderated for non-subscribers)
1715 S:      Odd Fixes
1716 N:      clps711x
1717
1718 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1719 M:      Lennert Buytenhek <[email protected]>
1720 L:      [email protected] (moderated for non-subscribers)
1721 S:      Maintained
1722
1723 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1724 M:      Hartley Sweeten <[email protected]>
1725 M:      Alexander Sverdlin <[email protected]>
1726 L:      [email protected] (moderated for non-subscribers)
1727 S:      Maintained
1728 F:      arch/arm/mach-ep93xx/
1729 F:      arch/arm/mach-ep93xx/include/mach/
1730
1731 ARM/CLKDEV SUPPORT
1732 M:      Russell King <[email protected]>
1733 L:      [email protected] (moderated for non-subscribers)
1734 S:      Maintained
1735 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1736 F:      drivers/clk/clkdev.c
1737
1738 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1739 M:      Baruch Siach <[email protected]>
1740 L:      [email protected] (moderated for non-subscribers)
1741 S:      Maintained
1742 F:      arch/arm/boot/dts/cx92755*
1743 N:      digicolor
1744
1745 ARM/CONTEC MICRO9 MACHINE SUPPORT
1746 M:      Hubert Feurstein <[email protected]>
1747 S:      Maintained
1748 F:      arch/arm/mach-ep93xx/micro9.c
1749
1750 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1751 M:      Mathieu Poirier <[email protected]>
1752 R:      Suzuki K Poulose <[email protected]>
1753 R:      Mike Leach <[email protected]>
1754 L:      [email protected] (moderated for non-subscribers)
1755 S:      Maintained
1756 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1757 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1758 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1759 F:      Documentation/devicetree/bindings/arm/coresight.txt
1760 F:      Documentation/trace/coresight/*
1761 F:      drivers/hwtracing/coresight/*
1762 F:      include/dt-bindings/arm/coresight-cti-dt.h
1763 F:      tools/perf/arch/arm/util/auxtrace.c
1764 F:      tools/perf/arch/arm/util/cs-etm.c
1765 F:      tools/perf/arch/arm/util/cs-etm.h
1766 F:      tools/perf/arch/arm/util/pmu.c
1767 F:      tools/perf/util/cs-etm-decoder/*
1768 F:      tools/perf/util/cs-etm.*
1769
1770 ARM/CORGI MACHINE SUPPORT
1771 M:      Richard Purdie <[email protected]>
1772 S:      Maintained
1773
1774 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1775 M:      Hans Ulli Kroll <[email protected]>
1776 M:      Linus Walleij <[email protected]>
1777 L:      [email protected] (moderated for non-subscribers)
1778 S:      Maintained
1779 T:      git git://github.com/ulli-kroll/linux.git
1780 F:      Documentation/devicetree/bindings/arm/gemini.txt
1781 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1782 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1783 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1784 F:      arch/arm/mach-gemini/
1785 F:      drivers/net/ethernet/cortina/
1786 F:      drivers/pinctrl/pinctrl-gemini.c
1787 F:      drivers/rtc/rtc-ftrtc010.c
1788
1789 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1790 M:      Barry Song <[email protected]>
1791 L:      [email protected] (moderated for non-subscribers)
1792 S:      Maintained
1793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1794 F:      arch/arm/boot/dts/prima2*
1795 F:      arch/arm/mach-prima2/
1796 F:      drivers/clk/sirf/
1797 F:      drivers/clocksource/timer-atlas7.c
1798 F:      drivers/clocksource/timer-prima2.c
1799 X:      drivers/gnss
1800 N:      [^a-z]sirf
1801
1802 ARM/CZ.NIC TURRIS MOX SUPPORT
1803 M:      Marek Behun <[email protected]>
1804 S:      Maintained
1805 W:      http://mox.turris.cz
1806 F:      Documentation/ABI/testing/debugfs-moxtet
1807 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1808 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1809 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1810 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1811 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1812 F:      drivers/bus/moxtet.c
1813 F:      drivers/firmware/turris-mox-rwtm.c
1814 F:      drivers/gpio/gpio-moxtet.c
1815 F:      include/linux/moxtet.h
1816
1817 ARM/EBSA110 MACHINE SUPPORT
1818 M:      Russell King <[email protected]>
1819 L:      [email protected] (moderated for non-subscribers)
1820 S:      Maintained
1821 W:      http://www.armlinux.org.uk/
1822 F:      arch/arm/mach-ebsa110/
1823 F:      drivers/net/ethernet/amd/am79c961a.*
1824
1825 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1826 M:      Uwe Kleine-König <[email protected]>
1827 R:      Pengutronix Kernel Team <[email protected]>
1828 L:      [email protected] (moderated for non-subscribers)
1829 S:      Maintained
1830 N:      efm32
1831
1832 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1833 M:      Robert Jarzmik <[email protected]>
1834 L:      [email protected] (moderated for non-subscribers)
1835 S:      Maintained
1836 F:      arch/arm/mach-pxa/ezx.c
1837
1838 ARM/FARADAY FA526 PORT
1839 M:      Hans Ulli Kroll <[email protected]>
1840 L:      [email protected] (moderated for non-subscribers)
1841 S:      Maintained
1842 T:      git git://git.berlios.de/gemini-board
1843 F:      arch/arm/mm/*-fa*
1844
1845 ARM/FOOTBRIDGE ARCHITECTURE
1846 M:      Russell King <[email protected]>
1847 L:      [email protected] (moderated for non-subscribers)
1848 S:      Maintained
1849 W:      http://www.armlinux.org.uk/
1850 F:      arch/arm/include/asm/hardware/dec21285.h
1851 F:      arch/arm/mach-footbridge/
1852
1853 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1854 M:      Shawn Guo <[email protected]>
1855 M:      Sascha Hauer <[email protected]>
1856 R:      Pengutronix Kernel Team <[email protected]>
1857 R:      Fabio Estevam <[email protected]>
1858 R:      NXP Linux Team <[email protected]>
1859 L:      [email protected] (moderated for non-subscribers)
1860 S:      Maintained
1861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1862 X:      drivers/media/i2c/
1863 N:      imx
1864 N:      mxs
1865
1866 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1867 M:      Shawn Guo <[email protected]>
1868 M:      Li Yang <[email protected]>
1869 L:      [email protected] (moderated for non-subscribers)
1870 S:      Maintained
1871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1872 F:      arch/arm/boot/dts/ls1021a*
1873 F:      arch/arm64/boot/dts/freescale/fsl-*
1874 F:      arch/arm64/boot/dts/freescale/qoriq-*
1875
1876 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1877 M:      Shawn Guo <[email protected]>
1878 M:      Sascha Hauer <[email protected]>
1879 R:      Pengutronix Kernel Team <[email protected]>
1880 R:      Stefan Agner <[email protected]>
1881 L:      [email protected] (moderated for non-subscribers)
1882 S:      Maintained
1883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1884 F:      arch/arm/boot/dts/vf*
1885 F:      arch/arm/mach-imx/*vf610*
1886
1887 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1888 M:      Lennert Buytenhek <[email protected]>
1889 L:      [email protected] (moderated for non-subscribers)
1890 S:      Maintained
1891
1892 ARM/GUMSTIX MACHINE SUPPORT
1893 M:      Steve Sakoman <[email protected]>
1894 L:      [email protected] (moderated for non-subscribers)
1895 S:      Maintained
1896
1897 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1898 M:      Philipp Zabel <[email protected]>
1899 M:      Paul Parsons <[email protected]>
1900 L:      [email protected] (moderated for non-subscribers)
1901 S:      Maintained
1902 F:      arch/arm/mach-pxa/hx4700.c
1903 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1904 F:      sound/soc/pxa/hx4700.c
1905
1906 ARM/HISILICON SOC SUPPORT
1907 M:      Wei Xu <[email protected]>
1908 L:      [email protected] (moderated for non-subscribers)
1909 S:      Supported
1910 W:      http://www.hisilicon.com
1911 T:      git git://github.com/hisilicon/linux-hisi.git
1912 F:      arch/arm/boot/dts/hi3*
1913 F:      arch/arm/boot/dts/hip*
1914 F:      arch/arm/boot/dts/hisi*
1915 F:      arch/arm/mach-hisi/
1916 F:      arch/arm64/boot/dts/hisilicon/
1917
1918 ARM/HP JORNADA 7XX MACHINE SUPPORT
1919 M:      Kristoffer Ericson <[email protected]>
1920 S:      Maintained
1921 W:      www.jlime.com
1922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1923 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1924 F:      arch/arm/mach-sa1100/jornada720.c
1925
1926 ARM/IGEP MACHINE SUPPORT
1927 M:      Enric Balletbo i Serra <[email protected]>
1928 M:      Javier Martinez Canillas <[email protected]>
1929 L:      [email protected]
1930 L:      [email protected] (moderated for non-subscribers)
1931 S:      Maintained
1932 F:      arch/arm/boot/dts/omap3-igep*
1933
1934 ARM/INCOME PXA270 SUPPORT
1935 M:      Marek Vasut <[email protected]>
1936 L:      [email protected] (moderated for non-subscribers)
1937 S:      Maintained
1938 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1939
1940 ARM/INTEL IOP32X ARM ARCHITECTURE
1941 M:      Lennert Buytenhek <[email protected]>
1942 L:      [email protected] (moderated for non-subscribers)
1943 S:      Maintained
1944
1945 ARM/INTEL IQ81342EX MACHINE SUPPORT
1946 M:      Lennert Buytenhek <[email protected]>
1947 L:      [email protected] (moderated for non-subscribers)
1948 S:      Maintained
1949
1950 ARM/INTEL IXDP2850 MACHINE SUPPORT
1951 M:      Lennert Buytenhek <[email protected]>
1952 L:      [email protected] (moderated for non-subscribers)
1953 S:      Maintained
1954
1955 ARM/INTEL IXP4XX ARM ARCHITECTURE
1956 M:      Linus Walleij <[email protected]>
1957 M:      Imre Kaloz <[email protected]>
1958 M:      Krzysztof Halasa <[email protected]>
1959 L:      [email protected] (moderated for non-subscribers)
1960 S:      Maintained
1961 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1962 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1963 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1964 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1965 F:      arch/arm/mach-ixp4xx/
1966 F:      drivers/clocksource/timer-ixp4xx.c
1967 F:      drivers/gpio/gpio-ixp4xx.c
1968 F:      drivers/irqchip/irq-ixp4xx.c
1969 F:      include/linux/irqchip/irq-ixp4xx.h
1970 F:      include/linux/platform_data/timer-ixp4xx.h
1971
1972 ARM/INTEL KEEMBAY ARCHITECTURE
1973 M:      Paul J. Murphy <[email protected]>
1974 M:      Daniele Alessandrelli <[email protected]>
1975 S:      Maintained
1976 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1977 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1978 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1979
1980 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1981 M:      Jonathan Cameron <[email protected]>
1982 L:      [email protected] (moderated for non-subscribers)
1983 S:      Maintained
1984 F:      arch/arm/mach-pxa/stargate2.c
1985 F:      drivers/pcmcia/pxa2xx_stargate2.c
1986
1987 ARM/INTEL XSC3 (MANZANO) ARM CORE
1988 M:      Lennert Buytenhek <[email protected]>
1989 L:      [email protected] (moderated for non-subscribers)
1990 S:      Maintained
1991
1992 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1993 M:      Lennert Buytenhek <[email protected]>
1994 L:      [email protected] (moderated for non-subscribers)
1995 S:      Maintained
1996
1997 ARM/LG1K ARCHITECTURE
1998 M:      Chanho Min <[email protected]>
1999 L:      [email protected] (moderated for non-subscribers)
2000 S:      Maintained
2001 F:      arch/arm64/boot/dts/lg/
2002
2003 ARM/LOGICPD PXA270 MACHINE SUPPORT
2004 M:      Lennert Buytenhek <[email protected]>
2005 L:      [email protected] (moderated for non-subscribers)
2006 S:      Maintained
2007
2008 ARM/LPC18XX ARCHITECTURE
2009 M:      Vladimir Zapolskiy <[email protected]>
2010 L:      [email protected] (moderated for non-subscribers)
2011 S:      Maintained
2012 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2013 F:      arch/arm/boot/dts/lpc43*
2014 F:      drivers/i2c/busses/i2c-lpc2k.c
2015 F:      drivers/memory/pl172.c
2016 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2017 F:      drivers/rtc/rtc-lpc24xx.c
2018 N:      lpc18xx
2019
2020 ARM/LPC32XX SOC SUPPORT
2021 M:      Vladimir Zapolskiy <[email protected]>
2022 M:      Sylvain Lemieux <[email protected]>
2023 L:      [email protected] (moderated for non-subscribers)
2024 S:      Maintained
2025 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2026 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2027 F:      arch/arm/boot/dts/lpc32*
2028 F:      arch/arm/mach-lpc32xx/
2029 F:      drivers/i2c/busses/i2c-pnx.c
2030 F:      drivers/net/ethernet/nxp/lpc_eth.c
2031 F:      drivers/usb/host/ohci-nxp.c
2032 F:      drivers/watchdog/pnx4008_wdt.c
2033 N:      lpc32xx
2034
2035 ARM/MAGICIAN MACHINE SUPPORT
2036 M:      Philipp Zabel <[email protected]>
2037 S:      Maintained
2038
2039 ARM/Marvell Dove/MV78xx0/Orion SOC support
2040 M:      Jason Cooper <[email protected]>
2041 M:      Andrew Lunn <[email protected]>
2042 M:      Sebastian Hesselbarth <[email protected]>
2043 M:      Gregory Clement <[email protected]>
2044 L:      [email protected] (moderated for non-subscribers)
2045 S:      Maintained
2046 T:      git git://git.infradead.org/linux-mvebu.git
2047 F:      Documentation/devicetree/bindings/soc/dove/
2048 F:      arch/arm/boot/dts/dove*
2049 F:      arch/arm/boot/dts/orion5x*
2050 F:      arch/arm/mach-dove/
2051 F:      arch/arm/mach-mv78xx0/
2052 F:      arch/arm/mach-orion5x/
2053 F:      arch/arm/plat-orion/
2054 F:      drivers/soc/dove/
2055
2056 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2057 M:      Jason Cooper <[email protected]>
2058 M:      Andrew Lunn <[email protected]>
2059 M:      Gregory Clement <[email protected]>
2060 M:      Sebastian Hesselbarth <[email protected]>
2061 L:      [email protected] (moderated for non-subscribers)
2062 S:      Maintained
2063 T:      git git://git.infradead.org/linux-mvebu.git
2064 F:      arch/arm/boot/dts/armada*
2065 F:      arch/arm/boot/dts/kirkwood*
2066 F:      arch/arm/configs/mvebu_*_defconfig
2067 F:      arch/arm/mach-mvebu/
2068 F:      arch/arm64/boot/dts/marvell/armada*
2069 F:      arch/arm64/boot/dts/marvell/cn913*
2070 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2071 F:      drivers/cpufreq/armada-8k-cpufreq.c
2072 F:      drivers/cpufreq/mvebu-cpufreq.c
2073 F:      drivers/irqchip/irq-armada-370-xp.c
2074 F:      drivers/irqchip/irq-mvebu-*
2075 F:      drivers/pinctrl/mvebu/
2076 F:      drivers/rtc/rtc-armada38x.c
2077
2078 ARM/Mediatek RTC DRIVER
2079 M:      Eddie Huang <[email protected]>
2080 M:      Sean Wang <[email protected]>
2081 L:      [email protected] (moderated for non-subscribers)
2082 L:      [email protected] (moderated for non-subscribers)
2083 S:      Maintained
2084 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2085 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2086 F:      drivers/rtc/rtc-mt2712.c
2087 F:      drivers/rtc/rtc-mt6397.c
2088 F:      drivers/rtc/rtc-mt7622.c
2089
2090 ARM/Mediatek SoC support
2091 M:      Matthias Brugger <[email protected]>
2092 L:      [email protected] (moderated for non-subscribers)
2093 L:      [email protected] (moderated for non-subscribers)
2094 S:      Maintained
2095 W:      https://mtk.bcnfs.org/
2096 C:      irc://chat.freenode.net/linux-mediatek
2097 F:      arch/arm/boot/dts/mt6*
2098 F:      arch/arm/boot/dts/mt7*
2099 F:      arch/arm/boot/dts/mt8*
2100 F:      arch/arm/mach-mediatek/
2101 F:      arch/arm64/boot/dts/mediatek/
2102 F:      drivers/soc/mediatek/
2103 N:      mtk
2104 N:      mt[678]
2105 K:      mediatek
2106
2107 ARM/Mediatek USB3 PHY DRIVER
2108 M:      Chunfeng Yun <[email protected]>
2109 L:      [email protected] (moderated for non-subscribers)
2110 L:      [email protected] (moderated for non-subscribers)
2111 S:      Maintained
2112 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2113 F:      drivers/phy/mediatek/
2114
2115 ARM/Microchip (AT91) SoC support
2116 M:      Nicolas Ferre <[email protected]>
2117 M:      Alexandre Belloni <[email protected]>
2118 M:      Ludovic Desroches <[email protected]>
2119 L:      [email protected] (moderated for non-subscribers)
2120 S:      Supported
2121 W:      http://www.linux4sam.org
2122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2123 F:      arch/arm/boot/dts/at91*.dts
2124 F:      arch/arm/boot/dts/at91*.dtsi
2125 F:      arch/arm/boot/dts/sama*.dts
2126 F:      arch/arm/boot/dts/sama*.dtsi
2127 F:      arch/arm/include/debug/at91.S
2128 F:      arch/arm/mach-at91/
2129 F:      drivers/memory/atmel*
2130 F:      drivers/watchdog/sama5d4_wdt.c
2131 F:      include/soc/at91/
2132 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2133 X:      drivers/net/wireless/atmel/
2134 N:      at91
2135 N:      atmel
2136
2137 ARM/Microchip Sparx5 SoC support
2138 M:      Lars Povlsen <[email protected]>
2139 M:      Steen Hegelund <[email protected]>
2140 M:      Microchip Linux Driver Support <[email protected]>
2141 L:      [email protected] (moderated for non-subscribers)
2142 S:      Supported
2143 F:      arch/arm64/boot/dts/microchip/
2144 N:      sparx5
2145
2146 ARM/MIOA701 MACHINE SUPPORT
2147 M:      Robert Jarzmik <[email protected]>
2148 L:      [email protected] (moderated for non-subscribers)
2149 S:      Maintained
2150 F:      arch/arm/mach-pxa/mioa701.c
2151
2152 ARM/MStar/Sigmastar Armv7 SoC support
2153 M:      Daniel Palmer <[email protected]>
2154 L:      [email protected] (moderated for non-subscribers)
2155 S:      Maintained
2156 W:      http://linux-chenxing.org/
2157 F:      Documentation/devicetree/bindings/arm/mstar/*
2158 F:      arch/arm/boot/dts/infinity*.dtsi
2159 F:      arch/arm/boot/dts/mercury*.dtsi
2160 F:      arch/arm/boot/dts/mstar-v7.dtsi
2161 F:      arch/arm/mach-mstar/
2162
2163 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2164 M:      Michael Petchkovsky <[email protected]>
2165 S:      Maintained
2166
2167 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2168 M:      Linus Walleij <[email protected]>
2169 L:      [email protected] (moderated for non-subscribers)
2170 S:      Maintained
2171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2172 F:      Documentation/devicetree/bindings/arm/ste-*
2173 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2174 F:      Documentation/devicetree/bindings/arm/ux500/
2175 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2176 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2177 F:      arch/arm/boot/dts/ste-*
2178 F:      arch/arm/mach-nomadik/
2179 F:      arch/arm/mach-u300/
2180 F:      arch/arm/mach-ux500/
2181 F:      drivers/clk/clk-nomadik.c
2182 F:      drivers/clk/clk-u300.c
2183 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2184 F:      drivers/clocksource/timer-u300.c
2185 F:      drivers/dma/coh901318*
2186 F:      drivers/dma/ste_dma40*
2187 F:      drivers/hwspinlock/u8500_hsem.c
2188 F:      drivers/i2c/busses/i2c-nomadik.c
2189 F:      drivers/i2c/busses/i2c-stu300.c
2190 F:      drivers/iio/adc/ab8500-gpadc.c
2191 F:      drivers/mfd/ab3100*
2192 F:      drivers/mfd/ab8500*
2193 F:      drivers/mfd/abx500*
2194 F:      drivers/mfd/db8500*
2195 F:      drivers/mfd/dbx500*
2196 F:      drivers/pinctrl/nomadik/
2197 F:      drivers/pinctrl/pinctrl-coh901*
2198 F:      drivers/pinctrl/pinctrl-u300.c
2199 F:      drivers/rtc/rtc-ab3100.c
2200 F:      drivers/rtc/rtc-ab8500.c
2201 F:      drivers/rtc/rtc-coh901331.c
2202 F:      drivers/rtc/rtc-pl031.c
2203 F:      drivers/soc/ux500/
2204 F:      drivers/watchdog/coh901327_wdt.c
2205
2206 ARM/NUVOTON NPCM ARCHITECTURE
2207 M:      Avi Fishman <[email protected]>
2208 M:      Tomer Maimon <[email protected]>
2209 M:      Tali Perry <[email protected]>
2210 R:      Patrick Venture <[email protected]>
2211 R:      Nancy Yuen <[email protected]>
2212 R:      Benjamin Fair <[email protected]>
2213 L:      [email protected] (moderated for non-subscribers)
2214 S:      Supported
2215 F:      Documentation/devicetree/bindings/*/*/*npcm*
2216 F:      Documentation/devicetree/bindings/*/*npcm*
2217 F:      arch/arm/boot/dts/nuvoton-npcm*
2218 F:      arch/arm/mach-npcm/
2219 F:      drivers/*/*npcm*
2220 F:      drivers/*/*/*npcm*
2221 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2222
2223 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2224 L:      [email protected] (subscribers-only)
2225 S:      Orphan
2226 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2227 F:      arch/arm/mach-s3c24xx/gta02.h
2228 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2229
2230 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2231 M:      Alexander Clouter <[email protected]>
2232 L:      [email protected] (moderated for non-subscribers)
2233 S:      Maintained
2234 W:      http://www.digriz.org.uk/ts78xx/kernel
2235 F:      arch/arm/mach-orion5x/ts78xx-*
2236
2237 ARM/OXNAS platform support
2238 M:      Neil Armstrong <[email protected]>
2239 L:      [email protected] (moderated for non-subscribers)
2240 L:      [email protected] (moderated for non-subscribers)
2241 S:      Maintained
2242 F:      arch/arm/boot/dts/ox8*.dts*
2243 F:      arch/arm/mach-oxnas/
2244 F:      drivers/power/reset/oxnas-restart.c
2245 N:      oxnas
2246
2247 ARM/PALM TREO SUPPORT
2248 M:      Tomas Cech <[email protected]>
2249 L:      [email protected]
2250 S:      Maintained
2251 W:      http://hackndev.com
2252 F:      arch/arm/mach-pxa/palmtreo.*
2253
2254 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2255 M:      Marek Vasut <[email protected]>
2256 L:      [email protected]
2257 S:      Maintained
2258 W:      http://hackndev.com
2259 F:      arch/arm/mach-pxa/include/mach/palmld.h
2260 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2261 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2262 F:      arch/arm/mach-pxa/palmld.c
2263 F:      arch/arm/mach-pxa/palmt5.*
2264 F:      arch/arm/mach-pxa/palmtc.c
2265 F:      arch/arm/mach-pxa/palmte2.*
2266 F:      arch/arm/mach-pxa/palmtx.c
2267
2268 ARM/PALMZ72 SUPPORT
2269 M:      Sergey Lapin <[email protected]>
2270 L:      [email protected]
2271 S:      Maintained
2272 W:      http://hackndev.com
2273 F:      arch/arm/mach-pxa/palmz72.*
2274
2275 ARM/PLEB SUPPORT
2276 M:      Peter Chubb <[email protected]>
2277 S:      Maintained
2278 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2279
2280 ARM/PT DIGITAL BOARD PORT
2281 M:      Stefan Eletzhofer <[email protected]>
2282 L:      [email protected] (moderated for non-subscribers)
2283 S:      Maintained
2284 W:      http://www.armlinux.org.uk/
2285
2286 ARM/QUALCOMM SUPPORT
2287 M:      Andy Gross <[email protected]>
2288 M:      Bjorn Andersson <[email protected]>
2289 L:      [email protected]
2290 S:      Maintained
2291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2292 F:      Documentation/devicetree/bindings/*/qcom*
2293 F:      Documentation/devicetree/bindings/soc/qcom/
2294 F:      arch/arm/boot/dts/qcom-*.dts
2295 F:      arch/arm/boot/dts/qcom-*.dtsi
2296 F:      arch/arm/mach-qcom/
2297 F:      arch/arm64/boot/dts/qcom/
2298 F:      drivers/*/*/qcom*
2299 F:      drivers/*/*/qcom/
2300 F:      drivers/*/pm8???-*
2301 F:      drivers/*/qcom*
2302 F:      drivers/*/qcom/
2303 F:      drivers/bluetooth/btqcomsmd.c
2304 F:      drivers/clocksource/timer-qcom.c
2305 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2306 F:      drivers/extcon/extcon-qcom*
2307 F:      drivers/i2c/busses/i2c-qcom-geni.c
2308 F:      drivers/i2c/busses/i2c-qup.c
2309 F:      drivers/iommu/msm*
2310 F:      drivers/mfd/ssbi.c
2311 F:      drivers/mmc/host/mmci_qcom*
2312 F:      drivers/mmc/host/sdhci-msm.c
2313 F:      drivers/pci/controller/dwc/pcie-qcom.c
2314 F:      drivers/phy/qualcomm/
2315 F:      drivers/power/*/msm*
2316 F:      drivers/reset/reset-qcom-*
2317 F:      drivers/scsi/ufs/ufs-qcom*
2318 F:      drivers/spi/spi-geni-qcom.c
2319 F:      drivers/spi/spi-qcom-qspi.c
2320 F:      drivers/spi/spi-qup.c
2321 F:      drivers/tty/serial/msm_serial.c
2322 F:      drivers/usb/dwc3/dwc3-qcom.c
2323 F:      include/dt-bindings/*/qcom*
2324 F:      include/linux/*/qcom*
2325
2326 ARM/RADISYS ENP2611 MACHINE SUPPORT
2327 M:      Lennert Buytenhek <[email protected]>
2328 L:      [email protected] (moderated for non-subscribers)
2329 S:      Maintained
2330
2331 ARM/RDA MICRO ARCHITECTURE
2332 M:      Manivannan Sadhasivam <[email protected]>
2333 L:      [email protected] (moderated for non-subscribers)
2334 L:      [email protected] (moderated for non-subscribers)
2335 S:      Maintained
2336 F:      Documentation/devicetree/bindings/arm/rda.yaml
2337 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2338 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2339 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2340 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2341 F:      arch/arm/boot/dts/rda8810pl-*
2342 F:      drivers/clocksource/timer-rda.c
2343 F:      drivers/gpio/gpio-rda.c
2344 F:      drivers/irqchip/irq-rda-intc.c
2345 F:      drivers/tty/serial/rda-uart.c
2346
2347 ARM/REALTEK ARCHITECTURE
2348 M:      Andreas Färber <[email protected]>
2349 L:      [email protected] (moderated for non-subscribers)
2350 L:      [email protected] (moderated for non-subscribers)
2351 S:      Maintained
2352 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2353 F:      arch/arm/boot/dts/rtd*
2354 F:      arch/arm/mach-realtek/
2355 F:      arch/arm64/boot/dts/realtek/
2356
2357 ARM/RENESAS ARM64 ARCHITECTURE
2358 M:      Geert Uytterhoeven <[email protected]>
2359 M:      Magnus Damm <[email protected]>
2360 L:      [email protected]
2361 S:      Supported
2362 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2364 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2365 F:      arch/arm64/boot/dts/renesas/
2366 F:      drivers/soc/renesas/
2367 F:      include/linux/soc/renesas/
2368
2369 ARM/RISCPC ARCHITECTURE
2370 M:      Russell King <[email protected]>
2371 L:      [email protected] (moderated for non-subscribers)
2372 S:      Maintained
2373 W:      http://www.armlinux.org.uk/
2374 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2375 F:      arch/arm/include/asm/hardware/ioc.h
2376 F:      arch/arm/include/asm/hardware/iomd.h
2377 F:      arch/arm/include/asm/hardware/memc.h
2378 F:      arch/arm/mach-rpc/
2379 F:      drivers/net/ethernet/8390/etherh.c
2380 F:      drivers/net/ethernet/i825xx/ether1*
2381 F:      drivers/net/ethernet/seeq/ether3*
2382 F:      drivers/scsi/arm/
2383
2384 ARM/Rockchip SoC support
2385 M:      Heiko Stuebner <[email protected]>
2386 L:      [email protected] (moderated for non-subscribers)
2387 L:      [email protected]
2388 S:      Maintained
2389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2390 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2391 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2392 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2393 F:      arch/arm/boot/dts/rk3*
2394 F:      arch/arm/boot/dts/rv1108*
2395 F:      arch/arm/mach-rockchip/
2396 F:      drivers/*/*/*rockchip*
2397 F:      drivers/*/*rockchip*
2398 F:      drivers/clk/rockchip/
2399 F:      drivers/i2c/busses/i2c-rk3x.c
2400 F:      sound/soc/rockchip/
2401 N:      rockchip
2402
2403 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2404 M:      Kukjin Kim <[email protected]>
2405 M:      Krzysztof Kozlowski <[email protected]>
2406 L:      [email protected] (moderated for non-subscribers)
2407 L:      [email protected] (moderated for non-subscribers)
2408 S:      Maintained
2409 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2410 F:      Documentation/arm/samsung/
2411 F:      Documentation/devicetree/bindings/arm/samsung/
2412 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2413 F:      arch/arm/boot/dts/exynos*
2414 F:      arch/arm/boot/dts/s3c*
2415 F:      arch/arm/boot/dts/s5p*
2416 F:      arch/arm/mach-exynos*/
2417 F:      arch/arm/mach-s3c24*/
2418 F:      arch/arm/mach-s3c64xx/
2419 F:      arch/arm/mach-s5p*/
2420 F:      arch/arm/plat-samsung/
2421 F:      arch/arm64/boot/dts/exynos/
2422 F:      drivers/*/*/*s3c24*
2423 F:      drivers/*/*s3c24*
2424 F:      drivers/*/*s3c64xx*
2425 F:      drivers/*/*s5pv210*
2426 F:      drivers/memory/samsung/
2427 F:      drivers/soc/samsung/
2428 F:      drivers/tty/serial/samsung*
2429 F:      include/linux/soc/samsung/
2430 N:      exynos
2431
2432 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2433 M:      Kyungmin Park <[email protected]>
2434 L:      [email protected] (moderated for non-subscribers)
2435 S:      Maintained
2436 F:      arch/arm/mach-s5pv210/
2437
2438 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2439 M:      Kyungmin Park <[email protected]>
2440 M:      Kamil Debski <[email protected]>
2441 M:      Andrzej Hajda <[email protected]>
2442 L:      [email protected]
2443 L:      [email protected]
2444 S:      Maintained
2445 F:      drivers/media/platform/s5p-g2d/
2446
2447 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2448 M:      Marek Szyprowski <[email protected]>
2449 L:      [email protected] (moderated for non-subscribers)
2450 L:      [email protected]
2451 S:      Maintained
2452 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2453 F:      drivers/media/platform/s5p-cec/
2454
2455 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2456 M:      Andrzej Pietrasiewicz <[email protected]>
2457 M:      Jacek Anaszewski <[email protected]>
2458 M:      Sylwester Nawrocki <[email protected]>
2459 L:      [email protected]
2460 L:      [email protected]
2461 S:      Maintained
2462 F:      drivers/media/platform/s5p-jpeg/
2463
2464 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2465 M:      Kyungmin Park <[email protected]>
2466 M:      Kamil Debski <[email protected]>
2467 M:      Jeongtae Park <[email protected]>
2468 M:      Andrzej Hajda <[email protected]>
2469 L:      [email protected]
2470 L:      [email protected]
2471 S:      Maintained
2472 F:      drivers/media/platform/s5p-mfc/
2473
2474 ARM/SHMOBILE ARM ARCHITECTURE
2475 M:      Geert Uytterhoeven <[email protected]>
2476 M:      Magnus Damm <[email protected]>
2477 L:      [email protected]
2478 S:      Supported
2479 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2481 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2482 F:      arch/arm/boot/dts/emev2*
2483 F:      arch/arm/boot/dts/gr-peach*
2484 F:      arch/arm/boot/dts/iwg20d-q7*
2485 F:      arch/arm/boot/dts/r7s*
2486 F:      arch/arm/boot/dts/r8a*
2487 F:      arch/arm/boot/dts/r9a*
2488 F:      arch/arm/boot/dts/sh*
2489 F:      arch/arm/configs/shmobile_defconfig
2490 F:      arch/arm/include/debug/renesas-scif.S
2491 F:      arch/arm/mach-shmobile/
2492 F:      drivers/soc/renesas/
2493 F:      include/linux/soc/renesas/
2494
2495 ARM/SOCFPGA ARCHITECTURE
2496 M:      Dinh Nguyen <[email protected]>
2497 S:      Maintained
2498 W:      http://www.rocketboards.org
2499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2500 F:      arch/arm/boot/dts/socfpga*
2501 F:      arch/arm/configs/socfpga_defconfig
2502 F:      arch/arm/mach-socfpga/
2503 F:      arch/arm64/boot/dts/altera/
2504 F:      arch/arm64/boot/dts/intel/
2505
2506 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2507 M:      Dinh Nguyen <[email protected]>
2508 S:      Maintained
2509 F:      drivers/clk/socfpga/
2510
2511 ARM/SOCFPGA EDAC SUPPORT
2512 M:      Thor Thayer <[email protected]>
2513 S:      Maintained
2514 F:      drivers/edac/altera_edac.
2515
2516 ARM/SPREADTRUM SoC SUPPORT
2517 M:      Orson Zhai <[email protected]>
2518 M:      Baolin Wang <[email protected]>
2519 M:      Chunyan Zhang <[email protected]>
2520 S:      Maintained
2521 F:      arch/arm64/boot/dts/sprd
2522 N:      sprd
2523 N:      sc27xx
2524 N:      sc2731
2525
2526 ARM/STI ARCHITECTURE
2527 M:      Patrice Chotard <[email protected]>
2528 L:      [email protected] (moderated for non-subscribers)
2529 S:      Maintained
2530 W:      http://www.stlinux.com
2531 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2532 F:      arch/arm/boot/dts/sti*
2533 F:      arch/arm/mach-sti/
2534 F:      drivers/ata/ahci_st.c
2535 F:      drivers/char/hw_random/st-rng.c
2536 F:      drivers/clocksource/arm_global_timer.c
2537 F:      drivers/clocksource/clksrc_st_lpc.c
2538 F:      drivers/cpufreq/sti-cpufreq.c
2539 F:      drivers/dma/st_fdma*
2540 F:      drivers/i2c/busses/i2c-st.c
2541 F:      drivers/media/platform/sti/c8sectpfe/
2542 F:      drivers/media/rc/st_rc.c
2543 F:      drivers/mmc/host/sdhci-st.c
2544 F:      drivers/phy/st/phy-miphy28lp.c
2545 F:      drivers/phy/st/phy-stih407-usb.c
2546 F:      drivers/pinctrl/pinctrl-st.c
2547 F:      drivers/remoteproc/st_remoteproc.c
2548 F:      drivers/remoteproc/st_slim_rproc.c
2549 F:      drivers/reset/sti/
2550 F:      drivers/rtc/rtc-st-lpc.c
2551 F:      drivers/tty/serial/st-asc.c
2552 F:      drivers/usb/dwc3/dwc3-st.c
2553 F:      drivers/usb/host/ehci-st.c
2554 F:      drivers/usb/host/ohci-st.c
2555 F:      drivers/watchdog/st_lpc_wdt.c
2556 F:      include/linux/remoteproc/st_slim_rproc.h
2557
2558 ARM/STM32 ARCHITECTURE
2559 M:      Maxime Coquelin <[email protected]>
2560 M:      Alexandre Torgue <[email protected]>
2561 L:      [email protected] (moderated for non-subscribers)
2562 L:      [email protected] (moderated for non-subscribers)
2563 S:      Maintained
2564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2565 F:      arch/arm/boot/dts/stm32*
2566 F:      arch/arm/mach-stm32/
2567 F:      drivers/clocksource/armv7m_systick.c
2568 N:      stm32
2569 N:      stm
2570
2571 ARM/Synaptics SoC support
2572 M:      Jisheng Zhang <[email protected]>
2573 M:      Sebastian Hesselbarth <[email protected]>
2574 L:      [email protected] (moderated for non-subscribers)
2575 S:      Maintained
2576 F:      arch/arm/boot/dts/berlin*
2577 F:      arch/arm/mach-berlin/
2578 F:      arch/arm64/boot/dts/synaptics/
2579
2580 ARM/TANGO ARCHITECTURE
2581 M:      Marc Gonzalez <[email protected]>
2582 M:      Mans Rullgard <[email protected]>
2583 L:      [email protected]
2584 S:      Odd Fixes
2585 N:      tango
2586
2587 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2588 M:      Lennert Buytenhek <[email protected]>
2589 L:      [email protected] (moderated for non-subscribers)
2590 S:      Maintained
2591
2592 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2593 M:      Hans Verkuil <[email protected]>
2594 L:      [email protected]
2595 L:      [email protected]
2596 S:      Maintained
2597 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2598 F:      drivers/media/platform/tegra-cec/
2599
2600 ARM/TETON BGA MACHINE SUPPORT
2601 M:      "Mark F. Brown" <[email protected]>
2602 L:      [email protected] (moderated for non-subscribers)
2603 S:      Maintained
2604
2605 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2606 M:      Santosh Shilimkar <[email protected]>
2607 L:      [email protected]
2608 S:      Maintained
2609 F:      drivers/memory/*emif*
2610
2611 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2612 M:      Santosh Shilimkar <[email protected]>
2613 L:      [email protected] (moderated for non-subscribers)
2614 S:      Maintained
2615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2616 F:      arch/arm/boot/dts/keystone-*
2617 F:      arch/arm/mach-keystone/
2618
2619 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2620 M:      Santosh Shilimkar <[email protected]>
2621 L:      [email protected]
2622 S:      Maintained
2623 F:      drivers/clk/keystone/
2624
2625 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2626 M:      Santosh Shilimkar <[email protected]>
2627 L:      [email protected] (moderated for non-subscribers)
2628 L:      [email protected]
2629 S:      Maintained
2630 F:      drivers/clocksource/timer-keystone.c
2631
2632 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2633 M:      Santosh Shilimkar <[email protected]>
2634 L:      [email protected]
2635 S:      Maintained
2636 F:      drivers/power/reset/keystone-reset.c
2637
2638 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2639 M:      Tero Kristo <[email protected]>
2640 M:      Nishanth Menon <[email protected]>
2641 L:      [email protected] (moderated for non-subscribers)
2642 S:      Supported
2643 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2644 F:      arch/arm64/boot/dts/ti/Makefile
2645 F:      arch/arm64/boot/dts/ti/k3-*
2646 F:      include/dt-bindings/pinctrl/k3.h
2647
2648 ARM/THECUS N2100 MACHINE SUPPORT
2649 M:      Lennert Buytenhek <[email protected]>
2650 L:      [email protected] (moderated for non-subscribers)
2651 S:      Maintained
2652
2653 ARM/TOSA MACHINE SUPPORT
2654 M:      Dmitry Eremin-Solenikov <[email protected]>
2655 M:      Dirk Opfer <[email protected]>
2656 S:      Maintained
2657
2658 ARM/UNIPHIER ARCHITECTURE
2659 M:      Masahiro Yamada <[email protected]>
2660 L:      [email protected] (moderated for non-subscribers)
2661 S:      Maintained
2662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2663 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2664 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2665 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2666 F:      arch/arm/boot/dts/uniphier*
2667 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2668 F:      arch/arm/mach-uniphier/
2669 F:      arch/arm/mm/cache-uniphier.c
2670 F:      arch/arm64/boot/dts/socionext/uniphier*
2671 F:      drivers/bus/uniphier-system-bus.c
2672 F:      drivers/clk/uniphier/
2673 F:      drivers/dma/uniphier-mdmac.c
2674 F:      drivers/gpio/gpio-uniphier.c
2675 F:      drivers/i2c/busses/i2c-uniphier*
2676 F:      drivers/irqchip/irq-uniphier-aidet.c
2677 F:      drivers/mmc/host/uniphier-sd.c
2678 F:      drivers/pinctrl/uniphier/
2679 F:      drivers/reset/reset-uniphier.c
2680 F:      drivers/tty/serial/8250/8250_uniphier.c
2681 N:      uniphier
2682
2683 ARM/VERSATILE EXPRESS PLATFORM
2684 M:      Liviu Dudau <[email protected]>
2685 M:      Sudeep Holla <[email protected]>
2686 M:      Lorenzo Pieralisi <[email protected]>
2687 L:      [email protected] (moderated for non-subscribers)
2688 S:      Maintained
2689 F:      */*/*/vexpress*
2690 F:      */*/vexpress*
2691 F:      arch/arm/boot/dts/vexpress*
2692 F:      arch/arm/mach-vexpress/
2693 F:      arch/arm64/boot/dts/arm/
2694 F:      drivers/clk/versatile/clk-vexpress-osc.c
2695 F:      drivers/clocksource/timer-versatile.c
2696 N:      mps2
2697
2698 ARM/VFP SUPPORT
2699 M:      Russell King <[email protected]>
2700 L:      [email protected] (moderated for non-subscribers)
2701 S:      Maintained
2702 W:      http://www.armlinux.org.uk/
2703 F:      arch/arm/vfp/
2704
2705 ARM/VOIPAC PXA270 SUPPORT
2706 M:      Marek Vasut <[email protected]>
2707 L:      [email protected] (moderated for non-subscribers)
2708 S:      Maintained
2709 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2710 F:      arch/arm/mach-pxa/vpac270.c
2711
2712 ARM/VT8500 ARM ARCHITECTURE
2713 M:      Tony Prisk <[email protected]>
2714 L:      [email protected] (moderated for non-subscribers)
2715 S:      Maintained
2716 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2717 F:      arch/arm/mach-vt8500/
2718 F:      drivers/clocksource/timer-vt8500.c
2719 F:      drivers/i2c/busses/i2c-wmt.c
2720 F:      drivers/mmc/host/wmt-sdmmc.c
2721 F:      drivers/pwm/pwm-vt8500.c
2722 F:      drivers/rtc/rtc-vt8500.c
2723 F:      drivers/tty/serial/vt8500_serial.c
2724 F:      drivers/usb/host/ehci-platform.c
2725 F:      drivers/usb/host/uhci-platform.c
2726 F:      drivers/video/fbdev/vt8500lcdfb.*
2727 F:      drivers/video/fbdev/wm8505fb*
2728 F:      drivers/video/fbdev/wmt_ge_rops.*
2729
2730 ARM/ZIPIT Z2 SUPPORT
2731 M:      Marek Vasut <[email protected]>
2732 L:      [email protected] (moderated for non-subscribers)
2733 S:      Maintained
2734 F:      arch/arm/mach-pxa/include/mach/z2.h
2735 F:      arch/arm/mach-pxa/z2.c
2736
2737 ARM/ZTE ARCHITECTURE
2738 M:      Jun Nie <[email protected]>
2739 M:      Shawn Guo <[email protected]>
2740 L:      [email protected] (moderated for non-subscribers)
2741 S:      Maintained
2742 F:      Documentation/devicetree/bindings/arm/zte.yaml
2743 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2744 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2745 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2746 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2747 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2748 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2749 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2750 F:      Documentation/devicetree/bindings/soc/zte/
2751 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2752 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2753 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2754 F:      arch/arm/boot/dts/zx2967*
2755 F:      arch/arm/mach-zx/
2756 F:      arch/arm64/boot/dts/zte/
2757 F:      drivers/clk/zte/
2758 F:      drivers/dma/zx_dma.c
2759 F:      drivers/gpio/gpio-zx.c
2760 F:      drivers/i2c/busses/i2c-zx2967.c
2761 F:      drivers/mmc/host/dw_mmc-zx.*
2762 F:      drivers/pinctrl/zte/
2763 F:      drivers/soc/zte/
2764 F:      drivers/thermal/zx2967_thermal.c
2765 F:      drivers/watchdog/zx2967_wdt.c
2766 F:      include/dt-bindings/clock/zx2967*.h
2767 F:      include/dt-bindings/soc/zte,*.h
2768 F:      sound/soc/codecs/zx_aud96p22.c
2769 F:      sound/soc/zte/
2770
2771 ARM/ZYNQ ARCHITECTURE
2772 M:      Michal Simek <[email protected]>
2773 L:      [email protected] (moderated for non-subscribers)
2774 S:      Supported
2775 W:      http://wiki.xilinx.com
2776 T:      git https://github.com/Xilinx/linux-xlnx.git
2777 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2778 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2779 F:      arch/arm/mach-zynq/
2780 F:      drivers/block/xsysace.c
2781 F:      drivers/clocksource/timer-cadence-ttc.c
2782 F:      drivers/cpuidle/cpuidle-zynq.c
2783 F:      drivers/edac/synopsys_edac.c
2784 F:      drivers/i2c/busses/i2c-cadence.c
2785 F:      drivers/i2c/busses/i2c-xiic.c
2786 F:      drivers/mmc/host/sdhci-of-arasan.c
2787 N:      zynq
2788 N:      xilinx
2789
2790 ARM64 PORT (AARCH64 ARCHITECTURE)
2791 M:      Catalin Marinas <[email protected]>
2792 M:      Will Deacon <[email protected]>
2793 L:      [email protected] (moderated for non-subscribers)
2794 S:      Maintained
2795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2796 F:      Documentation/arm64/
2797 F:      arch/arm64/
2798 F:      tools/testing/selftests/arm64/
2799 X:      arch/arm64/boot/dts/
2800
2801 AS3645A LED FLASH CONTROLLER DRIVER
2802 M:      Sakari Ailus <[email protected]>
2803 L:      [email protected]
2804 S:      Maintained
2805 F:      drivers/leds/leds-as3645a.c
2806
2807 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2808 M:      Tianshu Qiu <[email protected]>
2809 L:      [email protected]
2810 S:      Maintained
2811 T:      git git://linuxtv.org/media_tree.git
2812 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2813 F:      drivers/media/i2c/ak7375.c
2814
2815 ASAHI KASEI AK8974 DRIVER
2816 M:      Linus Walleij <[email protected]>
2817 L:      [email protected]
2818 S:      Supported
2819 W:      http://www.akm.com/
2820 F:      drivers/iio/magnetometer/ak8974.c
2821
2822 ASC7621 HARDWARE MONITOR DRIVER
2823 M:      George Joseph <[email protected]>
2824 L:      [email protected]
2825 S:      Maintained
2826 F:      Documentation/hwmon/asc7621.rst
2827 F:      drivers/hwmon/asc7621.c
2828
2829 ASPEED PINCTRL DRIVERS
2830 M:      Andrew Jeffery <[email protected]>
2831 L:      [email protected] (moderated for non-subscribers)
2832 L:      [email protected] (moderated for non-subscribers)
2833 L:      [email protected]
2834 S:      Maintained
2835 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2836 F:      drivers/pinctrl/aspeed/
2837
2838 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2839 M:      Eddie James <[email protected]>
2840 L:      [email protected] (moderated for non-subscribers)
2841 S:      Maintained
2842 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2843 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2844 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2845
2846 ASPEED VIDEO ENGINE DRIVER
2847 M:      Eddie James <[email protected]>
2848 L:      [email protected]
2849 L:      [email protected] (moderated for non-subscribers)
2850 S:      Maintained
2851 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2852 F:      drivers/media/platform/aspeed-video.c
2853
2854 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2855 M:      Corentin Chary <[email protected]>
2856 L:      [email protected]
2857 L:      [email protected]
2858 S:      Maintained
2859 W:      http://acpi4asus.sf.net
2860 F:      drivers/platform/x86/asus*.c
2861 F:      drivers/platform/x86/eeepc*.c
2862
2863 ASUS WIRELESS RADIO CONTROL DRIVER
2864 M:      João Paulo Rechi Vita <[email protected]>
2865 L:      [email protected]
2866 S:      Maintained
2867 F:      drivers/platform/x86/asus-wireless.c
2868
2869 ASYMMETRIC KEYS
2870 M:      David Howells <[email protected]>
2871 L:      [email protected]
2872 S:      Maintained
2873 F:      Documentation/crypto/asymmetric-keys.rst
2874 F:      crypto/asymmetric_keys/
2875 F:      include/crypto/pkcs7.h
2876 F:      include/crypto/public_key.h
2877 F:      include/linux/verification.h
2878
2879 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2880 R:      Dan Williams <[email protected]>
2881 S:      Odd fixes
2882 W:      http://sourceforge.net/projects/xscaleiop
2883 F:      Documentation/crypto/async-tx-api.rst
2884 F:      crypto/async_tx/
2885 F:      drivers/dma/
2886 F:      include/linux/async_tx.h
2887 F:      include/linux/dmaengine.h
2888
2889 AT24 EEPROM DRIVER
2890 M:      Bartosz Golaszewski <[email protected]>
2891 L:      [email protected]
2892 S:      Maintained
2893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2894 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2895 F:      drivers/misc/eeprom/at24.c
2896
2897 ATA OVER ETHERNET (AOE) DRIVER
2898 M:      "Justin Sanders" <[email protected]>
2899 S:      Supported
2900 W:      http://www.openaoe.org/
2901 F:      Documentation/admin-guide/aoe/
2902 F:      drivers/block/aoe/
2903
2904 ATHEROS 71XX/9XXX GPIO DRIVER
2905 M:      Alban Bedel <[email protected]>
2906 S:      Maintained
2907 W:      https://github.com/AlbanBedel/linux
2908 T:      git git://github.com/AlbanBedel/linux
2909 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2910 F:      drivers/gpio/gpio-ath79.c
2911
2912 ATHEROS 71XX/9XXX USB PHY DRIVER
2913 M:      Alban Bedel <[email protected]>
2914 S:      Maintained
2915 W:      https://github.com/AlbanBedel/linux
2916 T:      git git://github.com/AlbanBedel/linux
2917 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2918 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2919
2920 ATHEROS ATH GENERIC UTILITIES
2921 M:      Kalle Valo <[email protected]>
2922 L:      [email protected]
2923 S:      Supported
2924 F:      drivers/net/wireless/ath/*
2925
2926 ATHEROS ATH5K WIRELESS DRIVER
2927 M:      Jiri Slaby <[email protected]>
2928 M:      Nick Kossifidis <[email protected]>
2929 M:      Luis Chamberlain <[email protected]>
2930 L:      [email protected]
2931 S:      Maintained
2932 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2933 F:      drivers/net/wireless/ath/ath5k/
2934
2935 ATHEROS ATH6KL WIRELESS DRIVER
2936 M:      Kalle Valo <[email protected]>
2937 L:      [email protected]
2938 S:      Supported
2939 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2941 F:      drivers/net/wireless/ath/ath6kl/
2942
2943 ATI_REMOTE2 DRIVER
2944 M:      Ville Syrjala <[email protected]>
2945 S:      Maintained
2946 F:      drivers/input/misc/ati_remote2.c
2947
2948 ATK0110 HWMON DRIVER
2949 M:      Luca Tettamanti <[email protected]>
2950 L:      [email protected]
2951 S:      Maintained
2952 F:      drivers/hwmon/asus_atk0110.c
2953
2954 ATLX ETHERNET DRIVERS
2955 M:      Jay Cliburn <[email protected]>
2956 M:      Chris Snook <[email protected]>
2957 L:      [email protected]
2958 S:      Maintained
2959 W:      http://sourceforge.net/projects/atl1
2960 W:      http://atl1.sourceforge.net
2961 F:      drivers/net/ethernet/atheros/
2962
2963 ATM
2964 M:      Chas Williams <[email protected]>
2965 L:      [email protected] (moderated for non-subscribers)
2966 L:      [email protected]
2967 S:      Maintained
2968 W:      http://linux-atm.sourceforge.net
2969 F:      drivers/atm/
2970 F:      include/linux/atm*
2971 F:      include/uapi/linux/atm*
2972
2973 ATMEL MACB ETHERNET DRIVER
2974 M:      Nicolas Ferre <[email protected]>
2975 M:      Claudiu Beznea <[email protected]>
2976 S:      Supported
2977 F:      drivers/net/ethernet/cadence/
2978
2979 ATMEL MAXTOUCH DRIVER
2980 M:      Nick Dyer <[email protected]>
2981 S:      Maintained
2982 T:      git git://github.com/ndyer/linux.git
2983 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2984 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2985
2986 ATMEL WIRELESS DRIVER
2987 M:      Simon Kelley <[email protected]>
2988 L:      [email protected]
2989 S:      Maintained
2990 W:      http://www.thekelleys.org.uk/atmel
2991 W:      http://atmelwlandriver.sourceforge.net/
2992 F:      drivers/net/wireless/atmel/atmel*
2993
2994 ATOMIC INFRASTRUCTURE
2995 M:      Will Deacon <[email protected]>
2996 M:      Peter Zijlstra <[email protected]>
2997 R:      Boqun Feng <[email protected]>
2998 L:      [email protected]
2999 S:      Maintained
3000 F:      arch/*/include/asm/atomic*.h
3001 F:      include/*/atomic*.h
3002 F:      scripts/atomic/
3003
3004 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3005 M:      Bradley Grove <[email protected]>
3006 L:      [email protected]
3007 S:      Supported
3008 W:      http://www.attotech.com
3009 F:      drivers/scsi/esas2r
3010
3011 ATUSB IEEE 802.15.4 RADIO DRIVER
3012 M:      Stefan Schmidt <[email protected]>
3013 L:      [email protected]
3014 S:      Maintained
3015 F:      drivers/net/ieee802154/at86rf230.h
3016 F:      drivers/net/ieee802154/atusb.c
3017 F:      drivers/net/ieee802154/atusb.h
3018
3019 AUDIT SUBSYSTEM
3020 M:      Paul Moore <[email protected]>
3021 M:      Eric Paris <[email protected]>
3022 L:      [email protected] (moderated for non-subscribers)
3023 S:      Supported
3024 W:      https://github.com/linux-audit
3025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3026 F:      include/linux/audit.h
3027 F:      include/uapi/linux/audit.h
3028 F:      kernel/audit*
3029
3030 AUXILIARY DISPLAY DRIVERS
3031 M:      Miguel Ojeda Sandonis <[email protected]>
3032 S:      Maintained
3033 F:      drivers/auxdisplay/
3034 F:      include/linux/cfag12864b.h
3035
3036 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3037 M:      Andreas Klinger <[email protected]>
3038 L:      [email protected]
3039 S:      Maintained
3040 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3041 F:      drivers/iio/adc/hx711.c
3042
3043 AX.25 NETWORK LAYER
3044 M:      Ralf Baechle <[email protected]>
3045 L:      [email protected]
3046 S:      Maintained
3047 W:      http://www.linux-ax25.org/
3048 F:      include/net/ax25.h
3049 F:      include/uapi/linux/ax25.h
3050 F:      net/ax25/
3051
3052 AXENTIA ARM DEVICES
3053 M:      Peter Rosin <[email protected]>
3054 L:      [email protected] (moderated for non-subscribers)
3055 S:      Maintained
3056 F:      arch/arm/boot/dts/at91-linea.dtsi
3057 F:      arch/arm/boot/dts/at91-natte.dtsi
3058 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3059 F:      arch/arm/boot/dts/at91-tse850-3.dts
3060
3061 AXENTIA ASOC DRIVERS
3062 M:      Peter Rosin <[email protected]>
3063 L:      [email protected] (moderated for non-subscribers)
3064 S:      Maintained
3065 F:      Documentation/devicetree/bindings/sound/axentia,*
3066 F:      sound/soc/atmel/tse850-pcm5142.c
3067
3068 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3069 M:      Nuno Sá <[email protected]>
3070 L:      [email protected]
3071 S:      Supported
3072 W:      http://ez.analog.com/community/linux-device-drivers
3073 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3074 F:      drivers/hwmon/axi-fan-control.c
3075
3076 AXXIA I2C CONTROLLER
3077 M:      Krzysztof Adamski <[email protected]>
3078 L:      [email protected]
3079 S:      Maintained
3080 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3081 F:      drivers/i2c/busses/i2c-axxia.c
3082
3083 AZ6007 DVB DRIVER
3084 M:      Mauro Carvalho Chehab <[email protected]>
3085 L:      [email protected]
3086 S:      Maintained
3087 W:      https://linuxtv.org
3088 T:      git git://linuxtv.org/media_tree.git
3089 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3090
3091 AZTECH FM RADIO RECEIVER DRIVER
3092 M:      Hans Verkuil <[email protected]>
3093 L:      [email protected]
3094 S:      Maintained
3095 W:      https://linuxtv.org
3096 T:      git git://linuxtv.org/media_tree.git
3097 F:      drivers/media/radio/radio-aztech*
3098
3099 B43 WIRELESS DRIVER
3100 L:      [email protected]
3101 L:      [email protected]
3102 S:      Odd Fixes
3103 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3104 F:      drivers/net/wireless/broadcom/b43/
3105
3106 B43LEGACY WIRELESS DRIVER
3107 M:      Larry Finger <[email protected]>
3108 L:      [email protected]
3109 L:      [email protected]
3110 S:      Maintained
3111 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3112 F:      drivers/net/wireless/broadcom/b43legacy/
3113
3114 BACKLIGHT CLASS/SUBSYSTEM
3115 M:      Lee Jones <[email protected]>
3116 M:      Daniel Thompson <[email protected]>
3117 M:      Jingoo Han <[email protected]>
3118 L:      [email protected]
3119 S:      Maintained
3120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3121 F:      Documentation/ABI/stable/sysfs-class-backlight
3122 F:      Documentation/ABI/testing/sysfs-class-backlight
3123 F:      Documentation/devicetree/bindings/leds/backlight
3124 F:      drivers/video/backlight/
3125 F:      include/linux/backlight.h
3126 F:      include/linux/pwm_backlight.h
3127
3128 BATMAN ADVANCED
3129 M:      Marek Lindner <[email protected]>
3130 M:      Simon Wunderlich <[email protected]>
3131 M:      Antonio Quartulli <[email protected]>
3132 M:      Sven Eckelmann <[email protected]>
3133 L:      [email protected] (moderated for non-subscribers)
3134 S:      Maintained
3135 W:      https://www.open-mesh.org/
3136 Q:      https://patchwork.open-mesh.org/project/batman/list/
3137 B:      https://www.open-mesh.org/projects/batman-adv/issues
3138 C:      irc://chat.freenode.net/batman
3139 T:      git https://git.open-mesh.org/linux-merge.git
3140 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3141 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3142 F:      Documentation/networking/batman-adv.rst
3143 F:      include/uapi/linux/batadv_packet.h
3144 F:      include/uapi/linux/batman_adv.h
3145 F:      net/batman-adv/
3146
3147 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3148 M:      Thomas Sailer <[email protected]>
3149 L:      [email protected]
3150 S:      Maintained
3151 W:      http://www.baycom.org/~tom/ham/ham.html
3152 F:      drivers/net/hamradio/baycom*
3153
3154 BCACHE (BLOCK LAYER CACHE)
3155 M:      Coly Li <[email protected]>
3156 M:      Kent Overstreet <[email protected]>
3157 L:      [email protected]
3158 S:      Maintained
3159 W:      http://bcache.evilpiepirate.org
3160 C:      irc://irc.oftc.net/bcache
3161 F:      drivers/md/bcache/
3162
3163 BDISP ST MEDIA DRIVER
3164 M:      Fabien Dessenne <[email protected]>
3165 L:      [email protected]
3166 S:      Supported
3167 W:      https://linuxtv.org
3168 T:      git git://linuxtv.org/media_tree.git
3169 F:      drivers/media/platform/sti/bdisp
3170
3171 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3172 M:      Dariusz Marcinkiewicz <[email protected]>
3173 L:      [email protected]
3174 S:      Maintained
3175 F:      drivers/net/ethernet/ec_bhf.c
3176
3177 BEFS FILE SYSTEM
3178 M:      Luis de Bethencourt <[email protected]>
3179 M:      Salah Triki <[email protected]>
3180 S:      Maintained
3181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3182 F:      Documentation/filesystems/befs.rst
3183 F:      fs/befs/
3184
3185 BFQ I/O SCHEDULER
3186 M:      Paolo Valente <[email protected]>
3187 M:      Jens Axboe <[email protected]>
3188 L:      [email protected]
3189 S:      Maintained
3190 F:      Documentation/block/bfq-iosched.rst
3191 F:      block/bfq-*
3192
3193 BFS FILE SYSTEM
3194 M:      "Tigran A. Aivazian" <[email protected]>
3195 S:      Maintained
3196 F:      Documentation/filesystems/bfs.rst
3197 F:      fs/bfs/
3198 F:      include/uapi/linux/bfs_fs.h
3199
3200 BLINKM RGB LED DRIVER
3201 M:      Jan-Simon Moeller <[email protected]>
3202 S:      Maintained
3203 F:      drivers/leds/leds-blinkm.c
3204
3205 BLOCK LAYER
3206 M:      Jens Axboe <[email protected]>
3207 L:      [email protected]
3208 S:      Maintained
3209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3210 F:      block/
3211 F:      drivers/block/
3212 F:      include/linux/blk*
3213 F:      kernel/trace/blktrace.c
3214 F:      lib/sbitmap.c
3215
3216 BLOCK2MTD DRIVER
3217 M:      Joern Engel <[email protected]>
3218 L:      [email protected]
3219 S:      Maintained
3220 F:      drivers/mtd/devices/block2mtd.c
3221
3222 BLUETOOTH DRIVERS
3223 M:      Marcel Holtmann <[email protected]>
3224 M:      Johan Hedberg <[email protected]>
3225 L:      [email protected]
3226 S:      Maintained
3227 W:      http://www.bluez.org/
3228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3230 F:      drivers/bluetooth/
3231
3232 BLUETOOTH SUBSYSTEM
3233 M:      Marcel Holtmann <[email protected]>
3234 M:      Johan Hedberg <[email protected]>
3235 L:      [email protected]
3236 S:      Maintained
3237 W:      http://www.bluez.org/
3238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3240 F:      include/net/bluetooth/
3241 F:      net/bluetooth/
3242
3243 BONDING DRIVER
3244 M:      Jay Vosburgh <[email protected]>
3245 M:      Veaceslav Falico <[email protected]>
3246 M:      Andy Gospodarek <[email protected]>
3247 L:      [email protected]
3248 S:      Supported
3249 W:      http://sourceforge.net/projects/bonding/
3250 F:      drivers/net/bonding/
3251 F:      include/uapi/linux/if_bonding.h
3252
3253 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3254 M:      Dan Robertson <[email protected]>
3255 L:      [email protected]
3256 S:      Maintained
3257 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3258 F:      drivers/iio/accel/bma400*
3259
3260 BPF (Safe dynamic programs and tools)
3261 M:      Alexei Starovoitov <[email protected]>
3262 M:      Daniel Borkmann <[email protected]>
3263 R:      Martin KaFai Lau <[email protected]>
3264 R:      Song Liu <[email protected]>
3265 R:      Yonghong Song <[email protected]>
3266 R:      Andrii Nakryiko <[email protected]>
3267 R:      John Fastabend <[email protected]>
3268 R:      KP Singh <[email protected]>
3269 L:      [email protected]
3270 L:      [email protected]
3271 S:      Supported
3272 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3275 F:      Documentation/bpf/
3276 F:      Documentation/networking/filter.rst
3277 F:      arch/*/net/*
3278 F:      include/linux/bpf*
3279 F:      include/linux/filter.h
3280 F:      include/trace/events/xdp.h
3281 F:      include/uapi/linux/bpf*
3282 F:      include/uapi/linux/filter.h
3283 F:      kernel/bpf/
3284 F:      kernel/trace/bpf_trace.c
3285 F:      lib/test_bpf.c
3286 F:      net/bpf/
3287 F:      net/core/filter.c
3288 F:      net/sched/act_bpf.c
3289 F:      net/sched/cls_bpf.c
3290 F:      samples/bpf/
3291 F:      tools/bpf/
3292 F:      tools/lib/bpf/
3293 F:      tools/testing/selftests/bpf/
3294 N:      bpf
3295 K:      bpf
3296
3297 BPF JIT for ARM
3298 M:      Shubham Bansal <[email protected]>
3299 L:      [email protected]
3300 L:      [email protected]
3301 S:      Maintained
3302 F:      arch/arm/net/
3303
3304 BPF JIT for ARM64
3305 M:      Daniel Borkmann <[email protected]>
3306 M:      Alexei Starovoitov <[email protected]>
3307 M:      Zi Shen Lim <[email protected]>
3308 L:      [email protected]
3309 L:      [email protected]
3310 S:      Supported
3311 F:      arch/arm64/net/
3312
3313 BPF JIT for MIPS (32-BIT AND 64-BIT)
3314 M:      Paul Burton <[email protected]>
3315 L:      [email protected]
3316 L:      [email protected]
3317 S:      Maintained
3318 F:      arch/mips/net/
3319
3320 BPF JIT for NFP NICs
3321 M:      Jakub Kicinski <[email protected]>
3322 L:      [email protected]
3323 L:      [email protected]
3324 S:      Supported
3325 F:      drivers/net/ethernet/netronome/nfp/bpf/
3326
3327 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3328 M:      Naveen N. Rao <[email protected]>
3329 M:      Sandipan Das <[email protected]>
3330 L:      [email protected]
3331 L:      [email protected]
3332 S:      Maintained
3333 F:      arch/powerpc/net/
3334
3335 BPF JIT for RISC-V (32-bit)
3336 M:      Luke Nelson <[email protected]>
3337 M:      Xi Wang <[email protected]>
3338 L:      [email protected]
3339 L:      [email protected]
3340 S:      Maintained
3341 F:      arch/riscv/net/
3342 X:      arch/riscv/net/bpf_jit_comp64.c
3343
3344 BPF JIT for RISC-V (64-bit)
3345 M:      Björn Töpel <[email protected]>
3346 L:      [email protected]
3347 L:      [email protected]
3348 S:      Maintained
3349 F:      arch/riscv/net/
3350 X:      arch/riscv/net/bpf_jit_comp32.c
3351
3352 BPF JIT for S390
3353 M:      Ilya Leoshkevich <[email protected]>
3354 M:      Heiko Carstens <[email protected]>
3355 M:      Vasily Gorbik <[email protected]>
3356 L:      [email protected]
3357 L:      [email protected]
3358 S:      Maintained
3359 F:      arch/s390/net/
3360 X:      arch/s390/net/pnet.c
3361
3362 BPF JIT for SPARC (32-BIT AND 64-BIT)
3363 M:      David S. Miller <[email protected]>
3364 L:      [email protected]
3365 L:      [email protected]
3366 S:      Maintained
3367 F:      arch/sparc/net/
3368
3369 BPF JIT for X86 32-BIT
3370 M:      Wang YanQing <[email protected]>
3371 L:      [email protected]
3372 L:      [email protected]
3373 S:      Maintained
3374 F:      arch/x86/net/bpf_jit_comp32.c
3375
3376 BPF JIT for X86 64-BIT
3377 M:      Alexei Starovoitov <[email protected]>
3378 M:      Daniel Borkmann <[email protected]>
3379 L:      [email protected]
3380 L:      [email protected]
3381 S:      Supported
3382 F:      arch/x86/net/
3383 X:      arch/x86/net/bpf_jit_comp32.c
3384
3385 BROADCOM B44 10/100 ETHERNET DRIVER
3386 M:      Michael Chan <[email protected]>
3387 L:      [email protected]
3388 S:      Supported
3389 F:      drivers/net/ethernet/broadcom/b44.*
3390
3391 BROADCOM B53 ETHERNET SWITCH DRIVER
3392 M:      Florian Fainelli <[email protected]>
3393 L:      [email protected]
3394 L:      [email protected] (subscribers-only)
3395 S:      Supported
3396 F:      Documentation/devicetree/bindings/net/dsa/b53.txt
3397 F:      drivers/net/dsa/b53/*
3398 F:      include/linux/platform_data/b53.h
3399
3400 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3401 M:      Nicolas Saenz Julienne <[email protected]>
3402 L:      [email protected]
3403 L:      [email protected] (moderated for non-subscribers)
3404 L:      [email protected] (moderated for non-subscribers)
3405 S:      Maintained
3406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3407 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3408 F:      drivers/pci/controller/pcie-brcmstb.c
3409 F:      drivers/staging/vc04_services
3410 N:      bcm2711
3411 N:      bcm2835
3412
3413 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3414 M:      Florian Fainelli <[email protected]>
3415 M:      Ray Jui <[email protected]>
3416 M:      Scott Branden <[email protected]>
3417 M:      [email protected]
3418 S:      Maintained
3419 T:      git git://github.com/broadcom/mach-bcm
3420 F:      arch/arm/mach-bcm/
3421 N:      bcm281*
3422 N:      bcm113*
3423 N:      bcm216*
3424 N:      kona
3425
3426 BROADCOM BCM47XX MIPS ARCHITECTURE
3427 M:      Hauke Mehrtens <[email protected]>
3428 M:      Rafał Miłecki <[email protected]>
3429 L:      [email protected]
3430 S:      Maintained
3431 F:      Documentation/devicetree/bindings/mips/brcm/
3432 F:      arch/mips/bcm47xx/*
3433 F:      arch/mips/include/asm/mach-bcm47xx/*
3434
3435 BROADCOM BCM5301X ARM ARCHITECTURE
3436 M:      Hauke Mehrtens <[email protected]>
3437 M:      Rafał Miłecki <[email protected]>
3438 M:      [email protected]
3439 L:      [email protected]
3440 S:      Maintained
3441 F:      arch/arm/boot/dts/bcm470*
3442 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3443 F:      arch/arm/boot/dts/bcm953012*
3444 F:      arch/arm/mach-bcm/bcm_5301x.c
3445
3446 BROADCOM BCM53573 ARM ARCHITECTURE
3447 M:      Rafał Miłecki <[email protected]>
3448 L:      [email protected]
3449 L:      [email protected]
3450 S:      Maintained
3451 F:      arch/arm/boot/dts/bcm47189*
3452 F:      arch/arm/boot/dts/bcm53573*
3453
3454 BROADCOM BCM63XX ARM ARCHITECTURE
3455 M:      Florian Fainelli <[email protected]>
3456 M:      [email protected]
3457 L:      [email protected] (moderated for non-subscribers)
3458 S:      Maintained
3459 T:      git git://github.com/broadcom/stblinux.git
3460 N:      bcm63xx
3461
3462 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3463 M:      Kevin Cernekee <[email protected]>
3464 L:      [email protected]
3465 S:      Maintained
3466 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3467
3468 BROADCOM BCM7XXX ARM ARCHITECTURE
3469 M:      Florian Fainelli <[email protected]>
3470 M:      [email protected]
3471 L:      [email protected] (moderated for non-subscribers)
3472 S:      Maintained
3473 T:      git git://github.com/broadcom/stblinux.git
3474 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3475 F:      arch/arm/boot/dts/bcm7*.dts*
3476 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3477 F:      arch/arm/mach-bcm/*brcmstb*
3478 F:      arch/arm/mm/cache-b15-rac.c
3479 F:      drivers/bus/brcmstb_gisb.c
3480 F:      drivers/pci/controller/pcie-brcmstb.c
3481 N:      brcmstb
3482
3483 BROADCOM BMIPS CPUFREQ DRIVER
3484 M:      Markus Mayer <[email protected]>
3485 M:      [email protected]
3486 L:      [email protected]
3487 S:      Maintained
3488 F:      drivers/cpufreq/bmips-cpufreq.c
3489
3490 BROADCOM BMIPS MIPS ARCHITECTURE
3491 M:      Florian Fainelli <[email protected]>
3492 L:      [email protected]
3493 L:      [email protected]
3494 S:      Maintained
3495 T:      git git://github.com/broadcom/stblinux.git
3496 F:      arch/mips/bmips/*
3497 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3498 F:      arch/mips/include/asm/mach-bmips/*
3499 F:      arch/mips/kernel/*bmips*
3500 F:      drivers/irqchip/irq-bcm63*
3501 F:      drivers/irqchip/irq-bcm7*
3502 F:      drivers/irqchip/irq-brcmstb*
3503 F:      include/linux/bcm963xx_nvram.h
3504 F:      include/linux/bcm963xx_tag.h
3505
3506 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3507 M:      Rasesh Mody <[email protected]>
3508 M:      [email protected]
3509 L:      [email protected]
3510 S:      Supported
3511 F:      drivers/net/ethernet/broadcom/bnx2.*
3512 F:      drivers/net/ethernet/broadcom/bnx2_*
3513
3514 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3515 M:      [email protected]
3516 L:      [email protected]
3517 S:      Supported
3518 F:      drivers/scsi/bnx2fc/
3519
3520 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3521 M:      [email protected]
3522 L:      [email protected]
3523 S:      Supported
3524 F:      drivers/scsi/bnx2i/
3525
3526 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3527 M:      Ariel Elior <[email protected]>
3528 M:      Sudarsana Kalluru <[email protected]>
3529 M:      [email protected]
3530 L:      [email protected]
3531 S:      Supported
3532 F:      drivers/net/ethernet/broadcom/bnx2x/
3533
3534 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3535 M:      Michael Chan <[email protected]>
3536 L:      [email protected]
3537 S:      Supported
3538 F:      drivers/net/ethernet/broadcom/bnxt/
3539
3540 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3541 M:      Arend van Spriel <[email protected]>
3542 M:      Franky Lin <[email protected]>
3543 M:      Hante Meuleman <[email protected]>
3544 M:      Chi-Hsien Lin <[email protected]>
3545 M:      Wright Feng <[email protected]>
3546 L:      [email protected]
3547 L:      [email protected]
3548 L:      [email protected]
3549 S:      Supported
3550 F:      drivers/net/wireless/broadcom/brcm80211/
3551
3552 BROADCOM BRCMSTB GPIO DRIVER
3553 M:      Gregory Fong <[email protected]>
3554 L:      [email protected]
3555 S:      Supported
3556 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3557 F:      drivers/gpio/gpio-brcmstb.c
3558
3559 BROADCOM BRCMSTB I2C DRIVER
3560 M:      Kamal Dasu <[email protected]>
3561 L:      [email protected]
3562 L:      [email protected]
3563 S:      Supported
3564 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3565 F:      drivers/i2c/busses/i2c-brcmstb.c
3566
3567 BROADCOM BRCMSTB USB EHCI DRIVER
3568 M:      Al Cooper <[email protected]>
3569 L:      [email protected]
3570 L:      [email protected]
3571 S:      Maintained
3572 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3573 F:      drivers/usb/host/ehci-brcm.*
3574
3575 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3576 M:      Al Cooper <[email protected]>
3577 L:      [email protected]
3578 L:      [email protected]
3579 S:      Maintained
3580 F:      drivers/phy/broadcom/phy-brcm-usb*
3581
3582 BROADCOM ETHERNET PHY DRIVERS
3583 M:      Florian Fainelli <[email protected]>
3584 L:      [email protected]
3585 L:      [email protected]
3586 S:      Supported
3587 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3588 F:      drivers/net/phy/bcm*.[ch]
3589 F:      drivers/net/phy/broadcom.c
3590 F:      include/linux/brcmphy.h
3591
3592 BROADCOM GENET ETHERNET DRIVER
3593 M:      Doug Berger <[email protected]>
3594 M:      Florian Fainelli <[email protected]>
3595 L:      [email protected]
3596 L:      [email protected]
3597 S:      Supported
3598 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3599 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3600 F:      drivers/net/ethernet/broadcom/genet/
3601 F:      drivers/net/mdio/mdio-bcm-unimac.c
3602 F:      include/linux/platform_data/bcmgenet.h
3603 F:      include/linux/platform_data/mdio-bcm-unimac.h
3604
3605 BROADCOM IPROC ARM ARCHITECTURE
3606 M:      Ray Jui <[email protected]>
3607 M:      Scott Branden <[email protected]>
3608 M:      [email protected]
3609 L:      [email protected] (moderated for non-subscribers)
3610 S:      Maintained
3611 T:      git git://github.com/broadcom/cygnus-linux.git
3612 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3613 F:      arch/arm64/boot/dts/broadcom/stingray/*
3614 F:      drivers/clk/bcm/clk-ns*
3615 F:      drivers/clk/bcm/clk-sr*
3616 F:      drivers/pinctrl/bcm/pinctrl-ns*
3617 F:      include/dt-bindings/clock/bcm-sr*
3618 N:      iproc
3619 N:      cygnus
3620 N:      bcm[-_]nsp
3621 N:      bcm9113*
3622 N:      bcm9583*
3623 N:      bcm9585*
3624 N:      bcm9586*
3625 N:      bcm988312
3626 N:      bcm113*
3627 N:      bcm583*
3628 N:      bcm585*
3629 N:      bcm586*
3630 N:      bcm88312
3631 N:      hr2
3632 N:      stingray
3633
3634 BROADCOM KONA GPIO DRIVER
3635 M:      Ray Jui <[email protected]>
3636 L:      [email protected]
3637 S:      Supported
3638 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3639 F:      drivers/gpio/gpio-bcm-kona.c
3640
3641 BROADCOM NETXTREME-E ROCE DRIVER
3642 M:      Selvin Xavier <[email protected]>
3643 M:      Devesh Sharma <[email protected]>
3644 M:      Somnath Kotur <[email protected]>
3645 M:      Sriharsha Basavapatna <[email protected]>
3646 M:      Naresh Kumar PBS <[email protected]>
3647 L:      [email protected]
3648 S:      Supported
3649 W:      http://www.broadcom.com
3650 F:      drivers/infiniband/hw/bnxt_re/
3651 F:      include/uapi/rdma/bnxt_re-abi.h
3652
3653 BROADCOM NVRAM DRIVER
3654 M:      Rafał Miłecki <[email protected]>
3655 L:      [email protected]
3656 S:      Maintained
3657 F:      drivers/firmware/broadcom/*
3658
3659 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3660 M:      Rafał Miłecki <[email protected]>
3661 L:      [email protected]
3662 S:      Maintained
3663 F:      drivers/bcma/
3664 F:      include/linux/bcma/
3665
3666 BROADCOM SPI DRIVER
3667 M:      Kamal Dasu <[email protected]>
3668 M:      [email protected]
3669 S:      Maintained
3670 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3671 F:      drivers/spi/spi-bcm-qspi.*
3672 F:      drivers/spi/spi-brcmstb-qspi.c
3673 F:      drivers/spi/spi-iproc-qspi.c
3674
3675 BROADCOM STB AVS CPUFREQ DRIVER
3676 M:      Markus Mayer <[email protected]>
3677 M:      [email protected]
3678 L:      [email protected]
3679 S:      Maintained
3680 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3681 F:      drivers/cpufreq/brcmstb*
3682
3683 BROADCOM STB AVS TMON DRIVER
3684 M:      Markus Mayer <[email protected]>
3685 M:      [email protected]
3686 L:      [email protected]
3687 S:      Maintained
3688 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3689 F:      drivers/thermal/broadcom/brcmstb*
3690
3691 BROADCOM STB DPFE DRIVER
3692 M:      Markus Mayer <[email protected]>
3693 M:      [email protected]
3694 L:      [email protected] (moderated for non-subscribers)
3695 S:      Maintained
3696 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3697 F:      drivers/memory/brcmstb_dpfe.c
3698
3699 BROADCOM STB NAND FLASH DRIVER
3700 M:      Brian Norris <[email protected]>
3701 M:      Kamal Dasu <[email protected]>
3702 L:      [email protected]
3703 L:      [email protected]
3704 S:      Maintained
3705 F:      drivers/mtd/nand/raw/brcmnand/
3706
3707 BROADCOM SYSTEMPORT ETHERNET DRIVER
3708 M:      Florian Fainelli <[email protected]>
3709 L:      [email protected]
3710 L:      [email protected]
3711 S:      Supported
3712 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3713
3714 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3715 M:      Siva Reddy Kallam <[email protected]>
3716 M:      Prashant Sreedharan <[email protected]>
3717 M:      Michael Chan <[email protected]>
3718 L:      [email protected]
3719 S:      Supported
3720 F:      drivers/net/ethernet/broadcom/tg3.*
3721
3722 BROCADE BFA FC SCSI DRIVER
3723 M:      Anil Gurumurthy <[email protected]>
3724 M:      Sudarsana Kalluru <[email protected]>
3725 L:      [email protected]
3726 S:      Supported
3727 F:      drivers/scsi/bfa/
3728
3729 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3730 M:      Rasesh Mody <[email protected]>
3731 M:      Sudarsana Kalluru <[email protected]>
3732 M:      [email protected]
3733 L:      [email protected]
3734 S:      Supported
3735 F:      drivers/net/ethernet/brocade/bna/
3736
3737 BSG (block layer generic sg v4 driver)
3738 M:      FUJITA Tomonori <[email protected]>
3739 L:      [email protected]
3740 S:      Supported
3741 F:      block/bsg.c
3742 F:      include/linux/bsg.h
3743 F:      include/uapi/linux/bsg.h
3744
3745 BT87X AUDIO DRIVER
3746 M:      Clemens Ladisch <[email protected]>
3747 L:      [email protected] (moderated for non-subscribers)
3748 S:      Maintained
3749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3750 F:      Documentation/sound/cards/bt87x.rst
3751 F:      sound/pci/bt87x.c
3752
3753 BT8XXGPIO DRIVER
3754 M:      Michael Buesch <[email protected]>
3755 S:      Maintained
3756 W:      http://bu3sch.de/btgpio.php
3757 F:      drivers/gpio/gpio-bt8xx.c
3758
3759 BTRFS FILE SYSTEM
3760 M:      Chris Mason <[email protected]>
3761 M:      Josef Bacik <[email protected]>
3762 M:      David Sterba <[email protected]>
3763 L:      [email protected]
3764 S:      Maintained
3765 W:      http://btrfs.wiki.kernel.org/
3766 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3768 F:      Documentation/filesystems/btrfs.rst
3769 F:      fs/btrfs/
3770 F:      include/linux/btrfs*
3771 F:      include/uapi/linux/btrfs*
3772
3773 BTTV VIDEO4LINUX DRIVER
3774 M:      Mauro Carvalho Chehab <[email protected]>
3775 L:      [email protected]
3776 S:      Odd fixes
3777 W:      https://linuxtv.org
3778 T:      git git://linuxtv.org/media_tree.git
3779 F:      Documentation/driver-api/media/drivers/bttv*
3780 F:      drivers/media/pci/bt8xx/bttv*
3781
3782 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3783 M:      Chanwoo Choi <[email protected]>
3784 L:      [email protected]
3785 L:      [email protected]
3786 S:      Maintained
3787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3788 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3789 F:      drivers/devfreq/exynos-bus.c
3790
3791 BUSLOGIC SCSI DRIVER
3792 M:      Khalid Aziz <[email protected]>
3793 L:      [email protected]
3794 S:      Maintained
3795 F:      drivers/scsi/BusLogic.*
3796 F:      drivers/scsi/FlashPoint.*
3797
3798 C-MEDIA CMI8788 DRIVER
3799 M:      Clemens Ladisch <[email protected]>
3800 L:      [email protected] (moderated for non-subscribers)
3801 S:      Maintained
3802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3803 F:      sound/pci/oxygen/
3804
3805 C-SKY ARCHITECTURE
3806 M:      Guo Ren <[email protected]>
3807 L:      [email protected]
3808 S:      Supported
3809 T:      git https://github.com/c-sky/csky-linux.git
3810 F:      Documentation/devicetree/bindings/csky/
3811 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3812 F:      Documentation/devicetree/bindings/timer/csky,*
3813 F:      arch/csky/
3814 F:      drivers/clocksource/timer-gx6605s.c
3815 F:      drivers/clocksource/timer-mp-csky.c
3816 F:      drivers/irqchip/irq-csky-*
3817 N:      csky
3818 K:      csky
3819
3820 C6X ARCHITECTURE
3821 M:      Mark Salter <[email protected]>
3822 M:      Aurelien Jacquiot <[email protected]>
3823 L:      [email protected]
3824 S:      Maintained
3825 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3826 F:      arch/c6x/
3827
3828 CA8210 IEEE-802.15.4 RADIO DRIVER
3829 M:      Harry Morris <[email protected]>
3830 L:      [email protected]
3831 S:      Maintained
3832 W:      https://github.com/Cascoda/ca8210-linux.git
3833 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3834 F:      drivers/net/ieee802154/ca8210.c
3835
3836 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3837 M:      David Howells <[email protected]>
3838 L:      [email protected] (moderated for non-subscribers)
3839 S:      Supported
3840 F:      Documentation/filesystems/caching/cachefiles.rst
3841 F:      fs/cachefiles/
3842
3843 CADENCE MIPI-CSI2 BRIDGES
3844 M:      Maxime Ripard <[email protected]>
3845 L:      [email protected]
3846 S:      Maintained
3847 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3848 F:      drivers/media/platform/cadence/cdns-csi2*
3849
3850 CADENCE NAND DRIVER
3851 L:      [email protected]
3852 S:      Orphan
3853 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3854 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3855
3856 CADET FM/AM RADIO RECEIVER DRIVER
3857 M:      Hans Verkuil <[email protected]>
3858 L:      [email protected]
3859 S:      Maintained
3860 W:      https://linuxtv.org
3861 T:      git git://linuxtv.org/media_tree.git
3862 F:      drivers/media/radio/radio-cadet*
3863
3864 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3865 M:      Jonathan Corbet <[email protected]>
3866 L:      [email protected]
3867 S:      Maintained
3868 T:      git git://linuxtv.org/media_tree.git
3869 F:      Documentation/admin-guide/media/cafe_ccic*
3870 F:      drivers/media/platform/marvell-ccic/
3871
3872 CAIF NETWORK LAYER
3873 L:      [email protected]
3874 S:      Orphan
3875 F:      Documentation/networking/caif/
3876 F:      drivers/net/caif/
3877 F:      include/net/caif/
3878 F:      include/uapi/linux/caif/
3879 F:      net/caif/
3880
3881 CAKE QDISC
3882 M:      Toke Høiland-Jørgensen <[email protected]>
3883 L:      [email protected] (moderated for non-subscribers)
3884 S:      Maintained
3885 F:      net/sched/sch_cake.c
3886
3887 CAN NETWORK DRIVERS
3888 M:      Wolfgang Grandegger <[email protected]>
3889 M:      Marc Kleine-Budde <[email protected]>
3890 L:      [email protected]
3891 S:      Maintained
3892 W:      https://github.com/linux-can
3893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3895 F:      Documentation/devicetree/bindings/net/can/
3896 F:      drivers/net/can/
3897 F:      include/linux/can/dev.h
3898 F:      include/linux/can/led.h
3899 F:      include/linux/can/platform/
3900 F:      include/linux/can/rx-offload.h
3901 F:      include/uapi/linux/can/error.h
3902 F:      include/uapi/linux/can/netlink.h
3903 F:      include/uapi/linux/can/vxcan.h
3904
3905 CAN NETWORK LAYER
3906 M:      Oliver Hartkopp <[email protected]>
3907 M:      Marc Kleine-Budde <[email protected]>
3908 L:      [email protected]
3909 S:      Maintained
3910 W:      https://github.com/linux-can
3911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3913 F:      Documentation/networking/can.rst
3914 F:      include/linux/can/core.h
3915 F:      include/linux/can/skb.h
3916 F:      include/net/netns/can.h
3917 F:      include/uapi/linux/can.h
3918 F:      include/uapi/linux/can/bcm.h
3919 F:      include/uapi/linux/can/gw.h
3920 F:      include/uapi/linux/can/isotp.h
3921 F:      include/uapi/linux/can/raw.h
3922 F:      net/can/
3923
3924 CAN-J1939 NETWORK LAYER
3925 M:      Robin van der Gracht <[email protected]>
3926 M:      Oleksij Rempel <[email protected]>
3927 R:      Pengutronix Kernel Team <[email protected]>
3928 L:      [email protected]
3929 S:      Maintained
3930 F:      Documentation/networking/j1939.rst
3931 F:      include/uapi/linux/can/j1939.h
3932 F:      net/can/j1939/
3933
3934 CAPABILITIES
3935 M:      Serge Hallyn <[email protected]>
3936 L:      [email protected]
3937 S:      Supported
3938 F:      include/linux/capability.h
3939 F:      include/uapi/linux/capability.h
3940 F:      kernel/capability.c
3941 F:      security/commoncap.c
3942
3943 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3944 M:      Kevin Tsai <[email protected]>
3945 S:      Maintained
3946 F:      drivers/iio/light/cm*
3947
3948 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3949 M:      Christian Lamparter <[email protected]>
3950 L:      [email protected]
3951 S:      Maintained
3952 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3953 F:      drivers/net/wireless/ath/carl9170/
3954
3955 CAVIUM I2C DRIVER
3956 M:      Robert Richter <[email protected]>
3957 S:      Odd Fixes
3958 W:      http://www.marvell.com
3959 F:      drivers/i2c/busses/i2c-octeon*
3960 F:      drivers/i2c/busses/i2c-thunderx*
3961
3962 CAVIUM LIQUIDIO NETWORK DRIVER
3963 M:      Derek Chickles <[email protected]>
3964 M:      Satanand Burla <[email protected]>
3965 M:      Felix Manlunas <[email protected]>
3966 L:      [email protected]
3967 S:      Supported
3968 W:      http://www.marvell.com
3969 F:      drivers/net/ethernet/cavium/liquidio/
3970
3971 CAVIUM MMC DRIVER
3972 M:      Robert Richter <[email protected]>
3973 S:      Odd Fixes
3974 W:      http://www.marvell.com
3975 F:      drivers/mmc/host/cavium*
3976
3977 CAVIUM OCTEON-TX CRYPTO DRIVER
3978 M:      George Cherian <[email protected]>
3979 L:      [email protected]
3980 S:      Supported
3981 W:      http://www.marvell.com
3982 F:      drivers/crypto/cavium/cpt/
3983
3984 CAVIUM THUNDERX2 ARM64 SOC
3985 M:      Robert Richter <[email protected]>
3986 L:      [email protected] (moderated for non-subscribers)
3987 S:      Odd Fixes
3988 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3989 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3990
3991 CC2520 IEEE-802.15.4 RADIO DRIVER
3992 M:      Varka Bhadram <[email protected]>
3993 L:      [email protected]
3994 S:      Maintained
3995 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3996 F:      drivers/net/ieee802154/cc2520.c
3997 F:      include/linux/spi/cc2520.h
3998
3999 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4000 M:      Gilad Ben-Yossef <[email protected]>
4001 L:      [email protected]
4002 S:      Supported
4003 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4004 F:      drivers/crypto/ccree/
4005
4006 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4007 M:      Hadar Gat <[email protected]>
4008 L:      [email protected]
4009 S:      Supported
4010 F:      drivers/char/hw_random/cctrng.c
4011 F:      drivers/char/hw_random/cctrng.h
4012 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4013 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4014
4015 CEC FRAMEWORK
4016 M:      Hans Verkuil <[email protected]>
4017 L:      [email protected]
4018 S:      Supported
4019 W:      http://linuxtv.org
4020 T:      git git://linuxtv.org/media_tree.git
4021 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4022 F:      Documentation/devicetree/bindings/media/cec.txt
4023 F:      Documentation/driver-api/media/cec-core.rst
4024 F:      Documentation/userspace-api/media/cec
4025 F:      drivers/media/cec/
4026 F:      drivers/media/rc/keymaps/rc-cec.c
4027 F:      include/media/cec-notifier.h
4028 F:      include/media/cec.h
4029 F:      include/uapi/linux/cec-funcs.h
4030 F:      include/uapi/linux/cec.h
4031
4032 CEC GPIO DRIVER
4033 M:      Hans Verkuil <[email protected]>
4034 L:      [email protected]
4035 S:      Supported
4036 W:      http://linuxtv.org
4037 T:      git git://linuxtv.org/media_tree.git
4038 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4039 F:      drivers/media/platform/cec-gpio/
4040
4041 CELL BROADBAND ENGINE ARCHITECTURE
4042 M:      Arnd Bergmann <[email protected]>
4043 L:      [email protected]
4044 S:      Supported
4045 W:      http://www.ibm.com/developerworks/power/cell/
4046 F:      arch/powerpc/include/asm/cell*.h
4047 F:      arch/powerpc/include/asm/spu*.h
4048 F:      arch/powerpc/include/uapi/asm/spu*.h
4049 F:      arch/powerpc/oprofile/*cell*
4050 F:      arch/powerpc/platforms/cell/
4051
4052 CELLWISE CW2015 BATTERY DRIVER
4053 M:      Tobias Schrammm <[email protected]>
4054 S:      Maintained
4055 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4056 F:      drivers/power/supply/cw2015_battery.c
4057
4058 CEPH COMMON CODE (LIBCEPH)
4059 M:      Ilya Dryomov <[email protected]>
4060 M:      Jeff Layton <[email protected]>
4061 L:      [email protected]
4062 S:      Supported
4063 W:      http://ceph.com/
4064 T:      git git://github.com/ceph/ceph-client.git
4065 F:      include/linux/ceph/
4066 F:      include/linux/crush/
4067 F:      net/ceph/
4068
4069 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4070 M:      Jeff Layton <[email protected]>
4071 M:      Ilya Dryomov <[email protected]>
4072 L:      [email protected]
4073 S:      Supported
4074 W:      http://ceph.com/
4075 T:      git git://github.com/ceph/ceph-client.git
4076 F:      Documentation/filesystems/ceph.rst
4077 F:      fs/ceph/
4078
4079 CERTIFICATE HANDLING
4080 M:      David Howells <[email protected]>
4081 M:      David Woodhouse <[email protected]>
4082 L:      [email protected]
4083 S:      Maintained
4084 F:      Documentation/admin-guide/module-signing.rst
4085 F:      certs/
4086 F:      scripts/extract-cert.c
4087 F:      scripts/sign-file.c
4088
4089 CFAG12864B LCD DRIVER
4090 M:      Miguel Ojeda Sandonis <[email protected]>
4091 S:      Maintained
4092 F:      drivers/auxdisplay/cfag12864b.c
4093 F:      include/linux/cfag12864b.h
4094
4095 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4096 M:      Miguel Ojeda Sandonis <[email protected]>
4097 S:      Maintained
4098 F:      drivers/auxdisplay/cfag12864bfb.c
4099 F:      include/linux/cfag12864b.h
4100
4101 CHAR and MISC DRIVERS
4102 M:      Arnd Bergmann <[email protected]>
4103 M:      Greg Kroah-Hartman <[email protected]>
4104 S:      Supported
4105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4106 F:      drivers/char/
4107 F:      drivers/misc/
4108 F:      include/linux/miscdevice.h
4109
4110 CHECKPATCH
4111 M:      Andy Whitcroft <[email protected]>
4112 M:      Joe Perches <[email protected]>
4113 S:      Maintained
4114 F:      scripts/checkpatch.pl
4115
4116 CHINESE DOCUMENTATION
4117 M:      Harry Wei <[email protected]>
4118 M:      Alex Shi <[email protected]>
4119 L:      [email protected] (subscribers-only)
4120 S:      Maintained
4121 F:      Documentation/translations/zh_CN/
4122
4123 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4124 M:      Peter Chen <[email protected]>
4125 L:      [email protected]
4126 S:      Maintained
4127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4128 F:      drivers/usb/chipidea/
4129
4130 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4131 M:      Hans de Goede <[email protected]>
4132 L:      [email protected]
4133 S:      Maintained
4134 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4135 F:      drivers/input/touchscreen/chipone_icn8318.c
4136
4137 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4138 M:      Hans de Goede <[email protected]>
4139 L:      [email protected]
4140 S:      Maintained
4141 F:      drivers/input/touchscreen/chipone_icn8505.c
4142
4143 CHROME HARDWARE PLATFORM SUPPORT
4144 M:      Benson Leung <[email protected]>
4145 M:      Enric Balletbo i Serra <[email protected]>
4146 S:      Maintained
4147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4148 F:      drivers/platform/chrome/
4149
4150 CHROMEOS EC CODEC DRIVER
4151 M:      Cheng-Yi Chiang <[email protected]>
4152 R:      Enric Balletbo i Serra <[email protected]>
4153 R:      Guenter Roeck <[email protected]>
4154 S:      Maintained
4155 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4156 F:      sound/soc/codecs/cros_ec_codec.*
4157
4158 CHROMEOS EC SUBDRIVERS
4159 M:      Benson Leung <[email protected]>
4160 M:      Enric Balletbo i Serra <[email protected]>
4161 R:      Guenter Roeck <[email protected]>
4162 S:      Maintained
4163 F:      drivers/power/supply/cros_usbpd-charger.c
4164 N:      cros_ec
4165 N:      cros-ec
4166
4167 CHRONTEL CH7322 CEC DRIVER
4168 M:      Jeff Chase <[email protected]>
4169 L:      [email protected]
4170 S:      Maintained
4171 T:      git git://linuxtv.org/media_tree.git
4172 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4173 F:      drivers/media/cec/i2c/ch7322.c
4174
4175 CIRRUS LOGIC AUDIO CODEC DRIVERS
4176 M:      James Schulman <[email protected]>
4177 M:      David Rhodes <[email protected]>
4178 L:      [email protected] (moderated for non-subscribers)
4179 S:      Maintained
4180 F:      sound/soc/codecs/cs*
4181
4182 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4183 M:      Hartley Sweeten <[email protected]>
4184 L:      [email protected]
4185 S:      Maintained
4186 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4187
4188 CIRRUS LOGIC LOCHNAGAR DRIVER
4189 M:      Charles Keepax <[email protected]>
4190 M:      Richard Fitzgerald <[email protected]>
4191 L:      [email protected]
4192 S:      Supported
4193 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4194 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4195 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4196 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4197 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4198 F:      Documentation/hwmon/lochnagar.rst
4199 F:      drivers/clk/clk-lochnagar.c
4200 F:      drivers/hwmon/lochnagar-hwmon.c
4201 F:      drivers/mfd/lochnagar-i2c.c
4202 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4203 F:      drivers/regulator/lochnagar-regulator.c
4204 F:      include/dt-bindings/clk/lochnagar.h
4205 F:      include/dt-bindings/pinctrl/lochnagar.h
4206 F:      include/linux/mfd/lochnagar*
4207 F:      sound/soc/codecs/lochnagar-sc.c
4208
4209 CIRRUS LOGIC MADERA CODEC DRIVERS
4210 M:      Charles Keepax <[email protected]>
4211 M:      Richard Fitzgerald <[email protected]>
4212 L:      [email protected] (moderated for non-subscribers)
4213 L:      [email protected]
4214 S:      Supported
4215 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4216 T:      git https://github.com/CirrusLogic/linux-drivers.git
4217 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4218 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4219 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4220 F:      drivers/gpio/gpio-madera*
4221 F:      drivers/irqchip/irq-madera*
4222 F:      drivers/mfd/cs47l*
4223 F:      drivers/mfd/madera*
4224 F:      drivers/pinctrl/cirrus/*
4225 F:      include/dt-bindings/sound/madera*
4226 F:      include/linux/irqchip/irq-madera*
4227 F:      include/linux/mfd/madera/*
4228 F:      include/sound/madera*
4229 F:      sound/soc/codecs/cs47l*
4230 F:      sound/soc/codecs/madera*
4231
4232 CISCO FCOE HBA DRIVER
4233 M:      Satish Kharat <[email protected]>
4234 M:      Sesidhar Baddela <[email protected]>
4235 M:      Karan Tilak Kumar <[email protected]>
4236 L:      [email protected]
4237 S:      Supported
4238 F:      drivers/scsi/fnic/
4239
4240 CISCO SCSI HBA DRIVER
4241 M:      Karan Tilak Kumar <[email protected]>
4242 M:      Sesidhar Baddela <[email protected]>
4243 L:      [email protected]
4244 S:      Supported
4245 F:      drivers/scsi/snic/
4246
4247 CISCO VIC ETHERNET NIC DRIVER
4248 M:      Christian Benvenuti <[email protected]>
4249 M:      Govindarajulu Varadarajan <[email protected]>
4250 S:      Supported
4251 F:      drivers/net/ethernet/cisco/enic/
4252
4253 CISCO VIC LOW LATENCY NIC DRIVER
4254 M:      Christian Benvenuti <[email protected]>
4255 M:      Nelson Escobar <[email protected]>
4256 M:      Parvi Kaustubhi <[email protected]>
4257 S:      Supported
4258 F:      drivers/infiniband/hw/usnic/
4259
4260 CLANG-FORMAT FILE
4261 M:      Miguel Ojeda <[email protected]>
4262 S:      Maintained
4263 F:      .clang-format
4264
4265 CLANG/LLVM BUILD SUPPORT
4266 M:      Nathan Chancellor <[email protected]>
4267 M:      Nick Desaulniers <[email protected]>
4268 L:      [email protected]
4269 S:      Supported
4270 W:      https://clangbuiltlinux.github.io/
4271 B:      https://github.com/ClangBuiltLinux/linux/issues
4272 C:      irc://chat.freenode.net/clangbuiltlinux
4273 F:      Documentation/kbuild/llvm.rst
4274 K:      \b(?i:clang|llvm)\b
4275
4276 CLEANCACHE API
4277 M:      Konrad Rzeszutek Wilk <[email protected]>
4278 L:      [email protected]
4279 S:      Maintained
4280 F:      include/linux/cleancache.h
4281 F:      mm/cleancache.c
4282
4283 CLK API
4284 M:      Russell King <[email protected]>
4285 L:      [email protected]
4286 S:      Maintained
4287 F:      include/linux/clk.h
4288
4289 CLOCKSOURCE, CLOCKEVENT DRIVERS
4290 M:      Daniel Lezcano <[email protected]>
4291 M:      Thomas Gleixner <[email protected]>
4292 L:      [email protected]
4293 S:      Supported
4294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4295 F:      Documentation/devicetree/bindings/timer/
4296 F:      drivers/clocksource/
4297
4298 CMPC ACPI DRIVER
4299 M:      Thadeu Lima de Souza Cascardo <[email protected]>
4300 M:      Daniel Oliveira Nascimento <[email protected]>
4301 L:      [email protected]
4302 S:      Supported
4303 F:      drivers/platform/x86/classmate-laptop.c
4304
4305 COBALT MEDIA DRIVER
4306 M:      Hans Verkuil <[email protected]>
4307 L:      [email protected]
4308 S:      Supported
4309 W:      https://linuxtv.org
4310 T:      git git://linuxtv.org/media_tree.git
4311 F:      drivers/media/pci/cobalt/
4312
4313 COCCINELLE/Semantic Patches (SmPL)
4314 M:      Julia Lawall <[email protected]>
4315 M:      Gilles Muller <[email protected]>
4316 M:      Nicolas Palix <[email protected]>
4317 M:      Michal Marek <[email protected]>
4318 L:      [email protected] (moderated for non-subscribers)
4319 S:      Supported
4320 W:      http://coccinelle.lip6.fr/
4321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4322 F:      Documentation/dev-tools/coccinelle.rst
4323 F:      scripts/coccicheck
4324 F:      scripts/coccinelle/
4325
4326 CODA FILE SYSTEM
4327 M:      Jan Harkes <[email protected]>
4328 M:      [email protected]
4329 L:      [email protected]
4330 S:      Maintained
4331 W:      http://www.coda.cs.cmu.edu/
4332 F:      Documentation/filesystems/coda.rst
4333 F:      fs/coda/
4334 F:      include/linux/coda*.h
4335 F:      include/uapi/linux/coda*.h
4336
4337 CODA V4L2 MEM2MEM DRIVER
4338 M:      Philipp Zabel <[email protected]>
4339 L:      [email protected]
4340 S:      Maintained
4341 F:      Documentation/devicetree/bindings/media/coda.txt
4342 F:      drivers/media/platform/coda/
4343
4344 CODE OF CONDUCT
4345 M:      Greg Kroah-Hartman <[email protected]>
4346 S:      Supported
4347 F:      Documentation/process/code-of-conduct-interpretation.rst
4348 F:      Documentation/process/code-of-conduct.rst
4349
4350 COMMON CLK FRAMEWORK
4351 M:      Michael Turquette <[email protected]>
4352 M:      Stephen Boyd <[email protected]>
4353 L:      [email protected]
4354 S:      Maintained
4355 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4357 F:      Documentation/devicetree/bindings/clock/
4358 F:      drivers/clk/
4359 F:      include/linux/clk-pr*
4360 F:      include/linux/clk/
4361 F:      include/linux/of_clk.h
4362 X:      drivers/clk/clkdev.c
4363
4364 COMMON INTERNET FILE SYSTEM (CIFS)
4365 M:      Steve French <[email protected]>
4366 L:      [email protected]
4367 L:      [email protected] (moderated for non-subscribers)
4368 S:      Supported
4369 W:      http://linux-cifs.samba.org/
4370 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4371 F:      Documentation/admin-guide/cifs/
4372 F:      fs/cifs/
4373
4374 COMPACTPCI HOTPLUG CORE
4375 M:      Scott Murray <[email protected]>
4376 L:      [email protected]
4377 S:      Maintained
4378 F:      drivers/pci/hotplug/cpci_hotplug*
4379
4380 COMPACTPCI HOTPLUG GENERIC DRIVER
4381 M:      Scott Murray <[email protected]>
4382 L:      [email protected]
4383 S:      Maintained
4384 F:      drivers/pci/hotplug/cpcihp_generic.c
4385
4386 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4387 M:      Scott Murray <[email protected]>
4388 L:      [email protected]
4389 S:      Maintained
4390 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4391
4392 COMPAL LAPTOP SUPPORT
4393 M:      Cezary Jackiewicz <[email protected]>
4394 L:      [email protected]
4395 S:      Maintained
4396 F:      drivers/platform/x86/compal-laptop.c
4397
4398 COMPILER ATTRIBUTES
4399 M:      Miguel Ojeda <[email protected]>
4400 S:      Maintained
4401 F:      include/linux/compiler_attributes.h
4402
4403 CONEXANT ACCESSRUNNER USB DRIVER
4404 L:      [email protected]
4405 S:      Orphan
4406 W:      http://accessrunner.sourceforge.net/
4407 F:      drivers/usb/atm/cxacru.c
4408
4409 CONFIGFS
4410 M:      Joel Becker <[email protected]>
4411 M:      Christoph Hellwig <[email protected]>
4412 S:      Supported
4413 T:      git git://git.infradead.org/users/hch/configfs.git
4414 F:      fs/configfs/
4415 F:      include/linux/configfs.h
4416
4417 CONSOLE SUBSYSTEM
4418 M:      Greg Kroah-Hartman <[email protected]>
4419 S:      Supported
4420 F:      drivers/video/console/
4421 F:      include/linux/console*
4422
4423 CONTROL GROUP (CGROUP)
4424 M:      Tejun Heo <[email protected]>
4425 M:      Li Zefan <[email protected]>
4426 M:      Johannes Weiner <[email protected]>
4427 L:      [email protected]
4428 S:      Maintained
4429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4430 F:      Documentation/admin-guide/cgroup-v1/
4431 F:      Documentation/admin-guide/cgroup-v2.rst
4432 F:      include/linux/cgroup*
4433 F:      kernel/cgroup/
4434
4435 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4436 M:      Tejun Heo <[email protected]>
4437 M:      Jens Axboe <[email protected]>
4438 L:      [email protected]
4439 L:      [email protected]
4440 T:      git git://git.kernel.dk/linux-block
4441 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4442 F:      block/bfq-cgroup.c
4443 F:      block/blk-cgroup.c
4444 F:      block/blk-iolatency.c
4445 F:      block/blk-throttle.c
4446 F:      include/linux/blk-cgroup.h
4447
4448 CONTROL GROUP - CPUSET
4449 M:      Li Zefan <[email protected]>
4450 L:      [email protected]
4451 S:      Maintained
4452 W:      http://www.bullopensource.org/cpuset/
4453 W:      http://oss.sgi.com/projects/cpusets/
4454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4455 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4456 F:      include/linux/cpuset.h
4457 F:      kernel/cgroup/cpuset.c
4458
4459 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4460 M:      Johannes Weiner <[email protected]>
4461 M:      Michal Hocko <[email protected]>
4462 M:      Vladimir Davydov <[email protected]>
4463 L:      [email protected]
4464 L:      [email protected]
4465 S:      Maintained
4466 F:      mm/memcontrol.c
4467 F:      mm/swap_cgroup.c
4468
4469 CORETEMP HARDWARE MONITORING DRIVER
4470 M:      Fenghua Yu <[email protected]>
4471 L:      [email protected]
4472 S:      Maintained
4473 F:      Documentation/hwmon/coretemp.rst
4474 F:      drivers/hwmon/coretemp.c
4475
4476 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4477 M:      Marius Zachmann <[email protected]>
4478 L:      [email protected]
4479 S:      Maintained
4480 F:      drivers/hwmon/corsair-cpro.c
4481
4482 COSA/SRP SYNC SERIAL DRIVER
4483 M:      Jan "Yenya" Kasprzak <[email protected]>
4484 S:      Maintained
4485 W:      http://www.fi.muni.cz/~kas/cosa/
4486 F:      drivers/net/wan/cosa*
4487
4488 COUNTER SUBSYSTEM
4489 M:      William Breathitt Gray <[email protected]>
4490 L:      [email protected]
4491 S:      Maintained
4492 F:      Documentation/ABI/testing/sysfs-bus-counter*
4493 F:      Documentation/driver-api/generic-counter.rst
4494 F:      drivers/counter/
4495 F:      include/linux/counter.h
4496 F:      include/linux/counter_enum.h
4497
4498 CPMAC ETHERNET DRIVER
4499 M:      Florian Fainelli <[email protected]>
4500 L:      [email protected]
4501 S:      Maintained
4502 F:      drivers/net/ethernet/ti/cpmac.c
4503
4504 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4505 M:      Viresh Kumar <[email protected]>
4506 M:      Sudeep Holla <[email protected]>
4507 L:      [email protected]
4508 S:      Maintained
4509 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4510 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4511
4512 CPU FREQUENCY SCALING FRAMEWORK
4513 M:      "Rafael J. Wysocki" <[email protected]>
4514 M:      Viresh Kumar <[email protected]>
4515 L:      [email protected]
4516 S:      Maintained
4517 B:      https://bugzilla.kernel.org
4518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4520 F:      Documentation/admin-guide/pm/cpufreq.rst
4521 F:      Documentation/admin-guide/pm/intel_pstate.rst
4522 F:      Documentation/cpu-freq/
4523 F:      Documentation/devicetree/bindings/cpufreq/
4524 F:      drivers/cpufreq/
4525 F:      include/linux/cpufreq.h
4526 F:      include/linux/sched/cpufreq.h
4527 F:      kernel/sched/cpufreq*.c
4528 F:      tools/testing/selftests/cpufreq/
4529
4530 CPU IDLE TIME MANAGEMENT FRAMEWORK
4531 M:      "Rafael J. Wysocki" <[email protected]>
4532 M:      Daniel Lezcano <[email protected]>
4533 L:      [email protected]
4534 S:      Maintained
4535 B:      https://bugzilla.kernel.org
4536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4537 F:      Documentation/admin-guide/pm/cpuidle.rst
4538 F:      Documentation/driver-api/pm/cpuidle.rst
4539 F:      drivers/cpuidle/*
4540 F:      include/linux/cpuidle.h
4541
4542 CPU POWER MONITORING SUBSYSTEM
4543 M:      Thomas Renninger <[email protected]>
4544 M:      Shuah Khan <[email protected]>
4545 M:      Shuah Khan <[email protected]>
4546 L:      [email protected]
4547 S:      Maintained
4548 F:      tools/power/cpupower/
4549
4550 CPUID/MSR DRIVER
4551 M:      "H. Peter Anvin" <[email protected]>
4552 S:      Maintained
4553 F:      arch/x86/kernel/cpuid.c
4554 F:      arch/x86/kernel/msr.c
4555
4556 CPUIDLE DRIVER - ARM BIG LITTLE
4557 M:      Lorenzo Pieralisi <[email protected]>
4558 M:      Daniel Lezcano <[email protected]>
4559 L:      [email protected]
4560 L:      [email protected]
4561 S:      Maintained
4562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4563 F:      drivers/cpuidle/cpuidle-big_little.c
4564
4565 CPUIDLE DRIVER - ARM EXYNOS
4566 M:      Bartlomiej Zolnierkiewicz <[email protected]>
4567 M:      Daniel Lezcano <[email protected]>
4568 M:      Kukjin Kim <[email protected]>
4569 L:      [email protected]
4570 L:      [email protected]
4571 S:      Supported
4572 F:      arch/arm/mach-exynos/pm.c
4573 F:      drivers/cpuidle/cpuidle-exynos.c
4574
4575 CPUIDLE DRIVER - ARM PSCI
4576 M:      Lorenzo Pieralisi <[email protected]>
4577 M:      Sudeep Holla <[email protected]>
4578 L:      [email protected]
4579 L:      [email protected]
4580 S:      Supported
4581 F:      drivers/cpuidle/cpuidle-psci.c
4582
4583 CRAMFS FILESYSTEM
4584 M:      Nicolas Pitre <[email protected]>
4585 S:      Maintained
4586 F:      Documentation/filesystems/cramfs.rst
4587 F:      fs/cramfs/
4588
4589 CREATIVE SB0540
4590 M:      Bastien Nocera <[email protected]>
4591 L:      [email protected]
4592 S:      Maintained
4593 F:      drivers/hid/hid-creative-sb0540.c
4594
4595 CRYPTO API
4596 M:      Herbert Xu <[email protected]>
4597 M:      "David S. Miller" <[email protected]>
4598 L:      [email protected]
4599 S:      Maintained
4600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4602 F:      Documentation/crypto/
4603 F:      Documentation/devicetree/bindings/crypto/
4604 F:      arch/*/crypto/
4605 F:      crypto/
4606 F:      drivers/crypto/
4607 F:      include/crypto/
4608 F:      include/linux/crypto*
4609 F:      lib/crypto/
4610
4611 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4612 M:      Neil Horman <[email protected]>
4613 L:      [email protected]
4614 S:      Maintained
4615 F:      crypto/ansi_cprng.c
4616 F:      crypto/rng.c
4617
4618 CS3308 MEDIA DRIVER
4619 M:      Hans Verkuil <[email protected]>
4620 L:      [email protected]
4621 S:      Odd Fixes
4622 W:      http://linuxtv.org
4623 T:      git git://linuxtv.org/media_tree.git
4624 F:      drivers/media/i2c/cs3308.c
4625
4626 CS5535 Audio ALSA driver
4627 M:      Jaya Kumar <[email protected]>
4628 S:      Maintained
4629 F:      sound/pci/cs5535audio/
4630
4631 CSI DRIVERS FOR ALLWINNER V3s
4632 M:      Yong Deng <[email protected]>
4633 L:      [email protected]
4634 S:      Maintained
4635 T:      git git://linuxtv.org/media_tree.git
4636 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4637 F:      drivers/media/platform/sunxi/sun6i-csi/
4638
4639 CW1200 WLAN driver
4640 M:      Solomon Peachy <[email protected]>
4641 S:      Maintained
4642 F:      drivers/net/wireless/st/cw1200/
4643
4644 CX18 VIDEO4LINUX DRIVER
4645 M:      Andy Walls <[email protected]>
4646 L:      [email protected]
4647 S:      Maintained
4648 W:      https://linuxtv.org
4649 T:      git git://linuxtv.org/media_tree.git
4650 F:      drivers/media/pci/cx18/
4651 F:      include/uapi/linux/ivtv*
4652
4653 CX2341X MPEG ENCODER HELPER MODULE
4654 M:      Hans Verkuil <[email protected]>
4655 L:      [email protected]
4656 S:      Maintained
4657 W:      https://linuxtv.org
4658 T:      git git://linuxtv.org/media_tree.git
4659 F:      drivers/media/common/cx2341x*
4660 F:      include/media/drv-intf/cx2341x.h
4661
4662 CX24120 MEDIA DRIVER
4663 M:      Jemma Denson <[email protected]>
4664 M:      Patrick Boettcher <[email protected]>
4665 L:      [email protected]
4666 S:      Maintained
4667 W:      https://linuxtv.org
4668 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4669 F:      drivers/media/dvb-frontends/cx24120*
4670
4671 CX88 VIDEO4LINUX DRIVER
4672 M:      Mauro Carvalho Chehab <[email protected]>
4673 L:      [email protected]
4674 S:      Odd fixes
4675 W:      https://linuxtv.org
4676 T:      git git://linuxtv.org/media_tree.git
4677 F:      Documentation/driver-api/media/drivers/cx88*
4678 F:      drivers/media/pci/cx88/
4679
4680 CXD2820R MEDIA DRIVER
4681 M:      Antti Palosaari <[email protected]>
4682 L:      [email protected]
4683 S:      Maintained
4684 W:      https://linuxtv.org
4685 W:      http://palosaari.fi/linux/
4686 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4687 T:      git git://linuxtv.org/anttip/media_tree.git
4688 F:      drivers/media/dvb-frontends/cxd2820r*
4689
4690 CXGB3 ETHERNET DRIVER (CXGB3)
4691 M:      Vishal Kulkarni <[email protected]>
4692 L:      [email protected]
4693 S:      Supported
4694 W:      http://www.chelsio.com
4695 F:      drivers/net/ethernet/chelsio/cxgb3/
4696
4697 CXGB3 ISCSI DRIVER (CXGB3I)
4698 M:      Karen Xie <[email protected]>
4699 L:      [email protected]
4700 S:      Supported
4701 W:      http://www.chelsio.com
4702 F:      drivers/scsi/cxgbi/cxgb3i
4703
4704 CXGB4 CRYPTO DRIVER (chcr)
4705 M:      Ayush Sawal <[email protected]>
4706 M:      Vinay Kumar Yadav <[email protected]>
4707 M:      Rohit Maheshwari <[email protected]>
4708 L:      [email protected]
4709 S:      Supported
4710 W:      http://www.chelsio.com
4711 F:      drivers/crypto/chelsio
4712
4713 CXGB4 INLINE CRYPTO DRIVER
4714 M:      Ayush Sawal <[email protected]>
4715 M:      Vinay Kumar Yadav <[email protected]>
4716 M:      Rohit Maheshwari <[email protected]>
4717 L:      [email protected]
4718 S:      Supported
4719 W:      http://www.chelsio.com
4720 F:      drivers/net/ethernet/chelsio/inline_crypto/
4721
4722 CXGB4 ETHERNET DRIVER (CXGB4)
4723 M:      Vishal Kulkarni <[email protected]>
4724 L:      [email protected]
4725 S:      Supported
4726 W:      http://www.chelsio.com
4727 F:      drivers/net/ethernet/chelsio/cxgb4/
4728
4729 CXGB4 ISCSI DRIVER (CXGB4I)
4730 M:      Karen Xie <[email protected]>
4731 L:      [email protected]
4732 S:      Supported
4733 W:      http://www.chelsio.com
4734 F:      drivers/scsi/cxgbi/cxgb4i
4735
4736 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4737 M:      Potnuri Bharat Teja <[email protected]>
4738 L:      [email protected]
4739 S:      Supported
4740 W:      http://www.openfabrics.org
4741 F:      drivers/infiniband/hw/cxgb4/
4742 F:      include/uapi/rdma/cxgb4-abi.h
4743
4744 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4745 M:      Vishal Kulkarni <[email protected]>
4746 L:      [email protected]
4747 S:      Supported
4748 W:      http://www.chelsio.com
4749 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4750
4751 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4752 M:      Frederic Barrat <[email protected]>
4753 M:      Andrew Donnellan <[email protected]>
4754 L:      [email protected]
4755 S:      Supported
4756 F:      Documentation/ABI/testing/sysfs-class-cxl
4757 F:      Documentation/powerpc/cxl.rst
4758 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4759 F:      drivers/misc/cxl/
4760 F:      include/misc/cxl*
4761 F:      include/uapi/misc/cxl.h
4762
4763 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4764 M:      Manoj N. Kumar <[email protected]>
4765 M:      Matthew R. Ochs <[email protected]>
4766 M:      Uma Krishnan <[email protected]>
4767 L:      [email protected]
4768 S:      Supported
4769 F:      Documentation/powerpc/cxlflash.rst
4770 F:      drivers/scsi/cxlflash/
4771 F:      include/uapi/scsi/cxlflash_ioctl.h
4772
4773 CYBERPRO FB DRIVER
4774 M:      Russell King <[email protected]>
4775 L:      [email protected] (moderated for non-subscribers)
4776 S:      Maintained
4777 W:      http://www.armlinux.org.uk/
4778 F:      drivers/video/fbdev/cyber2000fb.*
4779
4780 CYCLADES ASYNC MUX DRIVER
4781 S:      Orphan
4782 W:      http://www.cyclades.com/
4783 F:      drivers/tty/cyclades.c
4784 F:      include/linux/cyclades.h
4785 F:      include/uapi/linux/cyclades.h
4786
4787 CYCLADES PC300 DRIVER
4788 S:      Orphan
4789 W:      http://www.cyclades.com/
4790 F:      drivers/net/wan/pc300*
4791
4792 CYPRESS_FIRMWARE MEDIA DRIVER
4793 M:      Antti Palosaari <[email protected]>
4794 L:      [email protected]
4795 S:      Maintained
4796 W:      https://linuxtv.org
4797 W:      http://palosaari.fi/linux/
4798 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4799 T:      git git://linuxtv.org/anttip/media_tree.git
4800 F:      drivers/media/common/cypress_firmware*
4801
4802 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4803 M:      Linus Walleij <[email protected]>
4804 L:      [email protected]
4805 S:      Maintained
4806 F:      drivers/input/touchscreen/cy8ctma140.c
4807
4808 CYTTSP TOUCHSCREEN DRIVER
4809 M:      Ferruh Yigit <[email protected]>
4810 L:      [email protected]
4811 S:      Supported
4812 F:      drivers/input/touchscreen/cyttsp*
4813 F:      include/linux/input/cyttsp.h
4814
4815 D-LINK DIR-685 TOUCHKEYS DRIVER
4816 M:      Linus Walleij <[email protected]>
4817 L:      [email protected]
4818 S:      Supported
4819 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4820
4821 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4822 M:      Joshua Kinard <[email protected]>
4823 S:      Maintained
4824 F:      drivers/rtc/rtc-ds1685.c
4825 F:      include/linux/rtc/ds1685.h
4826
4827 DAMA SLAVE for AX.25
4828 M:      Joerg Reuter <[email protected]>
4829 L:      [email protected]
4830 S:      Maintained
4831 W:      http://yaina.de/jreuter/
4832 W:      http://www.qsl.net/dl1bke/
4833 F:      net/ax25/af_ax25.c
4834 F:      net/ax25/ax25_dev.c
4835 F:      net/ax25/ax25_ds_*
4836 F:      net/ax25/ax25_in.c
4837 F:      net/ax25/ax25_out.c
4838 F:      net/ax25/ax25_timer.c
4839 F:      net/ax25/sysctl_net_ax25.c
4840
4841 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4842 L:      [email protected]
4843 S:      Orphan
4844 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
4845 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4846
4847 DC390/AM53C974 SCSI driver
4848 M:      Hannes Reinecke <[email protected]>
4849 L:      [email protected]
4850 S:      Maintained
4851 F:      drivers/scsi/am53c974.c
4852
4853 DC395x SCSI driver
4854 M:      Oliver Neukum <[email protected]>
4855 M:      Ali Akcaagac <[email protected]>
4856 M:      Jamie Lenehan <[email protected]>
4857 L:      [email protected]
4858 S:      Maintained
4859 W:      http://twibble.org/dist/dc395x/
4860 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4861 F:      Documentation/scsi/dc395x.rst
4862 F:      drivers/scsi/dc395x.*
4863
4864 DCCP PROTOCOL
4865 M:      Gerrit Renker <[email protected]>
4866 L:      [email protected]
4867 S:      Maintained
4868 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4869 F:      include/linux/dccp.h
4870 F:      include/linux/tfrc.h
4871 F:      include/uapi/linux/dccp.h
4872 F:      net/dccp/
4873
4874 DECnet NETWORK LAYER
4875 L:      [email protected]
4876 S:      Orphan
4877 W:      http://linux-decnet.sourceforge.net
4878 F:      Documentation/networking/decnet.rst
4879 F:      net/decnet/
4880
4881 DECSTATION PLATFORM SUPPORT
4882 M:      "Maciej W. Rozycki" <[email protected]>
4883 L:      [email protected]
4884 S:      Maintained
4885 W:      http://www.linux-mips.org/wiki/DECstation
4886 F:      arch/mips/dec/
4887 F:      arch/mips/include/asm/dec/
4888 F:      arch/mips/include/asm/mach-dec/
4889
4890 DEFXX FDDI NETWORK DRIVER
4891 M:      "Maciej W. Rozycki" <[email protected]>
4892 S:      Maintained
4893 F:      drivers/net/fddi/defxx.*
4894
4895 DEFZA FDDI NETWORK DRIVER
4896 M:      "Maciej W. Rozycki" <[email protected]>
4897 S:      Maintained
4898 F:      drivers/net/fddi/defza.*
4899
4900 DEINTERLACE DRIVERS FOR ALLWINNER H3
4901 M:      Jernej Skrabec <[email protected]>
4902 L:      [email protected]
4903 S:      Maintained
4904 T:      git git://linuxtv.org/media_tree.git
4905 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4906 F:      drivers/media/platform/sunxi/sun8i-di/
4907
4908 DELL LAPTOP DRIVER
4909 M:      Matthew Garrett <[email protected]>
4910 M:      Pali Rohár <[email protected]>
4911 L:      [email protected]
4912 S:      Maintained
4913 F:      drivers/platform/x86/dell-laptop.c
4914
4915 DELL LAPTOP FREEFALL DRIVER
4916 M:      Pali Rohár <[email protected]>
4917 S:      Maintained
4918 F:      drivers/platform/x86/dell-smo8800.c
4919
4920 DELL LAPTOP RBTN DRIVER
4921 M:      Pali Rohár <[email protected]>
4922 S:      Maintained
4923 F:      drivers/platform/x86/dell-rbtn.*
4924
4925 DELL LAPTOP SMM DRIVER
4926 M:      Pali Rohár <[email protected]>
4927 S:      Maintained
4928 F:      drivers/hwmon/dell-smm-hwmon.c
4929 F:      include/uapi/linux/i8k.h
4930
4931 DELL REMOTE BIOS UPDATE DRIVER
4932 M:      Stuart Hayes <[email protected]>
4933 L:      [email protected]
4934 S:      Maintained
4935 F:      drivers/platform/x86/dell_rbu.c
4936
4937 DELL SMBIOS DRIVER
4938 M:      Pali Rohár <[email protected]>
4939 M:      Mario Limonciello <[email protected]>
4940 L:      [email protected]
4941 S:      Maintained
4942 F:      drivers/platform/x86/dell-smbios.*
4943
4944 DELL SMBIOS SMM DRIVER
4945 M:      Mario Limonciello <[email protected]>
4946 L:      [email protected]
4947 S:      Maintained
4948 F:      drivers/platform/x86/dell-smbios-smm.c
4949
4950 DELL SMBIOS WMI DRIVER
4951 M:      Mario Limonciello <[email protected]>
4952 L:      [email protected]
4953 S:      Maintained
4954 F:      drivers/platform/x86/dell-smbios-wmi.c
4955 F:      tools/wmi/dell-smbios-example.c
4956
4957 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4958 M:      Stuart Hayes <[email protected]>
4959 L:      [email protected]
4960 S:      Maintained
4961 F:      Documentation/driver-api/dcdbas.rst
4962 F:      drivers/platform/x86/dcdbas.*
4963
4964 DELL WMI DESCRIPTOR DRIVER
4965 M:      Mario Limonciello <[email protected]>
4966 S:      Maintained
4967 F:      drivers/platform/x86/dell-wmi-descriptor.c
4968
4969 DELL WMI NOTIFICATIONS DRIVER
4970 M:      Matthew Garrett <[email protected]>
4971 M:      Pali Rohár <[email protected]>
4972 S:      Maintained
4973 F:      drivers/platform/x86/dell-wmi.c
4974
4975 DELTA ST MEDIA DRIVER
4976 M:      Hugues Fruchet <[email protected]>
4977 L:      [email protected]
4978 S:      Supported
4979 W:      https://linuxtv.org
4980 T:      git git://linuxtv.org/media_tree.git
4981 F:      drivers/media/platform/sti/delta
4982
4983 DENALI NAND DRIVER
4984 M:      Masahiro Yamada <[email protected]>
4985 L:      [email protected]
4986 S:      Supported
4987 F:      drivers/mtd/nand/raw/denali*
4988
4989 DESIGNWARE EDMA CORE IP DRIVER
4990 M:      Gustavo Pimentel <[email protected]>
4991 L:      [email protected]
4992 S:      Maintained
4993 F:      drivers/dma/dw-edma/
4994 F:      include/linux/dma/edma.h
4995
4996 DESIGNWARE USB2 DRD IP DRIVER
4997 M:      Minas Harutyunyan <[email protected]>
4998 L:      [email protected]
4999 S:      Maintained
5000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5001 F:      drivers/usb/dwc2/
5002
5003 DESIGNWARE USB3 DRD IP DRIVER
5004 M:      Felipe Balbi <[email protected]>
5005 L:      [email protected]
5006 S:      Maintained
5007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5008 F:      drivers/usb/dwc3/
5009
5010 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5011 M:      Andreas Klinger <[email protected]>
5012 L:      [email protected]
5013 S:      Maintained
5014 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5015 F:      drivers/iio/proximity/srf*.c
5016
5017 DEVICE COREDUMP (DEV_COREDUMP)
5018 M:      Johannes Berg <[email protected]>
5019 L:      [email protected]
5020 S:      Maintained
5021 F:      drivers/base/devcoredump.c
5022 F:      include/linux/devcoredump.h
5023
5024 DEVICE DIRECT ACCESS (DAX)
5025 M:      Dan Williams <[email protected]>
5026 M:      Vishal Verma <[email protected]>
5027 M:      Dave Jiang <[email protected]>
5028 L:      [email protected]
5029 S:      Supported
5030 F:      drivers/dax/
5031
5032 DEVICE FREQUENCY (DEVFREQ)
5033 M:      MyungJoo Ham <[email protected]>
5034 M:      Kyungmin Park <[email protected]>
5035 M:      Chanwoo Choi <[email protected]>
5036 L:      [email protected]
5037 S:      Maintained
5038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5039 F:      Documentation/devicetree/bindings/devfreq/
5040 F:      drivers/devfreq/
5041 F:      include/linux/devfreq.h
5042 F:      include/trace/events/devfreq.h
5043
5044 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5045 M:      Chanwoo Choi <[email protected]>
5046 L:      [email protected]
5047 S:      Supported
5048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5049 F:      Documentation/devicetree/bindings/devfreq/event/
5050 F:      drivers/devfreq/devfreq-event.c
5051 F:      drivers/devfreq/event/
5052 F:      include/dt-bindings/pmu/exynos_ppmu.h
5053 F:      include/linux/devfreq-event.h
5054
5055 DEVICE NUMBER REGISTRY
5056 M:      Torben Mathiasen <[email protected]>
5057 S:      Maintained
5058 W:      http://lanana.org/docs/device-list/index.html
5059
5060 DEVICE-MAPPER  (LVM)
5061 M:      Alasdair Kergon <[email protected]>
5062 M:      Mike Snitzer <[email protected]>
5063 M:      [email protected]
5064 L:      [email protected]
5065 S:      Maintained
5066 W:      http://sources.redhat.com/dm
5067 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5069 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5070 F:      Documentation/admin-guide/device-mapper/
5071 F:      drivers/md/Kconfig
5072 F:      drivers/md/Makefile
5073 F:      drivers/md/dm*
5074 F:      drivers/md/persistent-data/
5075 F:      include/linux/device-mapper.h
5076 F:      include/linux/dm-*.h
5077 F:      include/uapi/linux/dm-*.h
5078
5079 DEVLINK
5080 M:      Jiri Pirko <[email protected]>
5081 L:      [email protected]
5082 S:      Supported
5083 F:      Documentation/networking/devlink
5084 F:      include/net/devlink.h
5085 F:      include/uapi/linux/devlink.h
5086 F:      net/core/devlink.c
5087
5088 DIALOG SEMICONDUCTOR DRIVERS
5089 M:      Support Opensource <[email protected]>
5090 S:      Supported
5091 W:      http://www.dialog-semiconductor.com/products
5092 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5093 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5094 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5095 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5096 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5097 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5098 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5099 F:      Documentation/hwmon/da90??.rst
5100 F:      drivers/gpio/gpio-da90??.c
5101 F:      drivers/hwmon/da90??-hwmon.c
5102 F:      drivers/iio/adc/da91??-*.c
5103 F:      drivers/input/misc/da90??_onkey.c
5104 F:      drivers/input/touchscreen/da9052_tsi.c
5105 F:      drivers/leds/leds-da90??.c
5106 F:      drivers/mfd/da903x.c
5107 F:      drivers/mfd/da90??-*.c
5108 F:      drivers/mfd/da91??-*.c
5109 F:      drivers/pinctrl/pinctrl-da90??.c
5110 F:      drivers/power/supply/da9052-battery.c
5111 F:      drivers/power/supply/da91??-*.c
5112 F:      drivers/regulator/da9???-regulator.[ch]
5113 F:      drivers/regulator/slg51000-regulator.[ch]
5114 F:      drivers/rtc/rtc-da90??.c
5115 F:      drivers/thermal/da90??-thermal.c
5116 F:      drivers/video/backlight/da90??_bl.c
5117 F:      drivers/watchdog/da90??_wdt.c
5118 F:      include/linux/mfd/da903x.h
5119 F:      include/linux/mfd/da9052/
5120 F:      include/linux/mfd/da9055/
5121 F:      include/linux/mfd/da9062/
5122 F:      include/linux/mfd/da9063/
5123 F:      include/linux/mfd/da9150/
5124 F:      include/linux/regulator/da9211.h
5125 F:      include/sound/da[79]*.h
5126 F:      sound/soc/codecs/da[79]*.[ch]
5127
5128 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5129 M:      William Breathitt Gray <[email protected]>
5130 L:      [email protected]
5131 S:      Maintained
5132 F:      drivers/gpio/gpio-gpio-mm.c
5133
5134 DIOLAN U2C-12 I2C DRIVER
5135 M:      Guenter Roeck <[email protected]>
5136 L:      [email protected]
5137 S:      Maintained
5138 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5139
5140 DIRECTORY NOTIFICATION (DNOTIFY)
5141 M:      Jan Kara <[email protected]>
5142 R:      Amir Goldstein <[email protected]>
5143 L:      [email protected]
5144 S:      Maintained
5145 F:      Documentation/filesystems/dnotify.rst
5146 F:      fs/notify/dnotify/
5147 F:      include/linux/dnotify.h
5148
5149 DISK GEOMETRY AND PARTITION HANDLING
5150 M:      Andries Brouwer <[email protected]>
5151 S:      Maintained
5152 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5153 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5154 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5155
5156 DISKQUOTA
5157 M:      Jan Kara <[email protected]>
5158 S:      Maintained
5159 F:      Documentation/filesystems/quota.rst
5160 F:      fs/quota/
5161 F:      include/linux/quota*.h
5162 F:      include/uapi/linux/quota*.h
5163
5164 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5165 M:      Bernie Thompson <[email protected]>
5166 L:      [email protected]
5167 S:      Maintained
5168 W:      http://plugable.com/category/projects/udlfb/
5169 F:      Documentation/fb/udlfb.rst
5170 F:      drivers/video/fbdev/udlfb.c
5171 F:      include/video/udlfb.h
5172
5173 DISTRIBUTED LOCK MANAGER (DLM)
5174 M:      Christine Caulfield <[email protected]>
5175 M:      David Teigland <[email protected]>
5176 L:      [email protected]
5177 S:      Supported
5178 W:      http://sources.redhat.com/cluster/
5179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5180 F:      fs/dlm/
5181
5182 DMA BUFFER SHARING FRAMEWORK
5183 M:      Sumit Semwal <[email protected]>
5184 M:      Christian König <[email protected]>
5185 L:      [email protected]
5186 L:      [email protected]
5187 L:      [email protected] (moderated for non-subscribers)
5188 S:      Maintained
5189 T:      git git://anongit.freedesktop.org/drm/drm-misc
5190 F:      Documentation/driver-api/dma-buf.rst
5191 F:      drivers/dma-buf/
5192 F:      include/linux/*fence.h
5193 F:      include/linux/dma-buf*
5194 F:      include/linux/dma-resv.h
5195 K:      \bdma_(?:buf|fence|resv)\b
5196
5197 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5198 M:      Vinod Koul <[email protected]>
5199 L:      [email protected]
5200 S:      Maintained
5201 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5203 F:      Documentation/devicetree/bindings/dma/
5204 F:      Documentation/driver-api/dmaengine/
5205 F:      drivers/dma/
5206 F:      include/linux/dmaengine.h
5207 F:      include/linux/of_dma.h
5208
5209 DMA MAPPING HELPERS
5210 M:      Christoph Hellwig <[email protected]>
5211 M:      Marek Szyprowski <[email protected]>
5212 R:      Robin Murphy <[email protected]>
5213 L:      [email protected]
5214 S:      Supported
5215 W:      http://git.infradead.org/users/hch/dma-mapping.git
5216 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5217 F:      include/asm-generic/dma-mapping.h
5218 F:      include/linux/dma-direct.h
5219 F:      include/linux/dma-mapping.h
5220 F:      include/linux/dma-noncoherent.h
5221 F:      kernel/dma/
5222
5223 DMA-BUF HEAPS FRAMEWORK
5224 M:      Sumit Semwal <[email protected]>
5225 R:      Andrew F. Davis <[email protected]>
5226 R:      Benjamin Gaignard <[email protected]>
5227 R:      Liam Mark <[email protected]>
5228 R:      Laura Abbott <[email protected]>
5229 R:      Brian Starkey <[email protected]>
5230 R:      John Stultz <[email protected]>
5231 L:      [email protected]
5232 L:      [email protected]
5233 L:      [email protected] (moderated for non-subscribers)
5234 S:      Maintained
5235 T:      git git://anongit.freedesktop.org/drm/drm-misc
5236 F:      drivers/dma-buf/dma-heap.c
5237 F:      drivers/dma-buf/heaps/*
5238 F:      include/linux/dma-heap.h
5239 F:      include/uapi/linux/dma-heap.h
5240
5241 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5242 M:      Lukasz Luba <[email protected]>
5243 L:      [email protected]
5244 L:      [email protected]
5245 S:      Maintained
5246 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5247 F:      drivers/memory/samsung/exynos5422-dmc.c
5248
5249 DME1737 HARDWARE MONITOR DRIVER
5250 M:      Juerg Haefliger <[email protected]>
5251 L:      [email protected]
5252 S:      Maintained
5253 F:      Documentation/hwmon/dme1737.rst
5254 F:      drivers/hwmon/dme1737.c
5255
5256 DMI/SMBIOS SUPPORT
5257 M:      Jean Delvare <[email protected]>
5258 S:      Maintained
5259 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5260 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5261 F:      drivers/firmware/dmi-id.c
5262 F:      drivers/firmware/dmi_scan.c
5263 F:      include/linux/dmi.h
5264
5265 DOCUMENTATION
5266 M:      Jonathan Corbet <[email protected]>
5267 L:      [email protected]
5268 S:      Maintained
5269 P:      Documentation/doc-guide/maintainer-profile.rst
5270 T:      git git://git.lwn.net/linux.git docs-next
5271 F:      Documentation/
5272 F:      scripts/documentation-file-ref-check
5273 F:      scripts/kernel-doc
5274 F:      scripts/sphinx-pre-install
5275 X:      Documentation/ABI/
5276 X:      Documentation/admin-guide/media/
5277 X:      Documentation/devicetree/
5278 X:      Documentation/driver-api/media/
5279 X:      Documentation/firmware-guide/acpi/
5280 X:      Documentation/i2c/
5281 X:      Documentation/power/
5282 X:      Documentation/spi/
5283 X:      Documentation/userspace-api/media/
5284
5285 DOCUMENTATION SCRIPTS
5286 M:      Mauro Carvalho Chehab <[email protected]>
5287 L:      [email protected]
5288 S:      Maintained
5289 F:      Documentation/sphinx/parse-headers.pl
5290 F:      scripts/documentation-file-ref-check
5291 F:      scripts/sphinx-pre-install
5292
5293 DOCUMENTATION/ITALIAN
5294 M:      Federico Vaga <[email protected]>
5295 L:      [email protected]
5296 S:      Maintained
5297 F:      Documentation/translations/it_IT
5298
5299 DONGWOON DW9714 LENS VOICE COIL DRIVER
5300 M:      Sakari Ailus <[email protected]>
5301 L:      [email protected]
5302 S:      Maintained
5303 T:      git git://linuxtv.org/media_tree.git
5304 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5305 F:      drivers/media/i2c/dw9714.c
5306
5307 DONGWOON DW9768 LENS VOICE COIL DRIVER
5308 M:      Dongchun Zhu <[email protected]>
5309 L:      [email protected]
5310 S:      Maintained
5311 T:      git git://linuxtv.org/media_tree.git
5312 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5313 F:      drivers/media/i2c/dw9768.c
5314
5315 DONGWOON DW9807 LENS VOICE COIL DRIVER
5316 M:      Sakari Ailus <[email protected]>
5317 L:      [email protected]
5318 S:      Maintained
5319 T:      git git://linuxtv.org/media_tree.git
5320 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5321 F:      drivers/media/i2c/dw9807-vcm.c
5322
5323 DOUBLETALK DRIVER
5324 M:      "James R. Van Zandt" <[email protected]>
5325 L:      [email protected]
5326 S:      Maintained
5327 F:      drivers/char/dtlk.c
5328 F:      include/linux/dtlk.h
5329
5330 DPAA2 DATAPATH I/O (DPIO) DRIVER
5331 M:      Roy Pledge <[email protected]>
5332 L:      [email protected]
5333 S:      Maintained
5334 F:      drivers/soc/fsl/dpio
5335
5336 DPAA2 ETHERNET DRIVER
5337 M:      Ioana Ciornei <[email protected]>
5338 M:      Ioana Radulescu <[email protected]>
5339 L:      [email protected]
5340 S:      Maintained
5341 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5342 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5343 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5344 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5345 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5346 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5347 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5348 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5349 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5350
5351 DPAA2 ETHERNET SWITCH DRIVER
5352 M:      Ioana Radulescu <[email protected]>
5353 M:      Ioana Ciornei <[email protected]>
5354 L:      [email protected]
5355 S:      Maintained
5356 F:      drivers/staging/fsl-dpaa2/ethsw
5357
5358 DPT_I2O SCSI RAID DRIVER
5359 M:      Adaptec OEM Raid Solutions <[email protected]>
5360 L:      [email protected]
5361 S:      Maintained
5362 W:      http://www.adaptec.com/
5363 F:      drivers/scsi/dpt*
5364 F:      drivers/scsi/dpt/
5365
5366 DRBD DRIVER
5367 M:      Philipp Reisner <[email protected]>
5368 M:      Lars Ellenberg <[email protected]>
5369 L:      [email protected]
5370 S:      Supported
5371 W:      http://www.drbd.org
5372 T:      git git://git.linbit.com/linux-drbd.git
5373 T:      git git://git.linbit.com/drbd-8.4.git
5374 F:      Documentation/admin-guide/blockdev/
5375 F:      drivers/block/drbd/
5376 F:      lib/lru_cache.c
5377
5378 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5379 M:      Greg Kroah-Hartman <[email protected]>
5380 R:      "Rafael J. Wysocki" <[email protected]>
5381 S:      Supported
5382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5383 F:      Documentation/core-api/kobject.rst
5384 F:      drivers/base/
5385 F:      fs/debugfs/
5386 F:      fs/sysfs/
5387 F:      include/linux/debugfs.h
5388 F:      include/linux/kobj*
5389 F:      lib/kobj*
5390
5391 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5392 M:      Kevin Hilman <[email protected]>
5393 M:      Nishanth Menon <[email protected]>
5394 L:      [email protected]
5395 S:      Maintained
5396 F:      drivers/power/avs/
5397 F:      include/linux/power/smartreflex.h
5398
5399 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5400 M:      Maxime Ripard <[email protected]>
5401 M:      Chen-Yu Tsai <[email protected]>
5402 R:      Jernej Skrabec <[email protected]>
5403 L:      [email protected]
5404 S:      Supported
5405 T:      git git://anongit.freedesktop.org/drm/drm-misc
5406 F:      drivers/gpu/drm/sun4i/sun8i*
5407
5408 DRM DRIVER FOR ARM PL111 CLCD
5409 M:      Eric Anholt <[email protected]>
5410 S:      Supported
5411 T:      git git://anongit.freedesktop.org/drm/drm-misc
5412 F:      drivers/gpu/drm/pl111/
5413
5414 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5415 M:      Linus Walleij <[email protected]>
5416 S:      Maintained
5417 T:      git git://anongit.freedesktop.org/drm/drm-misc
5418 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5419 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5420
5421 DRM DRIVER FOR ASPEED BMC GFX
5422 M:      Joel Stanley <[email protected]>
5423 L:      [email protected]
5424 S:      Supported
5425 T:      git git://anongit.freedesktop.org/drm/drm-misc
5426 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5427 F:      drivers/gpu/drm/aspeed/
5428
5429 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5430 M:      Dave Airlie <[email protected]>
5431 S:      Odd Fixes
5432 F:      drivers/gpu/drm/ast/
5433
5434 DRM DRIVER FOR BOCHS VIRTUAL GPU
5435 M:      Gerd Hoffmann <[email protected]>
5436 L:      [email protected]
5437 S:      Maintained
5438 T:      git git://anongit.freedesktop.org/drm/drm-misc
5439 F:      drivers/gpu/drm/bochs/
5440
5441 DRM DRIVER FOR BOE HIMAX8279D PANELS
5442 M:      Jerry Han <[email protected]>
5443 S:      Maintained
5444 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5445 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5446
5447 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5448 M:      Linus Walleij <[email protected]>
5449 S:      Maintained
5450 T:      git git://anongit.freedesktop.org/drm/drm-misc
5451 F:      drivers/gpu/drm/tve200/
5452
5453 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5454 M:      Icenowy Zheng <[email protected]>
5455 S:      Maintained
5456 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5457 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5458
5459 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5460 M:      Jagan Teki <[email protected]>
5461 S:      Maintained
5462 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5463 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5464
5465 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5466 M:      Hans de Goede <[email protected]>
5467 S:      Maintained
5468 T:      git git://anongit.freedesktop.org/drm/drm-misc
5469 F:      drivers/gpu/drm/tiny/gm12u320.c
5470
5471 DRM DRIVER FOR HX8357D PANELS
5472 M:      Eric Anholt <[email protected]>
5473 S:      Maintained
5474 T:      git git://anongit.freedesktop.org/drm/drm-misc
5475 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5476 F:      drivers/gpu/drm/tiny/hx8357d.c
5477
5478 DRM DRIVER FOR ILITEK ILI9225 PANELS
5479 M:      David Lechner <[email protected]>
5480 S:      Maintained
5481 T:      git git://anongit.freedesktop.org/drm/drm-misc
5482 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5483 F:      drivers/gpu/drm/tiny/ili9225.c
5484
5485 DRM DRIVER FOR ILITEK ILI9486 PANELS
5486 M:      Kamlesh Gurudasani <[email protected]>
5487 S:      Maintained
5488 T:      git git://anongit.freedesktop.org/drm/drm-misc
5489 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5490 F:      drivers/gpu/drm/tiny/ili9486.c
5491
5492 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5493 S:      Orphan / Obsolete
5494 F:      drivers/gpu/drm/i810/
5495 F:      include/uapi/drm/i810_drm.h
5496
5497 DRM DRIVER FOR LVDS PANELS
5498 M:      Laurent Pinchart <[email protected]>
5499 L:      [email protected]
5500 T:      git git://anongit.freedesktop.org/drm/drm-misc
5501 S:      Maintained
5502 F:      drivers/gpu/drm/panel/panel-lvds.c
5503 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5504
5505 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5506 S:      Orphan / Obsolete
5507 F:      drivers/gpu/drm/mga/
5508 F:      include/uapi/drm/mga_drm.h
5509
5510 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5511 M:      Dave Airlie <[email protected]>
5512 S:      Odd Fixes
5513 F:      drivers/gpu/drm/mgag200/
5514
5515 DRM DRIVER FOR MI0283QT
5516 M:      Noralf Trønnes <[email protected]>
5517 S:      Maintained
5518 T:      git git://anongit.freedesktop.org/drm/drm-misc
5519 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5520 F:      drivers/gpu/drm/tiny/mi0283qt.c
5521
5522 DRM DRIVER FOR MSM ADRENO GPU
5523 M:      Rob Clark <[email protected]>
5524 M:      Sean Paul <[email protected]>
5525 L:      [email protected]
5526 L:      [email protected]
5527 L:      [email protected]
5528 S:      Maintained
5529 T:      git https://gitlab.freedesktop.org/drm/msm.git
5530 F:      Documentation/devicetree/bindings/display/msm/
5531 F:      drivers/gpu/drm/msm/
5532 F:      include/uapi/drm/msm_drm.h
5533
5534 DRM DRIVER FOR NOVATEK NT35510 PANELS
5535 M:      Linus Walleij <[email protected]>
5536 S:      Maintained
5537 T:      git git://anongit.freedesktop.org/drm/drm-misc
5538 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5539 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5540
5541 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5542 M:      Ben Skeggs <[email protected]>
5543 L:      [email protected]
5544 L:      [email protected]
5545 S:      Supported
5546 T:      git git://github.com/skeggsb/linux
5547 F:      drivers/gpu/drm/nouveau/
5548 F:      include/uapi/drm/nouveau_drm.h
5549
5550 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5551 M:      Stefan Mavrodiev <[email protected]>
5552 S:      Maintained
5553 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5554 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5555
5556 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5557 M:      Noralf Trønnes <[email protected]>
5558 S:      Maintained
5559 T:      git git://anongit.freedesktop.org/drm/drm-misc
5560 F:      Documentation/devicetree/bindings/display/repaper.txt
5561 F:      drivers/gpu/drm/tiny/repaper.c
5562
5563 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5564 M:      Dave Airlie <[email protected]>
5565 M:      Gerd Hoffmann <[email protected]>
5566 L:      [email protected]
5567 S:      Obsolete
5568 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5569 T:      git git://anongit.freedesktop.org/drm/drm-misc
5570 F:      drivers/gpu/drm/tiny/cirrus.c
5571
5572 DRM DRIVER FOR QXL VIRTUAL GPU
5573 M:      Dave Airlie <[email protected]>
5574 M:      Gerd Hoffmann <[email protected]>
5575 L:      [email protected]
5576 L:      [email protected]
5577 S:      Maintained
5578 T:      git git://anongit.freedesktop.org/drm/drm-misc
5579 F:      drivers/gpu/drm/qxl/
5580 F:      include/uapi/drm/qxl_drm.h
5581
5582 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5583 S:      Orphan / Obsolete
5584 F:      drivers/gpu/drm/r128/
5585 F:      include/uapi/drm/r128_drm.h
5586
5587 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5588 M:      Robert Chiras <[email protected]>
5589 S:      Maintained
5590 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5591 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5592
5593 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5594 M:      Guido Günther <[email protected]>
5595 R:      Purism Kernel Team <[email protected]>
5596 S:      Maintained
5597 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5598 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5599
5600 DRM DRIVER FOR SAVAGE VIDEO CARDS
5601 S:      Orphan / Obsolete
5602 F:      drivers/gpu/drm/savage/
5603 F:      include/uapi/drm/savage_drm.h
5604
5605 DRM DRIVER FOR SIS VIDEO CARDS
5606 S:      Orphan / Obsolete
5607 F:      drivers/gpu/drm/sis/
5608 F:      include/uapi/drm/sis_drm.h
5609
5610 DRM DRIVER FOR SITRONIX ST7586 PANELS
5611 M:      David Lechner <[email protected]>
5612 S:      Maintained
5613 T:      git git://anongit.freedesktop.org/drm/drm-misc
5614 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5615 F:      drivers/gpu/drm/tiny/st7586.c
5616
5617 DRM DRIVER FOR SITRONIX ST7701 PANELS
5618 M:      Jagan Teki <[email protected]>
5619 S:      Maintained
5620 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5621 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5622
5623 DRM DRIVER FOR SITRONIX ST7735R PANELS
5624 M:      David Lechner <[email protected]>
5625 S:      Maintained
5626 T:      git git://anongit.freedesktop.org/drm/drm-misc
5627 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5628 F:      drivers/gpu/drm/tiny/st7735r.c
5629
5630 DRM DRIVER FOR SONY ACX424AKP PANELS
5631 M:      Linus Walleij <[email protected]>
5632 S:      Maintained
5633 T:      git git://anongit.freedesktop.org/drm/drm-misc
5634 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5635
5636 DRM DRIVER FOR ST-ERICSSON MCDE
5637 M:      Linus Walleij <[email protected]>
5638 S:      Maintained
5639 T:      git git://anongit.freedesktop.org/drm/drm-misc
5640 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5641 F:      drivers/gpu/drm/mcde/
5642
5643 DRM DRIVER FOR TDFX VIDEO CARDS
5644 S:      Orphan / Obsolete
5645 F:      drivers/gpu/drm/tdfx/
5646
5647 DRM DRIVER FOR TPO TPG110 PANELS
5648 M:      Linus Walleij <[email protected]>
5649 S:      Maintained
5650 T:      git git://anongit.freedesktop.org/drm/drm-misc
5651 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5652 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5653
5654 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5655 M:      Dave Airlie <[email protected]>
5656 R:      Sean Paul <[email protected]>
5657 L:      [email protected]
5658 S:      Odd Fixes
5659 T:      git git://anongit.freedesktop.org/drm/drm-misc
5660 F:      drivers/gpu/drm/udl/
5661
5662 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5663 M:      Rodrigo Siqueira <[email protected]>
5664 R:      Haneen Mohammed <[email protected]>
5665 R:      Daniel Vetter <[email protected]>
5666 L:      [email protected]
5667 S:      Maintained
5668 T:      git git://anongit.freedesktop.org/drm/drm-misc
5669 F:      Documentation/gpu/vkms.rst
5670 F:      drivers/gpu/drm/vkms/
5671
5672 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5673 M:      Hans de Goede <[email protected]>
5674 L:      [email protected]
5675 S:      Maintained
5676 T:      git git://anongit.freedesktop.org/drm/drm-misc
5677 F:      drivers/gpu/drm/vboxvideo/
5678
5679 DRM DRIVER FOR VMWARE VIRTUAL GPU
5680 M:      "VMware Graphics" <[email protected]>
5681 M:      Roland Scheidegger <[email protected]>
5682 L:      [email protected]
5683 S:      Supported
5684 T:      git git://people.freedesktop.org/~sroland/linux
5685 F:      drivers/gpu/drm/vmwgfx/
5686 F:      include/uapi/drm/vmwgfx_drm.h
5687
5688 DRM DRIVERS
5689 M:      David Airlie <[email protected]>
5690 M:      Daniel Vetter <[email protected]>
5691 L:      [email protected]
5692 S:      Maintained
5693 B:      https://bugs.freedesktop.org/
5694 C:      irc://chat.freenode.net/dri-devel
5695 T:      git git://anongit.freedesktop.org/drm/drm
5696 F:      Documentation/devicetree/bindings/display/
5697 F:      Documentation/devicetree/bindings/gpu/
5698 F:      Documentation/gpu/
5699 F:      drivers/gpu/drm/
5700 F:      drivers/gpu/vga/
5701 F:      include/drm/
5702 F:      include/linux/vga*
5703 F:      include/uapi/drm/
5704
5705 DRM DRIVERS AND MISC GPU PATCHES
5706 M:      Maarten Lankhorst <[email protected]>
5707 M:      Maxime Ripard <[email protected]>
5708 M:      Thomas Zimmermann <[email protected]>
5709 S:      Maintained
5710 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5711 T:      git git://anongit.freedesktop.org/drm/drm-misc
5712 F:      Documentation/gpu/
5713 F:      drivers/gpu/drm/*
5714 F:      drivers/gpu/vga/
5715 F:      include/drm/drm*
5716 F:      include/linux/vga*
5717 F:      include/uapi/drm/drm*
5718
5719 DRM DRIVERS FOR ALLWINNER A10
5720 M:      Maxime Ripard <[email protected]>
5721 M:      Chen-Yu Tsai <[email protected]>
5722 L:      [email protected]
5723 S:      Supported
5724 T:      git git://anongit.freedesktop.org/drm/drm-misc
5725 F:      Documentation/devicetree/bindings/display/allwinner*
5726 F:      drivers/gpu/drm/sun4i/
5727
5728 DRM DRIVERS FOR AMLOGIC SOCS
5729 M:      Neil Armstrong <[email protected]>
5730 L:      [email protected]
5731 L:      [email protected]
5732 S:      Supported
5733 W:      http://linux-meson.com/
5734 T:      git git://anongit.freedesktop.org/drm/drm-misc
5735 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5736 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5737 F:      Documentation/gpu/meson.rst
5738 F:      drivers/gpu/drm/meson/
5739
5740 DRM DRIVERS FOR ATMEL HLCDC
5741 M:      Sam Ravnborg <[email protected]>
5742 M:      Boris Brezillon <[email protected]>
5743 L:      [email protected]
5744 S:      Supported
5745 T:      git git://anongit.freedesktop.org/drm/drm-misc
5746 F:      Documentation/devicetree/bindings/display/atmel/
5747 F:      drivers/gpu/drm/atmel-hlcdc/
5748
5749 DRM DRIVERS FOR BRIDGE CHIPS
5750 M:      Andrzej Hajda <[email protected]>
5751 M:      Neil Armstrong <[email protected]>
5752 R:      Laurent Pinchart <[email protected]>
5753 R:      Jonas Karlman <[email protected]>
5754 R:      Jernej Skrabec <[email protected]>
5755 S:      Maintained
5756 T:      git git://anongit.freedesktop.org/drm/drm-misc
5757 F:      drivers/gpu/drm/bridge/
5758
5759 DRM DRIVERS FOR EXYNOS
5760 M:      Inki Dae <[email protected]>
5761 M:      Joonyoung Shim <[email protected]>
5762 M:      Seung-Woo Kim <[email protected]>
5763 M:      Kyungmin Park <[email protected]>
5764 L:      [email protected]
5765 S:      Supported
5766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5767 F:      Documentation/devicetree/bindings/display/exynos/
5768 F:      drivers/gpu/drm/exynos/
5769 F:      include/uapi/drm/exynos_drm.h
5770
5771 DRM DRIVERS FOR FREESCALE DCU
5772 M:      Stefan Agner <[email protected]>
5773 M:      Alison Wang <[email protected]>
5774 L:      [email protected]
5775 S:      Supported
5776 T:      git git://anongit.freedesktop.org/drm/drm-misc
5777 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5778 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5779 F:      drivers/gpu/drm/fsl-dcu/
5780
5781 DRM DRIVERS FOR FREESCALE IMX
5782 M:      Philipp Zabel <[email protected]>
5783 L:      [email protected]
5784 S:      Maintained
5785 F:      Documentation/devicetree/bindings/display/imx/
5786 F:      drivers/gpu/drm/imx/
5787 F:      drivers/gpu/ipu-v3/
5788
5789 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5790 M:      Patrik Jakobsson <[email protected]>
5791 L:      [email protected]
5792 S:      Maintained
5793 T:      git git://github.com/patjak/drm-gma500
5794 F:      drivers/gpu/drm/gma500/
5795
5796 DRM DRIVERS FOR HISILICON
5797 M:      Xinliang Liu <[email protected]>
5798 M:      Rongrong Zou <[email protected]>
5799 R:      John Stultz <[email protected]>
5800 R:      Xinwei Kong <[email protected]>
5801 R:      Chen Feng <[email protected]>
5802 L:      [email protected]
5803 S:      Maintained
5804 T:      git git://anongit.freedesktop.org/drm/drm-misc
5805 F:      Documentation/devicetree/bindings/display/hisilicon/
5806 F:      drivers/gpu/drm/hisilicon/
5807
5808 DRM DRIVERS FOR LIMA
5809 M:      Qiang Yu <[email protected]>
5810 L:      [email protected]
5811 L:      [email protected] (moderated for non-subscribers)
5812 S:      Maintained
5813 T:      git git://anongit.freedesktop.org/drm/drm-misc
5814 F:      drivers/gpu/drm/lima/
5815 F:      include/uapi/drm/lima_drm.h
5816
5817 DRM DRIVERS FOR MEDIATEK
5818 M:      Chun-Kuang Hu <[email protected]>
5819 M:      Philipp Zabel <[email protected]>
5820 L:      [email protected]
5821 S:      Supported
5822 F:      Documentation/devicetree/bindings/display/mediatek/
5823 F:      drivers/gpu/drm/mediatek/
5824
5825 DRM DRIVERS FOR NVIDIA TEGRA
5826 M:      Thierry Reding <[email protected]>
5827 L:      [email protected]
5828 L:      [email protected]
5829 S:      Supported
5830 T:      git git://anongit.freedesktop.org/tegra/linux.git
5831 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5832 F:      drivers/gpu/drm/tegra/
5833 F:      drivers/gpu/host1x/
5834 F:      include/linux/host1x.h
5835 F:      include/uapi/drm/tegra_drm.h
5836
5837 DRM DRIVERS FOR RENESAS
5838 M:      Laurent Pinchart <[email protected]>
5839 M:      Kieran Bingham <[email protected]>
5840 L:      [email protected]
5841 L:      [email protected]
5842 S:      Supported
5843 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5844 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5845 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5846 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5847 F:      drivers/gpu/drm/rcar-du/
5848 F:      drivers/gpu/drm/shmobile/
5849 F:      include/linux/platform_data/shmob_drm.h
5850
5851 DRM DRIVERS FOR ROCKCHIP
5852 M:      Sandy Huang <[email protected]>
5853 M:      Heiko Stübner <[email protected]>
5854 L:      [email protected]
5855 S:      Maintained
5856 T:      git git://anongit.freedesktop.org/drm/drm-misc
5857 F:      Documentation/devicetree/bindings/display/rockchip/
5858 F:      drivers/gpu/drm/rockchip/
5859
5860 DRM DRIVERS FOR STI
5861 M:      Benjamin Gaignard <[email protected]>
5862 M:      Vincent Abriou <[email protected]>
5863 L:      [email protected]
5864 S:      Maintained
5865 T:      git git://anongit.freedesktop.org/drm/drm-misc
5866 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5867 F:      drivers/gpu/drm/sti
5868
5869 DRM DRIVERS FOR STM
5870 M:      Yannick Fertre <[email protected]>
5871 M:      Philippe Cornu <[email protected]>
5872 M:      Benjamin Gaignard <[email protected]>
5873 M:      Vincent Abriou <[email protected]>
5874 L:      [email protected]
5875 S:      Maintained
5876 T:      git git://anongit.freedesktop.org/drm/drm-misc
5877 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5878 F:      drivers/gpu/drm/stm
5879
5880 DRM DRIVERS FOR TI KEYSTONE
5881 M:      Jyri Sarha <[email protected]>
5882 M:      Tomi Valkeinen <[email protected]>
5883 L:      [email protected]
5884 S:      Maintained
5885 T:      git git://anongit.freedesktop.org/drm/drm-misc
5886 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5887 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5888 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5889 F:      drivers/gpu/drm/tidss/
5890
5891 DRM DRIVERS FOR TI LCDC
5892 M:      Jyri Sarha <[email protected]>
5893 R:      Tomi Valkeinen <[email protected]>
5894 L:      [email protected]
5895 S:      Maintained
5896 F:      Documentation/devicetree/bindings/display/tilcdc/
5897 F:      drivers/gpu/drm/tilcdc/
5898
5899 DRM DRIVERS FOR TI OMAP
5900 M:      Tomi Valkeinen <[email protected]>
5901 L:      [email protected]
5902 S:      Maintained
5903 F:      Documentation/devicetree/bindings/display/ti/
5904 F:      drivers/gpu/drm/omapdrm/
5905
5906 DRM DRIVERS FOR V3D
5907 M:      Eric Anholt <[email protected]>
5908 S:      Supported
5909 T:      git git://anongit.freedesktop.org/drm/drm-misc
5910 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5911 F:      drivers/gpu/drm/v3d/
5912 F:      include/uapi/drm/v3d_drm.h
5913
5914 DRM DRIVERS FOR VC4
5915 M:      Eric Anholt <[email protected]>
5916 S:      Supported
5917 T:      git git://github.com/anholt/linux
5918 T:      git git://anongit.freedesktop.org/drm/drm-misc
5919 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
5920 F:      drivers/gpu/drm/vc4/
5921 F:      include/uapi/drm/vc4_drm.h
5922
5923 DRM DRIVERS FOR VIVANTE GPU IP
5924 M:      Lucas Stach <[email protected]>
5925 R:      Russell King <[email protected]>
5926 R:      Christian Gmeiner <[email protected]>
5927 L:      [email protected] (moderated for non-subscribers)
5928 L:      [email protected]
5929 S:      Maintained
5930 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5931 F:      drivers/gpu/drm/etnaviv/
5932 F:      include/uapi/drm/etnaviv_drm.h
5933
5934 DRM DRIVERS FOR XEN
5935 M:      Oleksandr Andrushchenko <[email protected]>
5936 L:      [email protected]
5937 L:      [email protected] (moderated for non-subscribers)
5938 S:      Supported
5939 T:      git git://anongit.freedesktop.org/drm/drm-misc
5940 F:      Documentation/gpu/xen-front.rst
5941 F:      drivers/gpu/drm/xen/
5942
5943 DRM DRIVERS FOR XILINX
5944 M:      Hyun Kwon <[email protected]>
5945 M:      Laurent Pinchart <[email protected]>
5946 L:      [email protected]
5947 S:      Maintained
5948 T:      git git://anongit.freedesktop.org/drm/drm-misc
5949 F:      Documentation/devicetree/bindings/display/xlnx/
5950 F:      drivers/gpu/drm/xlnx/
5951
5952 DRM DRIVERS FOR ZTE ZX
5953 M:      Shawn Guo <[email protected]>
5954 L:      [email protected]
5955 S:      Maintained
5956 T:      git git://anongit.freedesktop.org/drm/drm-misc
5957 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5958 F:      drivers/gpu/drm/zte/
5959
5960 DRM PANEL DRIVERS
5961 M:      Thierry Reding <[email protected]>
5962 R:      Sam Ravnborg <[email protected]>
5963 L:      [email protected]
5964 S:      Maintained
5965 T:      git git://anongit.freedesktop.org/drm/drm-misc
5966 F:      Documentation/devicetree/bindings/display/panel/
5967 F:      drivers/gpu/drm/drm_panel.c
5968 F:      drivers/gpu/drm/panel/
5969 F:      include/drm/drm_panel.h
5970
5971 DRM TTM SUBSYSTEM
5972 M:      Christian Koenig <[email protected]>
5973 M:      Huang Rui <[email protected]>
5974 L:      [email protected]
5975 S:      Maintained
5976 T:      git git://people.freedesktop.org/~agd5f/linux
5977 F:      drivers/gpu/drm/ttm/
5978 F:      include/drm/ttm/
5979
5980 DSBR100 USB FM RADIO DRIVER
5981 M:      Alexey Klimov <[email protected]>
5982 L:      [email protected]
5983 S:      Maintained
5984 T:      git git://linuxtv.org/media_tree.git
5985 F:      drivers/media/radio/dsbr100.c
5986
5987 DT3155 MEDIA DRIVER
5988 M:      Hans Verkuil <[email protected]>
5989 L:      [email protected]
5990 S:      Odd Fixes
5991 W:      https://linuxtv.org
5992 T:      git git://linuxtv.org/media_tree.git
5993 F:      drivers/media/pci/dt3155/
5994
5995 DVB_USB_AF9015 MEDIA DRIVER
5996 M:      Antti Palosaari <[email protected]>
5997 L:      [email protected]
5998 S:      Maintained
5999 W:      https://linuxtv.org
6000 W:      http://palosaari.fi/linux/
6001 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6002 T:      git git://linuxtv.org/anttip/media_tree.git
6003 F:      drivers/media/usb/dvb-usb-v2/af9015*
6004
6005 DVB_USB_AF9035 MEDIA DRIVER
6006 M:      Antti Palosaari <[email protected]>
6007 L:      [email protected]
6008 S:      Maintained
6009 W:      https://linuxtv.org
6010 W:      http://palosaari.fi/linux/
6011 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6012 T:      git git://linuxtv.org/anttip/media_tree.git
6013 F:      drivers/media/usb/dvb-usb-v2/af9035*
6014
6015 DVB_USB_ANYSEE MEDIA DRIVER
6016 M:      Antti Palosaari <[email protected]>
6017 L:      [email protected]
6018 S:      Maintained
6019 W:      https://linuxtv.org
6020 W:      http://palosaari.fi/linux/
6021 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6022 T:      git git://linuxtv.org/anttip/media_tree.git
6023 F:      drivers/media/usb/dvb-usb-v2/anysee*
6024
6025 DVB_USB_AU6610 MEDIA DRIVER
6026 M:      Antti Palosaari <[email protected]>
6027 L:      [email protected]
6028 S:      Maintained
6029 W:      https://linuxtv.org
6030 W:      http://palosaari.fi/linux/
6031 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6032 T:      git git://linuxtv.org/anttip/media_tree.git
6033 F:      drivers/media/usb/dvb-usb-v2/au6610*
6034
6035 DVB_USB_CE6230 MEDIA DRIVER
6036 M:      Antti Palosaari <[email protected]>
6037 L:      [email protected]
6038 S:      Maintained
6039 W:      https://linuxtv.org
6040 W:      http://palosaari.fi/linux/
6041 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6042 T:      git git://linuxtv.org/anttip/media_tree.git
6043 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6044
6045 DVB_USB_CXUSB MEDIA DRIVER
6046 M:      Michael Krufky <[email protected]>
6047 L:      [email protected]
6048 S:      Maintained
6049 W:      https://linuxtv.org
6050 W:      http://github.com/mkrufky
6051 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6052 T:      git git://linuxtv.org/media_tree.git
6053 F:      drivers/media/usb/dvb-usb/cxusb*
6054
6055 DVB_USB_EC168 MEDIA DRIVER
6056 M:      Antti Palosaari <[email protected]>
6057 L:      [email protected]
6058 S:      Maintained
6059 W:      https://linuxtv.org
6060 W:      http://palosaari.fi/linux/
6061 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6062 T:      git git://linuxtv.org/anttip/media_tree.git
6063 F:      drivers/media/usb/dvb-usb-v2/ec168*
6064
6065 DVB_USB_GL861 MEDIA DRIVER
6066 M:      Antti Palosaari <[email protected]>
6067 L:      [email protected]
6068 S:      Maintained
6069 W:      https://linuxtv.org
6070 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6071 T:      git git://linuxtv.org/anttip/media_tree.git
6072 F:      drivers/media/usb/dvb-usb-v2/gl861*
6073
6074 DVB_USB_MXL111SF MEDIA DRIVER
6075 M:      Michael Krufky <[email protected]>
6076 L:      [email protected]
6077 S:      Maintained
6078 W:      https://linuxtv.org
6079 W:      http://github.com/mkrufky
6080 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6081 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6082 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6083
6084 DVB_USB_RTL28XXU MEDIA DRIVER
6085 M:      Antti Palosaari <[email protected]>
6086 L:      [email protected]
6087 S:      Maintained
6088 W:      https://linuxtv.org
6089 W:      http://palosaari.fi/linux/
6090 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6091 T:      git git://linuxtv.org/anttip/media_tree.git
6092 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6093
6094 DVB_USB_V2 MEDIA DRIVER
6095 M:      Antti Palosaari <[email protected]>
6096 L:      [email protected]
6097 S:      Maintained
6098 W:      https://linuxtv.org
6099 W:      http://palosaari.fi/linux/
6100 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6101 T:      git git://linuxtv.org/anttip/media_tree.git
6102 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6103 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6104
6105 DYNAMIC DEBUG
6106 M:      Jason Baron <[email protected]>
6107 S:      Maintained
6108 F:      include/linux/dynamic_debug.h
6109 F:      lib/dynamic_debug.c
6110
6111 DYNAMIC INTERRUPT MODERATION
6112 M:      Tal Gilboa <[email protected]>
6113 S:      Maintained
6114 F:      Documentation/networking/net_dim.rst
6115 F:      include/linux/dim.h
6116 F:      lib/dim/
6117
6118 DZ DECSTATION DZ11 SERIAL DRIVER
6119 M:      "Maciej W. Rozycki" <[email protected]>
6120 S:      Maintained
6121 F:      drivers/tty/serial/dz.*
6122
6123 E3X0 POWER BUTTON DRIVER
6124 M:      Moritz Fischer <[email protected]>
6125 L:      [email protected]
6126 S:      Supported
6127 W:      http://www.ettus.com
6128 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6129 F:      drivers/input/misc/e3x0-button.c
6130
6131 E4000 MEDIA DRIVER
6132 M:      Antti Palosaari <[email protected]>
6133 L:      [email protected]
6134 S:      Maintained
6135 W:      https://linuxtv.org
6136 W:      http://palosaari.fi/linux/
6137 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6138 T:      git git://linuxtv.org/anttip/media_tree.git
6139 F:      drivers/media/tuners/e4000*
6140
6141 EARTH_PT1 MEDIA DRIVER
6142 M:      Akihiro Tsukada <[email protected]>
6143 L:      [email protected]
6144 S:      Odd Fixes
6145 F:      drivers/media/pci/pt1/
6146
6147 EARTH_PT3 MEDIA DRIVER
6148 M:      Akihiro Tsukada <[email protected]>
6149 L:      [email protected]
6150 S:      Odd Fixes
6151 F:      drivers/media/pci/pt3/
6152
6153 EC100 MEDIA DRIVER
6154 M:      Antti Palosaari <[email protected]>
6155 L:      [email protected]
6156 S:      Maintained
6157 W:      https://linuxtv.org
6158 W:      http://palosaari.fi/linux/
6159 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6160 T:      git git://linuxtv.org/anttip/media_tree.git
6161 F:      drivers/media/dvb-frontends/ec100*
6162
6163 ECRYPT FILE SYSTEM
6164 M:      Tyler Hicks <[email protected]>
6165 L:      [email protected]
6166 S:      Odd Fixes
6167 W:      http://ecryptfs.org
6168 W:      https://launchpad.net/ecryptfs
6169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6170 F:      Documentation/filesystems/ecryptfs.rst
6171 F:      fs/ecryptfs/
6172
6173 EDAC-AMD64
6174 M:      Borislav Petkov <[email protected]>
6175 L:      [email protected]
6176 S:      Maintained
6177 F:      drivers/edac/amd64_edac*
6178
6179 EDAC-ARMADA
6180 M:      Jan Luebbe <[email protected]>
6181 L:      [email protected]
6182 S:      Maintained
6183 F:      drivers/edac/armada_xp_*
6184
6185 EDAC-AST2500
6186 M:      Stefan Schaeckeler <[email protected]>
6187 S:      Supported
6188 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6189 F:      drivers/edac/aspeed_edac.c
6190
6191 EDAC-BLUEFIELD
6192 M:      Shravan Kumar Ramani <[email protected]>
6193 S:      Supported
6194 F:      drivers/edac/bluefield_edac.c
6195
6196 EDAC-CALXEDA
6197 M:      Robert Richter <[email protected]>
6198 L:      [email protected]
6199 S:      Maintained
6200 F:      drivers/edac/highbank*
6201
6202 EDAC-CAVIUM OCTEON
6203 M:      Ralf Baechle <[email protected]>
6204 L:      [email protected]
6205 L:      [email protected]
6206 S:      Supported
6207 F:      drivers/edac/octeon_edac*
6208
6209 EDAC-CAVIUM THUNDERX
6210 M:      Robert Richter <[email protected]>
6211 L:      [email protected]
6212 S:      Odd Fixes
6213 F:      drivers/edac/thunderx_edac*
6214
6215 EDAC-CORE
6216 M:      Borislav Petkov <[email protected]>
6217 M:      Mauro Carvalho Chehab <[email protected]>
6218 M:      Tony Luck <[email protected]>
6219 R:      James Morse <[email protected]>
6220 R:      Robert Richter <[email protected]>
6221 L:      [email protected]
6222 S:      Supported
6223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6224 F:      Documentation/admin-guide/ras.rst
6225 F:      Documentation/driver-api/edac.rst
6226 F:      drivers/edac/
6227 F:      include/linux/edac.h
6228
6229 EDAC-DMC520
6230 M:      Lei Wang <[email protected]>
6231 L:      [email protected]
6232 S:      Supported
6233 F:      drivers/edac/dmc520_edac.c
6234
6235 EDAC-E752X
6236 M:      Mark Gross <[email protected]>
6237 L:      [email protected]
6238 S:      Maintained
6239 F:      drivers/edac/e752x_edac.c
6240
6241 EDAC-E7XXX
6242 L:      [email protected]
6243 S:      Maintained
6244 F:      drivers/edac/e7xxx_edac.c
6245
6246 EDAC-FSL_DDR
6247 M:      York Sun <[email protected]>
6248 L:      [email protected]
6249 S:      Maintained
6250 F:      drivers/edac/fsl_ddr_edac.*
6251
6252 EDAC-GHES
6253 M:      Mauro Carvalho Chehab <[email protected]>
6254 L:      [email protected]
6255 S:      Maintained
6256 F:      drivers/edac/ghes_edac.c
6257
6258 EDAC-I10NM
6259 M:      Tony Luck <[email protected]>
6260 L:      [email protected]
6261 S:      Maintained
6262 F:      drivers/edac/i10nm_base.c
6263
6264 EDAC-I3000
6265 L:      [email protected]
6266 S:      Orphan
6267 F:      drivers/edac/i3000_edac.c
6268
6269 EDAC-I5000
6270 L:      [email protected]
6271 S:      Maintained
6272 F:      drivers/edac/i5000_edac.c
6273
6274 EDAC-I5400
6275 M:      Mauro Carvalho Chehab <[email protected]>
6276 L:      [email protected]
6277 S:      Maintained
6278 F:      drivers/edac/i5400_edac.c
6279
6280 EDAC-I7300
6281 M:      Mauro Carvalho Chehab <[email protected]>
6282 L:      [email protected]
6283 S:      Maintained
6284 F:      drivers/edac/i7300_edac.c
6285
6286 EDAC-I7CORE
6287 M:      Mauro Carvalho Chehab <[email protected]>
6288 L:      [email protected]
6289 S:      Maintained
6290 F:      drivers/edac/i7core_edac.c
6291
6292 EDAC-I82443BXGX
6293 M:      Tim Small <[email protected]>
6294 L:      [email protected]
6295 S:      Maintained
6296 F:      drivers/edac/i82443bxgx_edac.c
6297
6298 EDAC-I82975X
6299 M:      "Arvind R." <[email protected]>
6300 L:      [email protected]
6301 S:      Maintained
6302 F:      drivers/edac/i82975x_edac.c
6303
6304 EDAC-IE31200
6305 M:      Jason Baron <[email protected]>
6306 L:      [email protected]
6307 S:      Maintained
6308 F:      drivers/edac/ie31200_edac.c
6309
6310 EDAC-MPC85XX
6311 M:      Johannes Thumshirn <[email protected]>
6312 L:      [email protected]
6313 S:      Maintained
6314 F:      drivers/edac/mpc85xx_edac.[ch]
6315
6316 EDAC-PASEMI
6317 M:      Egor Martovetsky <[email protected]>
6318 L:      [email protected]
6319 S:      Maintained
6320 F:      drivers/edac/pasemi_edac.c
6321
6322 EDAC-PND2
6323 M:      Tony Luck <[email protected]>
6324 L:      [email protected]
6325 S:      Maintained
6326 F:      drivers/edac/pnd2_edac.[ch]
6327
6328 EDAC-QCOM
6329 M:      Channagoud Kadabi <[email protected]>
6330 M:      Venkata Narendra Kumar Gutta <[email protected]>
6331 L:      [email protected]
6332 L:      [email protected]
6333 S:      Maintained
6334 F:      drivers/edac/qcom_edac.c
6335
6336 EDAC-R82600
6337 M:      Tim Small <[email protected]>
6338 L:      [email protected]
6339 S:      Maintained
6340 F:      drivers/edac/r82600_edac.c
6341
6342 EDAC-SBRIDGE
6343 M:      Tony Luck <[email protected]>
6344 R:      Qiuxu Zhuo <[email protected]>
6345 L:      [email protected]
6346 S:      Maintained
6347 F:      drivers/edac/sb_edac.c
6348
6349 EDAC-SIFIVE
6350 M:      Yash Shah <[email protected]>
6351 L:      [email protected]
6352 S:      Supported
6353 F:      drivers/edac/sifive_edac.c
6354
6355 EDAC-SKYLAKE
6356 M:      Tony Luck <[email protected]>
6357 L:      [email protected]
6358 S:      Maintained
6359 F:      drivers/edac/skx_*.c
6360
6361 EDAC-TI
6362 M:      Tero Kristo <[email protected]>
6363 L:      [email protected]
6364 S:      Maintained
6365 F:      drivers/edac/ti_edac.c
6366
6367 EDIROL UA-101/UA-1000 DRIVER
6368 M:      Clemens Ladisch <[email protected]>
6369 L:      [email protected] (moderated for non-subscribers)
6370 S:      Maintained
6371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6372 F:      sound/usb/misc/ua101.c
6373
6374 EFI TEST DRIVER
6375 M:      Ivan Hu <[email protected]>
6376 M:      Ard Biesheuvel <[email protected]>
6377 L:      [email protected]
6378 S:      Maintained
6379 F:      drivers/firmware/efi/test/
6380
6381 EFI VARIABLE FILESYSTEM
6382 M:      Matthew Garrett <[email protected]>
6383 M:      Jeremy Kerr <[email protected]>
6384 M:      Ard Biesheuvel <[email protected]>
6385 L:      [email protected]
6386 S:      Maintained
6387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6388 F:      fs/efivarfs/
6389
6390 EFIFB FRAMEBUFFER DRIVER
6391 M:      Peter Jones <[email protected]>
6392 L:      [email protected]
6393 S:      Maintained
6394 F:      drivers/video/fbdev/efifb.c
6395
6396 EFS FILESYSTEM
6397 S:      Orphan
6398 W:      http://aeschi.ch.eu.org/efs/
6399 F:      fs/efs/
6400
6401 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6402 M:      Douglas Miller <[email protected]>
6403 L:      [email protected]
6404 S:      Maintained
6405 F:      drivers/net/ethernet/ibm/ehea/
6406
6407 EM28XX VIDEO4LINUX DRIVER
6408 M:      Mauro Carvalho Chehab <[email protected]>
6409 L:      [email protected]
6410 S:      Maintained
6411 W:      https://linuxtv.org
6412 T:      git git://linuxtv.org/media_tree.git
6413 F:      Documentation/admin-guide/media/em28xx*
6414 F:      drivers/media/usb/em28xx/
6415
6416 EMBEDDED LINUX
6417 M:      Paul Gortmaker <[email protected]>
6418 M:      Matt Mackall <[email protected]>
6419 M:      David Woodhouse <[email protected]>
6420 L:      [email protected]
6421 S:      Maintained
6422
6423 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6424 M:      Adrian Hunter <[email protected]>
6425 M:      Ritesh Harjani <[email protected]>
6426 M:      Asutosh Das <[email protected]>
6427 L:      [email protected]
6428 S:      Maintained
6429 F:      drivers/mmc/host/cqhci*
6430
6431 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6432 M:      Subbu Seetharaman <[email protected]>
6433 M:      Ketan Mukadam <[email protected]>
6434 M:      Jitendra Bhivare <[email protected]>
6435 L:      [email protected]
6436 S:      Supported
6437 W:      http://www.broadcom.com
6438 F:      drivers/scsi/be2iscsi/
6439
6440 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6441 M:      Ajit Khaparde <[email protected]>
6442 M:      Sriharsha Basavapatna <[email protected]>
6443 M:      Somnath Kotur <[email protected]>
6444 L:      [email protected]
6445 S:      Supported
6446 W:      http://www.emulex.com
6447 F:      drivers/net/ethernet/emulex/benet/
6448
6449 EMULEX ONECONNECT ROCE DRIVER
6450 M:      Selvin Xavier <[email protected]>
6451 M:      Devesh Sharma <[email protected]>
6452 L:      [email protected]
6453 S:      Odd Fixes
6454 W:      http://www.broadcom.com
6455 F:      drivers/infiniband/hw/ocrdma/
6456 F:      include/uapi/rdma/ocrdma-abi.h
6457
6458 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6459 M:      James Smart <[email protected]>
6460 M:      Dick Kennedy <[email protected]>
6461 L:      [email protected]
6462 S:      Supported
6463 W:      http://www.broadcom.com
6464 F:      drivers/scsi/lpfc/
6465
6466 ENE CB710 FLASH CARD READER DRIVER
6467 M:      Michał Mirosław <[email protected]>
6468 S:      Maintained
6469 F:      drivers/misc/cb710/
6470 F:      drivers/mmc/host/cb710-mmc.*
6471 F:      include/linux/cb710.h
6472
6473 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6474 M:      Maxim Levitsky <[email protected]>
6475 S:      Maintained
6476 F:      drivers/media/rc/ene_ir.*
6477
6478 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6479 M:      Laurentiu Tudor <[email protected]>
6480 L:      [email protected]
6481 S:      Maintained
6482 F:      drivers/tty/ehv_bytechan.c
6483
6484 EPSON S1D13XXX FRAMEBUFFER DRIVER
6485 M:      Kristoffer Ericson <[email protected]>
6486 S:      Maintained
6487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6488 F:      drivers/video/fbdev/s1d13xxxfb.c
6489 F:      include/video/s1d13xxxfb.h
6490
6491 EROFS FILE SYSTEM
6492 M:      Gao Xiang <[email protected]>
6493 M:      Chao Yu <[email protected]>
6494 L:      [email protected]
6495 S:      Maintained
6496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6497 F:      Documentation/filesystems/erofs.rst
6498 F:      fs/erofs/
6499 F:      include/trace/events/erofs.h
6500
6501 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6502 M:      Jeff Layton <[email protected]>
6503 S:      Maintained
6504 F:      include/linux/errseq.h
6505 F:      lib/errseq.c
6506
6507 ET131X NETWORK DRIVER
6508 M:      Mark Einon <[email protected]>
6509 S:      Odd Fixes
6510 F:      drivers/net/ethernet/agere/
6511
6512 ETHERNET BRIDGE
6513 M:      Roopa Prabhu <[email protected]>
6514 M:      Nikolay Aleksandrov <[email protected]>
6515 L:      [email protected] (moderated for non-subscribers)
6516 L:      [email protected]
6517 S:      Maintained
6518 W:      http://www.linuxfoundation.org/en/Net:Bridge
6519 F:      include/linux/netfilter_bridge/
6520 F:      net/bridge/
6521
6522 ETHERNET PHY LIBRARY
6523 M:      Andrew Lunn <[email protected]>
6524 M:      Heiner Kallweit <[email protected]>
6525 R:      Russell King <[email protected]>
6526 L:      [email protected]
6527 S:      Maintained
6528 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6529 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6530 F:      Documentation/devicetree/bindings/net/mdio*
6531 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6532 F:      Documentation/networking/phy.rst
6533 F:      drivers/net/mdio/
6534 F:      drivers/net/mdio/of_mdio.c
6535 F:      drivers/net/pcs/
6536 F:      drivers/net/phy/
6537 F:      drivers/of/of_net.c
6538 F:      include/dt-bindings/net/qca-ar803x.h
6539 F:      include/linux/*mdio*.h
6540 F:      include/linux/mdio/*.h
6541 F:      include/linux/of_net.h
6542 F:      include/linux/phy.h
6543 F:      include/linux/phy_fixed.h
6544 F:      include/linux/platform_data/mdio-bcm-unimac.h
6545 F:      include/linux/platform_data/mdio-gpio.h
6546 F:      include/trace/events/mdio.h
6547 F:      include/uapi/linux/mdio.h
6548 F:      include/uapi/linux/mii.h
6549
6550 EXFAT FILE SYSTEM
6551 M:      Namjae Jeon <[email protected]>
6552 M:      Sungjong Seo <[email protected]>
6553 L:      [email protected]
6554 S:      Maintained
6555 F:      fs/exfat/
6556
6557 EXT2 FILE SYSTEM
6558 M:      Jan Kara <[email protected]>
6559 L:      [email protected]
6560 S:      Maintained
6561 F:      Documentation/filesystems/ext2.rst
6562 F:      fs/ext2/
6563 F:      include/linux/ext2*
6564
6565 EXT4 FILE SYSTEM
6566 M:      "Theodore Ts'o" <[email protected]>
6567 M:      Andreas Dilger <[email protected]>
6568 L:      [email protected]
6569 S:      Maintained
6570 W:      http://ext4.wiki.kernel.org
6571 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6573 F:      Documentation/filesystems/ext4/
6574 F:      fs/ext4/
6575
6576 Extended Verification Module (EVM)
6577 M:      Mimi Zohar <[email protected]>
6578 L:      [email protected]
6579 S:      Supported
6580 F:      security/integrity/evm/
6581
6582 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6583 M:      Ard Biesheuvel <[email protected]>
6584 L:      [email protected]
6585 S:      Maintained
6586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6587 F:      Documentation/admin-guide/efi-stub.rst
6588 F:      arch/*/include/asm/efi.h
6589 F:      arch/*/kernel/efi.c
6590 F:      arch/arm/boot/compressed/efi-header.S
6591 F:      arch/arm64/kernel/efi-entry.S
6592 F:      arch/x86/platform/efi/
6593 F:      drivers/firmware/efi/
6594 F:      include/linux/efi*.h
6595
6596 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6597 M:      MyungJoo Ham <[email protected]>
6598 M:      Chanwoo Choi <[email protected]>
6599 L:      [email protected]
6600 S:      Maintained
6601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6602 F:      Documentation/devicetree/bindings/extcon/
6603 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6604 F:      drivers/extcon/
6605 F:      include/linux/extcon.h
6606 F:      include/linux/extcon/
6607
6608 EXTRA BOOT CONFIG
6609 M:      Masami Hiramatsu <[email protected]>
6610 S:      Maintained
6611 F:      Documentation/admin-guide/bootconfig.rst
6612 F:      fs/proc/bootconfig.c
6613 F:      include/linux/bootconfig.h
6614 F:      lib/bootconfig.c
6615 F:      tools/bootconfig/*
6616
6617 EXYNOS DP DRIVER
6618 M:      Jingoo Han <[email protected]>
6619 L:      [email protected]
6620 S:      Maintained
6621 F:      drivers/gpu/drm/exynos/exynos_dp*
6622
6623 EXYNOS SYSMMU (IOMMU) driver
6624 M:      Marek Szyprowski <[email protected]>
6625 L:      [email protected]
6626 S:      Maintained
6627 F:      drivers/iommu/exynos-iommu.c
6628
6629 EZchip NPS platform support
6630 M:      Vineet Gupta <[email protected]>
6631 M:      Ofer Levi <[email protected]>
6632 S:      Supported
6633 F:      arch/arc/boot/dts/eznps.dts
6634 F:      arch/arc/plat-eznps
6635
6636 F2FS FILE SYSTEM
6637 M:      Jaegeuk Kim <[email protected]>
6638 M:      Chao Yu <[email protected]>
6639 L:      [email protected]
6640 S:      Maintained
6641 W:      https://f2fs.wiki.kernel.org/
6642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6643 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6644 F:      Documentation/filesystems/f2fs.rst
6645 F:      fs/f2fs/
6646 F:      include/linux/f2fs_fs.h
6647 F:      include/trace/events/f2fs.h
6648
6649 F71805F HARDWARE MONITORING DRIVER
6650 M:      Jean Delvare <[email protected]>
6651 L:      [email protected]
6652 S:      Maintained
6653 F:      Documentation/hwmon/f71805f.rst
6654 F:      drivers/hwmon/f71805f.c
6655
6656 FADDR2LINE
6657 M:      Josh Poimboeuf <[email protected]>
6658 S:      Maintained
6659 F:      scripts/faddr2line
6660
6661 FAILOVER MODULE
6662 M:      Sridhar Samudrala <[email protected]>
6663 L:      [email protected]
6664 S:      Supported
6665 F:      Documentation/networking/failover.rst
6666 F:      include/net/failover.h
6667 F:      net/core/failover.c
6668
6669 FANOTIFY
6670 M:      Jan Kara <[email protected]>
6671 R:      Amir Goldstein <[email protected]>
6672 L:      [email protected]
6673 S:      Maintained
6674 F:      fs/notify/fanotify/
6675 F:      include/linux/fanotify.h
6676 F:      include/uapi/linux/fanotify.h
6677
6678 FARSYNC SYNCHRONOUS DRIVER
6679 M:      Kevin Curtis <[email protected]>
6680 S:      Supported
6681 W:      http://www.farsite.co.uk/
6682 F:      drivers/net/wan/farsync.*
6683
6684 FAULT INJECTION SUPPORT
6685 M:      Akinobu Mita <[email protected]>
6686 S:      Supported
6687 F:      Documentation/fault-injection/
6688 F:      lib/fault-inject.c
6689
6690 FBTFT Framebuffer drivers
6691 L:      [email protected]
6692 L:      [email protected]
6693 S:      Orphan
6694 F:      drivers/staging/fbtft/
6695
6696 FC0011 TUNER DRIVER
6697 M:      Michael Buesch <[email protected]>
6698 L:      [email protected]
6699 S:      Maintained
6700 F:      drivers/media/tuners/fc0011.c
6701 F:      drivers/media/tuners/fc0011.h
6702
6703 FC2580 MEDIA DRIVER
6704 M:      Antti Palosaari <[email protected]>
6705 L:      [email protected]
6706 S:      Maintained
6707 W:      https://linuxtv.org
6708 W:      http://palosaari.fi/linux/
6709 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6710 T:      git git://linuxtv.org/anttip/media_tree.git
6711 F:      drivers/media/tuners/fc2580*
6712
6713 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6714 M:      Hannes Reinecke <[email protected]>
6715 L:      [email protected]
6716 S:      Supported
6717 W:      www.Open-FCoE.org
6718 F:      drivers/scsi/fcoe/
6719 F:      drivers/scsi/libfc/
6720 F:      include/scsi/fc/
6721 F:      include/scsi/libfc.h
6722 F:      include/scsi/libfcoe.h
6723 F:      include/uapi/scsi/fc/
6724
6725 FILE LOCKING (flock() and fcntl()/lockf())
6726 M:      Jeff Layton <[email protected]>
6727 M:      "J. Bruce Fields" <[email protected]>
6728 L:      [email protected]
6729 S:      Maintained
6730 F:      fs/fcntl.c
6731 F:      fs/locks.c
6732 F:      include/linux/fcntl.h
6733 F:      include/uapi/linux/fcntl.h
6734
6735 FILESYSTEM DIRECT ACCESS (DAX)
6736 M:      Dan Williams <[email protected]>
6737 R:      Matthew Wilcox <[email protected]>
6738 R:      Jan Kara <[email protected]>
6739 L:      [email protected]
6740 L:      [email protected]
6741 S:      Supported
6742 F:      fs/dax.c
6743 F:      include/linux/dax.h
6744 F:      include/trace/events/fs_dax.h
6745
6746 FILESYSTEMS (VFS and infrastructure)
6747 M:      Alexander Viro <[email protected]>
6748 L:      [email protected]
6749 S:      Maintained
6750 F:      fs/*
6751 F:      include/linux/fs.h
6752 F:      include/linux/fs_types.h
6753 F:      include/uapi/linux/fs.h
6754 F:      include/uapi/linux/openat2.h
6755
6756 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6757 M:      Riku Voipio <[email protected]>
6758 L:      [email protected]
6759 S:      Maintained
6760 F:      drivers/hwmon/f75375s.c
6761 F:      include/linux/f75375s.h
6762
6763 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6764 M:      Clemens Ladisch <[email protected]>
6765 M:      Takashi Sakamoto <[email protected]>
6766 L:      [email protected] (moderated for non-subscribers)
6767 S:      Maintained
6768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6769 F:      include/uapi/sound/firewire.h
6770 F:      sound/firewire/
6771
6772 FIREWIRE MEDIA DRIVERS (firedtv)
6773 M:      Stefan Richter <[email protected]>
6774 L:      [email protected]
6775 L:      [email protected]
6776 S:      Maintained
6777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6778 F:      drivers/media/firewire/
6779
6780 FIREWIRE SBP-2 TARGET
6781 M:      Chris Boot <[email protected]>
6782 L:      [email protected]
6783 L:      [email protected]
6784 L:      [email protected]
6785 S:      Maintained
6786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6787 F:      drivers/target/sbp/
6788
6789 FIREWIRE SUBSYSTEM
6790 M:      Stefan Richter <[email protected]>
6791 L:      [email protected]
6792 S:      Maintained
6793 W:      http://ieee1394.wiki.kernel.org/
6794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6795 F:      drivers/firewire/
6796 F:      include/linux/firewire.h
6797 F:      include/uapi/linux/firewire*.h
6798 F:      tools/firewire/
6799
6800 FIRMWARE LOADER (request_firmware)
6801 M:      Luis Chamberlain <[email protected]>
6802 L:      [email protected]
6803 S:      Maintained
6804 F:      Documentation/firmware_class/
6805 F:      drivers/base/firmware_loader/
6806 F:      include/linux/firmware.h
6807
6808 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6809 M:      Joshua Morris <[email protected]>
6810 M:      Philip Kelleher <[email protected]>
6811 S:      Maintained
6812 F:      drivers/block/rsxx/
6813
6814 FLEXTIMER FTM-QUADDEC DRIVER
6815 M:      Patrick Havelange <[email protected]>
6816 L:      [email protected]
6817 S:      Maintained
6818 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6819 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6820 F:      drivers/counter/ftm-quaddec.c
6821
6822 FLOPPY DRIVER
6823 M:      Denis Efremov <[email protected]>
6824 L:      [email protected]
6825 S:      Odd Fixes
6826 F:      drivers/block/floppy.c
6827
6828 FLYSKY FSIA6B RC RECEIVER
6829 M:      Markus Koch <[email protected]>
6830 L:      [email protected]
6831 S:      Maintained
6832 F:      drivers/input/joystick/fsia6b.c
6833
6834 FORCEDETH GIGABIT ETHERNET DRIVER
6835 M:      Rain River <[email protected]>
6836 M:      Zhu Yanjun <[email protected]>
6837 L:      [email protected]
6838 S:      Maintained
6839 F:      drivers/net/ethernet/nvidia/*
6840
6841 FPGA DFL DRIVERS
6842 M:      Wu Hao <[email protected]>
6843 L:      [email protected]
6844 S:      Maintained
6845 F:      Documentation/fpga/dfl.rst
6846 F:      drivers/fpga/dfl*
6847 F:      include/uapi/linux/fpga-dfl.h
6848
6849 FPGA MANAGER FRAMEWORK
6850 M:      Moritz Fischer <[email protected]>
6851 L:      [email protected]
6852 S:      Maintained
6853 W:      http://www.rocketboards.org
6854 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6856 F:      Documentation/devicetree/bindings/fpga/
6857 F:      Documentation/driver-api/fpga/
6858 F:      Documentation/fpga/
6859 F:      drivers/fpga/
6860 F:      include/linux/fpga/
6861
6862 FPU EMULATOR
6863 M:      Bill Metzenthen <[email protected]>
6864 S:      Maintained
6865 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6866 F:      arch/x86/math-emu/
6867
6868 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6869 L:      [email protected]
6870 S:      Orphan
6871 F:      drivers/net/wan/dlci.c
6872 F:      drivers/net/wan/sdla.c
6873
6874 FRAMEBUFFER LAYER
6875 M:      Bartlomiej Zolnierkiewicz <[email protected]>
6876 L:      [email protected]
6877 L:      [email protected]
6878 S:      Maintained
6879 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6880 T:      git git://anongit.freedesktop.org/drm/drm-misc
6881 F:      Documentation/fb/
6882 F:      drivers/video/
6883 F:      include/linux/fb.h
6884 F:      include/uapi/linux/fb.h
6885 F:      include/uapi/video/
6886 F:      include/video/
6887
6888 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6889 M:      Horia Geantă <[email protected]>
6890 M:      Aymen Sghaier <[email protected]>
6891 L:      [email protected]
6892 S:      Maintained
6893 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6894 F:      drivers/crypto/caam/
6895
6896 FREESCALE COLDFIRE M5441X MMC DRIVER
6897 M:      Angelo Dureghello <[email protected]>
6898 L:      [email protected]
6899 S:      Maintained
6900 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6901 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6902
6903 FREESCALE DIU FRAMEBUFFER DRIVER
6904 M:      Timur Tabi <[email protected]>
6905 L:      [email protected]
6906 S:      Maintained
6907 F:      drivers/video/fbdev/fsl-diu-fb.*
6908
6909 FREESCALE DMA DRIVER
6910 M:      Li Yang <[email protected]>
6911 M:      Zhang Wei <[email protected]>
6912 L:      [email protected]
6913 S:      Maintained
6914 F:      drivers/dma/fsldma.*
6915
6916 FREESCALE DSPI DRIVER
6917 M:      Vladimir Oltean <[email protected]>
6918 L:      [email protected]
6919 S:      Maintained
6920 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
6921 F:      drivers/spi/spi-fsl-dspi.c
6922 F:      include/linux/spi/spi-fsl-dspi.h
6923
6924 FREESCALE ENETC ETHERNET DRIVERS
6925 M:      Claudiu Manoil <[email protected]>
6926 L:      [email protected]
6927 S:      Maintained
6928 F:      drivers/net/ethernet/freescale/enetc/
6929
6930 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6931 M:      Claudiu Manoil <[email protected]>
6932 L:      [email protected]
6933 S:      Maintained
6934 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6935 F:      drivers/net/ethernet/freescale/gianfar*
6936
6937 FREESCALE GPMI NAND DRIVER
6938 M:      Han Xu <[email protected]>
6939 L:      [email protected]
6940 S:      Maintained
6941 F:      drivers/mtd/nand/raw/gpmi-nand/*
6942
6943 FREESCALE I2C CPM DRIVER
6944 M:      Jochen Friedrich <[email protected]>
6945 L:      [email protected]
6946 L:      [email protected]
6947 S:      Maintained
6948 F:      drivers/i2c/busses/i2c-cpm.c
6949
6950 FREESCALE IMX / MXC FEC DRIVER
6951 M:      Fugang Duan <[email protected]>
6952 L:      [email protected]
6953 S:      Maintained
6954 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6955 F:      drivers/net/ethernet/freescale/fec.h
6956 F:      drivers/net/ethernet/freescale/fec_main.c
6957 F:      drivers/net/ethernet/freescale/fec_ptp.c
6958
6959 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6960 M:      Sascha Hauer <[email protected]>
6961 R:      Pengutronix Kernel Team <[email protected]>
6962 L:      [email protected]
6963 L:      [email protected] (moderated for non-subscribers)
6964 S:      Maintained
6965 F:      drivers/video/fbdev/imxfb.c
6966 F:      include/linux/platform_data/video-imxfb.h
6967
6968 FREESCALE IMX DDR PMU DRIVER
6969 M:      Frank Li <[email protected]>
6970 L:      [email protected]
6971 S:      Maintained
6972 F:      Documentation/admin-guide/perf/imx-ddr.rst
6973 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6974 F:      drivers/perf/fsl_imx8_ddr_perf.c
6975
6976 FREESCALE IMX I2C DRIVER
6977 M:      Oleksij Rempel <[email protected]>
6978 R:      Pengutronix Kernel Team <[email protected]>
6979 L:      [email protected]
6980 S:      Maintained
6981 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6982 F:      drivers/i2c/busses/i2c-imx.c
6983
6984 FREESCALE IMX LPI2C DRIVER
6985 M:      Dong Aisheng <[email protected]>
6986 L:      [email protected]
6987 L:      [email protected]
6988 S:      Maintained
6989 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6990 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6991
6992 FREESCALE QORIQ DPAA ETHERNET DRIVER
6993 M:      Madalin Bucur <[email protected]>
6994 L:      [email protected]
6995 S:      Maintained
6996 F:      drivers/net/ethernet/freescale/dpaa
6997
6998 FREESCALE QORIQ DPAA FMAN DRIVER
6999 M:      Madalin Bucur <[email protected]>
7000 L:      [email protected]
7001 S:      Maintained
7002 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7003 F:      drivers/net/ethernet/freescale/fman
7004
7005 FREESCALE QORIQ PTP CLOCK DRIVER
7006 M:      Yangbo Lu <[email protected]>
7007 L:      [email protected]
7008 S:      Maintained
7009 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7010 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7011 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7012 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7013 F:      drivers/ptp/ptp_qoriq.c
7014 F:      drivers/ptp/ptp_qoriq_debugfs.c
7015 F:      include/linux/fsl/ptp_qoriq.h
7016
7017 FREESCALE QUAD SPI DRIVER
7018 M:      Han Xu <[email protected]>
7019 L:      [email protected]
7020 S:      Maintained
7021 F:      drivers/spi/spi-fsl-qspi.c
7022
7023 FREESCALE QUICC ENGINE LIBRARY
7024 M:      Qiang Zhao <[email protected]>
7025 L:      [email protected]
7026 S:      Maintained
7027 F:      drivers/soc/fsl/qe/
7028 F:      include/soc/fsl/*qe*.h
7029 F:      include/soc/fsl/*ucc*.h
7030
7031 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7032 M:      Li Yang <[email protected]>
7033 L:      [email protected]
7034 L:      [email protected]
7035 S:      Maintained
7036 F:      drivers/net/ethernet/freescale/ucc_geth*
7037
7038 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7039 M:      Zhao Qiang <[email protected]>
7040 L:      [email protected]
7041 L:      [email protected]
7042 S:      Maintained
7043 F:      drivers/net/wan/fsl_ucc_hdlc*
7044
7045 FREESCALE QUICC ENGINE UCC UART DRIVER
7046 M:      Timur Tabi <[email protected]>
7047 L:      [email protected]
7048 S:      Maintained
7049 F:      drivers/tty/serial/ucc_uart.c
7050
7051 FREESCALE SOC DRIVERS
7052 M:      Li Yang <[email protected]>
7053 L:      [email protected]
7054 L:      [email protected]
7055 S:      Maintained
7056 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
7057 F:      Documentation/devicetree/bindings/soc/fsl/
7058 F:      drivers/soc/fsl/
7059 F:      include/linux/fsl/
7060
7061 FREESCALE SOC FS_ENET DRIVER
7062 M:      Pantelis Antoniou <[email protected]>
7063 L:      [email protected]
7064 L:      [email protected]
7065 S:      Maintained
7066 F:      drivers/net/ethernet/freescale/fs_enet/
7067 F:      include/linux/fs_enet_pd.h
7068
7069 FREESCALE SOC SOUND DRIVERS
7070 M:      Timur Tabi <[email protected]>
7071 M:      Nicolin Chen <[email protected]>
7072 M:      Xiubo Li <[email protected]>
7073 R:      Fabio Estevam <[email protected]>
7074 R:      Shengjiu Wang <[email protected]>
7075 L:      [email protected] (moderated for non-subscribers)
7076 L:      [email protected]
7077 S:      Maintained
7078 F:      sound/soc/fsl/fsl*
7079 F:      sound/soc/fsl/imx*
7080 F:      sound/soc/fsl/mpc8610_hpcd.c
7081
7082 FREESCALE USB PERIPHERAL DRIVERS
7083 M:      Li Yang <[email protected]>
7084 L:      [email protected]
7085 L:      [email protected]
7086 S:      Maintained
7087 F:      drivers/usb/gadget/udc/fsl*
7088
7089 FREESCALE USB PHY DRIVER
7090 M:      Ran Wang <[email protected]>
7091 L:      [email protected]
7092 L:      [email protected]
7093 S:      Maintained
7094 F:      drivers/usb/phy/phy-fsl-usb*
7095
7096 FREEVXFS FILESYSTEM
7097 M:      Christoph Hellwig <[email protected]>
7098 S:      Maintained
7099 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7100 F:      fs/freevxfs/
7101
7102 FREEZER
7103 M:      "Rafael J. Wysocki" <[email protected]>
7104 M:      Pavel Machek <[email protected]>
7105 L:      [email protected]
7106 S:      Supported
7107 F:      Documentation/power/freezing-of-tasks.rst
7108 F:      include/linux/freezer.h
7109 F:      kernel/freezer.c
7110
7111 FRONTSWAP API
7112 M:      Konrad Rzeszutek Wilk <[email protected]>
7113 L:      [email protected]
7114 S:      Maintained
7115 F:      include/linux/frontswap.h
7116 F:      mm/frontswap.c
7117
7118 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7119 M:      David Howells <[email protected]>
7120 L:      [email protected] (moderated for non-subscribers)
7121 S:      Supported
7122 F:      Documentation/filesystems/caching/
7123 F:      fs/fscache/
7124 F:      include/linux/fscache*.h
7125
7126 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7127 M:      Theodore Y. Ts'o <[email protected]>
7128 M:      Jaegeuk Kim <[email protected]>
7129 M:      Eric Biggers <[email protected]>
7130 L:      [email protected]
7131 S:      Supported
7132 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7133 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7134 F:      Documentation/filesystems/fscrypt.rst
7135 F:      fs/crypto/
7136 F:      include/linux/fscrypt*.h
7137 F:      include/uapi/linux/fscrypt.h
7138
7139 FSI SUBSYSTEM
7140 M:      Jeremy Kerr <[email protected]>
7141 M:      Joel Stanley <[email protected]>
7142 R:      Alistar Popple <[email protected]>
7143 R:      Eddie James <[email protected]>
7144 L:      [email protected]
7145 S:      Supported
7146 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7148 F:      drivers/fsi/
7149 F:      include/linux/fsi*.h
7150 F:      include/trace/events/fsi*.h
7151
7152 FSI-ATTACHED I2C DRIVER
7153 M:      Eddie James <[email protected]>
7154 L:      [email protected]
7155 L:      [email protected] (moderated for non-subscribers)
7156 S:      Maintained
7157 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7158 F:      drivers/i2c/busses/i2c-fsi.c
7159
7160 FSI-ATTACHED SPI DRIVER
7161 M:      Eddie James <[email protected]>
7162 L:      [email protected]
7163 S:      Maintained
7164 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7165 F:      drivers/spi/spi-fsi.c
7166
7167 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7168 M:      Jan Kara <[email protected]>
7169 R:      Amir Goldstein <[email protected]>
7170 L:      [email protected]
7171 S:      Maintained
7172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7173 F:      fs/notify/
7174 F:      include/linux/fsnotify*.h
7175
7176 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7177 M:      Eric Biggers <[email protected]>
7178 M:      Theodore Y. Ts'o <[email protected]>
7179 L:      [email protected]
7180 S:      Supported
7181 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7182 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7183 F:      Documentation/filesystems/fsverity.rst
7184 F:      fs/verity/
7185 F:      include/linux/fsverity.h
7186 F:      include/uapi/linux/fsverity.h
7187
7188 FUJITSU LAPTOP EXTRAS
7189 M:      Jonathan Woithe <[email protected]>
7190 L:      [email protected]
7191 S:      Maintained
7192 F:      drivers/platform/x86/fujitsu-laptop.c
7193
7194 FUJITSU M-5MO LS CAMERA ISP DRIVER
7195 M:      Kyungmin Park <[email protected]>
7196 M:      Heungjun Kim <[email protected]>
7197 L:      [email protected]
7198 S:      Maintained
7199 F:      drivers/media/i2c/m5mols/
7200 F:      include/media/i2c/m5mols.h
7201
7202 FUJITSU TABLET EXTRAS
7203 M:      Robert Gerlach <[email protected]>
7204 L:      [email protected]
7205 S:      Maintained
7206 F:      drivers/platform/x86/fujitsu-tablet.c
7207
7208 FUSE: FILESYSTEM IN USERSPACE
7209 M:      Miklos Szeredi <[email protected]>
7210 L:      [email protected]
7211 S:      Maintained
7212 W:      http://fuse.sourceforge.net/
7213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7214 F:      Documentation/filesystems/fuse.rst
7215 F:      fs/fuse/
7216 F:      include/uapi/linux/fuse.h
7217
7218 FUTEX SUBSYSTEM
7219 M:      Thomas Gleixner <[email protected]>
7220 M:      Ingo Molnar <[email protected]>
7221 R:      Peter Zijlstra <[email protected]>
7222 R:      Darren Hart <[email protected]>
7223 L:      [email protected]
7224 S:      Maintained
7225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7226 F:      Documentation/locking/*futex*
7227 F:      include/asm-generic/futex.h
7228 F:      include/linux/futex.h
7229 F:      include/uapi/linux/futex.h
7230 F:      kernel/futex.c
7231 F:      tools/perf/bench/futex*
7232 F:      tools/testing/selftests/futex/
7233
7234 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7235 M:      Tim Harvey <[email protected]>
7236 M:      Robert Jones <[email protected]>
7237 S:      Maintained
7238 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7239 F:      drivers/mfd/gateworks-gsc.c
7240 F:      include/linux/mfd/gsc.h
7241 F:      Documentation/hwmon/gsc-hwmon.rst
7242 F:      drivers/hwmon/gsc-hwmon.c
7243 F:      include/linux/platform_data/gsc_hwmon.h
7244
7245 GASKET DRIVER FRAMEWORK
7246 M:      Rob Springer <[email protected]>
7247 M:      Todd Poynor <[email protected]>
7248 M:      Ben Chan <[email protected]>
7249 M:      Richard Yeh <[email protected]>
7250 S:      Maintained
7251 F:      drivers/staging/gasket/
7252
7253 GCC PLUGINS
7254 M:      Kees Cook <[email protected]>
7255 R:      Emese Revfy <[email protected]>
7256 L:      [email protected]
7257 S:      Maintained
7258 F:      Documentation/kbuild/gcc-plugins.rst
7259 F:      scripts/Makefile.gcc-plugins
7260 F:      scripts/gcc-plugin.sh
7261 F:      scripts/gcc-plugins/
7262
7263 GCOV BASED KERNEL PROFILING
7264 M:      Peter Oberparleiter <[email protected]>
7265 S:      Maintained
7266 F:      Documentation/dev-tools/gcov.rst
7267 F:      kernel/gcov/
7268
7269 GDB KERNEL DEBUGGING HELPER SCRIPTS
7270 M:      Jan Kiszka <[email protected]>
7271 M:      Kieran Bingham <[email protected]>
7272 S:      Supported
7273 F:      scripts/gdb/
7274
7275 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7276 M:      Achim Leubner <[email protected]>
7277 L:      [email protected]
7278 S:      Supported
7279 W:      http://www.icp-vortex.com/
7280 F:      drivers/scsi/gdt*
7281
7282 GEMTEK FM RADIO RECEIVER DRIVER
7283 M:      Hans Verkuil <[email protected]>
7284 L:      [email protected]
7285 S:      Maintained
7286 W:      https://linuxtv.org
7287 T:      git git://linuxtv.org/media_tree.git
7288 F:      drivers/media/radio/radio-gemtek*
7289
7290 GENERIC ARCHITECTURE TOPOLOGY
7291 M:      Sudeep Holla <[email protected]>
7292 L:      [email protected]
7293 S:      Maintained
7294 F:      drivers/base/arch_topology.c
7295 F:      include/linux/arch_topology.h
7296
7297 GENERIC GPIO I2C DRIVER
7298 M:      Wolfram Sang <[email protected]>
7299 S:      Supported
7300 F:      drivers/i2c/busses/i2c-gpio.c
7301 F:      include/linux/platform_data/i2c-gpio.h
7302
7303 GENERIC GPIO I2C MULTIPLEXER DRIVER
7304 M:      Peter Korsgaard <[email protected]>
7305 L:      [email protected]
7306 S:      Supported
7307 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7308 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7309 F:      include/linux/platform_data/i2c-mux-gpio.h
7310
7311 GENERIC HDLC (WAN) DRIVERS
7312 M:      Krzysztof Halasa <[email protected]>
7313 S:      Maintained
7314 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7315 F:      drivers/net/wan/c101.c
7316 F:      drivers/net/wan/hd6457*
7317 F:      drivers/net/wan/hdlc*
7318 F:      drivers/net/wan/n2.c
7319 F:      drivers/net/wan/pc300too.c
7320 F:      drivers/net/wan/pci200syn.c
7321 F:      drivers/net/wan/wanxl*
7322
7323 GENERIC INCLUDE/ASM HEADER FILES
7324 M:      Arnd Bergmann <[email protected]>
7325 L:      [email protected]
7326 S:      Maintained
7327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7328 F:      include/asm-generic/
7329 F:      include/uapi/asm-generic/
7330
7331 GENERIC PHY FRAMEWORK
7332 M:      Kishon Vijay Abraham I <[email protected]>
7333 M:      Vinod Koul <[email protected]>
7334 L:      [email protected]
7335 S:      Supported
7336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7337 F:      Documentation/devicetree/bindings/phy/
7338 F:      drivers/phy/
7339 F:      include/linux/phy/
7340
7341 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7342 M:      Wolfram Sang <[email protected]>
7343 S:      Supported
7344 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7345
7346 GENERIC PM DOMAINS
7347 M:      "Rafael J. Wysocki" <[email protected]>
7348 M:      Kevin Hilman <[email protected]>
7349 M:      Ulf Hansson <[email protected]>
7350 L:      [email protected]
7351 S:      Supported
7352 F:      Documentation/devicetree/bindings/power/power?domain*
7353 F:      drivers/base/power/domain*.c
7354 F:      include/linux/pm_domain.h
7355
7356 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7357 M:      Eugen Hristev <[email protected]>
7358 L:      [email protected]
7359 S:      Maintained
7360 F:      drivers/input/touchscreen/resistive-adc-touch.c
7361
7362 GENERIC UIO DRIVER FOR PCI DEVICES
7363 M:      "Michael S. Tsirkin" <[email protected]>
7364 L:      [email protected]
7365 S:      Supported
7366 F:      drivers/uio/uio_pci_generic.c
7367
7368 GENERIC VDSO LIBRARY
7369 M:      Andy Lutomirski <[email protected]>
7370 M:      Thomas Gleixner <[email protected]>
7371 M:      Vincenzo Frascino <[email protected]>
7372 L:      [email protected]
7373 S:      Maintained
7374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7375 F:      include/asm-generic/vdso/vsyscall.h
7376 F:      include/vdso/
7377 F:      kernel/time/vsyscall.c
7378 F:      lib/vdso/
7379
7380 GENWQE (IBM Generic Workqueue Card)
7381 M:      Frank Haverkamp <[email protected]>
7382 S:      Supported
7383 F:      drivers/misc/genwqe/
7384
7385 GET_MAINTAINER SCRIPT
7386 M:      Joe Perches <[email protected]>
7387 S:      Maintained
7388 F:      scripts/get_maintainer.pl
7389
7390 GFS2 FILE SYSTEM
7391 M:      Bob Peterson <[email protected]>
7392 M:      Andreas Gruenbacher <[email protected]>
7393 L:      [email protected]
7394 S:      Supported
7395 W:      http://sources.redhat.com/cluster/
7396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7397 F:      Documentation/filesystems/gfs2*
7398 F:      fs/gfs2/
7399 F:      include/uapi/linux/gfs2_ondisk.h
7400
7401 GNSS SUBSYSTEM
7402 M:      Johan Hovold <[email protected]>
7403 S:      Maintained
7404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7405 F:      Documentation/ABI/testing/sysfs-class-gnss
7406 F:      Documentation/devicetree/bindings/gnss/
7407 F:      drivers/gnss/
7408 F:      include/linux/gnss.h
7409
7410 GO7007 MPEG CODEC
7411 M:      Hans Verkuil <[email protected]>
7412 L:      [email protected]
7413 S:      Maintained
7414 F:      drivers/media/usb/go7007/
7415
7416 GOODIX TOUCHSCREEN
7417 M:      Bastien Nocera <[email protected]>
7418 L:      [email protected]
7419 S:      Maintained
7420 F:      drivers/input/touchscreen/goodix.c
7421
7422 GOOGLE ETHERNET DRIVERS
7423 M:      Catherine Sullivan <[email protected]>
7424 R:      Sagi Shahar <[email protected]>
7425 R:      Jon Olson <[email protected]>
7426 L:      [email protected]
7427 S:      Supported
7428 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7429 F:      drivers/net/ethernet/google
7430
7431 GPD POCKET FAN DRIVER
7432 M:      Hans de Goede <[email protected]>
7433 L:      [email protected]
7434 S:      Maintained
7435 F:      drivers/platform/x86/gpd-pocket-fan.c
7436
7437 GPIO ACPI SUPPORT
7438 M:      Mika Westerberg <[email protected]>
7439 M:      Andy Shevchenko <[email protected]>
7440 L:      [email protected]
7441 L:      [email protected]
7442 S:      Maintained
7443 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7444 F:      drivers/gpio/gpiolib-acpi.c
7445 F:      drivers/gpio/gpiolib-acpi.h
7446
7447 GPIO AGGREGATOR
7448 M:      Geert Uytterhoeven <[email protected]>
7449 L:      [email protected]
7450 S:      Supported
7451 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7452 F:      drivers/gpio/gpio-aggregator.c
7453
7454 GPIO IR Transmitter
7455 M:      Sean Young <[email protected]>
7456 L:      [email protected]
7457 S:      Maintained
7458 F:      drivers/media/rc/gpio-ir-tx.c
7459
7460 GPIO MOCKUP DRIVER
7461 M:      Bamvor Jian Zhang <[email protected]>
7462 L:      [email protected]
7463 S:      Maintained
7464 F:      drivers/gpio/gpio-mockup.c
7465 F:      tools/testing/selftests/gpio/
7466
7467 GPIO REGMAP
7468 R:      Michael Walle <[email protected]>
7469 S:      Maintained
7470 F:      drivers/gpio/gpio-regmap.c
7471 F:      include/linux/gpio/regmap.h
7472
7473 GPIO SUBSYSTEM
7474 M:      Linus Walleij <[email protected]>
7475 M:      Bartosz Golaszewski <[email protected]>
7476 L:      [email protected]
7477 S:      Maintained
7478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7479 F:      Documentation/ABI/obsolete/sysfs-gpio
7480 F:      Documentation/ABI/testing/gpio-cdev
7481 F:      Documentation/admin-guide/gpio/
7482 F:      Documentation/devicetree/bindings/gpio/
7483 F:      Documentation/driver-api/gpio/
7484 F:      drivers/gpio/
7485 F:      include/asm-generic/gpio.h
7486 F:      include/linux/gpio.h
7487 F:      include/linux/gpio/
7488 F:      include/linux/of_gpio.h
7489 F:      include/uapi/linux/gpio.h
7490 F:      tools/gpio/
7491
7492 GRE DEMULTIPLEXER DRIVER
7493 M:      Dmitry Kozlov <[email protected]>
7494 L:      [email protected]
7495 S:      Maintained
7496 F:      include/net/gre.h
7497 F:      net/ipv4/gre_demux.c
7498 F:      net/ipv4/gre_offload.c
7499
7500 GRETH 10/100/1G Ethernet MAC device driver
7501 M:      Andreas Larsson <[email protected]>
7502 L:      [email protected]
7503 S:      Maintained
7504 F:      drivers/net/ethernet/aeroflex/
7505
7506 GREYBUS AUDIO PROTOCOLS DRIVERS
7507 M:      Vaibhav Agarwal <[email protected]>
7508 M:      Mark Greer <[email protected]>
7509 S:      Maintained
7510 F:      drivers/staging/greybus/audio_apbridgea.c
7511 F:      drivers/staging/greybus/audio_apbridgea.h
7512 F:      drivers/staging/greybus/audio_codec.c
7513 F:      drivers/staging/greybus/audio_codec.h
7514 F:      drivers/staging/greybus/audio_gb.c
7515 F:      drivers/staging/greybus/audio_manager.c
7516 F:      drivers/staging/greybus/audio_manager.h
7517 F:      drivers/staging/greybus/audio_manager_module.c
7518 F:      drivers/staging/greybus/audio_manager_private.h
7519 F:      drivers/staging/greybus/audio_manager_sysfs.c
7520 F:      drivers/staging/greybus/audio_module.c
7521 F:      drivers/staging/greybus/audio_topology.c
7522
7523 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7524 M:      Viresh Kumar <[email protected]>
7525 S:      Maintained
7526 F:      drivers/staging/greybus/authentication.c
7527 F:      drivers/staging/greybus/bootrom.c
7528 F:      drivers/staging/greybus/firmware.h
7529 F:      drivers/staging/greybus/fw-core.c
7530 F:      drivers/staging/greybus/fw-download.c
7531 F:      drivers/staging/greybus/fw-management.c
7532 F:      drivers/staging/greybus/greybus_authentication.h
7533 F:      drivers/staging/greybus/greybus_firmware.h
7534 F:      drivers/staging/greybus/hid.c
7535 F:      drivers/staging/greybus/i2c.c
7536 F:      drivers/staging/greybus/spi.c
7537 F:      drivers/staging/greybus/spilib.c
7538 F:      drivers/staging/greybus/spilib.h
7539
7540 GREYBUS LOOPBACK DRIVER
7541 M:      Bryan O'Donoghue <[email protected]>
7542 S:      Maintained
7543 F:      drivers/staging/greybus/loopback.c
7544
7545 GREYBUS PLATFORM DRIVERS
7546 M:      Vaibhav Hiremath <[email protected]>
7547 S:      Maintained
7548 F:      drivers/staging/greybus/arche-apb-ctrl.c
7549 F:      drivers/staging/greybus/arche-platform.c
7550 F:      drivers/staging/greybus/arche_platform.h
7551
7552 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7553 M:      Rui Miguel Silva <[email protected]>
7554 S:      Maintained
7555 F:      drivers/staging/greybus/gpio.c
7556 F:      drivers/staging/greybus/light.c
7557 F:      drivers/staging/greybus/power_supply.c
7558 F:      drivers/staging/greybus/sdio.c
7559 F:      drivers/staging/greybus/spi.c
7560 F:      drivers/staging/greybus/spilib.c
7561
7562 GREYBUS SUBSYSTEM
7563 M:      Johan Hovold <[email protected]>
7564 M:      Alex Elder <[email protected]>
7565 M:      Greg Kroah-Hartman <[email protected]>
7566 L:      [email protected] (moderated for non-subscribers)
7567 S:      Maintained
7568 F:      drivers/greybus/
7569 F:      drivers/staging/greybus/
7570 F:      include/linux/greybus.h
7571 F:      include/linux/greybus/
7572
7573 GREYBUS UART PROTOCOLS DRIVERS
7574 M:      David Lin <[email protected]>
7575 S:      Maintained
7576 F:      drivers/staging/greybus/log.c
7577 F:      drivers/staging/greybus/uart.c
7578
7579 GS1662 VIDEO SERIALIZER
7580 M:      Charles-Antoine Couret <[email protected]>
7581 L:      [email protected]
7582 S:      Maintained
7583 T:      git git://linuxtv.org/media_tree.git
7584 F:      drivers/media/spi/gs1662.c
7585
7586 GSPCA FINEPIX SUBDRIVER
7587 M:      Frank Zago <[email protected]>
7588 L:      [email protected]
7589 S:      Maintained
7590 T:      git git://linuxtv.org/media_tree.git
7591 F:      drivers/media/usb/gspca/finepix.c
7592
7593 GSPCA GL860 SUBDRIVER
7594 M:      Olivier Lorin <[email protected]>
7595 L:      [email protected]
7596 S:      Maintained
7597 T:      git git://linuxtv.org/media_tree.git
7598 F:      drivers/media/usb/gspca/gl860/
7599
7600 GSPCA M5602 SUBDRIVER
7601 M:      Erik Andren <[email protected]>
7602 L:      [email protected]
7603 S:      Maintained
7604 T:      git git://linuxtv.org/media_tree.git
7605 F:      drivers/media/usb/gspca/m5602/
7606
7607 GSPCA PAC207 SONIXB SUBDRIVER
7608 M:      Hans Verkuil <[email protected]>
7609 L:      [email protected]
7610 S:      Odd Fixes
7611 T:      git git://linuxtv.org/media_tree.git
7612 F:      drivers/media/usb/gspca/pac207.c
7613
7614 GSPCA SN9C20X SUBDRIVER
7615 M:      Brian Johnson <[email protected]>
7616 L:      [email protected]
7617 S:      Maintained
7618 T:      git git://linuxtv.org/media_tree.git
7619 F:      drivers/media/usb/gspca/sn9c20x.c
7620
7621 GSPCA T613 SUBDRIVER
7622 M:      Leandro Costantino <[email protected]>
7623 L:      [email protected]
7624 S:      Maintained
7625 T:      git git://linuxtv.org/media_tree.git
7626 F:      drivers/media/usb/gspca/t613.c
7627
7628 GSPCA USB WEBCAM DRIVER
7629 M:      Hans Verkuil <[email protected]>
7630 L:      [email protected]
7631 S:      Odd Fixes
7632 T:      git git://linuxtv.org/media_tree.git
7633 F:      drivers/media/usb/gspca/
7634
7635 GTP (GPRS Tunneling Protocol)
7636 M:      Pablo Neira Ayuso <[email protected]>
7637 M:      Harald Welte <[email protected]>
7638 L:      [email protected]
7639 S:      Maintained
7640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7641 F:      drivers/net/gtp.c
7642
7643 GUID PARTITION TABLE (GPT)
7644 M:      Davidlohr Bueso <[email protected]>
7645 L:      [email protected]
7646 S:      Maintained
7647 F:      block/partitions/efi.*
7648
7649 H8/300 ARCHITECTURE
7650 M:      Yoshinori Sato <[email protected]>
7651 L:      [email protected] (moderated for non-subscribers)
7652 S:      Maintained
7653 W:      http://uclinux-h8.sourceforge.jp
7654 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7655 F:      arch/h8300/
7656 F:      drivers/clk/h8300/
7657 F:      drivers/clocksource/h8300_*.c
7658 F:      drivers/irqchip/irq-renesas-h8*.c
7659
7660 HABANALABS PCI DRIVER
7661 M:      Oded Gabbay <[email protected]>
7662 S:      Supported
7663 T:      git https://github.com/HabanaAI/linux.git
7664 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7665 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7666 F:      drivers/misc/habanalabs/
7667 F:      include/uapi/misc/habanalabs.h
7668
7669 HACKRF MEDIA DRIVER
7670 M:      Antti Palosaari <[email protected]>
7671 L:      [email protected]
7672 S:      Maintained
7673 W:      https://linuxtv.org
7674 W:      http://palosaari.fi/linux/
7675 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7676 T:      git git://linuxtv.org/anttip/media_tree.git
7677 F:      drivers/media/usb/hackrf/
7678
7679 HANTRO VPU CODEC DRIVER
7680 M:      Ezequiel Garcia <[email protected]>
7681 M:      Philipp Zabel <[email protected]>
7682 L:      [email protected]
7683 L:      [email protected]
7684 S:      Maintained
7685 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7686 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7687 F:      drivers/staging/media/hantro/
7688
7689 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7690 M:      Frank Seidel <[email protected]>
7691 L:      [email protected]
7692 S:      Maintained
7693 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7694 F:      drivers/platform/x86/hdaps.c
7695
7696 HARDWARE MONITORING
7697 M:      Jean Delvare <[email protected]>
7698 M:      Guenter Roeck <[email protected]>
7699 L:      [email protected]
7700 S:      Maintained
7701 W:      http://hwmon.wiki.kernel.org/
7702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7703 F:      Documentation/devicetree/bindings/hwmon/
7704 F:      Documentation/hwmon/
7705 F:      drivers/hwmon/
7706 F:      include/linux/hwmon*.h
7707 F:      include/trace/events/hwmon*.h
7708
7709 HARDWARE RANDOM NUMBER GENERATOR CORE
7710 M:      Matt Mackall <[email protected]>
7711 M:      Herbert Xu <[email protected]>
7712 L:      [email protected]
7713 S:      Odd fixes
7714 F:      Documentation/admin-guide/hw_random.rst
7715 F:      Documentation/devicetree/bindings/rng/
7716 F:      drivers/char/hw_random/
7717 F:      include/linux/hw_random.h
7718
7719 HARDWARE SPINLOCK CORE
7720 M:      Ohad Ben-Cohen <[email protected]>
7721 M:      Bjorn Andersson <[email protected]>
7722 R:      Baolin Wang <[email protected]>
7723 L:      [email protected]
7724 S:      Maintained
7725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7726 F:      Documentation/devicetree/bindings/hwlock/
7727 F:      Documentation/locking/hwspinlock.rst
7728 F:      drivers/hwspinlock/
7729 F:      include/linux/hwspinlock.h
7730
7731 HARDWARE TRACING FACILITIES
7732 M:      Alexander Shishkin <[email protected]>
7733 S:      Maintained
7734 F:      drivers/hwtracing/
7735
7736 HARMONY SOUND DRIVER
7737 L:      [email protected]
7738 S:      Maintained
7739 F:      sound/parisc/harmony.*
7740
7741 HDPVR USB VIDEO ENCODER DRIVER
7742 M:      Hans Verkuil <[email protected]>
7743 L:      [email protected]
7744 S:      Odd Fixes
7745 W:      https://linuxtv.org
7746 T:      git git://linuxtv.org/media_tree.git
7747 F:      drivers/media/usb/hdpvr/
7748
7749 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7750 M:      Jerry Hoemann <[email protected]>
7751 S:      Supported
7752 F:      Documentation/watchdog/hpwdt.rst
7753 F:      drivers/watchdog/hpwdt.c
7754
7755 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7756 M:      Don Brace <[email protected]>
7757 L:      [email protected]
7758 L:      [email protected]
7759 S:      Supported
7760 F:      Documentation/scsi/hpsa.rst
7761 F:      drivers/scsi/hpsa*.[ch]
7762 F:      include/linux/cciss*.h
7763 F:      include/uapi/linux/cciss*.h
7764
7765 HFI1 DRIVER
7766 M:      Mike Marciniszyn <[email protected]>
7767 M:      Dennis Dalessandro <[email protected]>
7768 L:      [email protected]
7769 S:      Supported
7770 F:      drivers/infiniband/hw/hfi1
7771
7772 HFS FILESYSTEM
7773 L:      [email protected]
7774 S:      Orphan
7775 F:      Documentation/filesystems/hfs.rst
7776 F:      fs/hfs/
7777
7778 HFSPLUS FILESYSTEM
7779 L:      [email protected]
7780 S:      Orphan
7781 F:      Documentation/filesystems/hfsplus.rst
7782 F:      fs/hfsplus/
7783
7784 HGA FRAMEBUFFER DRIVER
7785 M:      Ferenc Bakonyi <[email protected]>
7786 L:      [email protected]
7787 S:      Maintained
7788 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7789 F:      drivers/video/fbdev/hgafb.c
7790
7791 HIBERNATION (aka Software Suspend, aka swsusp)
7792 M:      "Rafael J. Wysocki" <[email protected]>
7793 M:      Pavel Machek <[email protected]>
7794 L:      [email protected]
7795 S:      Supported
7796 B:      https://bugzilla.kernel.org
7797 F:      arch/*/include/asm/suspend*.h
7798 F:      arch/x86/power/
7799 F:      drivers/base/power/
7800 F:      include/linux/freezer.h
7801 F:      include/linux/pm.h
7802 F:      include/linux/suspend.h
7803 F:      kernel/power/
7804
7805 HID CORE LAYER
7806 M:      Jiri Kosina <[email protected]>
7807 M:      Benjamin Tissoires <[email protected]>
7808 L:      [email protected]
7809 S:      Maintained
7810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7811 F:      drivers/hid/
7812 F:      include/linux/hid*
7813 F:      include/uapi/linux/hid*
7814
7815 HID SENSOR HUB DRIVERS
7816 M:      Jiri Kosina <[email protected]>
7817 M:      Jonathan Cameron <[email protected]>
7818 M:      Srinivas Pandruvada <[email protected]>
7819 L:      [email protected]
7820 L:      [email protected]
7821 S:      Maintained
7822 F:      Documentation/hid/hid-sensor*
7823 F:      drivers/hid/hid-sensor-*
7824 F:      drivers/iio/*/hid-*
7825 F:      include/linux/hid-sensor-*
7826
7827 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7828 M:      Thomas Gleixner <[email protected]>
7829 L:      [email protected]
7830 S:      Maintained
7831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7832 F:      Documentation/timers/
7833 F:      include/linux/clockchips.h
7834 F:      include/linux/hrtimer.h
7835 F:      kernel/time/clockevents.c
7836 F:      kernel/time/hrtimer.c
7837 F:      kernel/time/timer_*.c
7838
7839 HIGH-SPEED SCC DRIVER FOR AX.25
7840 L:      [email protected]
7841 S:      Orphan
7842 F:      drivers/net/hamradio/dmascc.c
7843 F:      drivers/net/hamradio/scc.c
7844
7845 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7846 M:      HighPoint Linux Team <[email protected]>
7847 S:      Supported
7848 W:      http://www.highpoint-tech.com
7849 F:      Documentation/scsi/hptiop.rst
7850 F:      drivers/scsi/hptiop.c
7851
7852 HIPPI
7853 M:      Jes Sorensen <[email protected]>
7854 L:      [email protected]
7855 S:      Maintained
7856 F:      drivers/net/hippi/
7857 F:      include/linux/hippidevice.h
7858 F:      include/uapi/linux/if_hippi.h
7859 F:      net/802/hippi.c
7860
7861 HISILICON DMA DRIVER
7862 M:      Zhou Wang <[email protected]>
7863 L:      [email protected]
7864 S:      Maintained
7865 F:      drivers/dma/hisi_dma.c
7866
7867 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7868 M:      Zaibo Xu <[email protected]>
7869 L:      [email protected]
7870 S:      Maintained
7871 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7872 F:      drivers/crypto/hisilicon/hpre/hpre.h
7873 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7874 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7875
7876 HISILICON LPC BUS DRIVER
7877 M:      [email protected]
7878 S:      Maintained
7879 W:      http://www.hisilicon.com
7880 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7881 F:      drivers/bus/hisi_lpc.c
7882
7883 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7884 M:      Yisen Zhuang <[email protected]>
7885 M:      Salil Mehta <[email protected]>
7886 L:      [email protected]
7887 S:      Maintained
7888 W:      http://www.hisilicon.com
7889 F:      drivers/net/ethernet/hisilicon/hns3/
7890
7891 HISILICON NETWORK SUBSYSTEM DRIVER
7892 M:      Yisen Zhuang <[email protected]>
7893 M:      Salil Mehta <[email protected]>
7894 L:      [email protected]
7895 S:      Maintained
7896 W:      http://www.hisilicon.com
7897 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7898 F:      drivers/net/ethernet/hisilicon/
7899
7900 HISILICON PMU DRIVER
7901 M:      Shaokun Zhang <[email protected]>
7902 S:      Supported
7903 W:      http://www.hisilicon.com
7904 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7905 F:      drivers/perf/hisilicon
7906
7907 HISILICON QM AND ZIP Controller DRIVER
7908 M:      Zhou Wang <[email protected]>
7909 L:      [email protected]
7910 S:      Maintained
7911 F:      Documentation/ABI/testing/debugfs-hisi-zip
7912 F:      drivers/crypto/hisilicon/qm.c
7913 F:      drivers/crypto/hisilicon/qm.h
7914 F:      drivers/crypto/hisilicon/sgl.c
7915 F:      drivers/crypto/hisilicon/zip/
7916
7917 HISILICON ROCE DRIVER
7918 M:      Lijun Ou <[email protected]>
7919 M:      Wei Hu(Xavier) <[email protected]>
7920 M:      Weihang Li <[email protected]>
7921 L:      [email protected]
7922 S:      Maintained
7923 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7924 F:      drivers/infiniband/hw/hns/
7925
7926 HISILICON SAS Controller
7927 M:      John Garry <[email protected]>
7928 S:      Supported
7929 W:      http://www.hisilicon.com
7930 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7931 F:      drivers/scsi/hisi_sas/
7932
7933 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7934 M:      Zaibo Xu <[email protected]>
7935 L:      [email protected]
7936 S:      Maintained
7937 F:      Documentation/ABI/testing/debugfs-hisi-sec
7938 F:      drivers/crypto/hisilicon/sec2/sec.h
7939 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7940 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7941 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7942
7943 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7944 M:      Zaibo Xu <[email protected]>
7945 S:      Maintained
7946 F:      drivers/char/hw_random/hisi-trng-v2.c
7947
7948 HISILICON V3XX SPI NOR FLASH Controller Driver
7949 M:      John Garry <[email protected]>
7950 S:      Maintained
7951 W:      http://www.hisilicon.com
7952 F:      drivers/spi/spi-hisi-sfc-v3xx.c
7953
7954 HMM - Heterogeneous Memory Management
7955 M:      Jérôme Glisse <[email protected]>
7956 L:      [email protected]
7957 S:      Maintained
7958 F:      Documentation/vm/hmm.rst
7959 F:      include/linux/hmm*
7960 F:      lib/test_hmm*
7961 F:      mm/hmm*
7962 F:      tools/testing/selftests/vm/*hmm*
7963
7964 HOST AP DRIVER
7965 M:      Jouni Malinen <[email protected]>
7966 L:      [email protected]
7967 S:      Obsolete
7968 W:      http://w1.fi/hostap-driver.html
7969 F:      drivers/net/wireless/intersil/hostap/
7970
7971 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7972 L:      [email protected]
7973 S:      Orphan
7974 F:      drivers/platform/x86/tc1100-wmi.c
7975
7976 HPET:   High Precision Event Timers driver
7977 M:      Clemens Ladisch <[email protected]>
7978 S:      Maintained
7979 F:      Documentation/timers/hpet.rst
7980 F:      drivers/char/hpet.c
7981 F:      include/linux/hpet.h
7982 F:      include/uapi/linux/hpet.h
7983
7984 HPET:   x86
7985 S:      Orphan
7986 F:      arch/x86/include/asm/hpet.h
7987 F:      arch/x86/kernel/hpet.c
7988
7989 HPFS FILESYSTEM
7990 M:      Mikulas Patocka <[email protected]>
7991 S:      Maintained
7992 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7993 F:      fs/hpfs/
7994
7995 HSI SUBSYSTEM
7996 M:      Sebastian Reichel <[email protected]>
7997 S:      Maintained
7998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7999 F:      Documentation/ABI/testing/sysfs-bus-hsi
8000 F:      Documentation/driver-api/hsi.rst
8001 F:      drivers/hsi/
8002 F:      include/linux/hsi/
8003 F:      include/uapi/linux/hsi/
8004
8005 HSO 3G MODEM DRIVER
8006 L:      [email protected]
8007 S:      Orphan
8008 F:      drivers/net/usb/hso.c
8009
8010 HSR NETWORK PROTOCOL
8011 L:      [email protected]
8012 S:      Orphan
8013 F:      net/hsr/
8014
8015 HT16K33 LED CONTROLLER DRIVER
8016 M:      Robin van der Gracht <[email protected]>
8017 S:      Maintained
8018 F:      Documentation/devicetree/bindings/display/ht16k33.txt
8019 F:      drivers/auxdisplay/ht16k33.c
8020
8021 HTCPEN TOUCHSCREEN DRIVER
8022 M:      Pau Oliva Fora <[email protected]>
8023 L:      [email protected]
8024 S:      Maintained
8025 F:      drivers/input/touchscreen/htcpen.c
8026
8027 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8028 M:      Lorenzo Bianconi <[email protected]>
8029 L:      [email protected]
8030 S:      Maintained
8031 W:      http://www.st.com/
8032 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
8033 F:      drivers/iio/humidity/hts221*
8034
8035 HUAWEI ETHERNET DRIVER
8036 M:      Bin Luo <[email protected]>
8037 L:      [email protected]
8038 S:      Supported
8039 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8040 F:      drivers/net/ethernet/huawei/hinic/
8041
8042 HUGETLB FILESYSTEM
8043 M:      Mike Kravetz <[email protected]>
8044 L:      [email protected]
8045 S:      Maintained
8046 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8047 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8048 F:      Documentation/vm/hugetlbfs_reserv.rst
8049 F:      fs/hugetlbfs/
8050 F:      include/linux/hugetlb.h
8051 F:      mm/hugetlb.c
8052
8053 HVA ST MEDIA DRIVER
8054 M:      Jean-Christophe Trotin <[email protected]>
8055 L:      [email protected]
8056 S:      Supported
8057 W:      https://linuxtv.org
8058 T:      git git://linuxtv.org/media_tree.git
8059 F:      drivers/media/platform/sti/hva
8060
8061 HWPOISON MEMORY FAILURE HANDLING
8062 M:      Naoya Horiguchi <[email protected]>
8063 L:      [email protected]
8064 S:      Maintained
8065 F:      mm/hwpoison-inject.c
8066 F:      mm/memory-failure.c
8067
8068 HYGON PROCESSOR SUPPORT
8069 M:      Pu Wen <[email protected]>
8070 L:      [email protected]
8071 S:      Maintained
8072 F:      arch/x86/kernel/cpu/hygon.c
8073
8074 HYNIX HI556 SENSOR DRIVER
8075 M:      Shawn Tu <[email protected]>
8076 L:      [email protected]
8077 S:      Maintained
8078 T:      git git://linuxtv.org/media_tree.git
8079 F:      drivers/media/i2c/hi556.c
8080
8081 Hyper-V CORE AND DRIVERS
8082 M:      "K. Y. Srinivasan" <[email protected]>
8083 M:      Haiyang Zhang <[email protected]>
8084 M:      Stephen Hemminger <[email protected]>
8085 M:      Wei Liu <[email protected]>
8086 L:      [email protected]
8087 S:      Supported
8088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8089 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8090 F:      Documentation/ABI/testing/debugfs-hyperv
8091 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8092 F:      arch/x86/hyperv
8093 F:      arch/x86/include/asm/hyperv-tlfs.h
8094 F:      arch/x86/include/asm/mshyperv.h
8095 F:      arch/x86/include/asm/trace/hyperv.h
8096 F:      arch/x86/kernel/cpu/mshyperv.c
8097 F:      drivers/clocksource/hyperv_timer.c
8098 F:      drivers/hid/hid-hyperv.c
8099 F:      drivers/hv/
8100 F:      drivers/input/serio/hyperv-keyboard.c
8101 F:      drivers/iommu/hyperv-iommu.c
8102 F:      drivers/net/hyperv/
8103 F:      drivers/pci/controller/pci-hyperv-intf.c
8104 F:      drivers/pci/controller/pci-hyperv.c
8105 F:      drivers/scsi/storvsc_drv.c
8106 F:      drivers/uio/uio_hv_generic.c
8107 F:      drivers/video/fbdev/hyperv_fb.c
8108 F:      include/asm-generic/hyperv-tlfs.h
8109 F:      include/asm-generic/mshyperv.h
8110 F:      include/clocksource/hyperv_timer.h
8111 F:      include/linux/hyperv.h
8112 F:      include/uapi/linux/hyperv.h
8113 F:      net/vmw_vsock/hyperv_transport.c
8114 F:      tools/hv/
8115
8116 HYPERBUS SUPPORT
8117 M:      Vignesh Raghavendra <[email protected]>
8118 L:      [email protected]
8119 S:      Supported
8120 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8121 C:      irc://irc.oftc.net/mtd
8122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8123 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8124 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8125 F:      drivers/mtd/hyperbus/
8126 F:      include/linux/mtd/hyperbus.h
8127
8128 HYPERVISOR VIRTUAL CONSOLE DRIVER
8129 L:      [email protected]
8130 S:      Odd Fixes
8131 F:      drivers/tty/hvc/
8132
8133 I2C ACPI SUPPORT
8134 M:      Mika Westerberg <[email protected]>
8135 L:      [email protected]
8136 L:      [email protected]
8137 S:      Maintained
8138 F:      drivers/i2c/i2c-core-acpi.c
8139
8140 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8141 M:      Ajay Gupta <[email protected]>
8142 L:      [email protected]
8143 S:      Maintained
8144 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8145 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8146
8147 I2C MUXES
8148 M:      Peter Rosin <[email protected]>
8149 L:      [email protected]
8150 S:      Maintained
8151 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8152 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8153 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8154 F:      Documentation/i2c/i2c-topology.rst
8155 F:      Documentation/i2c/muxes/
8156 F:      drivers/i2c/i2c-mux.c
8157 F:      drivers/i2c/muxes/
8158 F:      include/linux/i2c-mux.h
8159
8160 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8161 M:      Gregory CLEMENT <[email protected]>
8162 L:      [email protected]
8163 S:      Maintained
8164 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8165 F:      drivers/i2c/busses/i2c-mv64xxx.c
8166
8167 I2C OVER PARALLEL PORT
8168 M:      Jean Delvare <[email protected]>
8169 L:      [email protected]
8170 S:      Maintained
8171 F:      Documentation/i2c/busses/i2c-parport.rst
8172 F:      drivers/i2c/busses/i2c-parport.c
8173
8174 I2C SUBSYSTEM
8175 M:      Wolfram Sang <[email protected]>
8176 L:      [email protected]
8177 S:      Maintained
8178 W:      https://i2c.wiki.kernel.org/
8179 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8181 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8182 F:      Documentation/i2c/
8183 F:      drivers/i2c/*
8184 F:      include/linux/i2c-dev.h
8185 F:      include/linux/i2c-smbus.h
8186 F:      include/linux/i2c.h
8187 F:      include/uapi/linux/i2c-*.h
8188 F:      include/uapi/linux/i2c.h
8189
8190 I2C SUBSYSTEM HOST DRIVERS
8191 L:      [email protected]
8192 S:      Odd Fixes
8193 W:      https://i2c.wiki.kernel.org/
8194 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8196 F:      Documentation/devicetree/bindings/i2c/
8197 F:      drivers/i2c/algos/
8198 F:      drivers/i2c/busses/
8199
8200 I2C-TAOS-EVM DRIVER
8201 M:      Jean Delvare <[email protected]>
8202 L:      [email protected]
8203 S:      Maintained
8204 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8205 F:      drivers/i2c/busses/i2c-taos-evm.c
8206
8207 I2C-TINY-USB DRIVER
8208 M:      Till Harbaum <[email protected]>
8209 L:      [email protected]
8210 S:      Maintained
8211 W:      http://www.harbaum.org/till/i2c_tiny_usb
8212 F:      drivers/i2c/busses/i2c-tiny-usb.c
8213
8214 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8215 M:      Jean Delvare <[email protected]>
8216 L:      [email protected]
8217 S:      Maintained
8218 F:      Documentation/i2c/busses/i2c-ali1535.rst
8219 F:      Documentation/i2c/busses/i2c-ali1563.rst
8220 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8221 F:      Documentation/i2c/busses/i2c-amd756.rst
8222 F:      Documentation/i2c/busses/i2c-amd8111.rst
8223 F:      Documentation/i2c/busses/i2c-i801.rst
8224 F:      Documentation/i2c/busses/i2c-nforce2.rst
8225 F:      Documentation/i2c/busses/i2c-piix4.rst
8226 F:      Documentation/i2c/busses/i2c-sis5595.rst
8227 F:      Documentation/i2c/busses/i2c-sis630.rst
8228 F:      Documentation/i2c/busses/i2c-sis96x.rst
8229 F:      Documentation/i2c/busses/i2c-via.rst
8230 F:      Documentation/i2c/busses/i2c-viapro.rst
8231 F:      drivers/i2c/busses/i2c-ali1535.c
8232 F:      drivers/i2c/busses/i2c-ali1563.c
8233 F:      drivers/i2c/busses/i2c-ali15x3.c
8234 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8235 F:      drivers/i2c/busses/i2c-amd756.c
8236 F:      drivers/i2c/busses/i2c-amd8111.c
8237 F:      drivers/i2c/busses/i2c-i801.c
8238 F:      drivers/i2c/busses/i2c-isch.c
8239 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8240 F:      drivers/i2c/busses/i2c-nforce2.c
8241 F:      drivers/i2c/busses/i2c-piix4.c
8242 F:      drivers/i2c/busses/i2c-sis5595.c
8243 F:      drivers/i2c/busses/i2c-sis630.c
8244 F:      drivers/i2c/busses/i2c-sis96x.c
8245 F:      drivers/i2c/busses/i2c-via.c
8246 F:      drivers/i2c/busses/i2c-viapro.c
8247
8248 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8249 M:      Hans de Goede <[email protected]>
8250 L:      [email protected]
8251 S:      Maintained
8252 F:      drivers/i2c/busses/i2c-cht-wc.c
8253
8254 I2C/SMBUS ISMT DRIVER
8255 M:      Seth Heasley <[email protected]>
8256 M:      Neil Horman <[email protected]>
8257 L:      [email protected]
8258 F:      Documentation/i2c/busses/i2c-ismt.rst
8259 F:      drivers/i2c/busses/i2c-ismt.c
8260
8261 I2C/SMBUS STUB DRIVER
8262 M:      Jean Delvare <[email protected]>
8263 L:      [email protected]
8264 S:      Maintained
8265 F:      drivers/i2c/i2c-stub.c
8266
8267 I3C DRIVER FOR CADENCE I3C MASTER IP
8268 M:      Przemysław Gaj <[email protected]>
8269 S:      Maintained
8270 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8271 F:      drivers/i3c/master/i3c-master-cdns.c
8272
8273 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8274 M:      Vitor Soares <[email protected]>
8275 S:      Maintained
8276 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8277 F:      drivers/i3c/master/dw*
8278
8279 I3C SUBSYSTEM
8280 M:      Boris Brezillon <[email protected]>
8281 L:      [email protected] (moderated for non-subscribers)
8282 S:      Maintained
8283 C:      irc://chat.freenode.net/linux-i3c
8284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8285 F:      Documentation/ABI/testing/sysfs-bus-i3c
8286 F:      Documentation/devicetree/bindings/i3c/
8287 F:      Documentation/driver-api/i3c
8288 F:      drivers/i3c/
8289 F:      include/linux/i3c/
8290
8291 IA64 (Itanium) PLATFORM
8292 M:      Tony Luck <[email protected]>
8293 M:      Fenghua Yu <[email protected]>
8294 L:      [email protected]
8295 S:      Odd Fixes
8296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8297 F:      Documentation/ia64/
8298 F:      arch/ia64/
8299
8300 IBM Power 842 compression accelerator
8301 M:      Haren Myneni <[email protected]>
8302 S:      Supported
8303 F:      crypto/842.c
8304 F:      drivers/crypto/nx/Kconfig
8305 F:      drivers/crypto/nx/Makefile
8306 F:      drivers/crypto/nx/nx-842*
8307 F:      include/linux/sw842.h
8308 F:      lib/842/
8309
8310 IBM Power in-Nest Crypto Acceleration
8311 M:      Breno Leitão <[email protected]>
8312 M:      Nayna Jain <[email protected]>
8313 M:      Paulo Flabiano Smorigo <[email protected]>
8314 L:      [email protected]
8315 S:      Supported
8316 F:      drivers/crypto/nx/Kconfig
8317 F:      drivers/crypto/nx/Makefile
8318 F:      drivers/crypto/nx/nx-aes*
8319 F:      drivers/crypto/nx/nx-sha*
8320 F:      drivers/crypto/nx/nx.*
8321 F:      drivers/crypto/nx/nx_csbcpb.h
8322 F:      drivers/crypto/nx/nx_debugfs.c
8323
8324 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8325 M:      Tyrel Datwyler <[email protected]>
8326 L:      [email protected]
8327 L:      [email protected]
8328 S:      Supported
8329 F:      drivers/pci/hotplug/rpadlpar*
8330
8331 IBM Power Linux RAID adapter
8332 M:      Brian King <[email protected]>
8333 S:      Supported
8334 F:      drivers/scsi/ipr.*
8335
8336 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8337 M:      Tyrel Datwyler <[email protected]>
8338 L:      [email protected]
8339 L:      [email protected]
8340 S:      Supported
8341 F:      drivers/pci/hotplug/rpaphp*
8342
8343 IBM Power SRIOV Virtual NIC Device Driver
8344 M:      Dany Madden <[email protected]>
8345 M:      Lijun Pan <[email protected]>
8346 M:      Sukadev Bhattiprolu <[email protected]>
8347 L:      [email protected]
8348 S:      Supported
8349 F:      drivers/net/ethernet/ibm/ibmvnic.*
8350
8351 IBM Power Virtual Accelerator Switchboard
8352 M:      Sukadev Bhattiprolu <[email protected]>
8353 L:      [email protected]
8354 S:      Supported
8355 F:      arch/powerpc/include/asm/vas.h
8356 F:      arch/powerpc/platforms/powernv/copy-paste.h
8357 F:      arch/powerpc/platforms/powernv/vas*
8358
8359 IBM Power Virtual Ethernet Device Driver
8360 M:      Cristobal Forno <[email protected]>
8361 L:      [email protected]
8362 S:      Supported
8363 F:      drivers/net/ethernet/ibm/ibmveth.*
8364
8365 IBM Power Virtual FC Device Drivers
8366 M:      Tyrel Datwyler <[email protected]>
8367 L:      [email protected]
8368 S:      Supported
8369 F:      drivers/scsi/ibmvscsi/ibmvfc*
8370
8371 IBM Power Virtual Management Channel Driver
8372 M:      Steven Royer <[email protected]>
8373 S:      Supported
8374 F:      drivers/misc/ibmvmc.*
8375
8376 IBM Power Virtual SCSI Device Drivers
8377 M:      Tyrel Datwyler <[email protected]>
8378 L:      [email protected]
8379 S:      Supported
8380 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8381 F:      include/scsi/viosrp.h
8382
8383 IBM Power Virtual SCSI Device Target Driver
8384 M:      Michael Cyr <[email protected]>
8385 L:      [email protected]
8386 L:      [email protected]
8387 S:      Supported
8388 F:      drivers/scsi/ibmvscsi_tgt/
8389
8390 IBM Power VMX Cryptographic instructions
8391 M:      Breno Leitão <[email protected]>
8392 M:      Nayna Jain <[email protected]>
8393 M:      Paulo Flabiano Smorigo <[email protected]>
8394 L:      [email protected]
8395 S:      Supported
8396 F:      drivers/crypto/vmx/Kconfig
8397 F:      drivers/crypto/vmx/Makefile
8398 F:      drivers/crypto/vmx/aes*
8399 F:      drivers/crypto/vmx/ghash*
8400 F:      drivers/crypto/vmx/ppc-xlate.pl
8401 F:      drivers/crypto/vmx/vmx.c
8402
8403 IBM ServeRAID RAID DRIVER
8404 S:      Orphan
8405 F:      drivers/scsi/ips.*
8406
8407 ICH LPC AND GPIO DRIVER
8408 M:      Peter Tyser <[email protected]>
8409 S:      Maintained
8410 F:      drivers/gpio/gpio-ich.c
8411 F:      drivers/mfd/lpc_ich.c
8412
8413 ICY I2C DRIVER
8414 M:      Max Staudt <[email protected]>
8415 L:      [email protected]
8416 S:      Maintained
8417 F:      drivers/i2c/busses/i2c-icy.c
8418
8419 IDE SUBSYSTEM
8420 M:      "David S. Miller" <[email protected]>
8421 L:      [email protected]
8422 S:      Maintained
8423 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8425 F:      Documentation/ide/
8426 F:      drivers/ide/
8427 F:      include/linux/ide.h
8428
8429 IDE/ATAPI DRIVERS
8430 M:      Borislav Petkov <[email protected]>
8431 L:      [email protected]
8432 S:      Maintained
8433 F:      Documentation/cdrom/ide-cd.rst
8434 F:      drivers/ide/ide-cd*
8435
8436 IDEAPAD LAPTOP EXTRAS DRIVER
8437 M:      Ike Panhc <[email protected]>
8438 L:      [email protected]
8439 S:      Maintained
8440 W:      http://launchpad.net/ideapad-laptop
8441 F:      drivers/platform/x86/ideapad-laptop.c
8442
8443 IDEAPAD LAPTOP SLIDEBAR DRIVER
8444 M:      Andrey Moiseev <[email protected]>
8445 L:      [email protected]
8446 S:      Maintained
8447 W:      https://github.com/o2genum/ideapad-slidebar
8448 F:      drivers/input/misc/ideapad_slidebar.c
8449
8450 IDT VersaClock 5 CLOCK DRIVER
8451 M:      Luca Ceresoli <[email protected]>
8452 S:      Maintained
8453 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8454 F:      drivers/clk/clk-versaclock5.c
8455
8456 IEEE 802.15.4 SUBSYSTEM
8457 M:      Alexander Aring <[email protected]>
8458 M:      Stefan Schmidt <[email protected]>
8459 L:      [email protected]
8460 S:      Maintained
8461 W:      https://linux-wpan.org/
8462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8464 F:      Documentation/networking/ieee802154.rst
8465 F:      drivers/net/ieee802154/
8466 F:      include/linux/ieee802154.h
8467 F:      include/linux/nl802154.h
8468 F:      include/net/af_ieee802154.h
8469 F:      include/net/cfg802154.h
8470 F:      include/net/ieee802154_netdev.h
8471 F:      include/net/mac802154.h
8472 F:      include/net/nl802154.h
8473 F:      net/ieee802154/
8474 F:      net/mac802154/
8475
8476 IFE PROTOCOL
8477 M:      Yotam Gigi <[email protected]>
8478 M:      Jamal Hadi Salim <[email protected]>
8479 F:      include/net/ife.h
8480 F:      include/uapi/linux/ife.h
8481 F:      net/ife
8482
8483 IGORPLUG-USB IR RECEIVER
8484 M:      Sean Young <[email protected]>
8485 L:      [email protected]
8486 S:      Maintained
8487 F:      drivers/media/rc/igorplugusb.c
8488
8489 IGUANAWORKS USB IR TRANSCEIVER
8490 M:      Sean Young <[email protected]>
8491 L:      [email protected]
8492 S:      Maintained
8493 F:      drivers/media/rc/iguanair.c
8494
8495 IIO DIGITAL POTENTIOMETER DAC
8496 M:      Peter Rosin <[email protected]>
8497 L:      [email protected]
8498 S:      Maintained
8499 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8500 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8501 F:      drivers/iio/dac/dpot-dac.c
8502
8503 IIO ENVELOPE DETECTOR
8504 M:      Peter Rosin <[email protected]>
8505 L:      [email protected]
8506 S:      Maintained
8507 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8508 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8509 F:      drivers/iio/adc/envelope-detector.c
8510
8511 IIO MULTIPLEXER
8512 M:      Peter Rosin <[email protected]>
8513 L:      [email protected]
8514 S:      Maintained
8515 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8516 F:      drivers/iio/multiplexer/iio-mux.c
8517
8518 IIO SUBSYSTEM AND DRIVERS
8519 M:      Jonathan Cameron <[email protected]>
8520 R:      Hartmut Knaack <[email protected]>
8521 R:      Lars-Peter Clausen <[email protected]>
8522 R:      Peter Meerwald-Stadler <[email protected]>
8523 L:      [email protected]
8524 S:      Maintained
8525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8526 F:      Documentation/ABI/testing/configfs-iio*
8527 F:      Documentation/ABI/testing/sysfs-bus-iio*
8528 F:      Documentation/devicetree/bindings/iio/
8529 F:      drivers/iio/
8530 F:      drivers/staging/iio/
8531 F:      include/linux/iio/
8532 F:      tools/iio/
8533
8534 IIO UNIT CONVERTER
8535 M:      Peter Rosin <[email protected]>
8536 L:      [email protected]
8537 S:      Maintained
8538 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8539 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8540 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8541 F:      drivers/iio/afe/iio-rescale.c
8542
8543 IKANOS/ADI EAGLE ADSL USB DRIVER
8544 M:      Matthieu Castet <[email protected]>
8545 M:      Stanislaw Gruszka <[email protected]>
8546 S:      Maintained
8547 F:      drivers/usb/atm/ueagle-atm.c
8548
8549 IMGTEC ASCII LCD DRIVER
8550 M:      Paul Burton <[email protected]>
8551 S:      Maintained
8552 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8553 F:      drivers/auxdisplay/img-ascii-lcd.c
8554
8555 IMGTEC IR DECODER DRIVER
8556 S:      Orphan
8557 F:      drivers/media/rc/img-ir/
8558
8559 IMON SOUNDGRAPH USB IR RECEIVER
8560 M:      Sean Young <[email protected]>
8561 L:      [email protected]
8562 S:      Maintained
8563 F:      drivers/media/rc/imon.c
8564 F:      drivers/media/rc/imon_raw.c
8565
8566 IMS TWINTURBO FRAMEBUFFER DRIVER
8567 L:      [email protected]
8568 S:      Orphan
8569 F:      drivers/video/fbdev/imsttfb.c
8570
8571 INA209 HARDWARE MONITOR DRIVER
8572 M:      Guenter Roeck <[email protected]>
8573 L:      [email protected]
8574 S:      Maintained
8575 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8576 F:      Documentation/hwmon/ina209.rst
8577 F:      drivers/hwmon/ina209.c
8578
8579 INA2XX HARDWARE MONITOR DRIVER
8580 M:      Guenter Roeck <[email protected]>
8581 L:      [email protected]
8582 S:      Maintained
8583 F:      Documentation/hwmon/ina2xx.rst
8584 F:      drivers/hwmon/ina2xx.c
8585 F:      include/linux/platform_data/ina2xx.h
8586
8587 INDUSTRY PACK SUBSYSTEM (IPACK)
8588 M:      Samuel Iglesias Gonsalvez <[email protected]>
8589 M:      Jens Taprogge <[email protected]>
8590 M:      Greg Kroah-Hartman <[email protected]>
8591 L:      [email protected]
8592 S:      Maintained
8593 W:      http://industrypack.sourceforge.net
8594 F:      drivers/ipack/
8595
8596 INFINEON DPS310 Driver
8597 M:      Eddie James <[email protected]>
8598 L:      [email protected]
8599 S:      Maintained
8600 F:      drivers/iio/pressure/dps310.c
8601
8602 INFINIBAND SUBSYSTEM
8603 M:      Doug Ledford <[email protected]>
8604 M:      Jason Gunthorpe <[email protected]>
8605 L:      [email protected]
8606 S:      Supported
8607 W:      https://github.com/linux-rdma/rdma-core
8608 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8610 F:      Documentation/devicetree/bindings/infiniband/
8611 F:      Documentation/infiniband/
8612 F:      drivers/infiniband/
8613 F:      include/rdma/
8614 F:      include/trace/events/ib_mad.h
8615 F:      include/trace/events/ib_umad.h
8616 F:      include/uapi/linux/if_infiniband.h
8617 F:      include/uapi/rdma/
8618 F:      samples/bpf/ibumad_kern.c
8619 F:      samples/bpf/ibumad_user.c
8620
8621 INGENIC JZ4780 DMA Driver
8622 M:      Zubair Lutfullah Kakakhel <[email protected]>
8623 S:      Maintained
8624 F:      drivers/dma/dma-jz4780.c
8625
8626 INGENIC JZ4780 NAND DRIVER
8627 M:      Harvey Hunt <[email protected]>
8628 L:      [email protected]
8629 S:      Maintained
8630 F:      drivers/mtd/nand/raw/ingenic/
8631
8632 INGENIC JZ47xx SoCs
8633 M:      Paul Cercueil <[email protected]>
8634 S:      Maintained
8635 F:      arch/mips/boot/dts/ingenic/
8636 F:      arch/mips/include/asm/mach-jz4740/
8637 F:      arch/mips/jz4740/
8638 F:      drivers/clk/ingenic/
8639 F:      drivers/dma/dma-jz4780.c
8640 F:      drivers/gpu/drm/ingenic/
8641 F:      drivers/i2c/busses/i2c-jz4780.c
8642 F:      drivers/iio/adc/ingenic-adc.c
8643 F:      drivers/irqchip/irq-ingenic.c
8644 F:      drivers/memory/jz4780-nemc.c
8645 F:      drivers/mmc/host/jz4740_mmc.c
8646 F:      drivers/mtd/nand/raw/ingenic/
8647 F:      drivers/pinctrl/pinctrl-ingenic.c
8648 F:      drivers/power/supply/ingenic-battery.c
8649 F:      drivers/pwm/pwm-jz4740.c
8650 F:      drivers/remoteproc/ingenic_rproc.c
8651 F:      drivers/rtc/rtc-jz4740.c
8652 F:      drivers/tty/serial/8250/8250_ingenic.c
8653 F:      drivers/usb/musb/jz4740.c
8654 F:      drivers/watchdog/jz4740_wdt.c
8655 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8656 F:      include/linux/mfd/ingenic-tcu.h
8657 F:      sound/soc/codecs/jz47*
8658 F:      sound/soc/jz4740/
8659
8660 INOTIFY
8661 M:      Jan Kara <[email protected]>
8662 R:      Amir Goldstein <[email protected]>
8663 L:      [email protected]
8664 S:      Maintained
8665 F:      Documentation/filesystems/inotify.rst
8666 F:      fs/notify/inotify/
8667 F:      include/linux/inotify.h
8668 F:      include/uapi/linux/inotify.h
8669
8670 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8671 M:      Dmitry Torokhov <[email protected]>
8672 L:      [email protected]
8673 S:      Maintained
8674 Q:      http://patchwork.kernel.org/project/linux-input/list/
8675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8676 F:      Documentation/devicetree/bindings/input/
8677 F:      Documentation/devicetree/bindings/serio/
8678 F:      Documentation/input/
8679 F:      drivers/input/
8680 F:      include/linux/input.h
8681 F:      include/linux/input/
8682 F:      include/uapi/linux/input-event-codes.h
8683 F:      include/uapi/linux/input.h
8684
8685 INPUT MULTITOUCH (MT) PROTOCOL
8686 M:      Henrik Rydberg <[email protected]>
8687 L:      [email protected]
8688 S:      Odd fixes
8689 F:      Documentation/input/multi-touch-protocol.rst
8690 F:      drivers/input/input-mt.c
8691 K:      \b(ABS|SYN)_MT_
8692
8693 INSIDE SECURE CRYPTO DRIVER
8694 M:      Antoine Tenart <[email protected]>
8695 L:      [email protected]
8696 S:      Maintained
8697 F:      drivers/crypto/inside-secure/
8698
8699 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8700 M:      Mimi Zohar <[email protected]>
8701 M:      Dmitry Kasatkin <[email protected]>
8702 L:      [email protected]
8703 S:      Supported
8704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8705 F:      security/integrity/ima/
8706
8707 INTEL 810/815 FRAMEBUFFER DRIVER
8708 M:      Antonino Daplas <[email protected]>
8709 L:      [email protected]
8710 S:      Maintained
8711 F:      drivers/video/fbdev/i810/
8712
8713 INTEL ASoC DRIVERS
8714 M:      Cezary Rojewski <[email protected]>
8715 M:      Pierre-Louis Bossart <[email protected]>
8716 M:      Liam Girdwood <[email protected]>
8717 M:      Jie Yang <[email protected]>
8718 L:      [email protected] (moderated for non-subscribers)
8719 S:      Supported
8720 F:      sound/soc/intel/
8721
8722 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8723 M:      Hans de Goede <[email protected]>
8724 L:      [email protected]
8725 S:      Maintained
8726 F:      drivers/platform/x86/intel_atomisp2_pm.c
8727
8728 INTEL ATOMISP2 LED DRIVER
8729 M:      Hans de Goede <[email protected]>
8730 L:      [email protected]
8731 S:      Maintained
8732 F:      drivers/platform/x86/intel_atomisp2_led.c
8733
8734 INTEL BROXTON PMC DRIVER
8735 M:      Mika Westerberg <[email protected]>
8736 M:      Zha Qipeng <[email protected]>
8737 S:      Maintained
8738 F:      drivers/mfd/intel_pmc_bxt.c
8739 F:      include/linux/mfd/intel_pmc_bxt.h
8740
8741 INTEL C600 SERIES SAS CONTROLLER DRIVER
8742 M:      Intel SCU Linux support <[email protected]>
8743 M:      Artur Paszkiewicz <[email protected]>
8744 L:      [email protected]
8745 S:      Supported
8746 T:      git git://git.code.sf.net/p/intel-sas/isci
8747 F:      drivers/scsi/isci/
8748
8749 INTEL CPU family model numbers
8750 M:      Tony Luck <[email protected]>
8751 M:      [email protected]
8752 L:      [email protected]
8753 S:      Supported
8754 F:      arch/x86/include/asm/intel-family.h
8755
8756 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8757 M:      Jani Nikula <[email protected]>
8758 M:      Joonas Lahtinen <[email protected]>
8759 M:      Rodrigo Vivi <[email protected]>
8760 L:      [email protected]
8761 S:      Supported
8762 W:      https://01.org/linuxgraphics/
8763 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8764 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8765 C:      irc://chat.freenode.net/intel-gfx
8766 T:      git git://anongit.freedesktop.org/drm-intel
8767 F:      Documentation/gpu/i915.rst
8768 F:      drivers/gpu/drm/i915/
8769 F:      include/drm/i915*
8770 F:      include/uapi/drm/i915_drm.h
8771
8772 INTEL ETHERNET DRIVERS
8773 M:      Jesse Brandeburg <[email protected]>
8774 M:      Tony Nguyen <[email protected]>
8775 L:      [email protected] (moderated for non-subscribers)
8776 S:      Supported
8777 W:      http://www.intel.com/support/feedback.htm
8778 W:      http://e1000.sourceforge.net/
8779 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8782 F:      Documentation/networking/device_drivers/ethernet/intel/
8783 F:      drivers/net/ethernet/intel/
8784 F:      drivers/net/ethernet/intel/*/
8785 F:      include/linux/avf/virtchnl.h
8786
8787 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8788 M:      Maik Broemme <[email protected]>
8789 L:      [email protected]
8790 S:      Maintained
8791 F:      Documentation/fb/intelfb.rst
8792 F:      drivers/video/fbdev/intelfb/
8793
8794 INTEL GPIO DRIVERS
8795 M:      Andy Shevchenko <[email protected]>
8796 L:      [email protected]
8797 S:      Maintained
8798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8799 F:      drivers/gpio/gpio-ich.c
8800 F:      drivers/gpio/gpio-intel-mid.c
8801 F:      drivers/gpio/gpio-merrifield.c
8802 F:      drivers/gpio/gpio-ml-ioh.c
8803 F:      drivers/gpio/gpio-pch.c
8804 F:      drivers/gpio/gpio-sch.c
8805 F:      drivers/gpio/gpio-sodaville.c
8806
8807 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8808 M:      Zhenyu Wang <[email protected]>
8809 M:      Zhi Wang <[email protected]>
8810 L:      [email protected]
8811 L:      [email protected]
8812 S:      Supported
8813 W:      https://01.org/igvt-g
8814 T:      git https://github.com/intel/gvt-linux.git
8815 F:      drivers/gpu/drm/i915/gvt/
8816
8817 INTEL HID EVENT DRIVER
8818 M:      Alex Hung <[email protected]>
8819 L:      [email protected]
8820 S:      Maintained
8821 F:      drivers/platform/x86/intel-hid.c
8822
8823 INTEL I/OAT DMA DRIVER
8824 M:      Dave Jiang <[email protected]>
8825 R:      Dan Williams <[email protected]>
8826 L:      [email protected]
8827 S:      Supported
8828 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8829 F:      drivers/dma/ioat*
8830
8831 INTEL IADX DRIVER
8832 M:      Dave Jiang <[email protected]>
8833 L:      [email protected]
8834 S:      Supported
8835 F:      drivers/dma/idxd/*
8836 F:      include/uapi/linux/idxd.h
8837
8838 INTEL IDLE DRIVER
8839 M:      Jacob Pan <[email protected]>
8840 M:      Len Brown <[email protected]>
8841 L:      [email protected]
8842 S:      Supported
8843 B:      https://bugzilla.kernel.org
8844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8845 F:      drivers/idle/intel_idle.c
8846
8847 INTEL INTEGRATED SENSOR HUB DRIVER
8848 M:      Srinivas Pandruvada <[email protected]>
8849 M:      Jiri Kosina <[email protected]>
8850 L:      [email protected]
8851 S:      Maintained
8852 F:      drivers/hid/intel-ish-hid/
8853
8854 INTEL IOMMU (VT-d)
8855 M:      David Woodhouse <[email protected]>
8856 M:      Lu Baolu <[email protected]>
8857 L:      [email protected]
8858 S:      Supported
8859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8860 F:      drivers/iommu/intel/
8861 F:      include/linux/intel-iommu.h
8862 F:      include/linux/intel-svm.h
8863
8864 INTEL IOP-ADMA DMA DRIVER
8865 R:      Dan Williams <[email protected]>
8866 S:      Odd fixes
8867 F:      drivers/dma/iop-adma.c
8868
8869 INTEL IPU3 CSI-2 CIO2 DRIVER
8870 M:      Yong Zhi <[email protected]>
8871 M:      Sakari Ailus <[email protected]>
8872 M:      Bingbu Cao <[email protected]>
8873 R:      Tian Shu Qiu <[email protected]>
8874 L:      [email protected]
8875 S:      Maintained
8876 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8877 F:      drivers/media/pci/intel/ipu3/
8878
8879 INTEL IPU3 CSI-2 IMGU DRIVER
8880 M:      Sakari Ailus <[email protected]>
8881 R:      Bingbu Cao <[email protected]>
8882 R:      Tian Shu Qiu <[email protected]>
8883 L:      [email protected]
8884 S:      Maintained
8885 F:      Documentation/admin-guide/media/ipu3.rst
8886 F:      Documentation/admin-guide/media/ipu3_rcb.svg
8887 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
8888 F:      drivers/staging/media/ipu3/
8889
8890 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8891 M:      Krzysztof Halasa <[email protected]>
8892 S:      Maintained
8893 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8894 F:      drivers/net/wan/ixp4xx_hss.c
8895 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8896 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8897 F:      include/linux/soc/ixp4xx/npe.h
8898 F:      include/linux/soc/ixp4xx/qmgr.h
8899
8900 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8901 M:      Deepak Saxena <[email protected]>
8902 S:      Maintained
8903 F:      drivers/char/hw_random/ixp4xx-rng.c
8904
8905 INTEL MANAGEMENT ENGINE (mei)
8906 M:      Tomas Winkler <[email protected]>
8907 L:      [email protected]
8908 S:      Supported
8909 F:      Documentation/driver-api/mei/*
8910 F:      drivers/misc/mei/
8911 F:      drivers/watchdog/mei_wdt.c
8912 F:      include/linux/mei_cl_bus.h
8913 F:      include/uapi/linux/mei.h
8914 F:      samples/mei/*
8915
8916 INTEL MENLOW THERMAL DRIVER
8917 M:      Sujith Thomas <[email protected]>
8918 L:      [email protected]
8919 S:      Supported
8920 W:      https://01.org/linux-acpi
8921 F:      drivers/platform/x86/intel_menlow.c
8922
8923 INTEL MIC DRIVERS (mic)
8924 M:      Sudeep Dutt <[email protected]>
8925 M:      Ashutosh Dixit <[email protected]>
8926 S:      Supported
8927 W:      https://github.com/sudeepdutt/mic
8928 W:      http://software.intel.com/en-us/mic-developer
8929 F:      Documentation/misc-devices/mic/
8930 F:      drivers/dma/mic_x100_dma.c
8931 F:      drivers/dma/mic_x100_dma.h
8932 F:      drivers/misc/mic/
8933 F:      include/linux/mic_bus.h
8934 F:      include/linux/scif.h
8935 F:      include/uapi/linux/mic_common.h
8936 F:      include/uapi/linux/mic_ioctl.h
8937 F:      include/uapi/linux/scif_ioctl.h
8938
8939 INTEL P-Unit IPC DRIVER
8940 M:      Zha Qipeng <[email protected]>
8941 L:      [email protected]
8942 S:      Maintained
8943 F:      arch/x86/include/asm/intel_punit_ipc.h
8944 F:      drivers/platform/x86/intel_punit_ipc.c
8945
8946 INTEL PMC CORE DRIVER
8947 M:      Rajneesh Bhardwaj <[email protected]>
8948 M:      Vishwanath Somayaji <[email protected]>
8949 L:      [email protected]
8950 S:      Maintained
8951 F:      drivers/platform/x86/intel_pmc_core*
8952
8953 INTEL PMIC GPIO DRIVERS
8954 M:      Andy Shevchenko <[email protected]>
8955 S:      Maintained
8956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8957 F:      drivers/gpio/gpio-*cove.c
8958 F:      drivers/gpio/gpio-msic.c
8959
8960 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8961 R:      Andy Shevchenko <[email protected]>
8962 S:      Maintained
8963 F:      drivers/mfd/intel_msic.c
8964 F:      drivers/mfd/intel_soc_pmic*
8965 F:      include/linux/mfd/intel_msic.h
8966 F:      include/linux/mfd/intel_soc_pmic*
8967
8968 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8969 M:      Stanislav Yakovlev <[email protected]>
8970 L:      [email protected]
8971 S:      Maintained
8972 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
8973 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
8974 F:      drivers/net/wireless/intel/ipw2x00/
8975
8976 INTEL PSTATE DRIVER
8977 M:      Srinivas Pandruvada <[email protected]>
8978 M:      Len Brown <[email protected]>
8979 L:      [email protected]
8980 S:      Supported
8981 F:      drivers/cpufreq/intel_pstate.c
8982
8983 INTEL RDMA RNIC DRIVER
8984 M:      Faisal Latif <[email protected]>
8985 M:      Shiraz Saleem <[email protected]>
8986 L:      [email protected]
8987 S:      Supported
8988 F:      drivers/infiniband/hw/i40iw/
8989 F:      include/uapi/rdma/i40iw-abi.h
8990
8991 INTEL SCU DRIVERS
8992 M:      Mika Westerberg <[email protected]>
8993 S:      Maintained
8994 F:      arch/x86/include/asm/intel_scu_ipc.h
8995 F:      drivers/platform/x86/intel_scu_*
8996
8997 INTEL SPEED SELECT TECHNOLOGY
8998 M:      Srinivas Pandruvada <[email protected]>
8999 L:      [email protected]
9000 S:      Maintained
9001 F:      drivers/platform/x86/intel_speed_select_if/
9002 F:      include/uapi/linux/isst_if.h
9003 F:      tools/power/x86/intel-speed-select/
9004
9005 INTEL STRATIX10 FIRMWARE DRIVERS
9006 M:      Richard Gong <[email protected]>
9007 L:      [email protected]
9008 S:      Maintained
9009 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9010 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9011 F:      drivers/firmware/stratix10-rsu.c
9012 F:      drivers/firmware/stratix10-svc.c
9013 F:      include/linux/firmware/intel/stratix10-smc.h
9014 F:      include/linux/firmware/intel/stratix10-svc-client.h
9015
9016 INTEL TELEMETRY DRIVER
9017 M:      Rajneesh Bhardwaj <[email protected]>
9018 M:      "David E. Box" <[email protected]>
9019 L:      [email protected]
9020 S:      Maintained
9021 F:      arch/x86/include/asm/intel_telemetry.h
9022 F:      drivers/platform/x86/intel_telemetry*
9023
9024 INTEL UNCORE FREQUENCY CONTROL
9025 M:      Srinivas Pandruvada <[email protected]>
9026 L:      [email protected]
9027 S:      Maintained
9028 F:      drivers/platform/x86/intel-uncore-frequency.c
9029
9030 INTEL VIRTUAL BUTTON DRIVER
9031 M:      AceLan Kao <[email protected]>
9032 L:      [email protected]
9033 S:      Maintained
9034 F:      drivers/platform/x86/intel-vbtn.c
9035
9036 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9037 M:      Stanislaw Gruszka <[email protected]>
9038 L:      [email protected]
9039 S:      Supported
9040 F:      drivers/net/wireless/intel/iwlegacy/
9041
9042 INTEL WIRELESS WIFI LINK (iwlwifi)
9043 M:      Johannes Berg <[email protected]>
9044 M:      Emmanuel Grumbach <[email protected]>
9045 M:      Luca Coelho <[email protected]>
9046 M:      Intel Linux Wireless <[email protected]>
9047 L:      [email protected]
9048 S:      Supported
9049 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9051 F:      drivers/net/wireless/intel/iwlwifi/
9052
9053 INTEL WIRELESS WIMAX CONNECTION 2400
9054 M:      Inaky Perez-Gonzalez <[email protected]>
9055 M:      [email protected]
9056 L:      [email protected] (subscribers-only)
9057 S:      Supported
9058 W:      http://linuxwimax.org
9059 F:      Documentation/admin-guide/wimax/i2400m.rst
9060 F:      drivers/net/wimax/i2400m/
9061 F:      include/uapi/linux/wimax/i2400m.h
9062
9063 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9064 M:      Jithu Joseph <[email protected]>
9065 R:      Maurice Ma <[email protected]>
9066 S:      Maintained
9067 W:      https://slimbootloader.github.io/security/firmware-update.html
9068 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9069
9070 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9071 M:      Mario Limonciello <[email protected]>
9072 S:      Maintained
9073 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9074
9075 INTEL(R) TRACE HUB
9076 M:      Alexander Shishkin <[email protected]>
9077 S:      Supported
9078 F:      Documentation/trace/intel_th.rst
9079 F:      drivers/hwtracing/intel_th/
9080 F:      include/linux/intel_th.h
9081
9082 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9083 M:      Ning Sun <[email protected]>
9084 L:      [email protected]
9085 S:      Supported
9086 W:      http://tboot.sourceforge.net
9087 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9088 F:      Documentation/x86/intel_txt.rst
9089 F:      arch/x86/kernel/tboot.c
9090 F:      include/linux/tboot.h
9091
9092 INTERCONNECT API
9093 M:      Georgi Djakov <[email protected]>
9094 L:      [email protected]
9095 S:      Maintained
9096 F:      Documentation/devicetree/bindings/interconnect/
9097 F:      Documentation/driver-api/interconnect.rst
9098 F:      drivers/interconnect/
9099 F:      include/dt-bindings/interconnect/
9100 F:      include/linux/interconnect-provider.h
9101 F:      include/linux/interconnect.h
9102
9103 INVENSENSE ICM-426xx IMU DRIVER
9104 M:      Jean-Baptiste Maneyrol <[email protected]>
9105 L:      [email protected]
9106 S:      Maintained
9107 W       https://invensense.tdk.com/
9108 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9109 F:      drivers/iio/imu/inv_icm42600/
9110
9111 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9112 M:      Linus Walleij <[email protected]>
9113 L:      [email protected]
9114 S:      Maintained
9115 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
9116 F:      drivers/iio/gyro/mpu3050*
9117
9118 IOC3 ETHERNET DRIVER
9119 M:      Ralf Baechle <[email protected]>
9120 L:      [email protected]
9121 S:      Maintained
9122 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9123
9124 IOMAP FILESYSTEM LIBRARY
9125 M:      Christoph Hellwig <[email protected]>
9126 M:      Darrick J. Wong <[email protected]>
9127 M:      [email protected]
9128 M:      [email protected]
9129 L:      [email protected]
9130 L:      [email protected]
9131 S:      Supported
9132 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9133 F:      fs/iomap/
9134 F:      include/linux/iomap.h
9135
9136 IOMMU DRIVERS
9137 M:      Joerg Roedel <[email protected]>
9138 L:      [email protected]
9139 S:      Maintained
9140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9141 F:      Documentation/devicetree/bindings/iommu/
9142 F:      drivers/iommu/
9143 F:      include/linux/iommu.h
9144 F:      include/linux/iova.h
9145 F:      include/linux/of_iommu.h
9146 F:      include/uapi/linux/iommu.h
9147
9148 IO_URING
9149 M:      Jens Axboe <[email protected]>
9150 L:      [email protected]
9151 S:      Maintained
9152 T:      git git://git.kernel.dk/linux-block
9153 T:      git git://git.kernel.dk/liburing
9154 F:      fs/io-wq.c
9155 F:      fs/io-wq.h
9156 F:      fs/io_uring.c
9157 F:      include/uapi/linux/io_uring.h
9158
9159 IPMI SUBSYSTEM
9160 M:      Corey Minyard <[email protected]>
9161 L:      [email protected] (moderated for non-subscribers)
9162 S:      Supported
9163 W:      http://openipmi.sourceforge.net/
9164 F:      Documentation/driver-api/ipmi.rst
9165 F:      Documentation/devicetree/bindings/ipmi/
9166 F:      drivers/char/ipmi/
9167 F:      include/linux/ipmi*
9168 F:      include/uapi/linux/ipmi*
9169
9170 IPS SCSI RAID DRIVER
9171 M:      Adaptec OEM Raid Solutions <[email protected]>
9172 L:      [email protected]
9173 S:      Maintained
9174 W:      http://www.adaptec.com/
9175 F:      drivers/scsi/ips*
9176
9177 IPVS
9178 M:      Wensong Zhang <[email protected]>
9179 M:      Simon Horman <[email protected]>
9180 M:      Julian Anastasov <[email protected]>
9181 L:      [email protected]
9182 L:      [email protected]
9183 S:      Maintained
9184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9186 F:      Documentation/networking/ipvs-sysctl.rst
9187 F:      include/net/ip_vs.h
9188 F:      include/uapi/linux/ip_vs.h
9189 F:      net/netfilter/ipvs/
9190
9191 IPWIRELESS DRIVER
9192 M:      Jiri Kosina <[email protected]>
9193 M:      David Sterba <[email protected]>
9194 S:      Odd Fixes
9195 F:      drivers/tty/ipwireless/
9196
9197 IPX NETWORK LAYER
9198 L:      [email protected]
9199 S:      Obsolete
9200 F:      include/uapi/linux/ipx.h
9201
9202 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9203 M:      Marc Zyngier <[email protected]>
9204 S:      Maintained
9205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9206 F:      Documentation/core-api/irq/irq-domain.rst
9207 F:      include/linux/irqdomain.h
9208 F:      kernel/irq/irqdomain.c
9209 F:      kernel/irq/msi.c
9210
9211 IRQ SUBSYSTEM
9212 M:      Thomas Gleixner <[email protected]>
9213 L:      [email protected]
9214 S:      Maintained
9215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9216 F:      kernel/irq/
9217
9218 IRQCHIP DRIVERS
9219 M:      Thomas Gleixner <[email protected]>
9220 M:      Jason Cooper <[email protected]>
9221 M:      Marc Zyngier <[email protected]>
9222 L:      [email protected]
9223 S:      Maintained
9224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9225 F:      Documentation/devicetree/bindings/interrupt-controller/
9226 F:      drivers/irqchip/
9227
9228 ISA
9229 M:      William Breathitt Gray <[email protected]>
9230 S:      Maintained
9231 F:      Documentation/driver-api/isa.rst
9232 F:      drivers/base/isa.c
9233 F:      include/linux/isa.h
9234
9235 ISA RADIO MODULE
9236 M:      Hans Verkuil <[email protected]>
9237 L:      [email protected]
9238 S:      Maintained
9239 W:      https://linuxtv.org
9240 T:      git git://linuxtv.org/media_tree.git
9241 F:      drivers/media/radio/radio-isa*
9242
9243 ISAPNP
9244 M:      Jaroslav Kysela <[email protected]>
9245 S:      Maintained
9246 F:      Documentation/driver-api/isapnp.rst
9247 F:      drivers/pnp/isapnp/
9248 F:      include/linux/isapnp.h
9249
9250 ISCSI
9251 M:      Lee Duncan <[email protected]>
9252 M:      Chris Leech <[email protected]>
9253 L:      [email protected]
9254 L:      [email protected]
9255 S:      Maintained
9256 W:      www.open-iscsi.com
9257 F:      drivers/scsi/*iscsi*
9258 F:      include/scsi/*iscsi*
9259
9260 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9261 M:      Peter Jones <[email protected]>
9262 M:      Konrad Rzeszutek Wilk <[email protected]>
9263 S:      Maintained
9264 F:      drivers/firmware/iscsi_ibft*
9265
9266 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9267 M:      Sagi Grimberg <[email protected]>
9268 M:      Max Gurtovoy <[email protected]>
9269 L:      [email protected]
9270 S:      Supported
9271 W:      http://www.openfabrics.org
9272 W:      www.open-iscsi.org
9273 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9274 F:      drivers/infiniband/ulp/iser/
9275
9276 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9277 M:      Sagi Grimberg <[email protected]>
9278 L:      [email protected]
9279 L:      [email protected]
9280 S:      Supported
9281 W:      http://www.linux-iscsi.org
9282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9283 F:      drivers/infiniband/ulp/isert
9284
9285 ISDN/CMTP OVER BLUETOOTH
9286 M:      Karsten Keil <[email protected]>
9287 L:      [email protected] (subscribers-only)
9288 L:      [email protected]
9289 S:      Odd Fixes
9290 W:      http://www.isdn4linux.de
9291 F:      Documentation/isdn/
9292 F:      drivers/isdn/capi/
9293 F:      include/linux/isdn/
9294 F:      include/uapi/linux/isdn/
9295 F:      net/bluetooth/cmtp/
9296
9297 ISDN/mISDN SUBSYSTEM
9298 M:      Karsten Keil <[email protected]>
9299 L:      [email protected] (subscribers-only)
9300 L:      [email protected]
9301 S:      Maintained
9302 W:      http://www.isdn4linux.de
9303 F:      drivers/isdn/Kconfig
9304 F:      drivers/isdn/Makefile
9305 F:      drivers/isdn/hardware/
9306 F:      drivers/isdn/mISDN/
9307
9308 IT87 HARDWARE MONITORING DRIVER
9309 M:      Jean Delvare <[email protected]>
9310 L:      [email protected]
9311 S:      Maintained
9312 F:      Documentation/hwmon/it87.rst
9313 F:      drivers/hwmon/it87.c
9314
9315 IT913X MEDIA DRIVER
9316 M:      Antti Palosaari <[email protected]>
9317 L:      [email protected]
9318 S:      Maintained
9319 W:      https://linuxtv.org
9320 W:      http://palosaari.fi/linux/
9321 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9322 T:      git git://linuxtv.org/anttip/media_tree.git
9323 F:      drivers/media/tuners/it913x*
9324
9325 IVTV VIDEO4LINUX DRIVER
9326 M:      Andy Walls <[email protected]>
9327 L:      [email protected]
9328 S:      Maintained
9329 W:      https://linuxtv.org
9330 T:      git git://linuxtv.org/media_tree.git
9331 F:      Documentation/admin-guide/media/ivtv*
9332 F:      drivers/media/pci/ivtv/
9333 F:      include/uapi/linux/ivtv*
9334
9335 IX2505V MEDIA DRIVER
9336 M:      Malcolm Priestley <[email protected]>
9337 L:      [email protected]
9338 S:      Maintained
9339 W:      https://linuxtv.org
9340 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9341 F:      drivers/media/dvb-frontends/ix2505v*
9342
9343 JAILHOUSE HYPERVISOR INTERFACE
9344 M:      Jan Kiszka <[email protected]>
9345 L:      [email protected]
9346 S:      Maintained
9347 F:      arch/x86/include/asm/jailhouse_para.h
9348 F:      arch/x86/kernel/jailhouse.c
9349
9350 JC42.4 TEMPERATURE SENSOR DRIVER
9351 M:      Guenter Roeck <[email protected]>
9352 L:      [email protected]
9353 S:      Maintained
9354 F:      Documentation/hwmon/jc42.rst
9355 F:      drivers/hwmon/jc42.c
9356
9357 JFS FILESYSTEM
9358 M:      Dave Kleikamp <[email protected]>
9359 L:      [email protected]
9360 S:      Maintained
9361 W:      http://jfs.sourceforge.net/
9362 T:      git git://github.com/kleikamp/linux-shaggy.git
9363 F:      Documentation/admin-guide/jfs.rst
9364 F:      fs/jfs/
9365
9366 JME NETWORK DRIVER
9367 M:      Guo-Fu Tseng <[email protected]>
9368 L:      [email protected]
9369 S:      Maintained
9370 F:      drivers/net/ethernet/jme.*
9371
9372 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9373 M:      David Woodhouse <[email protected]>
9374 M:      Richard Weinberger <[email protected]>
9375 L:      [email protected]
9376 S:      Odd Fixes
9377 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9378 T:      git git://git.infradead.org/ubifs-2.6.git
9379 F:      fs/jffs2/
9380 F:      include/uapi/linux/jffs2.h
9381
9382 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9383 M:      "Theodore Ts'o" <[email protected]>
9384 M:      Jan Kara <[email protected]>
9385 L:      [email protected]
9386 S:      Maintained
9387 F:      fs/jbd2/
9388 F:      include/linux/jbd2.h
9389
9390 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9391 M:      Mikhail Ulyanov <[email protected]>
9392 L:      [email protected]
9393 S:      Maintained
9394 F:      drivers/media/platform/rcar_jpu.c
9395
9396 JSM Neo PCI based serial card
9397 L:      [email protected]
9398 S:      Orphan
9399 F:      drivers/tty/serial/jsm/
9400
9401 K10TEMP HARDWARE MONITORING DRIVER
9402 M:      Clemens Ladisch <[email protected]>
9403 L:      [email protected]
9404 S:      Maintained
9405 F:      Documentation/hwmon/k10temp.rst
9406 F:      drivers/hwmon/k10temp.c
9407
9408 K8TEMP HARDWARE MONITORING DRIVER
9409 M:      Rudolf Marek <[email protected]>
9410 L:      [email protected]
9411 S:      Maintained
9412 F:      Documentation/hwmon/k8temp.rst
9413 F:      drivers/hwmon/k8temp.c
9414
9415 KASAN
9416 M:      Andrey Ryabinin <[email protected]>
9417 R:      Alexander Potapenko <[email protected]>
9418 R:      Dmitry Vyukov <[email protected]>
9419 L:      [email protected]
9420 S:      Maintained
9421 F:      Documentation/dev-tools/kasan.rst
9422 F:      arch/*/include/asm/kasan.h
9423 F:      arch/*/mm/kasan_init*
9424 F:      include/linux/kasan*.h
9425 F:      lib/test_kasan.c
9426 F:      mm/kasan/
9427 F:      scripts/Makefile.kasan
9428
9429 KCONFIG
9430 M:      Masahiro Yamada <[email protected]>
9431 L:      [email protected]
9432 S:      Maintained
9433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9434 F:      Documentation/kbuild/kconfig*
9435 F:      scripts/Kconfig.include
9436 F:      scripts/kconfig/
9437
9438 KCOV
9439 R:      Dmitry Vyukov <[email protected]>
9440 R:      Andrey Konovalov <[email protected]>
9441 L:      [email protected]
9442 S:      Maintained
9443 F:      Documentation/dev-tools/kcov.rst
9444 F:      include/linux/kcov.h
9445 F:      include/uapi/linux/kcov.h
9446 F:      kernel/kcov.c
9447 F:      scripts/Makefile.kcov
9448
9449 KCSAN
9450 M:      Marco Elver <[email protected]>
9451 R:      Dmitry Vyukov <[email protected]>
9452 L:      [email protected]
9453 S:      Maintained
9454 F:      Documentation/dev-tools/kcsan.rst
9455 F:      include/linux/kcsan*.h
9456 F:      kernel/kcsan/
9457 F:      lib/Kconfig.kcsan
9458 F:      scripts/Makefile.kcsan
9459
9460 KDUMP
9461 M:      Dave Young <[email protected]>
9462 M:      Baoquan He <[email protected]>
9463 R:      Vivek Goyal <[email protected]>
9464 L:      [email protected]
9465 S:      Maintained
9466 W:      http://lse.sourceforge.net/kdump/
9467 F:      Documentation/admin-guide/kdump/
9468 F:      fs/proc/vmcore.c
9469 F:      include/linux/crash_core.h
9470 F:      include/linux/crash_dump.h
9471 F:      include/uapi/linux/vmcore.h
9472 F:      kernel/crash_*.c
9473
9474 KEENE FM RADIO TRANSMITTER DRIVER
9475 M:      Hans Verkuil <[email protected]>
9476 L:      [email protected]
9477 S:      Maintained
9478 W:      https://linuxtv.org
9479 T:      git git://linuxtv.org/media_tree.git
9480 F:      drivers/media/radio/radio-keene*
9481
9482 KERNEL AUTOMOUNTER
9483 M:      Ian Kent <[email protected]>
9484 L:      [email protected]
9485 S:      Maintained
9486 F:      fs/autofs/
9487
9488 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9489 M:      Masahiro Yamada <[email protected]>
9490 M:      Michal Marek <[email protected]>
9491 L:      [email protected]
9492 S:      Maintained
9493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9494 F:      Documentation/kbuild/
9495 F:      Makefile
9496 F:      scripts/*vmlinux*
9497 F:      scripts/Kbuild*
9498 F:      scripts/Makefile*
9499 F:      scripts/basic/
9500 F:      scripts/mk*
9501 F:      scripts/mod/
9502 F:      scripts/package/
9503
9504 KERNEL JANITORS
9505 L:      [email protected]
9506 S:      Odd Fixes
9507 W:      http://kernelnewbies.org/KernelJanitors
9508
9509 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9510 M:      "J. Bruce Fields" <[email protected]>
9511 M:      Chuck Lever <[email protected]>
9512 L:      [email protected]
9513 S:      Supported
9514 W:      http://nfs.sourceforge.net/
9515 T:      git git://linux-nfs.org/~bfields/linux.git
9516 F:      fs/lockd/
9517 F:      fs/nfs_common/
9518 F:      fs/nfsd/
9519 F:      include/linux/lockd/
9520 F:      include/linux/sunrpc/
9521 F:      include/uapi/linux/nfsd/
9522 F:      include/uapi/linux/sunrpc/
9523 F:      net/sunrpc/
9524
9525 KERNEL SELFTEST FRAMEWORK
9526 M:      Shuah Khan <[email protected]>
9527 M:      Shuah Khan <[email protected]>
9528 L:      [email protected]
9529 S:      Maintained
9530 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9532 F:      Documentation/dev-tools/kselftest*
9533 F:      tools/testing/selftests/
9534
9535 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9536 M:      Brendan Higgins <[email protected]>
9537 L:      [email protected]
9538 L:      [email protected]
9539 S:      Maintained
9540 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9541 F:      Documentation/dev-tools/kunit/
9542 F:      include/kunit/
9543 F:      lib/kunit/
9544 F:      tools/testing/kunit/
9545
9546 KERNEL USERMODE HELPER
9547 M:      Luis Chamberlain <[email protected]>
9548 L:      [email protected]
9549 S:      Maintained
9550 F:      include/linux/umh.h
9551 F:      kernel/umh.c
9552
9553 KERNEL VIRTUAL MACHINE (KVM)
9554 M:      Paolo Bonzini <[email protected]>
9555 L:      [email protected]
9556 S:      Supported
9557 W:      http://www.linux-kvm.org
9558 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9559 F:      Documentation/virt/kvm/
9560 F:      include/asm-generic/kvm*
9561 F:      include/kvm/iodev.h
9562 F:      include/linux/kvm*
9563 F:      include/trace/events/kvm.h
9564 F:      include/uapi/asm-generic/kvm*
9565 F:      include/uapi/linux/kvm*
9566 F:      tools/kvm/
9567 F:      tools/testing/selftests/kvm/
9568 F:      virt/kvm/*
9569
9570 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9571 M:      Marc Zyngier <[email protected]>
9572 R:      James Morse <[email protected]>
9573 R:      Julien Thierry <[email protected]>
9574 R:      Suzuki K Poulose <[email protected]>
9575 L:      [email protected] (moderated for non-subscribers)
9576 L:      [email protected]
9577 S:      Maintained
9578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9579 F:      arch/arm64/include/asm/kvm*
9580 F:      arch/arm64/include/uapi/asm/kvm*
9581 F:      arch/arm64/kvm/
9582 F:      include/kvm/arm_*
9583
9584 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9585 M:      Huacai Chen <[email protected]>
9586 M:      Aleksandar Markovic <[email protected]>
9587 L:      [email protected]
9588 L:      [email protected]
9589 S:      Maintained
9590 F:      arch/mips/include/asm/kvm*
9591 F:      arch/mips/include/uapi/asm/kvm*
9592 F:      arch/mips/kvm/
9593
9594 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9595 M:      Paul Mackerras <[email protected]>
9596 L:      [email protected]
9597 S:      Supported
9598 W:      http://www.linux-kvm.org/
9599 T:      git git://github.com/agraf/linux-2.6.git
9600 F:      arch/powerpc/include/asm/kvm*
9601 F:      arch/powerpc/include/uapi/asm/kvm*
9602 F:      arch/powerpc/kernel/kvm*
9603 F:      arch/powerpc/kvm/
9604
9605 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9606 M:      Christian Borntraeger <[email protected]>
9607 M:      Janosch Frank <[email protected]>
9608 R:      David Hildenbrand <[email protected]>
9609 R:      Cornelia Huck <[email protected]>
9610 R:      Claudio Imbrenda <[email protected]>
9611 L:      [email protected]
9612 S:      Supported
9613 W:      http://www.ibm.com/developerworks/linux/linux390/
9614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9615 F:      Documentation/virt/kvm/s390*
9616 F:      arch/s390/include/asm/gmap.h
9617 F:      arch/s390/include/asm/kvm*
9618 F:      arch/s390/include/uapi/asm/kvm*
9619 F:      arch/s390/kvm/
9620 F:      arch/s390/mm/gmap.c
9621 F:      tools/testing/selftests/kvm/*/s390x/
9622 F:      tools/testing/selftests/kvm/s390x/
9623
9624 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9625 M:      Paolo Bonzini <[email protected]>
9626 R:      Sean Christopherson <[email protected]>
9627 R:      Vitaly Kuznetsov <[email protected]>
9628 R:      Wanpeng Li <[email protected]>
9629 R:      Jim Mattson <[email protected]>
9630 R:      Joerg Roedel <[email protected]>
9631 L:      [email protected]
9632 S:      Supported
9633 W:      http://www.linux-kvm.org
9634 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9635 F:      arch/x86/include/asm/kvm*
9636 F:      arch/x86/include/asm/pvclock-abi.h
9637 F:      arch/x86/include/asm/svm.h
9638 F:      arch/x86/include/asm/vmx*.h
9639 F:      arch/x86/include/uapi/asm/kvm*
9640 F:      arch/x86/include/uapi/asm/svm.h
9641 F:      arch/x86/include/uapi/asm/vmx.h
9642 F:      arch/x86/kernel/kvm.c
9643 F:      arch/x86/kernel/kvmclock.c
9644 F:      arch/x86/kvm/
9645 F:      arch/x86/kvm/*/
9646
9647 KERNFS
9648 M:      Greg Kroah-Hartman <[email protected]>
9649 M:      Tejun Heo <[email protected]>
9650 S:      Supported
9651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9652 F:      fs/kernfs/
9653 F:      include/linux/kernfs.h
9654
9655 KEXEC
9656 M:      Eric Biederman <[email protected]>
9657 L:      [email protected]
9658 S:      Maintained
9659 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9660 F:      include/linux/kexec.h
9661 F:      include/uapi/linux/kexec.h
9662 F:      kernel/kexec*
9663
9664 KEYS-ENCRYPTED
9665 M:      Mimi Zohar <[email protected]>
9666 L:      [email protected]
9667 L:      [email protected]
9668 S:      Supported
9669 F:      Documentation/security/keys/trusted-encrypted.rst
9670 F:      include/keys/encrypted-type.h
9671 F:      security/keys/encrypted-keys/
9672
9673 KEYS-TRUSTED
9674 M:      James Bottomley <[email protected]>
9675 M:      Jarkko Sakkinen <[email protected]>
9676 M:      Mimi Zohar <[email protected]>
9677 L:      [email protected]
9678 L:      [email protected]
9679 S:      Supported
9680 F:      Documentation/security/keys/trusted-encrypted.rst
9681 F:      include/keys/trusted-type.h
9682 F:      include/keys/trusted_tpm.h
9683 F:      security/keys/trusted-keys/
9684
9685 KEYS/KEYRINGS
9686 M:      David Howells <[email protected]>
9687 M:      Jarkko Sakkinen <[email protected]>
9688 L:      [email protected]
9689 S:      Maintained
9690 F:      Documentation/security/keys/core.rst
9691 F:      include/keys/
9692 F:      include/linux/key-type.h
9693 F:      include/linux/key.h
9694 F:      include/linux/keyctl.h
9695 F:      include/uapi/linux/keyctl.h
9696 F:      security/keys/
9697
9698 KFIFO
9699 M:      Stefani Seibold <[email protected]>
9700 S:      Maintained
9701 F:      include/linux/kfifo.h
9702 F:      lib/kfifo.c
9703 F:      samples/kfifo/
9704
9705 KGDB / KDB /debug_core
9706 M:      Jason Wessel <[email protected]>
9707 M:      Daniel Thompson <[email protected]>
9708 R:      Douglas Anderson <[email protected]>
9709 L:      [email protected]
9710 S:      Maintained
9711 W:      http://kgdb.wiki.kernel.org/
9712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9713 F:      Documentation/dev-tools/kgdb.rst
9714 F:      drivers/misc/kgdbts.c
9715 F:      drivers/tty/serial/kgdboc.c
9716 F:      include/linux/kdb.h
9717 F:      include/linux/kgdb.h
9718 F:      kernel/debug/
9719
9720 KHADAS MCU MFD DRIVER
9721 M:      Neil Armstrong <[email protected]>
9722 L:      [email protected]
9723 S:      Maintained
9724 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
9725 F:      drivers/mfd/khadas-mcu.c
9726 F:      include/linux/mfd/khadas-mcu.h
9727 F:      drivers/thermal/khadas_mcu_fan.c
9728
9729 KMEMLEAK
9730 M:      Catalin Marinas <[email protected]>
9731 S:      Maintained
9732 F:      Documentation/dev-tools/kmemleak.rst
9733 F:      include/linux/kmemleak.h
9734 F:      mm/kmemleak-test.c
9735 F:      mm/kmemleak.c
9736
9737 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9738 M:      Luis Chamberlain <[email protected]>
9739 L:      [email protected]
9740 S:      Maintained
9741 F:      include/linux/kmod.h
9742 F:      kernel/kmod.c
9743 F:      lib/test_kmod.c
9744 F:      tools/testing/selftests/kmod/
9745
9746 KPROBES
9747 M:      Naveen N. Rao <[email protected]>
9748 M:      Anil S Keshavamurthy <[email protected]>
9749 M:      "David S. Miller" <[email protected]>
9750 M:      Masami Hiramatsu <[email protected]>
9751 S:      Maintained
9752 F:      Documentation/trace/kprobes.rst
9753 F:      include/asm-generic/kprobes.h
9754 F:      include/linux/kprobes.h
9755 F:      kernel/kprobes.c
9756
9757 KS0108 LCD CONTROLLER DRIVER
9758 M:      Miguel Ojeda Sandonis <[email protected]>
9759 S:      Maintained
9760 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9761 F:      drivers/auxdisplay/ks0108.c
9762 F:      include/linux/ks0108.h
9763
9764 L3MDEV
9765 M:      David Ahern <[email protected]>
9766 L:      [email protected]
9767 S:      Maintained
9768 F:      include/net/l3mdev.h
9769 F:      net/l3mdev
9770
9771 L7 BPF FRAMEWORK
9772 M:      John Fastabend <[email protected]>
9773 M:      Daniel Borkmann <[email protected]>
9774 M:      Jakub Sitnicki <[email protected]>
9775 M:      Lorenz Bauer <[email protected]>
9776 L:      [email protected]
9777 L:      [email protected]
9778 S:      Maintained
9779 F:      include/linux/skmsg.h
9780 F:      net/core/skmsg.c
9781 F:      net/core/sock_map.c
9782 F:      net/ipv4/tcp_bpf.c
9783 F:      net/ipv4/udp_bpf.c
9784
9785 LANTIQ / INTEL Ethernet drivers
9786 M:      Hauke Mehrtens <[email protected]>
9787 L:      [email protected]
9788 S:      Maintained
9789 F:      drivers/net/dsa/lantiq_gswip.c
9790 F:      drivers/net/dsa/lantiq_pce.h
9791 F:      drivers/net/ethernet/lantiq_xrx200.c
9792 F:      net/dsa/tag_gswip.c
9793
9794 LANTIQ MIPS ARCHITECTURE
9795 M:      John Crispin <[email protected]>
9796 L:      [email protected]
9797 S:      Maintained
9798 F:      arch/mips/lantiq
9799 F:      drivers/soc/lantiq
9800
9801 LAPB module
9802 L:      [email protected]
9803 S:      Orphan
9804 F:      Documentation/networking/lapb-module.rst
9805 F:      include/*/lapb.h
9806 F:      net/lapb/
9807
9808 LASI 53c700 driver for PARISC
9809 M:      "James E.J. Bottomley" <[email protected]>
9810 L:      [email protected]
9811 S:      Maintained
9812 F:      Documentation/scsi/53c700.rst
9813 F:      drivers/scsi/53c700*
9814
9815 LEAKING_ADDRESSES
9816 M:      Tobin C. Harding <[email protected]>
9817 M:      Tycho Andersen <[email protected]>
9818 L:      [email protected]
9819 S:      Maintained
9820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9821 F:      scripts/leaking_addresses.pl
9822
9823 LED SUBSYSTEM
9824 M:      Pavel Machek <[email protected]>
9825 R:      Dan Murphy <[email protected]>
9826 L:      [email protected]
9827 S:      Maintained
9828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9829 F:      Documentation/devicetree/bindings/leds/
9830 F:      drivers/leds/
9831 F:      include/linux/leds.h
9832
9833 LEGACY EEPROM DRIVER
9834 M:      Jean Delvare <[email protected]>
9835 S:      Maintained
9836 F:      Documentation/misc-devices/eeprom.rst
9837 F:      drivers/misc/eeprom/eeprom.c
9838
9839 LEGO MINDSTORMS EV3
9840 R:      David Lechner <[email protected]>
9841 S:      Maintained
9842 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9843 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9844 F:      drivers/power/supply/lego_ev3_battery.c
9845
9846 LEGO USB Tower driver
9847 M:      Juergen Stuber <[email protected]>
9848 L:      [email protected]
9849 S:      Maintained
9850 W:      http://legousb.sourceforge.net/
9851 F:      drivers/usb/misc/legousbtower.c
9852
9853 LG LAPTOP EXTRAS
9854 M:      Matan Ziv-Av <[email protected]>
9855 L:      [email protected]
9856 S:      Maintained
9857 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9858 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9859 F:      drivers/platform/x86/lg-laptop.c
9860
9861 LG2160 MEDIA DRIVER
9862 M:      Michael Krufky <[email protected]>
9863 L:      [email protected]
9864 S:      Maintained
9865 W:      https://linuxtv.org
9866 W:      http://github.com/mkrufky
9867 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9868 T:      git git://linuxtv.org/mkrufky/tuners.git
9869 F:      drivers/media/dvb-frontends/lg2160.*
9870
9871 LGDT3305 MEDIA DRIVER
9872 M:      Michael Krufky <[email protected]>
9873 L:      [email protected]
9874 S:      Maintained
9875 W:      https://linuxtv.org
9876 W:      http://github.com/mkrufky
9877 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9878 T:      git git://linuxtv.org/mkrufky/tuners.git
9879 F:      drivers/media/dvb-frontends/lgdt3305.*
9880
9881 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9882 M:      Viresh Kumar <[email protected]>
9883 L:      [email protected]
9884 S:      Maintained
9885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9886 F:      drivers/ata/pata_arasan_cf.c
9887 F:      include/linux/pata_arasan_cf_data.h
9888
9889 LIBATA PATA DRIVERS
9890 M:      Bartlomiej Zolnierkiewicz <[email protected]>
9891 M:      Jens Axboe <[email protected]>
9892 L:      [email protected]
9893 S:      Maintained
9894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9895 F:      drivers/ata/ata_generic.c
9896 F:      drivers/ata/pata_*.c
9897
9898 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9899 M:      Linus Walleij <[email protected]>
9900 L:      [email protected]
9901 S:      Maintained
9902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9903 F:      drivers/ata/pata_ftide010.c
9904 F:      drivers/ata/sata_gemini.c
9905 F:      drivers/ata/sata_gemini.h
9906
9907 LIBATA SATA AHCI PLATFORM devices support
9908 M:      Hans de Goede <[email protected]>
9909 M:      Jens Axboe <[email protected]>
9910 L:      [email protected]
9911 S:      Maintained
9912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9913 F:      drivers/ata/ahci_platform.c
9914 F:      drivers/ata/libahci_platform.c
9915 F:      include/linux/ahci_platform.h
9916
9917 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9918 M:      Mikael Pettersson <[email protected]>
9919 L:      [email protected]
9920 S:      Maintained
9921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9922 F:      drivers/ata/sata_promise.*
9923
9924 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9925 M:      Jens Axboe <[email protected]>
9926 L:      [email protected]
9927 S:      Maintained
9928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9929 F:      Documentation/devicetree/bindings/ata/
9930 F:      drivers/ata/
9931 F:      include/linux/ata.h
9932 F:      include/linux/libata.h
9933
9934 LIBLOCKDEP
9935 M:      Sasha Levin <[email protected]>
9936 S:      Maintained
9937 F:      tools/lib/lockdep/
9938
9939 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9940 M:      Dan Williams <[email protected]>
9941 M:      Vishal Verma <[email protected]>
9942 M:      Dave Jiang <[email protected]>
9943 L:      [email protected]
9944 S:      Supported
9945 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9946 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9947 F:      drivers/nvdimm/blk.c
9948 F:      drivers/nvdimm/region_devs.c
9949
9950 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9951 M:      Vishal Verma <[email protected]>
9952 M:      Dan Williams <[email protected]>
9953 M:      Dave Jiang <[email protected]>
9954 L:      [email protected]
9955 S:      Supported
9956 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9957 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9958 F:      drivers/nvdimm/btt*
9959
9960 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9961 M:      Dan Williams <[email protected]>
9962 M:      Vishal Verma <[email protected]>
9963 M:      Dave Jiang <[email protected]>
9964 L:      [email protected]
9965 S:      Supported
9966 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9967 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9968 F:      drivers/nvdimm/pmem*
9969
9970 LIBNVDIMM: DEVICETREE BINDINGS
9971 M:      Oliver O'Halloran <[email protected]>
9972 L:      [email protected]
9973 S:      Supported
9974 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9975 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9976 F:      drivers/nvdimm/of_pmem.c
9977
9978 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9979 M:      Dan Williams <[email protected]>
9980 M:      Vishal Verma <[email protected]>
9981 M:      Dave Jiang <[email protected]>
9982 M:      Ira Weiny <[email protected]>
9983 L:      [email protected]
9984 S:      Supported
9985 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9986 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9988 F:      drivers/acpi/nfit/*
9989 F:      drivers/nvdimm/*
9990 F:      include/linux/libnvdimm.h
9991 F:      include/linux/nd.h
9992 F:      include/uapi/linux/ndctl.h
9993 F:      tools/testing/nvdimm/
9994
9995 LICENSES and SPDX stuff
9996 M:      Thomas Gleixner <[email protected]>
9997 M:      Greg Kroah-Hartman <[email protected]>
9998 L:      [email protected]
9999 S:      Maintained
10000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10001 F:      COPYING
10002 F:      Documentation/process/license-rules.rst
10003 F:      LICENSES/
10004 F:      scripts/spdxcheck-test.sh
10005 F:      scripts/spdxcheck.py
10006
10007 LIGHTNVM PLATFORM SUPPORT
10008 M:      Matias Bjorling <[email protected]>
10009 L:      [email protected]
10010 S:      Maintained
10011 W:      http://github/OpenChannelSSD
10012 F:      drivers/lightnvm/
10013 F:      include/linux/lightnvm.h
10014 F:      include/uapi/linux/lightnvm.h
10015
10016 LINEAR RANGES HELPERS
10017 M:      Mark Brown <[email protected]>
10018 R:      Matti Vaittinen <[email protected]>
10019 F:      lib/linear_ranges.c
10020 F:      lib/test_linear_ranges.c
10021 F:      include/linux/linear_range.h
10022
10023 LINUX FOR POWER MACINTOSH
10024 M:      Benjamin Herrenschmidt <[email protected]>
10025 L:      [email protected]
10026 S:      Odd Fixes
10027 F:      arch/powerpc/platforms/powermac/
10028 F:      drivers/macintosh/
10029
10030 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10031 M:      Michael Ellerman <[email protected]>
10032 R:      Benjamin Herrenschmidt <[email protected]>
10033 R:      Paul Mackerras <[email protected]>
10034 L:      [email protected]
10035 S:      Supported
10036 W:      https://github.com/linuxppc/wiki/wiki
10037 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10039 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10040 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10041 F:      Documentation/devicetree/bindings/powerpc/
10042 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10043 F:      Documentation/powerpc/
10044 F:      arch/powerpc/
10045 F:      drivers/*/*/*pasemi*
10046 F:      drivers/*/*pasemi*
10047 F:      drivers/char/tpm/tpm_ibmvtpm*
10048 F:      drivers/crypto/nx/
10049 F:      drivers/crypto/vmx/
10050 F:      drivers/i2c/busses/i2c-opal.c
10051 F:      drivers/net/ethernet/ibm/ibmveth.*
10052 F:      drivers/net/ethernet/ibm/ibmvnic.*
10053 F:      drivers/pci/hotplug/pnv_php.c
10054 F:      drivers/pci/hotplug/rpa*
10055 F:      drivers/rtc/rtc-opal.c
10056 F:      drivers/scsi/ibmvscsi/
10057 F:      drivers/tty/hvc/hvc_opal.c
10058 F:      drivers/watchdog/wdrtas.c
10059 F:      tools/testing/selftests/powerpc
10060 N:      /pmac
10061 N:      powermac
10062 N:      powernv
10063 N:      [^a-z0-9]ps3
10064 N:      pseries
10065
10066 LINUX FOR POWERPC EMBEDDED MPC5XXX
10067 M:      Anatolij Gustschin <[email protected]>
10068 L:      [email protected]
10069 S:      Odd Fixes
10070 F:      arch/powerpc/platforms/512x/
10071 F:      arch/powerpc/platforms/52xx/
10072
10073 LINUX FOR POWERPC EMBEDDED PPC4XX
10074 L:      [email protected]
10075 S:      Orphan
10076 F:      arch/powerpc/platforms/40x/
10077 F:      arch/powerpc/platforms/44x/
10078
10079 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10080 M:      Scott Wood <[email protected]>
10081 L:      [email protected]
10082 S:      Odd fixes
10083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10084 F:      Documentation/devicetree/bindings/powerpc/fsl/
10085 F:      arch/powerpc/platforms/83xx/
10086 F:      arch/powerpc/platforms/85xx/
10087
10088 LINUX FOR POWERPC EMBEDDED PPC8XX
10089 M:      Christophe Leroy <[email protected]>
10090 L:      [email protected]
10091 S:      Maintained
10092 F:      arch/powerpc/platforms/8xx/
10093
10094 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10095 M:      Kees Cook <[email protected]>
10096 S:      Maintained
10097 F:      drivers/misc/lkdtm/*
10098 F:      tools/testing/selftests/lkdtm/*
10099
10100 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10101 M:      Alan Stern <[email protected]>
10102 M:      Andrea Parri <[email protected]>
10103 M:      Will Deacon <[email protected]>
10104 M:      Peter Zijlstra <[email protected]>
10105 M:      Boqun Feng <[email protected]>
10106 M:      Nicholas Piggin <[email protected]>
10107 M:      David Howells <[email protected]>
10108 M:      Jade Alglave <[email protected]>
10109 M:      Luc Maranget <[email protected]>
10110 M:      "Paul E. McKenney" <[email protected]>
10111 R:      Akira Yokosawa <[email protected]>
10112 R:      Daniel Lustig <[email protected]>
10113 R:      Joel Fernandes <[email protected]>
10114 L:      [email protected]
10115 L:      [email protected]
10116 S:      Supported
10117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10118 F:      Documentation/atomic_bitops.txt
10119 F:      Documentation/atomic_t.txt
10120 F:      Documentation/core-api/atomic_ops.rst
10121 F:      Documentation/core-api/refcount-vs-atomic.rst
10122 F:      Documentation/litmus-tests/
10123 F:      Documentation/memory-barriers.txt
10124 F:      tools/memory-model/
10125
10126 LIS3LV02D ACCELEROMETER DRIVER
10127 M:      Eric Piel <[email protected]>
10128 S:      Maintained
10129 F:      Documentation/misc-devices/lis3lv02d.rst
10130 F:      drivers/misc/lis3lv02d/
10131 F:      drivers/platform/x86/hp_accel.c
10132
10133 LIST KUNIT TEST
10134 M:      David Gow <[email protected]>
10135 L:      [email protected]
10136 L:      [email protected]
10137 S:      Maintained
10138 F:      lib/list-test.c
10139
10140 LIVE PATCHING
10141 M:      Josh Poimboeuf <[email protected]>
10142 M:      Jiri Kosina <[email protected]>
10143 M:      Miroslav Benes <[email protected]>
10144 M:      Petr Mladek <[email protected]>
10145 R:      Joe Lawrence <[email protected]>
10146 L:      [email protected]
10147 S:      Maintained
10148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10149 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10150 F:      Documentation/livepatch/
10151 F:      arch/powerpc/include/asm/livepatch.h
10152 F:      arch/s390/include/asm/livepatch.h
10153 F:      arch/x86/include/asm/livepatch.h
10154 F:      include/linux/livepatch.h
10155 F:      kernel/livepatch/
10156 F:      lib/livepatch/
10157 F:      samples/livepatch/
10158 F:      tools/testing/selftests/livepatch/
10159
10160 LLC (802.2)
10161 L:      [email protected]
10162 S:      Odd fixes
10163 F:      include/linux/llc.h
10164 F:      include/net/llc*
10165 F:      include/uapi/linux/llc.h
10166 F:      net/llc/
10167
10168 LM73 HARDWARE MONITOR DRIVER
10169 M:      Guillaume Ligneul <[email protected]>
10170 L:      [email protected]
10171 S:      Maintained
10172 F:      drivers/hwmon/lm73.c
10173
10174 LM78 HARDWARE MONITOR DRIVER
10175 M:      Jean Delvare <[email protected]>
10176 L:      [email protected]
10177 S:      Maintained
10178 F:      Documentation/hwmon/lm78.rst
10179 F:      drivers/hwmon/lm78.c
10180
10181 LM83 HARDWARE MONITOR DRIVER
10182 M:      Jean Delvare <[email protected]>
10183 L:      [email protected]
10184 S:      Maintained
10185 F:      Documentation/hwmon/lm83.rst
10186 F:      drivers/hwmon/lm83.c
10187
10188 LM90 HARDWARE MONITOR DRIVER
10189 M:      Jean Delvare <[email protected]>
10190 L:      [email protected]
10191 S:      Maintained
10192 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10193 F:      Documentation/hwmon/lm90.rst
10194 F:      drivers/hwmon/lm90.c
10195 F:      include/dt-bindings/thermal/lm90.h
10196
10197 LM95234 HARDWARE MONITOR DRIVER
10198 M:      Guenter Roeck <[email protected]>
10199 L:      [email protected]
10200 S:      Maintained
10201 F:      Documentation/hwmon/lm95234.rst
10202 F:      drivers/hwmon/lm95234.c
10203
10204 LME2510 MEDIA DRIVER
10205 M:      Malcolm Priestley <[email protected]>
10206 L:      [email protected]
10207 S:      Maintained
10208 W:      https://linuxtv.org
10209 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10210 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10211
10212 LOADPIN SECURITY MODULE
10213 M:      Kees Cook <[email protected]>
10214 S:      Supported
10215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10216 F:      Documentation/admin-guide/LSM/LoadPin.rst
10217 F:      security/loadpin/
10218
10219 LOCKING PRIMITIVES
10220 M:      Peter Zijlstra <[email protected]>
10221 M:      Ingo Molnar <[email protected]>
10222 M:      Will Deacon <[email protected]>
10223 L:      [email protected]
10224 S:      Maintained
10225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10226 F:      Documentation/locking/
10227 F:      arch/*/include/asm/spinlock*.h
10228 F:      include/linux/lockdep.h
10229 F:      include/linux/mutex*.h
10230 F:      include/linux/rwlock*.h
10231 F:      include/linux/rwsem*.h
10232 F:      include/linux/seqlock.h
10233 F:      include/linux/spinlock*.h
10234 F:      kernel/locking/
10235 F:      lib/locking*.[ch]
10236 X:      kernel/locking/locktorture.c
10237
10238 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10239 M:      "Richard Russon (FlatCap)" <[email protected]>
10240 L:      [email protected]
10241 S:      Maintained
10242 W:      http://www.linux-ntfs.org/content/view/19/37/
10243 F:      Documentation/admin-guide/ldm.rst
10244 F:      block/partitions/ldm.*
10245
10246 LOGITECH HID GAMING KEYBOARDS
10247 M:      Hans de Goede <[email protected]>
10248 L:      [email protected]
10249 S:      Maintained
10250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10251 F:      drivers/hid/hid-lg-g15.c
10252
10253 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10254 M:      Sathya Prakash <[email protected]>
10255 M:      Sreekanth Reddy <[email protected]>
10256 M:      Suganath Prabu Subramani <[email protected]>
10257 L:      [email protected]
10258 L:      [email protected]
10259 S:      Supported
10260 W:      http://www.avagotech.com/support/
10261 F:      drivers/message/fusion/
10262 F:      drivers/scsi/mpt3sas/
10263
10264 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10265 M:      Matthew Wilcox <[email protected]>
10266 L:      [email protected]
10267 S:      Maintained
10268 F:      drivers/scsi/sym53c8xx_2/
10269
10270 LTC1660 DAC DRIVER
10271 M:      Marcus Folkesson <[email protected]>
10272 L:      [email protected]
10273 S:      Maintained
10274 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10275 F:      drivers/iio/dac/ltc1660.c
10276
10277 LTC2947 HARDWARE MONITOR DRIVER
10278 M:      Nuno Sá <[email protected]>
10279 L:      [email protected]
10280 S:      Supported
10281 W:      http://ez.analog.com/community/linux-device-drivers
10282 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10283 F:      drivers/hwmon/ltc2947-core.c
10284 F:      drivers/hwmon/ltc2947-i2c.c
10285 F:      drivers/hwmon/ltc2947-spi.c
10286 F:      drivers/hwmon/ltc2947.h
10287
10288 LTC2983 IIO TEMPERATURE DRIVER
10289 M:      Nuno Sá <[email protected]>
10290 L:      [email protected]
10291 S:      Supported
10292 W:      http://ez.analog.com/community/linux-device-drivers
10293 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10294 F:      drivers/iio/temperature/ltc2983.c
10295
10296 LTC4261 HARDWARE MONITOR DRIVER
10297 M:      Guenter Roeck <[email protected]>
10298 L:      [email protected]
10299 S:      Maintained
10300 F:      Documentation/hwmon/ltc4261.rst
10301 F:      drivers/hwmon/ltc4261.c
10302
10303 LTC4306 I2C MULTIPLEXER DRIVER
10304 M:      Michael Hennerich <[email protected]>
10305 L:      [email protected]
10306 S:      Supported
10307 W:      http://ez.analog.com/community/linux-device-drivers
10308 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10309 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10310
10311 LTP (Linux Test Project)
10312 M:      Mike Frysinger <[email protected]>
10313 M:      Cyril Hrubis <[email protected]>
10314 M:      Wanlong Gao <[email protected]>
10315 M:      Jan Stancek <[email protected]>
10316 M:      Stanislav Kholmanskikh <[email protected]>
10317 M:      Alexey Kodanev <[email protected]>
10318 L:      [email protected] (subscribers-only)
10319 S:      Maintained
10320 W:      http://linux-test-project.github.io/
10321 T:      git git://github.com/linux-test-project/ltp.git
10322
10323 LYNX PCS MODULE
10324 M:      Ioana Ciornei <[email protected]>
10325 L:      [email protected]
10326 S:      Supported
10327 F:      drivers/net/pcs/pcs-lynx.c
10328 F:      include/linux/pcs-lynx.h
10329
10330 M68K ARCHITECTURE
10331 M:      Geert Uytterhoeven <[email protected]>
10332 L:      [email protected]
10333 S:      Maintained
10334 W:      http://www.linux-m68k.org/
10335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10336 F:      arch/m68k/
10337 F:      drivers/zorro/
10338
10339 M68K ON APPLE MACINTOSH
10340 M:      Joshua Thompson <[email protected]>
10341 L:      [email protected]
10342 S:      Maintained
10343 W:      http://www.mac.linux-m68k.org/
10344 F:      arch/m68k/mac/
10345
10346 M68K ON HP9000/300
10347 M:      Philip Blundell <[email protected]>
10348 S:      Maintained
10349 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10350 F:      arch/m68k/hp300/
10351
10352 M88DS3103 MEDIA DRIVER
10353 M:      Antti Palosaari <[email protected]>
10354 L:      [email protected]
10355 S:      Maintained
10356 W:      https://linuxtv.org
10357 W:      http://palosaari.fi/linux/
10358 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10359 T:      git git://linuxtv.org/anttip/media_tree.git
10360 F:      drivers/media/dvb-frontends/m88ds3103*
10361
10362 M88RS2000 MEDIA DRIVER
10363 M:      Malcolm Priestley <[email protected]>
10364 L:      [email protected]
10365 S:      Maintained
10366 W:      https://linuxtv.org
10367 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10368 F:      drivers/media/dvb-frontends/m88rs2000*
10369
10370 MA901 MASTERKIT USB FM RADIO DRIVER
10371 M:      Alexey Klimov <[email protected]>
10372 L:      [email protected]
10373 S:      Maintained
10374 T:      git git://linuxtv.org/media_tree.git
10375 F:      drivers/media/radio/radio-ma901.c
10376
10377 MAC80211
10378 M:      Johannes Berg <[email protected]>
10379 L:      [email protected]
10380 S:      Maintained
10381 W:      https://wireless.wiki.kernel.org/
10382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10384 F:      Documentation/networking/mac80211-injection.rst
10385 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10386 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10387 F:      include/net/mac80211.h
10388 F:      net/mac80211/
10389
10390 MAILBOX API
10391 M:      Jassi Brar <[email protected]>
10392 L:      [email protected]
10393 S:      Maintained
10394 F:      drivers/mailbox/
10395 F:      include/linux/mailbox_client.h
10396 F:      include/linux/mailbox_controller.h
10397
10398 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10399 M:      Michael Kerrisk <[email protected]>
10400 L:      [email protected]
10401 S:      Maintained
10402 W:      http://www.kernel.org/doc/man-pages
10403
10404 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10405 M:      Rahul Bedarkar <[email protected]>
10406 L:      [email protected]
10407 S:      Maintained
10408 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10409
10410 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10411 M:      Andrew Lunn <[email protected]>
10412 M:      Vivien Didelot <[email protected]>
10413 L:      [email protected]
10414 S:      Maintained
10415 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10416 F:      Documentation/networking/devlink/mv88e6xxx.rst
10417 F:      drivers/net/dsa/mv88e6xxx/
10418 F:      include/linux/platform_data/mv88e6xxx.h
10419
10420 MARVELL ARMADA 3700 PHY DRIVERS
10421 M:      Miquel Raynal <[email protected]>
10422 S:      Maintained
10423 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10424 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10425 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10426 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10427
10428 MARVELL ARMADA DRM SUPPORT
10429 M:      Russell King <[email protected]>
10430 S:      Maintained
10431 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10432 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10433 F:      Documentation/devicetree/bindings/display/armada/
10434 F:      drivers/gpu/drm/armada/
10435 F:      include/uapi/drm/armada_drm.h
10436
10437 MARVELL CRYPTO DRIVER
10438 M:      Boris Brezillon <[email protected]>
10439 M:      Arnaud Ebalard <[email protected]>
10440 M:      Srujana Challa <[email protected]>
10441 L:      [email protected]
10442 S:      Maintained
10443 F:      drivers/crypto/marvell/
10444
10445 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10446 M:      Mirko Lindner <[email protected]>
10447 M:      Stephen Hemminger <[email protected]>
10448 L:      [email protected]
10449 S:      Maintained
10450 F:      drivers/net/ethernet/marvell/sk*
10451
10452 MARVELL LIBERTAS WIRELESS DRIVER
10453 L:      [email protected]
10454 S:      Orphan
10455 F:      drivers/net/wireless/marvell/libertas/
10456
10457 MARVELL MACCHIATOBIN SUPPORT
10458 M:      Russell King <[email protected]>
10459 L:      [email protected]
10460 S:      Maintained
10461 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10462
10463 MARVELL MV643XX ETHERNET DRIVER
10464 M:      Sebastian Hesselbarth <[email protected]>
10465 L:      [email protected]
10466 S:      Maintained
10467 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10468 F:      include/linux/mv643xx.h
10469
10470 MARVELL MV88X3310 PHY DRIVER
10471 M:      Russell King <[email protected]>
10472 L:      [email protected]
10473 S:      Maintained
10474 F:      drivers/net/phy/marvell10g.c
10475
10476 MARVELL MVEBU THERMAL DRIVER
10477 M:      Miquel Raynal <[email protected]>
10478 S:      Maintained
10479 F:      drivers/thermal/armada_thermal.c
10480
10481 MARVELL MVNETA ETHERNET DRIVER
10482 M:      Thomas Petazzoni <[email protected]>
10483 L:      [email protected]
10484 S:      Maintained
10485 F:      drivers/net/ethernet/marvell/mvneta.*
10486
10487 MARVELL MWIFIEX WIRELESS DRIVER
10488 M:      Amitkumar Karwar <[email protected]>
10489 M:      Ganapathi Bhat <[email protected]>
10490 M:      Xinming Hu <[email protected]>
10491 L:      [email protected]
10492 S:      Maintained
10493 F:      drivers/net/wireless/marvell/mwifiex/
10494
10495 MARVELL MWL8K WIRELESS DRIVER
10496 M:      Lennert Buytenhek <[email protected]>
10497 L:      [email protected]
10498 S:      Odd Fixes
10499 F:      drivers/net/wireless/marvell/mwl8k.c
10500
10501 MARVELL NAND CONTROLLER DRIVER
10502 M:      Miquel Raynal <[email protected]>
10503 L:      [email protected]
10504 S:      Maintained
10505 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10506 F:      drivers/mtd/nand/raw/marvell_nand.c
10507
10508 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10509 M:      Sunil Goutham <[email protected]>
10510 M:      Geetha sowjanya <[email protected]>
10511 M:      Subbaraya Sundeep <[email protected]>
10512 M:      hariprasad <[email protected]>
10513 L:      [email protected]
10514 S:      Supported
10515 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10516
10517 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10518 M:      Sunil Goutham <[email protected]>
10519 M:      Linu Cherian <[email protected]>
10520 M:      Geetha sowjanya <[email protected]>
10521 M:      Jerin Jacob <[email protected]>
10522 L:      [email protected]
10523 S:      Supported
10524 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10525 F:      drivers/net/ethernet/marvell/octeontx2/af/
10526
10527 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10528 M:      Nicolas Pitre <[email protected]>
10529 S:      Odd Fixes
10530 F:      drivers/mmc/host/mvsdio.*
10531
10532 MARVELL USB MDIO CONTROLLER DRIVER
10533 M:      Tobias Waldekranz <[email protected]>
10534 L:      [email protected]
10535 S:      Maintained
10536 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10537 F:      drivers/net/mdio/mdio-mvusb.c
10538
10539 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10540 M:      Hu Ziji <[email protected]>
10541 L:      [email protected]
10542 S:      Supported
10543 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10544 F:      drivers/mmc/host/sdhci-xenon*
10545
10546 MATROX FRAMEBUFFER DRIVER
10547 L:      [email protected]
10548 S:      Orphan
10549 F:      drivers/video/fbdev/matrox/matroxfb_*
10550 F:      include/uapi/linux/matroxfb.h
10551
10552 MAX16065 HARDWARE MONITOR DRIVER
10553 M:      Guenter Roeck <[email protected]>
10554 L:      [email protected]
10555 S:      Maintained
10556 F:      Documentation/hwmon/max16065.rst
10557 F:      drivers/hwmon/max16065.c
10558
10559 MAX2175 SDR TUNER DRIVER
10560 M:      Ramesh Shanmugasundaram <[email protected]>
10561 L:      [email protected]
10562 S:      Maintained
10563 T:      git git://linuxtv.org/media_tree.git
10564 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10565 F:      Documentation/userspace-api/media/drivers/max2175.rst
10566 F:      drivers/media/i2c/max2175*
10567 F:      include/uapi/linux/max2175.h
10568
10569 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10570 L:      [email protected]
10571 S:      Orphan
10572 F:      Documentation/hwmon/max6650.rst
10573 F:      drivers/hwmon/max6650.c
10574
10575 MAX6697 HARDWARE MONITOR DRIVER
10576 M:      Guenter Roeck <[email protected]>
10577 L:      [email protected]
10578 S:      Maintained
10579 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10580 F:      Documentation/hwmon/max6697.rst
10581 F:      drivers/hwmon/max6697.c
10582 F:      include/linux/platform_data/max6697.h
10583
10584 MAX9286 QUAD GMSL DESERIALIZER DRIVER
10585 M:      Jacopo Mondi <[email protected]>
10586 M:      Kieran Bingham <[email protected]>
10587 M:      Laurent Pinchart <[email protected]>
10588 M:      Niklas Söderlund <[email protected]>
10589 L:      [email protected]
10590 S:      Maintained
10591 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
10592 F:      drivers/media/i2c/max9286.c
10593
10594 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10595 M:      Peter Rosin <[email protected]>
10596 L:      [email protected] (moderated for non-subscribers)
10597 S:      Maintained
10598 F:      Documentation/devicetree/bindings/sound/max9860.txt
10599 F:      sound/soc/codecs/max9860.*
10600
10601 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10602 M:      Andreas Klinger <[email protected]>
10603 L:      [email protected]
10604 S:      Maintained
10605 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10606 F:      drivers/iio/proximity/mb1232.c
10607
10608 MAXIM MAX77650 PMIC MFD DRIVER
10609 M:      Bartosz Golaszewski <[email protected]>
10610 L:      [email protected]
10611 S:      Maintained
10612 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10613 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10614 F:      drivers/gpio/gpio-max77650.c
10615 F:      drivers/input/misc/max77650-onkey.c
10616 F:      drivers/leds/leds-max77650.c
10617 F:      drivers/mfd/max77650.c
10618 F:      drivers/power/supply/max77650-charger.c
10619 F:      drivers/regulator/max77650-regulator.c
10620 F:      include/linux/mfd/max77650.h
10621
10622 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10623 M:      Javier Martinez Canillas <[email protected]>
10624 L:      [email protected]
10625 S:      Supported
10626 F:      Documentation/devicetree/bindings/*/*max77802.txt
10627 F:      drivers/regulator/max77802-regulator.c
10628 F:      include/dt-bindings/*/*max77802.h
10629
10630 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10631 M:      Krzysztof Kozlowski <[email protected]>
10632 M:      Bartlomiej Zolnierkiewicz <[email protected]>
10633 L:      [email protected]
10634 S:      Supported
10635 F:      drivers/power/supply/max14577_charger.c
10636 F:      drivers/power/supply/max77693_charger.c
10637
10638 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10639 M:      Chanwoo Choi <[email protected]>
10640 M:      Krzysztof Kozlowski <[email protected]>
10641 M:      Bartlomiej Zolnierkiewicz <[email protected]>
10642 L:      [email protected]
10643 S:      Supported
10644 F:      Documentation/devicetree/bindings/*/max77686.txt
10645 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10646 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10647 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10648 F:      drivers/*/max14577*.c
10649 F:      drivers/*/max77686*.c
10650 F:      drivers/*/max77693*.c
10651 F:      drivers/clk/clk-max77686.c
10652 F:      drivers/extcon/extcon-max14577.c
10653 F:      drivers/extcon/extcon-max77693.c
10654 F:      drivers/rtc/rtc-max77686.c
10655 F:      include/linux/mfd/max14577*.h
10656 F:      include/linux/mfd/max77686*.h
10657 F:      include/linux/mfd/max77693*.h
10658
10659 MAXIRADIO FM RADIO RECEIVER DRIVER
10660 M:      Hans Verkuil <[email protected]>
10661 L:      [email protected]
10662 S:      Maintained
10663 W:      https://linuxtv.org
10664 T:      git git://linuxtv.org/media_tree.git
10665 F:      drivers/media/radio/radio-maxiradio*
10666
10667 MCAN MMIO DEVICE DRIVER
10668 M:      Dan Murphy <[email protected]>
10669 M:      Sriram Dash <[email protected]>
10670 L:      [email protected]
10671 S:      Maintained
10672 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10673 F:      drivers/net/can/m_can/m_can.c
10674 F:      drivers/net/can/m_can/m_can.h
10675 F:      drivers/net/can/m_can/m_can_platform.c
10676
10677 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10678 M:      Rishi Gupta <[email protected]>
10679 L:      [email protected]
10680 L:      [email protected]
10681 S:      Maintained
10682 F:      drivers/hid/hid-mcp2221.c
10683
10684 MCP251XFD SPI-CAN NETWORK DRIVER
10685 M:      Marc Kleine-Budde <[email protected]>
10686 M:      Manivannan Sadhasivam <[email protected]>
10687 R:      Thomas Kopp <[email protected]>
10688 L:      [email protected]
10689 S:      Maintained
10690 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
10691 F:      drivers/net/can/spi/mcp251xfd/
10692
10693 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10694 M:      Peter Rosin <[email protected]>
10695 L:      [email protected]
10696 S:      Maintained
10697 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10698 F:      drivers/iio/potentiometer/mcp4018.c
10699 F:      drivers/iio/potentiometer/mcp4531.c
10700
10701 MCR20A IEEE-802.15.4 RADIO DRIVER
10702 M:      Xue Liu <[email protected]>
10703 L:      [email protected]
10704 S:      Maintained
10705 W:      https://github.com/xueliu/mcr20a-linux
10706 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10707 F:      drivers/net/ieee802154/mcr20a.c
10708 F:      drivers/net/ieee802154/mcr20a.h
10709
10710 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10711 M:      William Breathitt Gray <[email protected]>
10712 L:      [email protected]
10713 S:      Maintained
10714 F:      drivers/iio/dac/cio-dac.c
10715
10716 MEDIA CONTROLLER FRAMEWORK
10717 M:      Sakari Ailus <[email protected]>
10718 M:      Laurent Pinchart <[email protected]>
10719 L:      [email protected]
10720 S:      Supported
10721 W:      https://www.linuxtv.org
10722 T:      git git://linuxtv.org/media_tree.git
10723 F:      drivers/media/mc/
10724 F:      include/media/media-*.h
10725 F:      include/uapi/linux/media.h
10726
10727 MEDIA DRIVER FOR FREESCALE IMX PXP
10728 M:      Philipp Zabel <[email protected]>
10729 L:      [email protected]
10730 S:      Maintained
10731 T:      git git://linuxtv.org/media_tree.git
10732 F:      drivers/media/platform/imx-pxp.[ch]
10733
10734 MEDIA DRIVERS FOR ASCOT2E
10735 M:      Sergey Kozlov <[email protected]>
10736 M:      Abylay Ospan <[email protected]>
10737 L:      [email protected]
10738 S:      Supported
10739 W:      https://linuxtv.org
10740 W:      http://netup.tv/
10741 T:      git git://linuxtv.org/media_tree.git
10742 F:      drivers/media/dvb-frontends/ascot2e*
10743
10744 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10745 M:      Jasmin Jessich <[email protected]>
10746 L:      [email protected]
10747 S:      Maintained
10748 W:      https://linuxtv.org
10749 T:      git git://linuxtv.org/media_tree.git
10750 F:      drivers/media/dvb-frontends/cxd2099*
10751
10752 MEDIA DRIVERS FOR CXD2841ER
10753 M:      Sergey Kozlov <[email protected]>
10754 M:      Abylay Ospan <[email protected]>
10755 L:      [email protected]
10756 S:      Supported
10757 W:      https://linuxtv.org
10758 W:      http://netup.tv/
10759 T:      git git://linuxtv.org/media_tree.git
10760 F:      drivers/media/dvb-frontends/cxd2841er*
10761
10762 MEDIA DRIVERS FOR CXD2880
10763 M:      Yasunari Takiguchi <[email protected]>
10764 L:      [email protected]
10765 S:      Supported
10766 W:      http://linuxtv.org/
10767 T:      git git://linuxtv.org/media_tree.git
10768 F:      drivers/media/dvb-frontends/cxd2880/*
10769 F:      drivers/media/spi/cxd2880*
10770
10771 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10772 L:      [email protected]
10773 S:      Orphan
10774 W:      https://linuxtv.org
10775 T:      git git://linuxtv.org/media_tree.git
10776 F:      drivers/media/pci/ddbridge/*
10777
10778 MEDIA DRIVERS FOR FREESCALE IMX
10779 M:      Steve Longerbeam <[email protected]>
10780 M:      Philipp Zabel <[email protected]>
10781 L:      [email protected]
10782 S:      Maintained
10783 T:      git git://linuxtv.org/media_tree.git
10784 F:      Documentation/admin-guide/media/imx.rst
10785 F:      Documentation/devicetree/bindings/media/imx.txt
10786 F:      drivers/staging/media/imx/
10787 F:      include/linux/imx-media.h
10788 F:      include/media/imx.h
10789
10790 MEDIA DRIVERS FOR FREESCALE IMX7
10791 M:      Rui Miguel Silva <[email protected]>
10792 L:      [email protected]
10793 S:      Maintained
10794 T:      git git://linuxtv.org/media_tree.git
10795 F:      Documentation/admin-guide/media/imx7.rst
10796 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10797 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10798 F:      drivers/staging/media/imx/imx7-media-csi.c
10799 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10800
10801 MEDIA DRIVERS FOR HELENE
10802 M:      Abylay Ospan <[email protected]>
10803 L:      [email protected]
10804 S:      Supported
10805 W:      https://linuxtv.org
10806 W:      http://netup.tv/
10807 T:      git git://linuxtv.org/media_tree.git
10808 F:      drivers/media/dvb-frontends/helene*
10809
10810 MEDIA DRIVERS FOR HORUS3A
10811 M:      Sergey Kozlov <[email protected]>
10812 M:      Abylay Ospan <[email protected]>
10813 L:      [email protected]
10814 S:      Supported
10815 W:      https://linuxtv.org
10816 W:      http://netup.tv/
10817 T:      git git://linuxtv.org/media_tree.git
10818 F:      drivers/media/dvb-frontends/horus3a*
10819
10820 MEDIA DRIVERS FOR LNBH25
10821 M:      Sergey Kozlov <[email protected]>
10822 M:      Abylay Ospan <[email protected]>
10823 L:      [email protected]
10824 S:      Supported
10825 W:      https://linuxtv.org
10826 W:      http://netup.tv/
10827 T:      git git://linuxtv.org/media_tree.git
10828 F:      drivers/media/dvb-frontends/lnbh25*
10829
10830 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10831 L:      [email protected]
10832 S:      Orphan
10833 W:      https://linuxtv.org
10834 T:      git git://linuxtv.org/media_tree.git
10835 F:      drivers/media/dvb-frontends/mxl5xx*
10836
10837 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10838 M:      Sergey Kozlov <[email protected]>
10839 M:      Abylay Ospan <[email protected]>
10840 L:      [email protected]
10841 S:      Supported
10842 W:      https://linuxtv.org
10843 W:      http://netup.tv/
10844 T:      git git://linuxtv.org/media_tree.git
10845 F:      drivers/media/pci/netup_unidvb/*
10846
10847 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10848 M:      Dmitry Osipenko <[email protected]>
10849 L:      [email protected]
10850 L:      [email protected]
10851 S:      Maintained
10852 T:      git git://linuxtv.org/media_tree.git
10853 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10854 F:      drivers/staging/media/tegra-vde/
10855
10856 MEDIA DRIVERS FOR RENESAS - CEU
10857 M:      Jacopo Mondi <[email protected]>
10858 L:      [email protected]
10859 L:      [email protected]
10860 S:      Supported
10861 T:      git git://linuxtv.org/media_tree.git
10862 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10863 F:      drivers/media/platform/renesas-ceu.c
10864 F:      include/media/drv-intf/renesas-ceu.h
10865
10866 MEDIA DRIVERS FOR RENESAS - DRIF
10867 M:      Ramesh Shanmugasundaram <[email protected]>
10868 L:      [email protected]
10869 L:      [email protected]
10870 S:      Supported
10871 T:      git git://linuxtv.org/media_tree.git
10872 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10873 F:      drivers/media/platform/rcar_drif.c
10874
10875 MEDIA DRIVERS FOR RENESAS - FCP
10876 M:      Laurent Pinchart <[email protected]>
10877 L:      [email protected]
10878 L:      [email protected]
10879 S:      Supported
10880 T:      git git://linuxtv.org/media_tree.git
10881 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
10882 F:      drivers/media/platform/rcar-fcp.c
10883 F:      include/media/rcar-fcp.h
10884
10885 MEDIA DRIVERS FOR RENESAS - FDP1
10886 M:      Kieran Bingham <[email protected]>
10887 L:      [email protected]
10888 L:      [email protected]
10889 S:      Supported
10890 T:      git git://linuxtv.org/media_tree.git
10891 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
10892 F:      drivers/media/platform/rcar_fdp1.c
10893
10894 MEDIA DRIVERS FOR RENESAS - VIN
10895 M:      Niklas Söderlund <[email protected]>
10896 L:      [email protected]
10897 L:      [email protected]
10898 S:      Supported
10899 T:      git git://linuxtv.org/media_tree.git
10900 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10901 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10902 F:      drivers/media/platform/rcar-vin/
10903
10904 MEDIA DRIVERS FOR RENESAS - VSP1
10905 M:      Laurent Pinchart <[email protected]>
10906 M:      Kieran Bingham <[email protected]>
10907 L:      [email protected]
10908 L:      [email protected]
10909 S:      Supported
10910 T:      git git://linuxtv.org/media_tree.git
10911 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
10912 F:      drivers/media/platform/vsp1/
10913
10914 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10915 L:      [email protected]
10916 S:      Orphan
10917 W:      https://linuxtv.org
10918 T:      git git://linuxtv.org/media_tree.git
10919 F:      drivers/media/dvb-frontends/stv0910*
10920
10921 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10922 L:      [email protected]
10923 S:      Orphan
10924 W:      https://linuxtv.org
10925 T:      git git://linuxtv.org/media_tree.git
10926 F:      drivers/media/dvb-frontends/stv6111*
10927
10928 MEDIA DRIVERS FOR STM32 - DCMI
10929 M:      Hugues Fruchet <[email protected]>
10930 L:      [email protected]
10931 S:      Supported
10932 T:      git git://linuxtv.org/media_tree.git
10933 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10934 F:      drivers/media/platform/stm32/stm32-dcmi.c
10935
10936 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10937 M:      Mauro Carvalho Chehab <[email protected]>
10938 L:      [email protected]
10939 S:      Maintained
10940 W:      https://linuxtv.org
10941 Q:      http://patchwork.kernel.org/project/linux-media/list/
10942 T:      git git://linuxtv.org/media_tree.git
10943 F:      Documentation/admin-guide/media/
10944 F:      Documentation/devicetree/bindings/media/
10945 F:      Documentation/driver-api/media/
10946 F:      Documentation/userspace-api/media/
10947 F:      drivers/media/
10948 F:      drivers/staging/media/
10949 F:      include/linux/platform_data/media/
10950 F:      include/media/
10951 F:      include/uapi/linux/dvb/
10952 F:      include/uapi/linux/ivtv*
10953 F:      include/uapi/linux/media.h
10954 F:      include/uapi/linux/meye.h
10955 F:      include/uapi/linux/uvcvideo.h
10956 F:      include/uapi/linux/v4l2-*
10957 F:      include/uapi/linux/videodev2.h
10958
10959 MEDIATEK BLUETOOTH DRIVER
10960 M:      Sean Wang <[email protected]>
10961 L:      [email protected]
10962 L:      [email protected] (moderated for non-subscribers)
10963 S:      Maintained
10964 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10965 F:      drivers/bluetooth/btmtkuart.c
10966
10967 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10968 M:      Sean Wang <[email protected]>
10969 L:      [email protected]
10970 S:      Maintained
10971 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10972 F:      drivers/power/reset/mt6323-poweroff.c
10973
10974 MEDIATEK CIR DRIVER
10975 M:      Sean Wang <[email protected]>
10976 S:      Maintained
10977 F:      drivers/media/rc/mtk-cir.c
10978
10979 MEDIATEK DMA DRIVER
10980 M:      Sean Wang <[email protected]>
10981 L:      [email protected]
10982 L:      [email protected] (moderated for non-subscribers)
10983 L:      [email protected] (moderated for non-subscribers)
10984 S:      Maintained
10985 F:      Documentation/devicetree/bindings/dma/mtk-*
10986 F:      drivers/dma/mediatek/
10987
10988 MEDIATEK ETHERNET DRIVER
10989 M:      Felix Fietkau <[email protected]>
10990 M:      John Crispin <[email protected]>
10991 M:      Sean Wang <[email protected]>
10992 M:      Mark Lee <[email protected]>
10993 L:      [email protected]
10994 S:      Maintained
10995 F:      drivers/net/ethernet/mediatek/
10996
10997 MEDIATEK I2C CONTROLLER DRIVER
10998 M:      Qii Wang <[email protected]>
10999 L:      [email protected]
11000 S:      Maintained
11001 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11002 F:      drivers/i2c/busses/i2c-mt65xx.c
11003
11004 MEDIATEK JPEG DRIVER
11005 M:      Rick Chang <[email protected]>
11006 M:      Bin Liu <[email protected]>
11007 S:      Supported
11008 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11009 F:      drivers/media/platform/mtk-jpeg/
11010
11011 MEDIATEK MDP DRIVER
11012 M:      Minghsiu Tsai <[email protected]>
11013 M:      Houlong Wei <[email protected]>
11014 M:      Andrew-CT Chen <[email protected]>
11015 S:      Supported
11016 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11017 F:      drivers/media/platform/mtk-mdp/
11018 F:      drivers/media/platform/mtk-vpu/
11019
11020 MEDIATEK MEDIA DRIVER
11021 M:      Tiffany Lin <[email protected]>
11022 M:      Andrew-CT Chen <[email protected]>
11023 S:      Supported
11024 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11025 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11026 F:      drivers/media/platform/mtk-vcodec/
11027 F:      drivers/media/platform/mtk-vpu/
11028
11029 MEDIATEK MMC/SD/SDIO DRIVER
11030 M:      Chaotian Jing <[email protected]>
11031 S:      Maintained
11032 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
11033 F:      drivers/mmc/host/mtk-sd.c
11034
11035 MEDIATEK MT76 WIRELESS LAN DRIVER
11036 M:      Felix Fietkau <[email protected]>
11037 M:      Lorenzo Bianconi <[email protected]>
11038 R:      Ryder Lee <[email protected]>
11039 L:      [email protected]
11040 S:      Maintained
11041 F:      drivers/net/wireless/mediatek/mt76/
11042
11043 MEDIATEK MT7601U WIRELESS LAN DRIVER
11044 M:      Jakub Kicinski <[email protected]>
11045 L:      [email protected]
11046 S:      Maintained
11047 F:      drivers/net/wireless/mediatek/mt7601u/
11048
11049 MEDIATEK MT7621/28/88 I2C DRIVER
11050 M:      Stefan Roese <[email protected]>
11051 L:      [email protected]
11052 S:      Maintained
11053 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11054 F:      drivers/i2c/busses/i2c-mt7621.c
11055
11056 MEDIATEK NAND CONTROLLER DRIVER
11057 L:      [email protected]
11058 S:      Orphan
11059 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11060 F:      drivers/mtd/nand/raw/mtk_*
11061
11062 MEDIATEK PMIC LED DRIVER
11063 M:      Sean Wang <[email protected]>
11064 S:      Maintained
11065 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11066 F:      drivers/leds/leds-mt6323.c
11067
11068 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11069 M:      Sean Wang <[email protected]>
11070 S:      Maintained
11071 F:      drivers/char/hw_random/mtk-rng.c
11072
11073 MEDIATEK SWITCH DRIVER
11074 M:      Sean Wang <[email protected]>
11075 M:      Landen Chao <[email protected]>
11076 L:      [email protected]
11077 S:      Maintained
11078 F:      drivers/net/dsa/mt7530.*
11079 F:      net/dsa/tag_mtk.c
11080
11081 MEDIATEK USB3 DRD IP DRIVER
11082 M:      Chunfeng Yun <[email protected]>
11083 L:      [email protected] (moderated for non-subscribers)
11084 L:      [email protected] (moderated for non-subscribers)
11085 L:      [email protected] (moderated for non-subscribers)
11086 S:      Maintained
11087 F:      drivers/usb/mtu3/
11088
11089 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11090 M:      Peter Senna Tschudin <[email protected]>
11091 M:      Martin Donnelly <[email protected]>
11092 M:      Martyn Welch <[email protected]>
11093 S:      Maintained
11094 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11095 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11096
11097 MEGARAID SCSI/SAS DRIVERS
11098 M:      Kashyap Desai <[email protected]>
11099 M:      Sumit Saxena <[email protected]>
11100 M:      Shivasharan S <[email protected]>
11101 L:      [email protected]
11102 L:      [email protected]
11103 S:      Maintained
11104 W:      http://www.avagotech.com/support/
11105 F:      Documentation/scsi/megaraid.rst
11106 F:      drivers/scsi/megaraid.*
11107 F:      drivers/scsi/megaraid/
11108
11109 MELEXIS MLX90614 DRIVER
11110 M:      Crt Mori <[email protected]>
11111 L:      [email protected]
11112 S:      Supported
11113 W:      http://www.melexis.com
11114 F:      drivers/iio/temperature/mlx90614.c
11115
11116 MELEXIS MLX90632 DRIVER
11117 M:      Crt Mori <[email protected]>
11118 L:      [email protected]
11119 S:      Supported
11120 W:      http://www.melexis.com
11121 F:      drivers/iio/temperature/mlx90632.c
11122
11123 MELFAS MIP4 TOUCHSCREEN DRIVER
11124 M:      Sangwon Jee <[email protected]>
11125 S:      Supported
11126 W:      http://www.melfas.com
11127 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11128 F:      drivers/input/touchscreen/melfas_mip4.c
11129
11130 MELLANOX ETHERNET DRIVER (mlx4_en)
11131 M:      Tariq Toukan <[email protected]>
11132 L:      [email protected]
11133 S:      Supported
11134 W:      http://www.mellanox.com
11135 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11136 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11137
11138 MELLANOX ETHERNET DRIVER (mlx5e)
11139 M:      Saeed Mahameed <[email protected]>
11140 L:      [email protected]
11141 S:      Supported
11142 W:      http://www.mellanox.com
11143 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11144 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11145
11146 MELLANOX ETHERNET INNOVA DRIVERS
11147 R:      Boris Pismenny <[email protected]>
11148 L:      [email protected]
11149 S:      Supported
11150 W:      http://www.mellanox.com
11151 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11152 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11153 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11154 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11155 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11156
11157 MELLANOX ETHERNET SWITCH DRIVERS
11158 M:      Jiri Pirko <[email protected]>
11159 M:      Ido Schimmel <[email protected]>
11160 L:      [email protected]
11161 S:      Supported
11162 W:      http://www.mellanox.com
11163 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11164 F:      drivers/net/ethernet/mellanox/mlxsw/
11165 F:      tools/testing/selftests/drivers/net/mlxsw/
11166
11167 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11168 M:      [email protected]
11169 L:      [email protected]
11170 S:      Supported
11171 W:      http://www.mellanox.com
11172 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11173 F:      drivers/net/ethernet/mellanox/mlxfw/
11174
11175 MELLANOX HARDWARE PLATFORM SUPPORT
11176 M:      Andy Shevchenko <[email protected]>
11177 M:      Darren Hart <[email protected]>
11178 M:      Vadim Pasternak <[email protected]>
11179 L:      [email protected]
11180 S:      Supported
11181 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11182 F:      drivers/platform/mellanox/
11183 F:      include/linux/platform_data/mlxreg.h
11184
11185 MELLANOX MLX4 core VPI driver
11186 M:      Tariq Toukan <[email protected]>
11187 L:      [email protected]
11188 L:      [email protected]
11189 S:      Supported
11190 W:      http://www.mellanox.com
11191 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11192 F:      drivers/net/ethernet/mellanox/mlx4/
11193 F:      include/linux/mlx4/
11194
11195 MELLANOX MLX4 IB driver
11196 M:      Yishai Hadas <[email protected]>
11197 L:      [email protected]
11198 S:      Supported
11199 W:      http://www.mellanox.com
11200 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11201 F:      drivers/infiniband/hw/mlx4/
11202 F:      include/linux/mlx4/
11203 F:      include/uapi/rdma/mlx4-abi.h
11204
11205 MELLANOX MLX5 core VPI driver
11206 M:      Saeed Mahameed <[email protected]>
11207 M:      Leon Romanovsky <[email protected]>
11208 L:      [email protected]
11209 L:      [email protected]
11210 S:      Supported
11211 W:      http://www.mellanox.com
11212 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11213 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11214 F:      drivers/net/ethernet/mellanox/mlx5/core/
11215 F:      include/linux/mlx5/
11216
11217 MELLANOX MLX5 IB driver
11218 M:      Leon Romanovsky <[email protected]>
11219 L:      [email protected]
11220 S:      Supported
11221 W:      http://www.mellanox.com
11222 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11223 F:      drivers/infiniband/hw/mlx5/
11224 F:      include/linux/mlx5/
11225 F:      include/uapi/rdma/mlx5-abi.h
11226
11227 MELLANOX MLXCPLD I2C AND MUX DRIVER
11228 M:      Vadim Pasternak <[email protected]>
11229 M:      Michael Shych <[email protected]>
11230 L:      [email protected]
11231 S:      Supported
11232 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11233 F:      drivers/i2c/busses/i2c-mlxcpld.c
11234 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11235
11236 MELLANOX MLXCPLD LED DRIVER
11237 M:      Vadim Pasternak <[email protected]>
11238 L:      [email protected]
11239 S:      Supported
11240 F:      Documentation/leds/leds-mlxcpld.rst
11241 F:      drivers/leds/leds-mlxcpld.c
11242 F:      drivers/leds/leds-mlxreg.c
11243
11244 MELLANOX PLATFORM DRIVER
11245 M:      Vadim Pasternak <[email protected]>
11246 L:      [email protected]
11247 S:      Supported
11248 F:      drivers/platform/x86/mlx-platform.c
11249
11250 MEMBARRIER SUPPORT
11251 M:      Mathieu Desnoyers <[email protected]>
11252 M:      "Paul E. McKenney" <[email protected]>
11253 L:      [email protected]
11254 S:      Supported
11255 F:      arch/powerpc/include/asm/membarrier.h
11256 F:      include/uapi/linux/membarrier.h
11257 F:      kernel/sched/membarrier.c
11258
11259 MEMBLOCK
11260 M:      Mike Rapoport <[email protected]>
11261 L:      [email protected]
11262 S:      Maintained
11263 F:      Documentation/core-api/boot-time-mm.rst
11264 F:      include/linux/memblock.h
11265 F:      mm/memblock.c
11266
11267 MEMORY CONTROLLER DRIVERS
11268 M:      Krzysztof Kozlowski <[email protected]>
11269 L:      [email protected]
11270 S:      Maintained
11271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11272 F:      Documentation/devicetree/bindings/memory-controllers/
11273 F:      drivers/memory/
11274
11275 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11276 M:      Dmitry Osipenko <[email protected]>
11277 L:      [email protected]
11278 L:      [email protected]
11279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11280 S:      Maintained
11281 F:      drivers/devfreq/tegra20-devfreq.c
11282 F:      drivers/devfreq/tegra30-devfreq.c
11283
11284 MEMORY MANAGEMENT
11285 M:      Andrew Morton <[email protected]>
11286 L:      [email protected]
11287 S:      Maintained
11288 W:      http://www.linux-mm.org
11289 T:      quilt https://ozlabs.org/~akpm/mmotm/
11290 T:      quilt https://ozlabs.org/~akpm/mmots/
11291 T:      git git://github.com/hnaz/linux-mm.git
11292 F:      include/linux/gfp.h
11293 F:      include/linux/memory_hotplug.h
11294 F:      include/linux/mm.h
11295 F:      include/linux/mmzone.h
11296 F:      include/linux/vmalloc.h
11297 F:      mm/
11298
11299 MEMORY TECHNOLOGY DEVICES (MTD)
11300 M:      Miquel Raynal <[email protected]>
11301 M:      Richard Weinberger <[email protected]>
11302 M:      Vignesh Raghavendra <[email protected]>
11303 L:      [email protected]
11304 S:      Maintained
11305 W:      http://www.linux-mtd.infradead.org/
11306 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11307 C:      irc://irc.oftc.net/mtd
11308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11310 F:      Documentation/devicetree/bindings/mtd/
11311 F:      drivers/mtd/
11312 F:      include/linux/mtd/
11313 F:      include/uapi/mtd/
11314
11315 MEN A21 WATCHDOG DRIVER
11316 M:      Johannes Thumshirn <[email protected]>
11317 L:      [email protected]
11318 S:      Maintained
11319 F:      drivers/watchdog/mena21_wdt.c
11320
11321 MEN CHAMELEON BUS (mcb)
11322 M:      Johannes Thumshirn <[email protected]>
11323 S:      Maintained
11324 F:      Documentation/driver-api/men-chameleon-bus.rst
11325 F:      drivers/mcb/
11326 F:      include/linux/mcb.h
11327
11328 MEN F21BMC (Board Management Controller)
11329 M:      Andreas Werner <[email protected]>
11330 S:      Supported
11331 F:      Documentation/hwmon/menf21bmc.rst
11332 F:      drivers/hwmon/menf21bmc_hwmon.c
11333 F:      drivers/leds/leds-menf21bmc.c
11334 F:      drivers/mfd/menf21bmc.c
11335 F:      drivers/watchdog/menf21bmc_wdt.c
11336
11337 MEN Z069 WATCHDOG DRIVER
11338 M:      Johannes Thumshirn <[email protected]>
11339 L:      [email protected]
11340 S:      Maintained
11341 F:      drivers/watchdog/menz69_wdt.c
11342
11343 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11344 M:      Neil Armstrong <[email protected]>
11345 L:      [email protected]
11346 L:      [email protected]
11347 S:      Supported
11348 W:      http://linux-meson.com/
11349 T:      git git://linuxtv.org/media_tree.git
11350 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11351 F:      drivers/media/platform/meson/ao-cec-g12a.c
11352 F:      drivers/media/platform/meson/ao-cec.c
11353
11354 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11355 M:      Liang Yang <[email protected]>
11356 L:      [email protected]
11357 S:      Maintained
11358 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11359 F:      drivers/mtd/nand/raw/meson_*
11360
11361 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11362 M:      Maxime Jourdan <[email protected]>
11363 M:      Neil Armstrong <[email protected]>
11364 L:      [email protected]
11365 L:      [email protected]
11366 S:      Supported
11367 T:      git git://linuxtv.org/media_tree.git
11368 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11369 F:      drivers/staging/media/meson/vdec/
11370
11371 METHODE UDPU SUPPORT
11372 M:      Vladimir Vid <[email protected]>
11373 S:      Maintained
11374 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11375
11376 MHI BUS
11377 M:      Manivannan Sadhasivam <[email protected]>
11378 M:      Hemant Kumar <[email protected]>
11379 L:      [email protected]
11380 S:      Maintained
11381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11382 F:      Documentation/mhi/
11383 F:      drivers/bus/mhi/
11384 F:      include/linux/mhi.h
11385
11386 MICROBLAZE ARCHITECTURE
11387 M:      Michal Simek <[email protected]>
11388 S:      Supported
11389 W:      http://www.monstr.eu/fdt/
11390 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11391 F:      arch/microblaze/
11392
11393 MICROCHIP AT91 DMA DRIVERS
11394 M:      Ludovic Desroches <[email protected]>
11395 M:      Tudor Ambarus <[email protected]>
11396 L:      [email protected] (moderated for non-subscribers)
11397 L:      [email protected]
11398 S:      Supported
11399 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11400 F:      drivers/dma/at_hdmac.c
11401 F:      drivers/dma/at_hdmac_regs.h
11402 F:      drivers/dma/at_xdmac.c
11403 F:      include/dt-bindings/dma/at91.h
11404 F:      include/linux/platform_data/dma-atmel.h
11405
11406 MICROCHIP AT91 SERIAL DRIVER
11407 M:      Richard Genoud <[email protected]>
11408 S:      Maintained
11409 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11410 F:      drivers/tty/serial/atmel_serial.c
11411 F:      drivers/tty/serial/atmel_serial.h
11412
11413 MICROCHIP AT91 USART MFD DRIVER
11414 M:      Radu Pirea <[email protected]>
11415 L:      [email protected]
11416 S:      Supported
11417 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11418 F:      drivers/mfd/at91-usart.c
11419 F:      include/dt-bindings/mfd/at91-usart.h
11420
11421 MICROCHIP AT91 USART SPI DRIVER
11422 M:      Radu Pirea <[email protected]>
11423 L:      [email protected]
11424 S:      Supported
11425 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11426 F:      drivers/spi/spi-at91-usart.c
11427
11428 MICROCHIP AUDIO ASOC DRIVERS
11429 M:      Codrin Ciubotariu <[email protected]>
11430 L:      [email protected] (moderated for non-subscribers)
11431 S:      Supported
11432 F:      sound/soc/atmel
11433
11434 MICROCHIP ECC DRIVER
11435 M:      Tudor Ambarus <[email protected]>
11436 L:      [email protected]
11437 S:      Maintained
11438 F:      drivers/crypto/atmel-ecc.*
11439
11440 MICROCHIP I2C DRIVER
11441 M:      Codrin Ciubotariu <[email protected]>
11442 L:      [email protected]
11443 S:      Supported
11444 F:      drivers/i2c/busses/i2c-at91-*.c
11445 F:      drivers/i2c/busses/i2c-at91.h
11446
11447 MICROCHIP ISC DRIVER
11448 M:      Eugen Hristev <[email protected]>
11449 L:      [email protected]
11450 S:      Supported
11451 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11452 F:      drivers/media/platform/atmel/atmel-isc-base.c
11453 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11454 F:      drivers/media/platform/atmel/atmel-isc.h
11455 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11456 F:      include/linux/atmel-isc-media.h
11457
11458 MICROCHIP ISI DRIVER
11459 M:      Eugen Hristev <[email protected]>
11460 L:      [email protected]
11461 S:      Supported
11462 F:      drivers/media/platform/atmel/atmel-isi.c
11463 F:      drivers/media/platform/atmel/atmel-isi.h
11464
11465 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11466 M:      Woojung Huh <[email protected]>
11467 M:      Microchip Linux Driver Support <[email protected]>
11468 L:      [email protected]
11469 S:      Maintained
11470 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11471 F:      drivers/net/dsa/microchip/*
11472 F:      include/linux/platform_data/microchip-ksz.h
11473 F:      net/dsa/tag_ksz.c
11474
11475 MICROCHIP LAN743X ETHERNET DRIVER
11476 M:      Bryan Whitehead <[email protected]>
11477 M:      Microchip Linux Driver Support <[email protected]>
11478 L:      [email protected]
11479 S:      Maintained
11480 F:      drivers/net/ethernet/microchip/lan743x_*
11481
11482 MICROCHIP LCDFB DRIVER
11483 M:      Nicolas Ferre <[email protected]>
11484 L:      [email protected]
11485 S:      Maintained
11486 F:      drivers/video/fbdev/atmel_lcdfb.c
11487 F:      include/video/atmel_lcdc.h
11488
11489 MICROCHIP MCP16502 PMIC DRIVER
11490 M:      Andrei Stefanescu <[email protected]>
11491 L:      [email protected] (moderated for non-subscribers)
11492 S:      Maintained
11493 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11494 F:      drivers/regulator/mcp16502.c
11495
11496 MICROCHIP MCP3911 ADC DRIVER
11497 M:      Marcus Folkesson <[email protected]>
11498 M:      Kent Gustavsson <[email protected]>
11499 L:      [email protected]
11500 S:      Supported
11501 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11502 F:      drivers/iio/adc/mcp3911.c
11503
11504 MICROCHIP MMC/SD/SDIO MCI DRIVER
11505 M:      Ludovic Desroches <[email protected]>
11506 S:      Maintained
11507 F:      drivers/mmc/host/atmel-mci.c
11508
11509 MICROCHIP NAND DRIVER
11510 M:      Tudor Ambarus <[email protected]>
11511 L:      [email protected]
11512 S:      Supported
11513 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11514 F:      drivers/mtd/nand/raw/atmel/*
11515
11516 MICROCHIP PWM DRIVER
11517 M:      Claudiu Beznea <[email protected]>
11518 L:      [email protected] (moderated for non-subscribers)
11519 L:      [email protected]
11520 S:      Supported
11521 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11522 F:      drivers/pwm/pwm-atmel.c
11523
11524 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11525 M:      Eugen Hristev <[email protected]>
11526 L:      [email protected]
11527 S:      Supported
11528 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11529 F:      drivers/iio/adc/at91-sama5d2_adc.c
11530 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11531
11532 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11533 M:      Claudiu Beznea <[email protected]>
11534 S:      Supported
11535 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11536
11537 MICROCHIP SPI DRIVER
11538 M:      Tudor Ambarus <[email protected]>
11539 S:      Supported
11540 F:      drivers/spi/spi-atmel.*
11541
11542 MICROCHIP SSC DRIVER
11543 M:      Codrin Ciubotariu <[email protected]>
11544 L:      [email protected] (moderated for non-subscribers)
11545 S:      Supported
11546 F:      drivers/misc/atmel-ssc.c
11547 F:      include/linux/atmel-ssc.h
11548
11549 MICROCHIP USB251XB DRIVER
11550 M:      Richard Leitner <[email protected]>
11551 L:      [email protected]
11552 S:      Maintained
11553 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11554 F:      drivers/usb/misc/usb251xb.c
11555
11556 MICROCHIP USBA UDC DRIVER
11557 M:      Cristian Birsan <[email protected]>
11558 L:      [email protected] (moderated for non-subscribers)
11559 S:      Supported
11560 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11561
11562 MICROCHIP WILC1000 WIFI DRIVER
11563 M:      Ajay Singh <[email protected]>
11564 M:      Claudiu Beznea <[email protected]>
11565 L:      [email protected]
11566 S:      Supported
11567 F:      drivers/net/wireless/microchip/wilc1000/
11568
11569 MICROSEMI MIPS SOCS
11570 M:      Alexandre Belloni <[email protected]>
11571 M:      Microchip Linux Driver Support <[email protected]>
11572 L:      [email protected]
11573 S:      Supported
11574 F:      Documentation/devicetree/bindings/mips/mscc.txt
11575 F:      arch/mips/boot/dts/mscc/
11576 F:      arch/mips/configs/generic/board-ocelot.config
11577 F:      arch/mips/generic/board-ocelot.c
11578
11579 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11580 M:      Don Brace <[email protected]>
11581 L:      [email protected]
11582 L:      [email protected]
11583 S:      Supported
11584 F:      Documentation/scsi/smartpqi.rst
11585 F:      drivers/scsi/smartpqi/Kconfig
11586 F:      drivers/scsi/smartpqi/Makefile
11587 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11588 F:      include/linux/cciss*.h
11589 F:      include/uapi/linux/cciss*.h
11590
11591 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11592 M:      Chen Yu <[email protected]>
11593 L:      [email protected]
11594 S:      Supported
11595 F:      drivers/platform/x86/surfacepro3_button.c
11596
11597 MICROTEK X6 SCANNER
11598 M:      Oliver Neukum <[email protected]>
11599 S:      Maintained
11600 F:      drivers/usb/image/microtek.*
11601
11602 MIPS
11603 M:      Thomas Bogendoerfer <[email protected]>
11604 L:      [email protected]
11605 S:      Maintained
11606 W:      http://www.linux-mips.org/
11607 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11609 F:      Documentation/devicetree/bindings/mips/
11610 F:      Documentation/mips/
11611 F:      arch/mips/
11612 F:      drivers/platform/mips/
11613
11614 MIPS BOSTON DEVELOPMENT BOARD
11615 M:      Paul Burton <[email protected]>
11616 L:      [email protected]
11617 S:      Maintained
11618 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11619 F:      arch/mips/boot/dts/img/boston.dts
11620 F:      arch/mips/configs/generic/board-boston.config
11621 F:      drivers/clk/imgtec/clk-boston.c
11622 F:      include/dt-bindings/clock/boston-clock.h
11623
11624 MIPS CORE DRIVERS
11625 M:      Thomas Bogendoerfer <[email protected]>
11626 M:      Serge Semin <[email protected]>
11627 L:      [email protected]
11628 S:      Supported
11629 F:      drivers/bus/mips_cdmm.c
11630 F:      drivers/clocksource/mips-gic-timer.c
11631 F:      drivers/cpuidle/cpuidle-cps.c
11632 F:      drivers/irqchip/irq-mips-cpu.c
11633 F:      drivers/irqchip/irq-mips-gic.c
11634
11635 MIPS GENERIC PLATFORM
11636 M:      Paul Burton <[email protected]>
11637 L:      [email protected]
11638 S:      Supported
11639 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11640 F:      arch/mips/generic/
11641 F:      arch/mips/tools/generic-board-config.sh
11642
11643 MIPS RINT INSTRUCTION EMULATION
11644 M:      Aleksandar Markovic <[email protected]>
11645 L:      [email protected]
11646 S:      Supported
11647 F:      arch/mips/math-emu/dp_rint.c
11648 F:      arch/mips/math-emu/sp_rint.c
11649
11650 MIPS/LOONGSON1 ARCHITECTURE
11651 M:      Keguang Zhang <[email protected]>
11652 L:      [email protected]
11653 S:      Maintained
11654 F:      arch/mips/include/asm/mach-loongson32/
11655 F:      arch/mips/loongson32/
11656 F:      drivers/*/*/*loongson1*
11657 F:      drivers/*/*loongson1*
11658
11659 MIPS/LOONGSON2EF ARCHITECTURE
11660 M:      Jiaxun Yang <[email protected]>
11661 L:      [email protected]
11662 S:      Maintained
11663 F:      arch/mips/include/asm/mach-loongson2ef/
11664 F:      arch/mips/loongson2ef/
11665 F:      drivers/*/*/*loongson2*
11666 F:      drivers/*/*loongson2*
11667
11668 MIPS/LOONGSON64 ARCHITECTURE
11669 M:      Huacai Chen <[email protected]>
11670 M:      Jiaxun Yang <[email protected]>
11671 L:      [email protected]
11672 S:      Maintained
11673 F:      arch/mips/include/asm/mach-loongson64/
11674 F:      arch/mips/loongson64/
11675 F:      drivers/*/*/*loongson3*
11676 F:      drivers/*/*loongson3*
11677 F:      drivers/irqchip/irq-loongson*
11678 F:      drivers/platform/mips/cpu_hwmon.c
11679
11680 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11681 M:      Hans Verkuil <[email protected]>
11682 L:      [email protected]
11683 S:      Odd Fixes
11684 W:      https://linuxtv.org
11685 T:      git git://linuxtv.org/media_tree.git
11686 F:      drivers/media/radio/radio-miropcm20*
11687
11688 MMP SUPPORT
11689 R:      Lubomir Rintel <[email protected]>
11690 L:      [email protected] (moderated for non-subscribers)
11691 S:      Odd Fixes
11692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11693 F:      arch/arm/boot/dts/mmp*
11694 F:      arch/arm/mach-mmp/
11695 F:      linux/soc/mmp/
11696
11697 MMP USB PHY DRIVERS
11698 R:      Lubomir Rintel <[email protected]>
11699 L:      [email protected] (moderated for non-subscribers)
11700 S:      Maintained
11701 F:      drivers/phy/marvell/phy-mmp3-usb.c
11702 F:      drivers/phy/marvell/phy-pxa-usb.c
11703
11704 MMU GATHER AND TLB INVALIDATION
11705 M:      Will Deacon <[email protected]>
11706 M:      "Aneesh Kumar K.V" <[email protected]>
11707 M:      Andrew Morton <[email protected]>
11708 M:      Nick Piggin <[email protected]>
11709 M:      Peter Zijlstra <[email protected]>
11710 L:      [email protected]
11711 L:      [email protected]
11712 S:      Maintained
11713 F:      arch/*/include/asm/tlb.h
11714 F:      include/asm-generic/tlb.h
11715 F:      mm/mmu_gather.c
11716
11717 MN88472 MEDIA DRIVER
11718 M:      Antti Palosaari <[email protected]>
11719 L:      [email protected]
11720 S:      Maintained
11721 W:      https://linuxtv.org
11722 W:      http://palosaari.fi/linux/
11723 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11724 F:      drivers/media/dvb-frontends/mn88472*
11725
11726 MN88473 MEDIA DRIVER
11727 M:      Antti Palosaari <[email protected]>
11728 L:      [email protected]
11729 S:      Maintained
11730 W:      https://linuxtv.org
11731 W:      http://palosaari.fi/linux/
11732 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11733 F:      drivers/media/dvb-frontends/mn88473*
11734
11735 MODULE SUPPORT
11736 M:      Jessica Yu <[email protected]>
11737 S:      Maintained
11738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11739 F:      include/linux/module.h
11740 F:      kernel/module.c
11741
11742 MONOLITHIC POWER SYSTEM PMIC DRIVER
11743 M:      Saravanan Sekar <[email protected]>
11744 S:      Maintained
11745 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11746 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11747 F:      drivers/iio/adc/mp2629_adc.c
11748 F:      drivers/mfd/mp2629.c
11749 F:      drivers/power/supply/mp2629_charger.c
11750 F:      drivers/regulator/mp5416.c
11751 F:      drivers/regulator/mpq7920.c
11752 F:      drivers/regulator/mpq7920.h
11753 F:      include/linux/mfd/mp2629.h
11754
11755 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11756 S:      Orphan
11757 W:      http://popies.net/meye/
11758 F:      Documentation/userspace-api/media/drivers/meye*
11759 F:      drivers/media/pci/meye/
11760 F:      include/uapi/linux/meye.h
11761
11762 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11763 M:      Jiri Slaby <[email protected]>
11764 S:      Maintained
11765 F:      Documentation/driver-api/serial/moxa-smartio.rst
11766 F:      drivers/tty/mxser.*
11767
11768 MR800 AVERMEDIA USB FM RADIO DRIVER
11769 M:      Alexey Klimov <[email protected]>
11770 L:      [email protected]
11771 S:      Maintained
11772 T:      git git://linuxtv.org/media_tree.git
11773 F:      drivers/media/radio/radio-mr800.c
11774
11775 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11776 M:      Alan Ott <[email protected]>
11777 L:      [email protected]
11778 S:      Maintained
11779 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11780 F:      drivers/net/ieee802154/mrf24j40.c
11781
11782 MSI LAPTOP SUPPORT
11783 M:      "Lee, Chun-Yi" <[email protected]>
11784 L:      [email protected]
11785 S:      Maintained
11786 F:      drivers/platform/x86/msi-laptop.c
11787
11788 MSI WMI SUPPORT
11789 L:      [email protected]
11790 S:      Orphan
11791 F:      drivers/platform/x86/msi-wmi.c
11792
11793 MSI001 MEDIA DRIVER
11794 M:      Antti Palosaari <[email protected]>
11795 L:      [email protected]
11796 S:      Maintained
11797 W:      https://linuxtv.org
11798 W:      http://palosaari.fi/linux/
11799 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11800 T:      git git://linuxtv.org/anttip/media_tree.git
11801 F:      drivers/media/tuners/msi001*
11802
11803 MSI2500 MEDIA DRIVER
11804 M:      Antti Palosaari <[email protected]>
11805 L:      [email protected]
11806 S:      Maintained
11807 W:      https://linuxtv.org
11808 W:      http://palosaari.fi/linux/
11809 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11810 T:      git git://linuxtv.org/anttip/media_tree.git
11811 F:      drivers/media/usb/msi2500/
11812
11813 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11814 M:      Robert Jarzmik <[email protected]>
11815 L:      [email protected]
11816 S:      Maintained
11817 F:      drivers/mtd/devices/docg3*
11818
11819 MT9M032 APTINA SENSOR DRIVER
11820 M:      Laurent Pinchart <[email protected]>
11821 L:      [email protected]
11822 S:      Maintained
11823 T:      git git://linuxtv.org/media_tree.git
11824 F:      drivers/media/i2c/mt9m032.c
11825 F:      include/media/i2c/mt9m032.h
11826
11827 MT9P031 APTINA CAMERA SENSOR
11828 M:      Laurent Pinchart <[email protected]>
11829 L:      [email protected]
11830 S:      Maintained
11831 T:      git git://linuxtv.org/media_tree.git
11832 F:      drivers/media/i2c/mt9p031.c
11833 F:      include/media/i2c/mt9p031.h
11834
11835 MT9T001 APTINA CAMERA SENSOR
11836 M:      Laurent Pinchart <[email protected]>
11837 L:      [email protected]
11838 S:      Maintained
11839 T:      git git://linuxtv.org/media_tree.git
11840 F:      drivers/media/i2c/mt9t001.c
11841 F:      include/media/i2c/mt9t001.h
11842
11843 MT9T112 APTINA CAMERA SENSOR
11844 M:      Jacopo Mondi <[email protected]>
11845 L:      [email protected]
11846 S:      Odd Fixes
11847 T:      git git://linuxtv.org/media_tree.git
11848 F:      drivers/media/i2c/mt9t112.c
11849 F:      include/media/i2c/mt9t112.h
11850
11851 MT9V032 APTINA CAMERA SENSOR
11852 M:      Laurent Pinchart <[email protected]>
11853 L:      [email protected]
11854 S:      Maintained
11855 T:      git git://linuxtv.org/media_tree.git
11856 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11857 F:      drivers/media/i2c/mt9v032.c
11858 F:      include/media/i2c/mt9v032.h
11859
11860 MT9V111 APTINA CAMERA SENSOR
11861 M:      Jacopo Mondi <[email protected]>
11862 L:      [email protected]
11863 S:      Maintained
11864 T:      git git://linuxtv.org/media_tree.git
11865 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11866 F:      drivers/media/i2c/mt9v111.c
11867
11868 MULTIFUNCTION DEVICES (MFD)
11869 M:      Lee Jones <[email protected]>
11870 S:      Supported
11871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11872 F:      Documentation/devicetree/bindings/mfd/
11873 F:      drivers/mfd/
11874 F:      include/dt-bindings/mfd/
11875 F:      include/linux/mfd/
11876
11877 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11878 S:      Orphan
11879 F:      drivers/mmc/host/mmc_spi.c
11880 F:      include/linux/spi/mmc_spi.h
11881
11882 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11883 M:      Ulf Hansson <[email protected]>
11884 L:      [email protected]
11885 S:      Maintained
11886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11887 F:      Documentation/devicetree/bindings/mmc/
11888 F:      drivers/mmc/
11889 F:      include/linux/mmc/
11890 F:      include/uapi/linux/mmc/
11891
11892 MULTIPLEXER SUBSYSTEM
11893 M:      Peter Rosin <[email protected]>
11894 S:      Maintained
11895 F:      Documentation/ABI/testing/sysfs-class-mux*
11896 F:      Documentation/devicetree/bindings/mux/
11897 F:      drivers/mux/
11898 F:      include/dt-bindings/mux/
11899 F:      include/linux/mux/
11900
11901 MULTITECH MULTIPORT CARD (ISICOM)
11902 S:      Orphan
11903 F:      drivers/tty/isicom.c
11904 F:      include/linux/isicom.h
11905
11906 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11907 M:      Bin Liu <[email protected]>
11908 L:      [email protected]
11909 S:      Maintained
11910 F:      drivers/usb/musb/
11911
11912 MXL301RF MEDIA DRIVER
11913 M:      Akihiro Tsukada <[email protected]>
11914 L:      [email protected]
11915 S:      Odd Fixes
11916 F:      drivers/media/tuners/mxl301rf*
11917
11918 MXL5007T MEDIA DRIVER
11919 M:      Michael Krufky <[email protected]>
11920 L:      [email protected]
11921 S:      Maintained
11922 W:      https://linuxtv.org
11923 W:      http://github.com/mkrufky
11924 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11925 T:      git git://linuxtv.org/mkrufky/tuners.git
11926 F:      drivers/media/tuners/mxl5007t.*
11927
11928 MXSFB DRM DRIVER
11929 M:      Marek Vasut <[email protected]>
11930 M:      Stefan Agner <[email protected]>
11931 L:      [email protected]
11932 S:      Supported
11933 T:      git git://anongit.freedesktop.org/drm/drm-misc
11934 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11935 F:      drivers/gpu/drm/mxsfb/
11936
11937 MYLEX DAC960 PCI RAID Controller
11938 M:      Hannes Reinecke <[email protected]>
11939 L:      [email protected]
11940 S:      Supported
11941 F:      drivers/scsi/myrb.*
11942 F:      drivers/scsi/myrs.*
11943
11944 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11945 M:      Chris Lee <[email protected]>
11946 L:      [email protected]
11947 S:      Supported
11948 W:      https://www.cspi.com/ethernet-products/support/downloads/
11949 F:      drivers/net/ethernet/myricom/myri10ge/
11950
11951 NAND FLASH SUBSYSTEM
11952 M:      Miquel Raynal <[email protected]>
11953 R:      Richard Weinberger <[email protected]>
11954 L:      [email protected]
11955 S:      Maintained
11956 W:      http://www.linux-mtd.infradead.org/
11957 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11958 C:      irc://irc.oftc.net/mtd
11959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11960 F:      drivers/mtd/nand/
11961 F:      include/linux/mtd/*nand*.h
11962
11963 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11964 M:      Daniel Mack <[email protected]>
11965 L:      [email protected] (moderated for non-subscribers)
11966 S:      Maintained
11967 W:      http://www.native-instruments.com
11968 F:      sound/usb/caiaq/
11969
11970 NATSEMI ETHERNET DRIVER (DP8381x)
11971 S:      Orphan
11972 F:      drivers/net/ethernet/natsemi/natsemi.c
11973
11974 NCR 5380 SCSI DRIVERS
11975 M:      Finn Thain <[email protected]>
11976 M:      Michael Schmitz <[email protected]>
11977 L:      [email protected]
11978 S:      Maintained
11979 F:      Documentation/scsi/g_NCR5380.rst
11980 F:      drivers/scsi/NCR5380.*
11981 F:      drivers/scsi/arm/cumana_1.c
11982 F:      drivers/scsi/arm/oak.c
11983 F:      drivers/scsi/atari_scsi.*
11984 F:      drivers/scsi/dmx3191d.c
11985 F:      drivers/scsi/g_NCR5380.*
11986 F:      drivers/scsi/mac_scsi.*
11987 F:      drivers/scsi/sun3_scsi.*
11988 F:      drivers/scsi/sun3_scsi_vme.c
11989
11990 NCSI LIBRARY
11991 M:      Samuel Mendoza-Jonas <[email protected]>
11992 S:      Maintained
11993 F:      net/ncsi/
11994
11995 NCT6775 HARDWARE MONITOR DRIVER
11996 M:      Guenter Roeck <[email protected]>
11997 L:      [email protected]
11998 S:      Maintained
11999 F:      Documentation/hwmon/nct6775.rst
12000 F:      drivers/hwmon/nct6775.c
12001
12002 NETDEVSIM
12003 M:      Jakub Kicinski <[email protected]>
12004 S:      Maintained
12005 F:      drivers/net/netdevsim/*
12006
12007 NETEM NETWORK EMULATOR
12008 M:      Stephen Hemminger <[email protected]>
12009 L:      [email protected]
12010 S:      Maintained
12011 F:      net/sched/sch_netem.c
12012
12013 NETERION 10GbE DRIVERS (s2io/vxge)
12014 M:      Jon Mason <[email protected]>
12015 L:      [email protected]
12016 S:      Supported
12017 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12018 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12019 F:      drivers/net/ethernet/neterion/
12020
12021 NETFILTER
12022 M:      Pablo Neira Ayuso <[email protected]>
12023 M:      Jozsef Kadlecsik <[email protected]>
12024 M:      Florian Westphal <[email protected]>
12025 L:      [email protected]
12026 L:      [email protected]
12027 S:      Maintained
12028 W:      http://www.netfilter.org/
12029 W:      http://www.iptables.org/
12030 W:      http://www.nftables.org/
12031 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12034 F:      include/linux/netfilter*
12035 F:      include/linux/netfilter/
12036 F:      include/net/netfilter/
12037 F:      include/uapi/linux/netfilter*
12038 F:      include/uapi/linux/netfilter/
12039 F:      net/*/netfilter.c
12040 F:      net/*/netfilter/
12041 F:      net/bridge/br_netfilter*.c
12042 F:      net/netfilter/
12043
12044 NETROM NETWORK LAYER
12045 M:      Ralf Baechle <[email protected]>
12046 L:      [email protected]
12047 S:      Maintained
12048 W:      http://www.linux-ax25.org/
12049 F:      include/net/netrom.h
12050 F:      include/uapi/linux/netrom.h
12051 F:      net/netrom/
12052
12053 NETRONOME ETHERNET DRIVERS
12054 M:      Simon Horman <[email protected]>
12055 R:      Jakub Kicinski <[email protected]>
12056 L:      [email protected]
12057 S:      Maintained
12058 F:      drivers/net/ethernet/netronome/
12059
12060 NETWORK BLOCK DEVICE (NBD)
12061 M:      Josef Bacik <[email protected]>
12062 L:      [email protected]
12063 L:      [email protected]
12064 S:      Maintained
12065 F:      Documentation/admin-guide/blockdev/nbd.rst
12066 F:      drivers/block/nbd.c
12067 F:      include/trace/events/nbd.h
12068 F:      include/uapi/linux/nbd.h
12069
12070 NETWORK DROP MONITOR
12071 M:      Neil Horman <[email protected]>
12072 L:      [email protected]
12073 S:      Maintained
12074 W:      https://fedorahosted.org/dropwatch/
12075 F:      include/uapi/linux/net_dropmon.h
12076 F:      net/core/drop_monitor.c
12077
12078 NETWORKING DRIVERS
12079 M:      "David S. Miller" <[email protected]>
12080 M:      Jakub Kicinski <[email protected]>
12081 L:      [email protected]
12082 S:      Maintained
12083 W:      http://www.linuxfoundation.org/en/Net
12084 Q:      http://patchwork.ozlabs.org/project/netdev/list/
12085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12087 F:      Documentation/devicetree/bindings/net/
12088 F:      drivers/connector/
12089 F:      drivers/net/
12090 F:      include/linux/etherdevice.h
12091 F:      include/linux/fcdevice.h
12092 F:      include/linux/fddidevice.h
12093 F:      include/linux/hippidevice.h
12094 F:      include/linux/if_*
12095 F:      include/linux/inetdevice.h
12096 F:      include/linux/netdevice.h
12097 F:      include/uapi/linux/if_*
12098 F:      include/uapi/linux/netdevice.h
12099
12100 NETWORKING DRIVERS (WIRELESS)
12101 M:      Kalle Valo <[email protected]>
12102 L:      [email protected]
12103 S:      Maintained
12104 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12107 F:      Documentation/devicetree/bindings/net/wireless/
12108 F:      drivers/net/wireless/
12109
12110 NETWORKING [DSA]
12111 M:      Andrew Lunn <[email protected]>
12112 M:      Vivien Didelot <[email protected]>
12113 M:      Florian Fainelli <[email protected]>
12114 M:      Vladimir Oltean <[email protected]>
12115 S:      Maintained
12116 F:      Documentation/devicetree/bindings/net/dsa/
12117 F:      drivers/net/dsa/
12118 F:      include/linux/dsa/
12119 F:      include/linux/platform_data/dsa.h
12120 F:      include/net/dsa.h
12121 F:      net/dsa/
12122
12123 NETWORKING [GENERAL]
12124 M:      "David S. Miller" <[email protected]>
12125 M:      Jakub Kicinski <[email protected]>
12126 L:      [email protected]
12127 S:      Maintained
12128 W:      http://www.linuxfoundation.org/en/Net
12129 Q:      http://patchwork.ozlabs.org/project/netdev/list/
12130 B:      mailto:[email protected]
12131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12133 F:      Documentation/networking/
12134 F:      include/linux/in.h
12135 F:      include/linux/net.h
12136 F:      include/linux/netdevice.h
12137 F:      include/net/
12138 F:      include/uapi/linux/in.h
12139 F:      include/uapi/linux/net.h
12140 F:      include/uapi/linux/net_namespace.h
12141 F:      include/uapi/linux/netdevice.h
12142 F:      lib/net_utils.c
12143 F:      lib/random32.c
12144 F:      net/
12145 F:      tools/testing/selftests/net/
12146
12147 NETWORKING [IPSEC]
12148 M:      Steffen Klassert <[email protected]>
12149 M:      Herbert Xu <[email protected]>
12150 M:      "David S. Miller" <[email protected]>
12151 L:      [email protected]
12152 S:      Maintained
12153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12155 F:      include/net/xfrm.h
12156 F:      include/uapi/linux/xfrm.h
12157 F:      net/ipv4/ah4.c
12158 F:      net/ipv4/esp4*
12159 F:      net/ipv4/ip_vti.c
12160 F:      net/ipv4/ipcomp.c
12161 F:      net/ipv4/xfrm*
12162 F:      net/ipv6/ah6.c
12163 F:      net/ipv6/esp6*
12164 F:      net/ipv6/ip6_vti.c
12165 F:      net/ipv6/ipcomp6.c
12166 F:      net/ipv6/xfrm*
12167 F:      net/key/
12168 F:      net/xfrm/
12169 F:      tools/testing/selftests/net/ipsec.c
12170
12171 NETWORKING [IPv4/IPv6]
12172 M:      "David S. Miller" <[email protected]>
12173 M:      Alexey Kuznetsov <[email protected]>
12174 M:      Hideaki YOSHIFUJI <[email protected]>
12175 L:      [email protected]
12176 S:      Maintained
12177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12178 F:      arch/x86/net/*
12179 F:      include/net/ip*
12180 F:      net/ipv4/
12181 F:      net/ipv6/
12182
12183 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12184 M:      Paul Moore <[email protected]>
12185 L:      [email protected]
12186 L:      [email protected]
12187 S:      Maintained
12188 W:      https://github.com/netlabel
12189 F:      Documentation/netlabel/
12190 F:      include/net/calipso.h
12191 F:      include/net/cipso_ipv4.h
12192 F:      include/net/netlabel.h
12193 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12194 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12195 F:      net/ipv4/cipso_ipv4.c
12196 F:      net/ipv6/calipso.c
12197 F:      net/netfilter/xt_CONNSECMARK.c
12198 F:      net/netfilter/xt_SECMARK.c
12199 F:      net/netlabel/
12200
12201 NETWORKING [MPTCP]
12202 M:      Mat Martineau <[email protected]>
12203 M:      Matthieu Baerts <[email protected]>
12204 L:      [email protected]
12205 L:      [email protected]
12206 S:      Maintained
12207 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12208 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12209 F:      include/net/mptcp.h
12210 F:      include/uapi/linux/mptcp.h
12211 F:      net/mptcp/
12212 F:      tools/testing/selftests/net/mptcp/
12213
12214 NETWORKING [TCP]
12215 M:      Eric Dumazet <[email protected]>
12216 L:      [email protected]
12217 S:      Maintained
12218 F:      include/linux/tcp.h
12219 F:      include/net/tcp.h
12220 F:      include/trace/events/tcp.h
12221 F:      include/uapi/linux/tcp.h
12222 F:      net/ipv4/syncookies.c
12223 F:      net/ipv4/tcp*.c
12224 F:      net/ipv6/syncookies.c
12225 F:      net/ipv6/tcp*.c
12226
12227 NETWORKING [TLS]
12228 M:      Boris Pismenny <[email protected]>
12229 M:      Aviad Yehezkel <[email protected]>
12230 M:      John Fastabend <[email protected]>
12231 M:      Daniel Borkmann <[email protected]>
12232 M:      Jakub Kicinski <[email protected]>
12233 L:      [email protected]
12234 S:      Maintained
12235 F:      include/net/tls.h
12236 F:      include/uapi/linux/tls.h
12237 F:      net/tls/*
12238
12239 NETWORKING [WIRELESS]
12240 L:      [email protected]
12241 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12242
12243 NETXEN (1/10) GbE SUPPORT
12244 M:      Manish Chopra <[email protected]>
12245 M:      Rahul Verma <[email protected]>
12246 M:      [email protected]
12247 L:      [email protected]
12248 S:      Supported
12249 F:      drivers/net/ethernet/qlogic/netxen/
12250
12251 NET_FAILOVER MODULE
12252 M:      Sridhar Samudrala <[email protected]>
12253 L:      [email protected]
12254 S:      Supported
12255 F:      Documentation/networking/net_failover.rst
12256 F:      drivers/net/net_failover.c
12257 F:      include/net/net_failover.h
12258
12259 NEXTHOP
12260 M:      David Ahern <[email protected]>
12261 L:      [email protected]
12262 S:      Maintained
12263 F:      include/net/netns/nexthop.h
12264 F:      include/net/nexthop.h
12265 F:      include/uapi/linux/nexthop.h
12266 F:      net/ipv4/nexthop.c
12267
12268 NFC SUBSYSTEM
12269 L:      [email protected]
12270 S:      Orphan
12271 F:      Documentation/devicetree/bindings/net/nfc/
12272 F:      drivers/nfc/
12273 F:      include/linux/platform_data/nfcmrvl.h
12274 F:      include/net/nfc/
12275 F:      include/uapi/linux/nfc.h
12276 F:      net/nfc/
12277
12278 NFS, SUNRPC, AND LOCKD CLIENTS
12279 M:      Trond Myklebust <[email protected]>
12280 M:      Anna Schumaker <[email protected]>
12281 L:      [email protected]
12282 S:      Maintained
12283 W:      http://client.linux-nfs.org
12284 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12285 F:      fs/lockd/
12286 F:      fs/nfs/
12287 F:      fs/nfs_common/
12288 F:      include/linux/lockd/
12289 F:      include/linux/nfs*
12290 F:      include/linux/sunrpc/
12291 F:      include/uapi/linux/nfs*
12292 F:      include/uapi/linux/sunrpc/
12293 F:      net/sunrpc/
12294
12295 NILFS2 FILESYSTEM
12296 M:      Ryusuke Konishi <[email protected]>
12297 L:      [email protected]
12298 S:      Supported
12299 W:      https://nilfs.sourceforge.io/
12300 W:      https://nilfs.osdn.jp/
12301 T:      git git://github.com/konis/nilfs2.git
12302 F:      Documentation/filesystems/nilfs2.rst
12303 F:      fs/nilfs2/
12304 F:      include/trace/events/nilfs2.h
12305 F:      include/uapi/linux/nilfs2_api.h
12306 F:      include/uapi/linux/nilfs2_ondisk.h
12307
12308 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12309 M:      YOKOTA Hiroshi <[email protected]>
12310 S:      Maintained
12311 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12312 F:      Documentation/scsi/NinjaSCSI.rst
12313 F:      drivers/scsi/pcmcia/nsp_*
12314
12315 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12316 M:      GOTO Masanori <[email protected]>
12317 M:      YOKOTA Hiroshi <[email protected]>
12318 S:      Maintained
12319 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12320 F:      Documentation/scsi/NinjaSCSI.rst
12321 F:      drivers/scsi/nsp32*
12322
12323 NIOS2 ARCHITECTURE
12324 M:      Ley Foon Tan <[email protected]>
12325 S:      Maintained
12326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12327 F:      arch/nios2/
12328
12329 NOHZ, DYNTICKS SUPPORT
12330 M:      Frederic Weisbecker <[email protected]>
12331 M:      Thomas Gleixner <[email protected]>
12332 M:      Ingo Molnar <[email protected]>
12333 L:      [email protected]
12334 S:      Maintained
12335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12336 F:      include/linux/sched/nohz.h
12337 F:      include/linux/tick.h
12338 F:      kernel/time/tick*.*
12339
12340 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12341 M:      Pavel Machek <[email protected]>
12342 M:      Sakari Ailus <[email protected]>
12343 L:      [email protected]
12344 S:      Maintained
12345 F:      drivers/media/i2c/ad5820.c
12346 F:      drivers/media/i2c/et8ek8
12347
12348 NOKIA N900 POWER SUPPLY DRIVERS
12349 R:      Pali Rohár <[email protected]>
12350 F:      drivers/power/supply/bq2415x_charger.c
12351 F:      drivers/power/supply/bq27xxx_battery.c
12352 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12353 F:      drivers/power/supply/isp1704_charger.c
12354 F:      drivers/power/supply/rx51_battery.c
12355 F:      include/linux/power/bq2415x_charger.h
12356 F:      include/linux/power/bq27xxx_battery.h
12357
12358 NOLIBC HEADER FILE
12359 M:      Willy Tarreau <[email protected]>
12360 S:      Maintained
12361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12362 F:      tools/include/nolibc/
12363
12364 NSDEPS
12365 M:      Matthias Maennich <[email protected]>
12366 S:      Maintained
12367 F:      Documentation/core-api/symbol-namespaces.rst
12368 F:      scripts/nsdeps
12369
12370 NTB AMD DRIVER
12371 M:      Sanjay R Mehta <[email protected]>
12372 M:      Shyam Sundar S K <[email protected]>
12373 L:      [email protected]
12374 S:      Supported
12375 F:      drivers/ntb/hw/amd/
12376
12377 NTB DRIVER CORE
12378 M:      Jon Mason <[email protected]>
12379 M:      Dave Jiang <[email protected]>
12380 M:      Allen Hubbe <[email protected]>
12381 L:      [email protected]
12382 S:      Supported
12383 W:      https://github.com/jonmason/ntb/wiki
12384 T:      git git://github.com/jonmason/ntb.git
12385 F:      drivers/net/ntb_netdev.c
12386 F:      drivers/ntb/
12387 F:      include/linux/ntb.h
12388 F:      include/linux/ntb_transport.h
12389 F:      tools/testing/selftests/ntb/
12390
12391 NTB IDT DRIVER
12392 M:      Serge Semin <[email protected]>
12393 L:      [email protected]
12394 S:      Supported
12395 F:      drivers/ntb/hw/idt/
12396
12397 NTB INTEL DRIVER
12398 M:      Dave Jiang <[email protected]>
12399 L:      [email protected]
12400 S:      Supported
12401 W:      https://github.com/davejiang/linux/wiki
12402 T:      git https://github.com/davejiang/linux.git
12403 F:      drivers/ntb/hw/intel/
12404
12405 NTFS FILESYSTEM
12406 M:      Anton Altaparmakov <[email protected]>
12407 L:      [email protected]
12408 S:      Supported
12409 W:      http://www.tuxera.com/
12410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12411 F:      Documentation/filesystems/ntfs.rst
12412 F:      fs/ntfs/
12413
12414 NUBUS SUBSYSTEM
12415 M:      Finn Thain <[email protected]>
12416 L:      [email protected]
12417 S:      Maintained
12418 F:      arch/*/include/asm/nubus.h
12419 F:      drivers/nubus/
12420 F:      include/linux/nubus.h
12421 F:      include/uapi/linux/nubus.h
12422
12423 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12424 M:      Antonino Daplas <[email protected]>
12425 L:      [email protected]
12426 S:      Maintained
12427 F:      drivers/video/fbdev/nvidia/
12428 F:      drivers/video/fbdev/riva/
12429
12430 NVM EXPRESS DRIVER
12431 M:      Keith Busch <[email protected]>
12432 M:      Jens Axboe <[email protected]>
12433 M:      Christoph Hellwig <[email protected]>
12434 M:      Sagi Grimberg <[email protected]>
12435 L:      [email protected]
12436 S:      Supported
12437 W:      http://git.infradead.org/nvme.git
12438 T:      git://git.infradead.org/nvme.git
12439 F:      drivers/nvme/host/
12440 F:      include/linux/nvme.h
12441 F:      include/uapi/linux/nvme_ioctl.h
12442
12443 NVM EXPRESS FC TRANSPORT DRIVERS
12444 M:      James Smart <[email protected]>
12445 L:      [email protected]
12446 S:      Supported
12447 F:      drivers/nvme/host/fc.c
12448 F:      drivers/nvme/target/fc.c
12449 F:      drivers/nvme/target/fcloop.c
12450 F:      include/linux/nvme-fc-driver.h
12451 F:      include/linux/nvme-fc.h
12452
12453 NVM EXPRESS TARGET DRIVER
12454 M:      Christoph Hellwig <[email protected]>
12455 M:      Sagi Grimberg <[email protected]>
12456 M:      Chaitanya Kulkarni <[email protected]>
12457 L:      [email protected]
12458 S:      Supported
12459 W:      http://git.infradead.org/nvme.git
12460 T:      git://git.infradead.org/nvme.git
12461 F:      drivers/nvme/target/
12462
12463 NVMEM FRAMEWORK
12464 M:      Srinivas Kandagatla <[email protected]>
12465 S:      Maintained
12466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
12467 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12468 F:      Documentation/devicetree/bindings/nvmem/
12469 F:      drivers/nvmem/
12470 F:      include/linux/nvmem-consumer.h
12471 F:      include/linux/nvmem-provider.h
12472
12473 NXP FSPI DRIVER
12474 M:      Ashish Kumar <[email protected]>
12475 R:      Yogesh Gaur <[email protected]>
12476 L:      [email protected]
12477 S:      Maintained
12478 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12479 F:      drivers/spi/spi-nxp-fspi.c
12480
12481 NXP FXAS21002C DRIVER
12482 M:      Rui Miguel Silva <[email protected]>
12483 L:      [email protected]
12484 S:      Maintained
12485 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12486 F:      drivers/iio/gyro/fxas21002c.h
12487 F:      drivers/iio/gyro/fxas21002c_core.c
12488 F:      drivers/iio/gyro/fxas21002c_i2c.c
12489 F:      drivers/iio/gyro/fxas21002c_spi.c
12490
12491 NXP SGTL5000 DRIVER
12492 M:      Fabio Estevam <[email protected]>
12493 L:      [email protected] (moderated for non-subscribers)
12494 S:      Maintained
12495 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
12496 F:      sound/soc/codecs/sgtl5000*
12497
12498 NXP SJA1105 ETHERNET SWITCH DRIVER
12499 M:      Vladimir Oltean <[email protected]>
12500 L:      [email protected]
12501 S:      Maintained
12502 F:      drivers/net/dsa/sja1105
12503
12504 NXP TDA998X DRM DRIVER
12505 M:      Russell King <[email protected]>
12506 S:      Maintained
12507 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12508 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12509 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12510 F:      include/drm/i2c/tda998x.h
12511 F:      include/dt-bindings/display/tda998x.h
12512 K:      "nxp,tda998x"
12513
12514 NXP TFA9879 DRIVER
12515 M:      Peter Rosin <[email protected]>
12516 L:      [email protected] (moderated for non-subscribers)
12517 S:      Maintained
12518 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12519 F:      sound/soc/codecs/tfa9879*
12520
12521 NXP-NCI NFC DRIVER
12522 M:      Clément Perrochaud <[email protected]>
12523 R:      Charles Gorand <[email protected]>
12524 L:      [email protected] (moderated for non-subscribers)
12525 S:      Supported
12526 F:      drivers/nfc/nxp-nci
12527
12528 OBJAGG
12529 M:      Jiri Pirko <[email protected]>
12530 L:      [email protected]
12531 S:      Supported
12532 F:      include/linux/objagg.h
12533 F:      lib/objagg.c
12534 F:      lib/test_objagg.c
12535
12536 OBJTOOL
12537 M:      Josh Poimboeuf <[email protected]>
12538 M:      Peter Zijlstra <[email protected]>
12539 S:      Supported
12540 F:      tools/objtool/
12541
12542 OCELOT ETHERNET SWITCH DRIVER
12543 M:      Microchip Linux Driver Support <[email protected]>
12544 M:      Vladimir Oltean <[email protected]>
12545 M:      Claudiu Manoil <[email protected]>
12546 M:      Alexandre Belloni <[email protected]>
12547 L:      [email protected]
12548 S:      Supported
12549 F:      drivers/net/dsa/ocelot/*
12550 F:      drivers/net/ethernet/mscc/
12551 F:      include/soc/mscc/ocelot*
12552 F:      net/dsa/tag_ocelot.c
12553 F:      tools/testing/selftests/drivers/net/ocelot/*
12554
12555 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12556 M:      Frederic Barrat <[email protected]>
12557 M:      Andrew Donnellan <[email protected]>
12558 L:      [email protected]
12559 S:      Supported
12560 F:      Documentation/userspace-api/accelerators/ocxl.rst
12561 F:      arch/powerpc/include/asm/pnv-ocxl.h
12562 F:      arch/powerpc/platforms/powernv/ocxl.c
12563 F:      drivers/misc/ocxl/
12564 F:      include/misc/ocxl*
12565 F:      include/uapi/misc/ocxl.h
12566
12567 OMAP AUDIO SUPPORT
12568 M:      Peter Ujfalusi <[email protected]>
12569 M:      Jarkko Nikula <[email protected]>
12570 L:      [email protected] (moderated for non-subscribers)
12571 L:      [email protected]
12572 S:      Maintained
12573 F:      sound/soc/ti/n810.c
12574 F:      sound/soc/ti/omap*
12575 F:      sound/soc/ti/rx51.c
12576 F:      sound/soc/ti/sdma-pcm.*
12577
12578 OMAP CLOCK FRAMEWORK SUPPORT
12579 M:      Paul Walmsley <[email protected]>
12580 L:      [email protected]
12581 S:      Maintained
12582 F:      arch/arm/*omap*/*clock*
12583
12584 OMAP DEVICE TREE SUPPORT
12585 M:      Benoît Cousson <[email protected]>
12586 M:      Tony Lindgren <[email protected]>
12587 L:      [email protected]
12588 L:      [email protected]
12589 S:      Maintained
12590 F:      arch/arm/boot/dts/*am3*
12591 F:      arch/arm/boot/dts/*am4*
12592 F:      arch/arm/boot/dts/*am5*
12593 F:      arch/arm/boot/dts/*dra7*
12594 F:      arch/arm/boot/dts/*omap*
12595 F:      arch/arm/boot/dts/logicpd-som-lv*
12596 F:      arch/arm/boot/dts/logicpd-torpedo*
12597
12598 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12599 L:      [email protected]
12600 L:      [email protected]
12601 S:      Orphan
12602 F:      Documentation/arm/omap/dss.rst
12603 F:      drivers/video/fbdev/omap2/
12604
12605 OMAP FRAMEBUFFER SUPPORT
12606 L:      [email protected]
12607 L:      [email protected]
12608 S:      Orphan
12609 F:      drivers/video/fbdev/omap/
12610
12611 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12612 M:      Roger Quadros <[email protected]>
12613 M:      Tony Lindgren <[email protected]>
12614 L:      [email protected]
12615 S:      Maintained
12616 F:      arch/arm/mach-omap2/*gpmc*
12617 F:      drivers/memory/omap-gpmc.c
12618
12619 OMAP GPIO DRIVER
12620 M:      Grygorii Strashko <[email protected]>
12621 M:      Santosh Shilimkar <[email protected]>
12622 M:      Kevin Hilman <[email protected]>
12623 L:      [email protected]
12624 S:      Maintained
12625 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12626 F:      drivers/gpio/gpio-omap.c
12627
12628 OMAP HARDWARE SPINLOCK SUPPORT
12629 M:      Ohad Ben-Cohen <[email protected]>
12630 L:      [email protected]
12631 S:      Maintained
12632 F:      drivers/hwspinlock/omap_hwspinlock.c
12633
12634 OMAP HS MMC SUPPORT
12635 L:      [email protected]
12636 L:      [email protected]
12637 S:      Orphan
12638 F:      drivers/mmc/host/omap_hsmmc.c
12639
12640 OMAP HWMOD DATA
12641 M:      Paul Walmsley <[email protected]>
12642 L:      [email protected]
12643 S:      Maintained
12644 F:      arch/arm/mach-omap2/omap_hwmod*data*
12645
12646 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12647 M:      Benoît Cousson <[email protected]>
12648 L:      [email protected]
12649 S:      Maintained
12650 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12651
12652 OMAP HWMOD SUPPORT
12653 M:      Benoît Cousson <[email protected]>
12654 M:      Paul Walmsley <[email protected]>
12655 L:      [email protected]
12656 S:      Maintained
12657 F:      arch/arm/mach-omap2/omap_hwmod.*
12658
12659 OMAP I2C DRIVER
12660 M:      Vignesh R <[email protected]>
12661 L:      [email protected]
12662 L:      [email protected]
12663 S:      Maintained
12664 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12665 F:      drivers/i2c/busses/i2c-omap.c
12666
12667 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12668 M:      Laurent Pinchart <[email protected]>
12669 L:      [email protected]
12670 S:      Maintained
12671 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12672 F:      drivers/media/platform/omap3isp/
12673 F:      drivers/staging/media/omap4iss/
12674
12675 OMAP MMC SUPPORT
12676 M:      Aaro Koskinen <[email protected]>
12677 L:      [email protected]
12678 S:      Odd Fixes
12679 F:      drivers/mmc/host/omap.c
12680
12681 OMAP POWER MANAGEMENT SUPPORT
12682 M:      Kevin Hilman <[email protected]>
12683 L:      [email protected]
12684 S:      Maintained
12685 F:      arch/arm/*omap*/*pm*
12686 F:      drivers/cpufreq/omap-cpufreq.c
12687
12688 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12689 M:      Rajendra Nayak <[email protected]>
12690 M:      Paul Walmsley <[email protected]>
12691 L:      [email protected]
12692 S:      Maintained
12693 F:      arch/arm/mach-omap2/prm*
12694
12695 OMAP RANDOM NUMBER GENERATOR SUPPORT
12696 M:      Deepak Saxena <[email protected]>
12697 S:      Maintained
12698 F:      drivers/char/hw_random/omap-rng.c
12699
12700 OMAP USB SUPPORT
12701 L:      [email protected]
12702 L:      [email protected]
12703 S:      Orphan
12704 F:      arch/arm/*omap*/usb*
12705 F:      drivers/usb/*/*omap*
12706
12707 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12708 M:      Mark Jackson <[email protected]>
12709 L:      [email protected]
12710 S:      Maintained
12711 F:      arch/arm/boot/dts/am335x-nano.dts
12712
12713 OMAP1 SUPPORT
12714 M:      Aaro Koskinen <[email protected]>
12715 M:      Tony Lindgren <[email protected]>
12716 L:      [email protected]
12717 S:      Maintained
12718 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12720 F:      arch/arm/configs/omap1_defconfig
12721 F:      arch/arm/mach-omap1/
12722 F:      arch/arm/plat-omap/
12723 F:      drivers/i2c/busses/i2c-omap.c
12724 F:      include/linux/platform_data/ams-delta-fiq.h
12725 F:      include/linux/platform_data/i2c-omap.h
12726
12727 OMAP2+ SUPPORT
12728 M:      Tony Lindgren <[email protected]>
12729 L:      [email protected]
12730 S:      Maintained
12731 W:      http://www.muru.com/linux/omap/
12732 W:      http://linux.omap.com/
12733 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12735 F:      arch/arm/configs/omap2plus_defconfig
12736 F:      arch/arm/mach-omap2/
12737 F:      arch/arm/plat-omap/
12738 F:      drivers/bus/ti-sysc.c
12739 F:      drivers/i2c/busses/i2c-omap.c
12740 F:      drivers/irqchip/irq-omap-intc.c
12741 F:      drivers/mfd/*omap*.c
12742 F:      drivers/mfd/menelaus.c
12743 F:      drivers/mfd/palmas.c
12744 F:      drivers/mfd/tps65217.c
12745 F:      drivers/mfd/tps65218.c
12746 F:      drivers/mfd/tps65910.c
12747 F:      drivers/mfd/twl-core.[ch]
12748 F:      drivers/mfd/twl4030*.c
12749 F:      drivers/mfd/twl6030*.c
12750 F:      drivers/mfd/twl6040*.c
12751 F:      drivers/regulator/palmas-regulator*.c
12752 F:      drivers/regulator/pbias-regulator.c
12753 F:      drivers/regulator/tps65217-regulator.c
12754 F:      drivers/regulator/tps65218-regulator.c
12755 F:      drivers/regulator/tps65910-regulator.c
12756 F:      drivers/regulator/twl-regulator.c
12757 F:      drivers/regulator/twl6030-regulator.c
12758 F:      include/linux/platform_data/i2c-omap.h
12759 F:      include/linux/platform_data/ti-sysc.h
12760
12761 OMFS FILESYSTEM
12762 M:      Bob Copeland <[email protected]>
12763 L:      [email protected]
12764 S:      Maintained
12765 F:      Documentation/filesystems/omfs.rst
12766 F:      fs/omfs/
12767
12768 OMNIKEY CARDMAN 4000 DRIVER
12769 M:      Harald Welte <[email protected]>
12770 S:      Maintained
12771 F:      drivers/char/pcmcia/cm4000_cs.c
12772 F:      include/linux/cm4000_cs.h
12773 F:      include/uapi/linux/cm4000_cs.h
12774
12775 OMNIKEY CARDMAN 4040 DRIVER
12776 M:      Harald Welte <[email protected]>
12777 S:      Maintained
12778 F:      drivers/char/pcmcia/cm4040_cs.*
12779
12780 OMNIVISION OV13858 SENSOR DRIVER
12781 M:      Sakari Ailus <[email protected]>
12782 L:      [email protected]
12783 S:      Maintained
12784 T:      git git://linuxtv.org/media_tree.git
12785 F:      drivers/media/i2c/ov13858.c
12786
12787 OMNIVISION OV2680 SENSOR DRIVER
12788 M:      Rui Miguel Silva <[email protected]>
12789 L:      [email protected]
12790 S:      Maintained
12791 T:      git git://linuxtv.org/media_tree.git
12792 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12793 F:      drivers/media/i2c/ov2680.c
12794
12795 OMNIVISION OV2685 SENSOR DRIVER
12796 M:      Shunqian Zheng <[email protected]>
12797 L:      [email protected]
12798 S:      Maintained
12799 T:      git git://linuxtv.org/media_tree.git
12800 F:      drivers/media/i2c/ov2685.c
12801
12802 OMNIVISION OV2740 SENSOR DRIVER
12803 M:      Tianshu Qiu <[email protected]>
12804 R:      Shawn Tu <[email protected]>
12805 R:      Bingbu Cao <[email protected]>
12806 L:      [email protected]
12807 S:      Maintained
12808 T:      git git://linuxtv.org/media_tree.git
12809 F:      drivers/media/i2c/ov2740.c
12810
12811 OMNIVISION OV5640 SENSOR DRIVER
12812 M:      Steve Longerbeam <[email protected]>
12813 L:      [email protected]
12814 S:      Maintained
12815 T:      git git://linuxtv.org/media_tree.git
12816 F:      drivers/media/i2c/ov5640.c
12817
12818 OMNIVISION OV5647 SENSOR DRIVER
12819 M:      Luis Oliveira <[email protected]>
12820 L:      [email protected]
12821 S:      Maintained
12822 T:      git git://linuxtv.org/media_tree.git
12823 F:      drivers/media/i2c/ov5647.c
12824
12825 OMNIVISION OV5670 SENSOR DRIVER
12826 M:      Chiranjeevi Rapolu <[email protected]>
12827 M:      Hyungwoo Yang <[email protected]>
12828 L:      [email protected]
12829 S:      Maintained
12830 T:      git git://linuxtv.org/media_tree.git
12831 F:      drivers/media/i2c/ov5670.c
12832
12833 OMNIVISION OV5675 SENSOR DRIVER
12834 M:      Shawn Tu <[email protected]>
12835 L:      [email protected]
12836 S:      Maintained
12837 T:      git git://linuxtv.org/media_tree.git
12838 F:      drivers/media/i2c/ov5675.c
12839
12840 OMNIVISION OV5695 SENSOR DRIVER
12841 M:      Shunqian Zheng <[email protected]>
12842 L:      [email protected]
12843 S:      Maintained
12844 T:      git git://linuxtv.org/media_tree.git
12845 F:      drivers/media/i2c/ov5695.c
12846
12847 OMNIVISION OV7670 SENSOR DRIVER
12848 M:      Jonathan Corbet <[email protected]>
12849 L:      [email protected]
12850 S:      Maintained
12851 T:      git git://linuxtv.org/media_tree.git
12852 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12853 F:      drivers/media/i2c/ov7670.c
12854
12855 OMNIVISION OV772x SENSOR DRIVER
12856 M:      Jacopo Mondi <[email protected]>
12857 L:      [email protected]
12858 S:      Odd fixes
12859 T:      git git://linuxtv.org/media_tree.git
12860 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12861 F:      drivers/media/i2c/ov772x.c
12862 F:      include/media/i2c/ov772x.h
12863
12864 OMNIVISION OV7740 SENSOR DRIVER
12865 M:      Wenyou Yang <[email protected]>
12866 L:      [email protected]
12867 S:      Maintained
12868 T:      git git://linuxtv.org/media_tree.git
12869 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12870 F:      drivers/media/i2c/ov7740.c
12871
12872 OMNIVISION OV8856 SENSOR DRIVER
12873 M:      Dongchun Zhu <[email protected]>
12874 L:      [email protected]
12875 S:      Maintained
12876 T:      git git://linuxtv.org/media_tree.git
12877 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
12878 F:      drivers/media/i2c/ov8856.c
12879
12880 OMNIVISION OV9640 SENSOR DRIVER
12881 M:      Petr Cvek <[email protected]>
12882 L:      [email protected]
12883 S:      Maintained
12884 F:      drivers/media/i2c/ov9640.*
12885
12886 OMNIVISION OV9650 SENSOR DRIVER
12887 M:      Sakari Ailus <[email protected]>
12888 R:      Akinobu Mita <[email protected]>
12889 R:      Sylwester Nawrocki <[email protected]>
12890 L:      [email protected]
12891 S:      Maintained
12892 T:      git git://linuxtv.org/media_tree.git
12893 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12894 F:      drivers/media/i2c/ov9650.c
12895
12896 ONENAND FLASH DRIVER
12897 M:      Kyungmin Park <[email protected]>
12898 L:      [email protected]
12899 S:      Maintained
12900 F:      drivers/mtd/nand/onenand/
12901 F:      include/linux/mtd/onenand*.h
12902
12903 ONION OMEGA2+ BOARD
12904 M:      Harvey Hunt <[email protected]>
12905 L:      [email protected]
12906 S:      Maintained
12907 F:      arch/mips/boot/dts/ralink/omega2p.dts
12908
12909 OP-TEE DRIVER
12910 M:      Jens Wiklander <[email protected]>
12911 L:      [email protected]
12912 S:      Maintained
12913 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
12914 F:      drivers/tee/optee/
12915
12916 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12917 M:      Sumit Garg <[email protected]>
12918 L:      [email protected]
12919 S:      Maintained
12920 F:      drivers/char/hw_random/optee-rng.c
12921
12922 OPA-VNIC DRIVER
12923 M:      Dennis Dalessandro <[email protected]>
12924 M:      Niranjana Vishwanathapura <[email protected]>
12925 L:      [email protected]
12926 S:      Supported
12927 F:      drivers/infiniband/ulp/opa_vnic
12928
12929 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12930 M:      Pantelis Antoniou <[email protected]>
12931 M:      Frank Rowand <[email protected]>
12932 L:      [email protected]
12933 S:      Maintained
12934 F:      Documentation/devicetree/dynamic-resolution-notes.rst
12935 F:      Documentation/devicetree/overlay-notes.rst
12936 F:      drivers/of/overlay.c
12937 F:      drivers/of/resolver.c
12938 K:      of_overlay_notifier_
12939
12940 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12941 M:      Rob Herring <[email protected]>
12942 M:      Frank Rowand <[email protected]>
12943 L:      [email protected]
12944 S:      Maintained
12945 W:      http://www.devicetree.org/
12946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12947 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12948 F:      drivers/of/
12949 F:      include/linux/of*.h
12950 F:      scripts/dtc/
12951
12952 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12953 M:      Rob Herring <[email protected]>
12954 L:      [email protected]
12955 S:      Maintained
12956 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12958 F:      Documentation/devicetree/
12959 F:      arch/*/boot/dts/
12960 F:      include/dt-bindings/
12961
12962 OPENCORES I2C BUS DRIVER
12963 M:      Peter Korsgaard <[email protected]>
12964 M:      Andrew Lunn <[email protected]>
12965 L:      [email protected]
12966 S:      Maintained
12967 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12968 F:      Documentation/i2c/busses/i2c-ocores.rst
12969 F:      drivers/i2c/busses/i2c-ocores.c
12970 F:      include/linux/platform_data/i2c-ocores.h
12971
12972 OPENRISC ARCHITECTURE
12973 M:      Jonas Bonn <[email protected]>
12974 M:      Stefan Kristiansson <[email protected]>
12975 M:      Stafford Horne <[email protected]>
12976 L:      [email protected]
12977 S:      Maintained
12978 W:      http://openrisc.io
12979 T:      git git://github.com/openrisc/linux.git
12980 F:      Documentation/devicetree/bindings/openrisc/
12981 F:      Documentation/openrisc/
12982 F:      arch/openrisc/
12983 F:      drivers/irqchip/irq-ompic.c
12984 F:      drivers/irqchip/irq-or1k-*
12985
12986 OPENVSWITCH
12987 M:      Pravin B Shelar <[email protected]>
12988 L:      [email protected]
12989 L:      [email protected]
12990 S:      Maintained
12991 W:      http://openvswitch.org
12992 F:      include/uapi/linux/openvswitch.h
12993 F:      net/openvswitch/
12994
12995 OPERATING PERFORMANCE POINTS (OPP)
12996 M:      Viresh Kumar <[email protected]>
12997 M:      Nishanth Menon <[email protected]>
12998 M:      Stephen Boyd <[email protected]>
12999 L:      [email protected]
13000 S:      Maintained
13001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13002 F:      Documentation/devicetree/bindings/opp/
13003 F:      Documentation/power/opp.rst
13004 F:      drivers/opp/
13005 F:      include/linux/pm_opp.h
13006
13007 OPL4 DRIVER
13008 M:      Clemens Ladisch <[email protected]>
13009 L:      [email protected] (moderated for non-subscribers)
13010 S:      Maintained
13011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13012 F:      sound/drivers/opl4/
13013
13014 OPROFILE
13015 M:      Robert Richter <[email protected]>
13016 L:      [email protected]
13017 S:      Maintained
13018 F:      arch/*/include/asm/oprofile*.h
13019 F:      arch/*/oprofile/
13020 F:      drivers/oprofile/
13021 F:      include/linux/oprofile.h
13022
13023 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13024 M:      Mark Fasheh <[email protected]>
13025 M:      Joel Becker <[email protected]>
13026 M:      Joseph Qi <[email protected]>
13027 L:      [email protected] (moderated for non-subscribers)
13028 S:      Supported
13029 W:      http://ocfs2.wiki.kernel.org
13030 F:      Documentation/filesystems/dlmfs.rst
13031 F:      Documentation/filesystems/ocfs2.rst
13032 F:      fs/ocfs2/
13033
13034 ORANGEFS FILESYSTEM
13035 M:      Mike Marshall <[email protected]>
13036 R:      Martin Brandenburg <[email protected]>
13037 L:      [email protected]
13038 S:      Supported
13039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13040 F:      Documentation/filesystems/orangefs.rst
13041 F:      fs/orangefs/
13042
13043 ORINOCO DRIVER
13044 L:      [email protected]
13045 S:      Orphan
13046 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13047 W:      http://www.nongnu.org/orinoco/
13048 F:      drivers/net/wireless/intersil/orinoco/
13049
13050 OV2659 OMNIVISION SENSOR DRIVER
13051 M:      "Lad, Prabhakar" <[email protected]>
13052 L:      [email protected]
13053 S:      Maintained
13054 W:      https://linuxtv.org
13055 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13056 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13057 F:      drivers/media/i2c/ov2659.c
13058 F:      include/media/i2c/ov2659.h
13059
13060 OVERLAY FILESYSTEM
13061 M:      Miklos Szeredi <[email protected]>
13062 L:      [email protected]
13063 S:      Supported
13064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13065 F:      Documentation/filesystems/overlayfs.rst
13066 F:      fs/overlayfs/
13067
13068 P54 WIRELESS DRIVER
13069 M:      Christian Lamparter <[email protected]>
13070 L:      [email protected]
13071 S:      Maintained
13072 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13073 F:      drivers/net/wireless/intersil/p54/
13074
13075 PACKING
13076 M:      Vladimir Oltean <[email protected]>
13077 L:      [email protected]
13078 S:      Supported
13079 F:      Documentation/core-api/packing.rst
13080 F:      include/linux/packing.h
13081 F:      lib/packing.c
13082
13083 PADATA PARALLEL EXECUTION MECHANISM
13084 M:      Steffen Klassert <[email protected]>
13085 L:      [email protected]
13086 S:      Maintained
13087 F:      Documentation/core-api/padata.rst
13088 F:      include/linux/padata.h
13089 F:      kernel/padata.c
13090
13091 PAGE POOL
13092 M:      Jesper Dangaard Brouer <[email protected]>
13093 M:      Ilias Apalodimas <[email protected]>
13094 L:      [email protected]
13095 S:      Supported
13096 F:      include/net/page_pool.h
13097 F:      net/core/page_pool.c
13098
13099 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13100 M:      Harald Welte <[email protected]>
13101 L:      [email protected]
13102 S:      Maintained
13103 F:      drivers/platform/x86/panasonic-laptop.c
13104
13105 PARALLAX PING IIO SENSOR DRIVER
13106 M:      Andreas Klinger <[email protected]>
13107 L:      [email protected]
13108 S:      Maintained
13109 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13110 F:      drivers/iio/proximity/ping.c
13111
13112 PARALLEL LCD/KEYPAD PANEL DRIVER
13113 M:      Willy Tarreau <[email protected]>
13114 M:      Ksenija Stanojevic <[email protected]>
13115 S:      Odd Fixes
13116 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13117 F:      drivers/auxdisplay/panel.c
13118
13119 PARALLEL PORT SUBSYSTEM
13120 M:      Sudip Mukherjee <[email protected]>
13121 M:      Sudip Mukherjee <[email protected]>
13122 L:      [email protected] (subscribers-only)
13123 S:      Maintained
13124 F:      Documentation/driver-api/parport*.rst
13125 F:      drivers/char/ppdev.c
13126 F:      drivers/parport/
13127 F:      include/linux/parport*.h
13128 F:      include/uapi/linux/ppdev.h
13129
13130 PARAVIRT_OPS INTERFACE
13131 M:      Juergen Gross <[email protected]>
13132 M:      Deep Shah <[email protected]>
13133 M:      "VMware, Inc." <[email protected]>
13134 L:      [email protected]
13135 S:      Supported
13136 F:      Documentation/virt/paravirt_ops.rst
13137 F:      arch/*/include/asm/paravirt*.h
13138 F:      arch/*/kernel/paravirt*
13139 F:      include/linux/hypervisor.h
13140
13141 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13142 M:      Tim Waugh <[email protected]>
13143 L:      [email protected] (subscribers-only)
13144 S:      Maintained
13145 F:      Documentation/admin-guide/blockdev/paride.rst
13146 F:      drivers/block/paride/
13147
13148 PARISC ARCHITECTURE
13149 M:      "James E.J. Bottomley" <[email protected]>
13150 M:      Helge Deller <[email protected]>
13151 L:      [email protected]
13152 S:      Maintained
13153 W:      https://parisc.wiki.kernel.org
13154 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
13155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13157 F:      Documentation/parisc/
13158 F:      arch/parisc/
13159 F:      drivers/char/agp/parisc-agp.c
13160 F:      drivers/input/misc/hp_sdc_rtc.c
13161 F:      drivers/input/serio/gscps2.c
13162 F:      drivers/input/serio/hp_sdc*
13163 F:      drivers/parisc/
13164 F:      drivers/parport/parport_gsc.*
13165 F:      drivers/tty/serial/8250/8250_gsc.c
13166 F:      drivers/video/console/sti*
13167 F:      drivers/video/fbdev/sti*
13168 F:      drivers/video/logo/logo_parisc*
13169 F:      include/linux/hp_sdc.h
13170
13171 PARMAN
13172 M:      Jiri Pirko <[email protected]>
13173 L:      [email protected]
13174 S:      Supported
13175 F:      include/linux/parman.h
13176 F:      lib/parman.c
13177 F:      lib/test_parman.c
13178
13179 PC ENGINES APU BOARD DRIVER
13180 M:      Enrico Weigelt, metux IT consult <[email protected]>
13181 S:      Maintained
13182 F:      drivers/platform/x86/pcengines-apuv2.c
13183
13184 PC87360 HARDWARE MONITORING DRIVER
13185 M:      Jim Cromie <[email protected]>
13186 L:      [email protected]
13187 S:      Maintained
13188 F:      Documentation/hwmon/pc87360.rst
13189 F:      drivers/hwmon/pc87360.c
13190
13191 PC8736x GPIO DRIVER
13192 M:      Jim Cromie <[email protected]>
13193 S:      Maintained
13194 F:      drivers/char/pc8736x_gpio.c
13195
13196 PC87427 HARDWARE MONITORING DRIVER
13197 M:      Jean Delvare <[email protected]>
13198 L:      [email protected]
13199 S:      Maintained
13200 F:      Documentation/hwmon/pc87427.rst
13201 F:      drivers/hwmon/pc87427.c
13202
13203 PCA9532 LED DRIVER
13204 M:      Riku Voipio <[email protected]>
13205 S:      Maintained
13206 F:      drivers/leds/leds-pca9532.c
13207 F:      include/linux/leds-pca9532.h
13208
13209 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13210 M:      Guenter Roeck <[email protected]>
13211 L:      [email protected]
13212 S:      Maintained
13213 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13214
13215 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13216 M:      Khalid Aziz <[email protected]>
13217 S:      Maintained
13218 F:      drivers/firmware/pcdp.*
13219
13220 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13221 M:      Thomas Petazzoni <[email protected]>
13222 M:      Pali Rohár <[email protected]>
13223 L:      [email protected]
13224 L:      [email protected] (moderated for non-subscribers)
13225 S:      Maintained
13226 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13227 F:      drivers/pci/controller/pci-aardvark.c
13228
13229 PCI DRIVER FOR ALTERA PCIE IP
13230 M:      Ley Foon Tan <[email protected]>
13231 L:      [email protected] (moderated for non-subscribers)
13232 L:      [email protected]
13233 S:      Supported
13234 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13235 F:      drivers/pci/controller/pcie-altera.c
13236
13237 PCI DRIVER FOR APPLIEDMICRO XGENE
13238 M:      Toan Le <[email protected]>
13239 L:      [email protected]
13240 L:      [email protected]
13241 S:      Maintained
13242 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13243 F:      drivers/pci/controller/pci-xgene.c
13244
13245 PCI DRIVER FOR ARM VERSATILE PLATFORM
13246 M:      Rob Herring <[email protected]>
13247 L:      [email protected]
13248 L:      [email protected]
13249 S:      Maintained
13250 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13251 F:      drivers/pci/controller/pci-versatile.c
13252
13253 PCI DRIVER FOR ARMADA 8K
13254 M:      Thomas Petazzoni <[email protected]>
13255 L:      [email protected]
13256 L:      [email protected]
13257 S:      Maintained
13258 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13259 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13260
13261 PCI DRIVER FOR CADENCE PCIE IP
13262 M:      Tom Joseph <[email protected]>
13263 L:      [email protected]
13264 S:      Maintained
13265 F:      Documentation/devicetree/bindings/pci/cdns,*
13266 F:      drivers/pci/controller/cadence/
13267
13268 PCI DRIVER FOR FREESCALE LAYERSCAPE
13269 M:      Minghuan Lian <[email protected]>
13270 M:      Mingkai Hu <[email protected]>
13271 M:      Roy Zang <[email protected]>
13272 L:      [email protected]
13273 L:      [email protected]
13274 L:      [email protected]
13275 S:      Maintained
13276 F:      drivers/pci/controller/dwc/*layerscape*
13277
13278 PCI DRIVER FOR GENERIC OF HOSTS
13279 M:      Will Deacon <[email protected]>
13280 L:      [email protected]
13281 L:      [email protected] (moderated for non-subscribers)
13282 S:      Maintained
13283 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13284 F:      drivers/pci/controller/pci-host-common.c
13285 F:      drivers/pci/controller/pci-host-generic.c
13286
13287 PCI DRIVER FOR IMX6
13288 M:      Richard Zhu <[email protected]>
13289 M:      Lucas Stach <[email protected]>
13290 L:      [email protected]
13291 L:      [email protected] (moderated for non-subscribers)
13292 S:      Maintained
13293 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13294 F:      drivers/pci/controller/dwc/*imx6*
13295
13296 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13297 M:      Jonathan Derrick <[email protected]>
13298 L:      [email protected]
13299 S:      Supported
13300 F:      drivers/pci/controller/vmd.c
13301
13302 PCI DRIVER FOR MICROSEMI SWITCHTEC
13303 M:      Kurt Schwemmer <[email protected]>
13304 M:      Logan Gunthorpe <[email protected]>
13305 L:      [email protected]
13306 S:      Maintained
13307 F:      Documentation/ABI/testing/sysfs-class-switchtec
13308 F:      Documentation/driver-api/switchtec.rst
13309 F:      drivers/ntb/hw/mscc/
13310 F:      drivers/pci/switch/switchtec*
13311 F:      include/linux/switchtec.h
13312 F:      include/uapi/linux/switchtec_ioctl.h
13313
13314 PCI DRIVER FOR MOBIVEIL PCIE IP
13315 M:      Karthikeyan Mitran <[email protected]>
13316 M:      Hou Zhiqiang <[email protected]>
13317 L:      [email protected]
13318 S:      Supported
13319 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13320 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13321
13322 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13323 M:      Thomas Petazzoni <[email protected]>
13324 M:      Jason Cooper <[email protected]>
13325 L:      [email protected]
13326 L:      [email protected] (moderated for non-subscribers)
13327 S:      Maintained
13328 F:      drivers/pci/controller/*mvebu*
13329
13330 PCI DRIVER FOR NVIDIA TEGRA
13331 M:      Thierry Reding <[email protected]>
13332 L:      [email protected]
13333 L:      [email protected]
13334 S:      Supported
13335 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13336 F:      drivers/pci/controller/pci-tegra.c
13337
13338 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13339 M:      Hou Zhiqiang <[email protected]>
13340 L:      [email protected]
13341 L:      [email protected]
13342 S:      Maintained
13343 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13344 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13345
13346 PCI DRIVER FOR RENESAS R-CAR
13347 M:      Marek Vasut <[email protected]>
13348 M:      Yoshihiro Shimoda <[email protected]>
13349 L:      [email protected]
13350 L:      [email protected]
13351 S:      Maintained
13352 F:      Documentation/devicetree/bindings/pci/*rcar*
13353 F:      drivers/pci/controller/*rcar*
13354
13355 PCI DRIVER FOR SAMSUNG EXYNOS
13356 M:      Jingoo Han <[email protected]>
13357 L:      [email protected]
13358 L:      [email protected] (moderated for non-subscribers)
13359 L:      [email protected] (moderated for non-subscribers)
13360 S:      Maintained
13361 F:      drivers/pci/controller/dwc/pci-exynos.c
13362
13363 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13364 M:      Jingoo Han <[email protected]>
13365 M:      Gustavo Pimentel <[email protected]>
13366 L:      [email protected]
13367 S:      Maintained
13368 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13369 F:      drivers/pci/controller/dwc/*designware*
13370
13371 PCI DRIVER FOR TI DRA7XX/J721E
13372 M:      Kishon Vijay Abraham I <[email protected]>
13373 L:      [email protected]
13374 L:      [email protected]
13375 L:      [email protected]
13376 S:      Supported
13377 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13378 F:      drivers/pci/controller/cadence/pci-j721e.c
13379 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13380
13381 PCI DRIVER FOR TI KEYSTONE
13382 M:      Murali Karicheri <[email protected]>
13383 L:      [email protected]
13384 L:      [email protected] (moderated for non-subscribers)
13385 S:      Maintained
13386 F:      drivers/pci/controller/dwc/pci-keystone.c
13387
13388 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13389 M:      Linus Walleij <[email protected]>
13390 L:      [email protected]
13391 S:      Maintained
13392 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13393 F:      drivers/pci/controller/pci-v3-semi.c
13394
13395 PCI ENDPOINT SUBSYSTEM
13396 M:      Kishon Vijay Abraham I <[email protected]>
13397 M:      Lorenzo Pieralisi <[email protected]>
13398 L:      [email protected]
13399 S:      Supported
13400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13401 F:      drivers/misc/pci_endpoint_test.c
13402 F:      drivers/pci/endpoint/
13403 F:      tools/pci/
13404
13405 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13406 M:      Russell Currey <[email protected]>
13407 M:      Oliver O'Halloran <[email protected]>
13408 L:      [email protected]
13409 S:      Supported
13410 F:      Documentation/PCI/pci-error-recovery.rst
13411 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13412 F:      arch/powerpc/include/*/eeh*.h
13413 F:      arch/powerpc/kernel/eeh*.c
13414 F:      arch/powerpc/platforms/*/eeh*.c
13415 F:      drivers/pci/pcie/aer.c
13416 F:      drivers/pci/pcie/dpc.c
13417 F:      drivers/pci/pcie/err.c
13418
13419 PCI ERROR RECOVERY
13420 M:      Linas Vepstas <[email protected]>
13421 L:      [email protected]
13422 S:      Supported
13423 F:      Documentation/PCI/pci-error-recovery.rst
13424
13425 PCI MSI DRIVER FOR ALTERA MSI IP
13426 M:      Ley Foon Tan <[email protected]>
13427 L:      [email protected] (moderated for non-subscribers)
13428 L:      [email protected]
13429 S:      Supported
13430 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13431 F:      drivers/pci/controller/pcie-altera-msi.c
13432
13433 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13434 M:      Toan Le <[email protected]>
13435 L:      [email protected]
13436 L:      [email protected]
13437 S:      Maintained
13438 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13439 F:      drivers/pci/controller/pci-xgene-msi.c
13440
13441 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13442 M:      Lorenzo Pieralisi <[email protected]>
13443 R:      Rob Herring <[email protected]>
13444 L:      [email protected]
13445 S:      Supported
13446 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13448 F:      drivers/pci/controller/
13449
13450 PCI SUBSYSTEM
13451 M:      Bjorn Helgaas <[email protected]>
13452 L:      [email protected]
13453 S:      Supported
13454 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13456 F:      Documentation/PCI/
13457 F:      Documentation/devicetree/bindings/pci/
13458 F:      arch/x86/kernel/early-quirks.c
13459 F:      arch/x86/kernel/quirks.c
13460 F:      arch/x86/pci/
13461 F:      drivers/acpi/pci*
13462 F:      drivers/pci/
13463 F:      include/asm-generic/pci*
13464 F:      include/linux/of_pci.h
13465 F:      include/linux/pci*
13466 F:      include/uapi/linux/pci*
13467 F:      lib/pci*
13468
13469 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13470 M:      Jonathan Chocron <[email protected]>
13471 L:      [email protected]
13472 S:      Maintained
13473 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13474 F:      drivers/pci/controller/dwc/pcie-al.c
13475
13476 PCIE DRIVER FOR AMLOGIC MESON
13477 M:      Yue Wang <[email protected]>
13478 L:      [email protected]
13479 L:      [email protected]
13480 S:      Maintained
13481 F:      drivers/pci/controller/dwc/pci-meson.c
13482
13483 PCIE DRIVER FOR AXIS ARTPEC
13484 M:      Jesper Nilsson <[email protected]>
13485 L:      [email protected]
13486 L:      [email protected]
13487 S:      Maintained
13488 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13489 F:      drivers/pci/controller/dwc/*artpec*
13490
13491 PCIE DRIVER FOR CAVIUM THUNDERX
13492 M:      Robert Richter <[email protected]>
13493 L:      [email protected]
13494 L:      [email protected] (moderated for non-subscribers)
13495 S:      Odd Fixes
13496 F:      drivers/pci/controller/pci-thunder-*
13497
13498 PCIE DRIVER FOR HISILICON
13499 M:      Zhou Wang <[email protected]>
13500 L:      [email protected]
13501 S:      Maintained
13502 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13503 F:      drivers/pci/controller/dwc/pcie-hisi.c
13504
13505 PCIE DRIVER FOR HISILICON KIRIN
13506 M:      Xiaowei Song <[email protected]>
13507 M:      Binghui Wang <[email protected]>
13508 L:      [email protected]
13509 S:      Maintained
13510 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13511 F:      drivers/pci/controller/dwc/pcie-kirin.c
13512
13513 PCIE DRIVER FOR HISILICON STB
13514 M:      Shawn Guo <[email protected]>
13515 L:      [email protected]
13516 S:      Maintained
13517 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13518 F:      drivers/pci/controller/dwc/pcie-histb.c
13519
13520 PCIE DRIVER FOR MEDIATEK
13521 M:      Ryder Lee <[email protected]>
13522 L:      [email protected]
13523 L:      [email protected]
13524 S:      Supported
13525 F:      Documentation/devicetree/bindings/pci/mediatek*
13526 F:      drivers/pci/controller/*mediatek*
13527
13528 PCIE DRIVER FOR QUALCOMM MSM
13529 M:      Stanimir Varbanov <[email protected]>
13530 L:      [email protected]
13531 L:      [email protected]
13532 S:      Maintained
13533 F:      drivers/pci/controller/dwc/*qcom*
13534
13535 PCIE DRIVER FOR ROCKCHIP
13536 M:      Shawn Lin <[email protected]>
13537 L:      [email protected]
13538 L:      [email protected]
13539 S:      Maintained
13540 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13541 F:      drivers/pci/controller/pcie-rockchip*
13542
13543 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13544 M:      Kunihiko Hayashi <[email protected]>
13545 L:      [email protected]
13546 S:      Maintained
13547 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13548 F:      drivers/pci/controller/dwc/pcie-uniphier*
13549
13550 PCIE DRIVER FOR ST SPEAR13XX
13551 M:      Pratyush Anand <[email protected]>
13552 L:      [email protected]
13553 S:      Maintained
13554 F:      drivers/pci/controller/dwc/*spear*
13555
13556 PCMCIA SUBSYSTEM
13557 M:      Dominik Brodowski <[email protected]>
13558 S:      Odd Fixes
13559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13560 F:      Documentation/pcmcia/
13561 F:      drivers/pcmcia/
13562 F:      include/pcmcia/
13563 F:      tools/pcmcia/
13564
13565 PCNET32 NETWORK DRIVER
13566 M:      Don Fry <[email protected]>
13567 L:      [email protected]
13568 S:      Maintained
13569 F:      drivers/net/ethernet/amd/pcnet32.c
13570
13571 PCRYPT PARALLEL CRYPTO ENGINE
13572 M:      Steffen Klassert <[email protected]>
13573 L:      [email protected]
13574 S:      Maintained
13575 F:      crypto/pcrypt.c
13576 F:      include/crypto/pcrypt.h
13577
13578 PEAQ WMI HOTKEYS DRIVER
13579 M:      Hans de Goede <[email protected]>
13580 L:      [email protected]
13581 S:      Maintained
13582 F:      drivers/platform/x86/peaq-wmi.c
13583
13584 PENSANDO ETHERNET DRIVERS
13585 M:      Shannon Nelson <[email protected]>
13586 M:      Pensando Drivers <[email protected]>
13587 L:      [email protected]
13588 S:      Supported
13589 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
13590 F:      drivers/net/ethernet/pensando/
13591
13592 PER-CPU MEMORY ALLOCATOR
13593 M:      Dennis Zhou <[email protected]>
13594 M:      Tejun Heo <[email protected]>
13595 M:      Christoph Lameter <[email protected]>
13596 S:      Maintained
13597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13598 F:      arch/*/include/asm/percpu.h
13599 F:      include/linux/percpu*.h
13600 F:      mm/percpu*.c
13601
13602 PER-TASK DELAY ACCOUNTING
13603 M:      Balbir Singh <[email protected]>
13604 S:      Maintained
13605 F:      include/linux/delayacct.h
13606 F:      kernel/delayacct.c
13607
13608 PERFORMANCE EVENTS SUBSYSTEM
13609 M:      Peter Zijlstra <[email protected]>
13610 M:      Ingo Molnar <[email protected]>
13611 M:      Arnaldo Carvalho de Melo <[email protected]>
13612 R:      Mark Rutland <[email protected]>
13613 R:      Alexander Shishkin <[email protected]>
13614 R:      Jiri Olsa <[email protected]>
13615 R:      Namhyung Kim <[email protected]>
13616 L:      [email protected]
13617 S:      Supported
13618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13619 F:      arch/*/events/*
13620 F:      arch/*/events/*/*
13621 F:      arch/*/include/asm/perf_event.h
13622 F:      arch/*/kernel/*/*/perf_event*.c
13623 F:      arch/*/kernel/*/perf_event*.c
13624 F:      arch/*/kernel/perf_callchain.c
13625 F:      arch/*/kernel/perf_event*.c
13626 F:      include/linux/perf_event.h
13627 F:      include/uapi/linux/perf_event.h
13628 F:      kernel/events/*
13629 F:      tools/lib/perf/
13630 F:      tools/perf/
13631
13632 PERFORMANCE EVENTS TOOLING ARM64
13633 R:      John Garry <[email protected]>
13634 R:      Will Deacon <[email protected]>
13635 R:      Mathieu Poirier <[email protected]>
13636 R:      Leo Yan <[email protected]>
13637 L:      [email protected] (moderated for non-subscribers)
13638 S:      Supported
13639 F:      tools/build/feature/test-libopencsd.c
13640 F:      tools/perf/arch/arm*/
13641 F:      tools/perf/pmu-events/arch/arm64/
13642 F:      tools/perf/util/arm-spe*
13643 F:      tools/perf/util/cs-etm*
13644
13645 PERSONALITY HANDLING
13646 M:      Christoph Hellwig <[email protected]>
13647 L:      [email protected]
13648 S:      Maintained
13649 F:      include/linux/personality.h
13650 F:      include/uapi/linux/personality.h
13651
13652 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13653 M:      Marcus Folkesson <[email protected]>
13654 L:      [email protected]
13655 S:      Maintained
13656 F:      Documentation/input/devices/pxrc.rst
13657 F:      drivers/input/joystick/pxrc.c
13658
13659 PHONET PROTOCOL
13660 M:      Remi Denis-Courmont <[email protected]>
13661 S:      Supported
13662 F:      Documentation/networking/phonet.rst
13663 F:      include/linux/phonet.h
13664 F:      include/net/phonet/
13665 F:      include/uapi/linux/phonet.h
13666 F:      net/phonet/
13667
13668 PHRAM MTD DRIVER
13669 M:      Joern Engel <[email protected]>
13670 L:      [email protected]
13671 S:      Maintained
13672 F:      drivers/mtd/devices/phram.c
13673
13674 PICOLCD HID DRIVER
13675 M:      Bruno Prémont <[email protected]>
13676 L:      [email protected]
13677 S:      Maintained
13678 F:      drivers/hid/hid-picolcd*
13679
13680 PICOXCELL SUPPORT
13681 M:      Jamie Iles <[email protected]>
13682 L:      [email protected] (moderated for non-subscribers)
13683 S:      Supported
13684 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13685 F:      arch/arm/boot/dts/picoxcell*
13686 F:      arch/arm/mach-picoxcell/
13687 F:      drivers/crypto/picoxcell*
13688
13689 PIDFD API
13690 M:      Christian Brauner <[email protected]>
13691 L:      [email protected]
13692 S:      Maintained
13693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13694 F:      samples/pidfd/
13695 F:      tools/testing/selftests/clone3/
13696 F:      tools/testing/selftests/pid_namespace/
13697 F:      tools/testing/selftests/pidfd/
13698 K:      (?i)pidfd
13699 K:      (?i)clone3
13700 K:      \b(clone_args|kernel_clone_args)\b
13701
13702 PIN CONTROL SUBSYSTEM
13703 M:      Linus Walleij <[email protected]>
13704 L:      [email protected]
13705 S:      Maintained
13706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13707 F:      Documentation/devicetree/bindings/pinctrl/
13708 F:      Documentation/driver-api/pinctl.rst
13709 F:      drivers/pinctrl/
13710 F:      include/linux/pinctrl/
13711
13712 PIN CONTROLLER - FREESCALE
13713 M:      Dong Aisheng <[email protected]>
13714 M:      Fabio Estevam <[email protected]>
13715 M:      Shawn Guo <[email protected]>
13716 M:      Stefan Agner <[email protected]>
13717 R:      Pengutronix Kernel Team <[email protected]>
13718 L:      [email protected]
13719 S:      Maintained
13720 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13721 F:      drivers/pinctrl/freescale/
13722
13723 PIN CONTROLLER - INTEL
13724 M:      Mika Westerberg <[email protected]>
13725 M:      Andy Shevchenko <[email protected]>
13726 S:      Maintained
13727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13728 F:      drivers/pinctrl/intel/
13729
13730 PIN CONTROLLER - MEDIATEK
13731 M:      Sean Wang <[email protected]>
13732 L:      [email protected] (moderated for non-subscribers)
13733 S:      Maintained
13734 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13735 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13736 F:      drivers/pinctrl/mediatek/
13737
13738 PIN CONTROLLER - MICROCHIP AT91
13739 M:      Ludovic Desroches <[email protected]>
13740 L:      [email protected] (moderated for non-subscribers)
13741 L:      [email protected]
13742 S:      Supported
13743 F:      drivers/gpio/gpio-sama5d2-piobu.c
13744 F:      drivers/pinctrl/pinctrl-at91*
13745
13746 PIN CONTROLLER - QUALCOMM
13747 M:      Bjorn Andersson <[email protected]>
13748 L:      [email protected]
13749 S:      Maintained
13750 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13751 F:      drivers/pinctrl/qcom/
13752
13753 PIN CONTROLLER - RENESAS
13754 M:      Geert Uytterhoeven <[email protected]>
13755 L:      [email protected]
13756 S:      Supported
13757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13758 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
13759 F:      drivers/pinctrl/pinctrl-rz*
13760 F:      drivers/pinctrl/sh-pfc/
13761
13762 PIN CONTROLLER - SAMSUNG
13763 M:      Tomasz Figa <[email protected]>
13764 M:      Krzysztof Kozlowski <[email protected]>
13765 M:      Sylwester Nawrocki <[email protected]>
13766 L:      [email protected] (moderated for non-subscribers)
13767 L:      [email protected] (moderated for non-subscribers)
13768 S:      Maintained
13769 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13771 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13772 F:      drivers/pinctrl/samsung/
13773 F:      include/dt-bindings/pinctrl/samsung.h
13774
13775 PIN CONTROLLER - SINGLE
13776 M:      Tony Lindgren <[email protected]>
13777 M:      Haojian Zhuang <[email protected]>
13778 L:      [email protected] (moderated for non-subscribers)
13779 L:      [email protected]
13780 S:      Maintained
13781 F:      drivers/pinctrl/pinctrl-single.c
13782
13783 PIN CONTROLLER - ST SPEAR
13784 M:      Viresh Kumar <[email protected]>
13785 L:      [email protected] (moderated for non-subscribers)
13786 S:      Maintained
13787 W:      http://www.st.com/spear
13788 F:      drivers/pinctrl/spear/
13789
13790 PISTACHIO SOC SUPPORT
13791 M:      James Hartley <[email protected]>
13792 L:      [email protected]
13793 S:      Odd Fixes
13794 F:      arch/mips/boot/dts/img/pistachio*
13795 F:      arch/mips/configs/pistachio*_defconfig
13796 F:      arch/mips/include/asm/mach-pistachio/
13797 F:      arch/mips/pistachio/
13798
13799 PKTCDVD DRIVER
13800 M:      [email protected]
13801 S:      Orphan
13802 F:      drivers/block/pktcdvd.c
13803 F:      include/linux/pktcdvd.h
13804 F:      include/uapi/linux/pktcdvd.h
13805
13806 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13807 M:      Tomasz Duszynski <[email protected]>
13808 S:      Maintained
13809 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13810 F:      drivers/iio/chemical/pms7003.c
13811
13812 PLDMFW LIBRARY
13813 M:      Jacob Keller <[email protected]>
13814 S:      Maintained
13815 F:      Documentation/driver-api/pldmfw/
13816 F:      include/linux/pldmfw.h
13817 F:      lib/pldmfw/
13818
13819 PLX DMA DRIVER
13820 M:      Logan Gunthorpe <[email protected]>
13821 S:      Maintained
13822 F:      drivers/dma/plx_dma.c
13823
13824 PM-GRAPH UTILITY
13825 M:      "Todd E Brandt" <[email protected]>
13826 L:      [email protected]
13827 S:      Supported
13828 W:      https://01.org/pm-graph
13829 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13830 T:      git git://github.com/intel/pm-graph
13831 F:      tools/power/pm-graph
13832
13833 PMBUS HARDWARE MONITORING DRIVERS
13834 M:      Guenter Roeck <[email protected]>
13835 L:      [email protected]
13836 S:      Maintained
13837 W:      http://hwmon.wiki.kernel.org/
13838 W:      http://www.roeck-us.net/linux/drivers/
13839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13840 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13841 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13842 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13843 F:      Documentation/hwmon/adm1275.rst
13844 F:      Documentation/hwmon/ibm-cffps.rst
13845 F:      Documentation/hwmon/ir35221.rst
13846 F:      Documentation/hwmon/lm25066.rst
13847 F:      Documentation/hwmon/ltc2978.rst
13848 F:      Documentation/hwmon/ltc3815.rst
13849 F:      Documentation/hwmon/max16064.rst
13850 F:      Documentation/hwmon/max20751.rst
13851 F:      Documentation/hwmon/max31785.rst
13852 F:      Documentation/hwmon/max34440.rst
13853 F:      Documentation/hwmon/max8688.rst
13854 F:      Documentation/hwmon/pmbus-core.rst
13855 F:      Documentation/hwmon/pmbus.rst
13856 F:      Documentation/hwmon/tps40422.rst
13857 F:      Documentation/hwmon/ucd9000.rst
13858 F:      Documentation/hwmon/ucd9200.rst
13859 F:      Documentation/hwmon/zl6100.rst
13860 F:      drivers/hwmon/pmbus/
13861 F:      include/linux/pmbus.h
13862
13863 PMC SIERRA MaxRAID DRIVER
13864 L:      [email protected]
13865 S:      Orphan
13866 W:      http://www.pmc-sierra.com/
13867 F:      drivers/scsi/pmcraid.*
13868
13869 PMC SIERRA PM8001 DRIVER
13870 M:      Jack Wang <[email protected]>
13871 L:      [email protected]
13872 S:      Supported
13873 F:      drivers/scsi/pm8001/
13874
13875 PNI RM3100 IIO DRIVER
13876 M:      Song Qiang <[email protected]>
13877 L:      [email protected]
13878 S:      Maintained
13879 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13880 F:      drivers/iio/magnetometer/rm3100*
13881
13882 PNP SUPPORT
13883 M:      "Rafael J. Wysocki" <[email protected]>
13884 L:      [email protected]
13885 S:      Maintained
13886 F:      drivers/pnp/
13887 F:      include/linux/pnp.h
13888
13889 POSIX CLOCKS and TIMERS
13890 M:      Thomas Gleixner <[email protected]>
13891 L:      [email protected]
13892 S:      Maintained
13893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13894 F:      fs/timerfd.c
13895 F:      include/linux/time_namespace.h
13896 F:      include/linux/timer*
13897 F:      kernel/time/*timer*
13898 F:      kernel/time/namespace.c
13899
13900 POWER MANAGEMENT CORE
13901 M:      "Rafael J. Wysocki" <[email protected]>
13902 L:      [email protected]
13903 S:      Supported
13904 B:      https://bugzilla.kernel.org
13905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13906 F:      drivers/base/power/
13907 F:      drivers/powercap/
13908 F:      include/linux/intel_rapl.h
13909 F:      include/linux/pm.h
13910 F:      include/linux/pm_*
13911 F:      include/linux/powercap.h
13912 F:      kernel/configs/nopm.config
13913
13914 POWER STATE COORDINATION INTERFACE (PSCI)
13915 M:      Mark Rutland <[email protected]>
13916 M:      Lorenzo Pieralisi <[email protected]>
13917 L:      [email protected]
13918 S:      Maintained
13919 F:      drivers/firmware/psci/
13920 F:      include/linux/psci.h
13921 F:      include/uapi/linux/psci.h
13922
13923 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13924 M:      Sebastian Reichel <[email protected]>
13925 L:      [email protected]
13926 S:      Maintained
13927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13928 F:      Documentation/ABI/testing/sysfs-class-power
13929 F:      Documentation/devicetree/bindings/power/supply/
13930 F:      drivers/power/supply/
13931 F:      include/linux/power_supply.h
13932
13933 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13934 M:      Suraj Jitindar Singh <[email protected]>
13935 L:      [email protected]
13936 S:      Maintained
13937 F:      drivers/char/powernv-op-panel.c
13938
13939 PPP OVER ATM (RFC 2364)
13940 M:      Mitchell Blank Jr <[email protected]>
13941 S:      Maintained
13942 F:      include/uapi/linux/atmppp.h
13943 F:      net/atm/pppoatm.c
13944
13945 PPP OVER ETHERNET
13946 M:      Michal Ostrowski <[email protected]>
13947 S:      Maintained
13948 F:      drivers/net/ppp/pppoe.c
13949 F:      drivers/net/ppp/pppox.c
13950
13951 PPP OVER L2TP
13952 M:      James Chapman <[email protected]>
13953 S:      Maintained
13954 F:      include/linux/if_pppol2tp.h
13955 F:      include/uapi/linux/if_pppol2tp.h
13956 F:      net/l2tp/l2tp_ppp.c
13957
13958 PPP PROTOCOL DRIVERS AND COMPRESSORS
13959 M:      Paul Mackerras <[email protected]>
13960 L:      [email protected]
13961 S:      Maintained
13962 F:      drivers/net/ppp/ppp_*
13963
13964 PPS SUPPORT
13965 M:      Rodolfo Giometti <[email protected]>
13966 L:      [email protected] (subscribers-only)
13967 S:      Maintained
13968 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13969 F:      Documentation/ABI/testing/sysfs-pps
13970 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13971 F:      Documentation/driver-api/pps.rst
13972 F:      drivers/pps/
13973 F:      include/linux/pps*.h
13974 F:      include/uapi/linux/pps.h
13975
13976 PPTP DRIVER
13977 M:      Dmitry Kozlov <[email protected]>
13978 L:      [email protected]
13979 S:      Maintained
13980 W:      http://sourceforge.net/projects/accel-pptp
13981 F:      drivers/net/ppp/pptp.c
13982
13983 PRESSURE STALL INFORMATION (PSI)
13984 M:      Johannes Weiner <[email protected]>
13985 S:      Maintained
13986 F:      include/linux/psi*
13987 F:      kernel/sched/psi.c
13988
13989 PRINTK
13990 M:      Petr Mladek <[email protected]>
13991 M:      Sergey Senozhatsky <[email protected]>
13992 R:      Steven Rostedt <[email protected]>
13993 S:      Maintained
13994 F:      include/linux/printk.h
13995 F:      kernel/printk/
13996
13997 PRISM54 WIRELESS DRIVER
13998 M:      Luis Chamberlain <[email protected]>
13999 L:      [email protected]
14000 S:      Obsolete
14001 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14002 F:      drivers/net/wireless/intersil/prism54/
14003
14004 PROC FILESYSTEM
14005 R:      Alexey Dobriyan <[email protected]>
14006 L:      [email protected]
14007 L:      [email protected]
14008 S:      Maintained
14009 F:      Documentation/filesystems/proc.rst
14010 F:      fs/proc/
14011 F:      include/linux/proc_fs.h
14012 F:      tools/testing/selftests/proc/
14013
14014 PROC SYSCTL
14015 M:      Luis Chamberlain <[email protected]>
14016 M:      Kees Cook <[email protected]>
14017 M:      Iurii Zaikin <[email protected]>
14018 L:      [email protected]
14019 L:      [email protected]
14020 S:      Maintained
14021 F:      fs/proc/proc_sysctl.c
14022 F:      include/linux/sysctl.h
14023 F:      kernel/sysctl-test.c
14024 F:      kernel/sysctl.c
14025 F:      tools/testing/selftests/sysctl/
14026
14027 PS3 NETWORK SUPPORT
14028 M:      Geoff Levand <[email protected]>
14029 L:      [email protected]
14030 L:      [email protected]
14031 S:      Maintained
14032 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14033
14034 PS3 PLATFORM SUPPORT
14035 M:      Geoff Levand <[email protected]>
14036 L:      [email protected]
14037 S:      Maintained
14038 F:      arch/powerpc/boot/ps3*
14039 F:      arch/powerpc/include/asm/lv1call.h
14040 F:      arch/powerpc/include/asm/ps3*.h
14041 F:      arch/powerpc/platforms/ps3/
14042 F:      drivers/*/ps3*
14043 F:      drivers/ps3/
14044 F:      drivers/rtc/rtc-ps3.c
14045 F:      drivers/usb/host/*ps3.c
14046 F:      sound/ppc/snd_ps3*
14047
14048 PS3VRAM DRIVER
14049 M:      Jim Paris <[email protected]>
14050 M:      Geoff Levand <[email protected]>
14051 L:      [email protected]
14052 S:      Maintained
14053 F:      drivers/block/ps3vram.c
14054
14055 PSAMPLE PACKET SAMPLING SUPPORT
14056 M:      Yotam Gigi <[email protected]>
14057 S:      Maintained
14058 F:      include/net/psample.h
14059 F:      include/uapi/linux/psample.h
14060 F:      net/psample
14061
14062 PSTORE FILESYSTEM
14063 M:      Kees Cook <[email protected]>
14064 M:      Anton Vorontsov <[email protected]>
14065 M:      Colin Cross <[email protected]>
14066 M:      Tony Luck <[email protected]>
14067 S:      Maintained
14068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14069 F:      Documentation/admin-guide/ramoops.rst
14070 F:      Documentation/admin-guide/pstore-blk.rst
14071 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14072 F:      drivers/acpi/apei/erst.c
14073 F:      drivers/firmware/efi/efi-pstore.c
14074 F:      fs/pstore/
14075 F:      include/linux/pstore*
14076 K:      \b(pstore|ramoops)
14077
14078 PTP HARDWARE CLOCK SUPPORT
14079 M:      Richard Cochran <[email protected]>
14080 L:      [email protected]
14081 S:      Maintained
14082 W:      http://linuxptp.sourceforge.net/
14083 F:      Documentation/ABI/testing/sysfs-ptp
14084 F:      Documentation/driver-api/ptp.rst
14085 F:      drivers/net/phy/dp83640*
14086 F:      drivers/ptp/*
14087 F:      include/linux/ptp_cl*
14088
14089 PTRACE SUPPORT
14090 M:      Oleg Nesterov <[email protected]>
14091 S:      Maintained
14092 F:      arch/*/*/ptrace*.c
14093 F:      arch/*/include/asm/ptrace*.h
14094 F:      arch/*/ptrace*.c
14095 F:      include/asm-generic/syscall.h
14096 F:      include/linux/ptrace.h
14097 F:      include/linux/regset.h
14098 F:      include/linux/tracehook.h
14099 F:      include/uapi/linux/ptrace.h
14100 F:      include/uapi/linux/ptrace.h
14101 F:      kernel/ptrace.c
14102
14103 PULSE8-CEC DRIVER
14104 M:      Hans Verkuil <[email protected]>
14105 L:      [email protected]
14106 S:      Maintained
14107 T:      git git://linuxtv.org/media_tree.git
14108 F:      Documentation/admin-guide/media/pulse8-cec.rst
14109 F:      drivers/media/cec/usb/pulse8/
14110
14111 PVRUSB2 VIDEO4LINUX DRIVER
14112 M:      Mike Isely <[email protected]>
14113 L:      [email protected]       (subscribers-only)
14114 L:      [email protected]
14115 S:      Maintained
14116 W:      http://www.isely.net/pvrusb2/
14117 T:      git git://linuxtv.org/media_tree.git
14118 F:      Documentation/driver-api/media/drivers/pvrusb2*
14119 F:      drivers/media/usb/pvrusb2/
14120
14121 PWC WEBCAM DRIVER
14122 M:      Hans Verkuil <[email protected]>
14123 L:      [email protected]
14124 S:      Odd Fixes
14125 T:      git git://linuxtv.org/media_tree.git
14126 F:      drivers/media/usb/pwc/*
14127 F:      include/trace/events/pwc.h
14128
14129 PWM FAN DRIVER
14130 M:      Kamil Debski <[email protected]>
14131 M:      Bartlomiej Zolnierkiewicz <[email protected]>
14132 L:      [email protected]
14133 S:      Supported
14134 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14135 F:      Documentation/hwmon/pwm-fan.rst
14136 F:      drivers/hwmon/pwm-fan.c
14137
14138 PWM IR Transmitter
14139 M:      Sean Young <[email protected]>
14140 L:      [email protected]
14141 S:      Maintained
14142 F:      drivers/media/rc/pwm-ir-tx.c
14143
14144 PWM SUBSYSTEM
14145 M:      Thierry Reding <[email protected]>
14146 R:      Uwe Kleine-König <[email protected]>
14147 M:      Lee Jones <[email protected]>
14148 L:      [email protected]
14149 S:      Maintained
14150 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
14151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14152 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14153 F:      Documentation/devicetree/bindings/pwm/
14154 F:      Documentation/driver-api/pwm.rst
14155 F:      drivers/gpio/gpio-mvebu.c
14156 F:      drivers/pwm/
14157 F:      drivers/video/backlight/pwm_bl.c
14158 F:      include/linux/pwm.h
14159 F:      include/linux/pwm_backlight.h
14160 K:      pwm_(config|apply_state|ops)
14161
14162 PXA GPIO DRIVER
14163 M:      Robert Jarzmik <[email protected]>
14164 L:      [email protected]
14165 S:      Maintained
14166 F:      drivers/gpio/gpio-pxa.c
14167
14168 PXA MMCI DRIVER
14169 S:      Orphan
14170
14171 PXA RTC DRIVER
14172 M:      Robert Jarzmik <[email protected]>
14173 L:      [email protected]
14174 S:      Maintained
14175
14176 PXA2xx/PXA3xx SUPPORT
14177 M:      Daniel Mack <[email protected]>
14178 M:      Haojian Zhuang <[email protected]>
14179 M:      Robert Jarzmik <[email protected]>
14180 L:      [email protected] (moderated for non-subscribers)
14181 S:      Maintained
14182 T:      git git://github.com/hzhuang1/linux.git
14183 T:      git git://github.com/rjarzmik/linux.git
14184 F:      arch/arm/boot/dts/pxa*
14185 F:      arch/arm/mach-pxa/
14186 F:      drivers/dma/pxa*
14187 F:      drivers/pcmcia/pxa2xx*
14188 F:      drivers/pinctrl/pxa/
14189 F:      drivers/spi/spi-pxa2xx*
14190 F:      drivers/usb/gadget/udc/pxa2*
14191 F:      include/sound/pxa2xx-lib.h
14192 F:      sound/arm/pxa*
14193 F:      sound/soc/pxa/
14194
14195 QAT DRIVER
14196 M:      Giovanni Cabiddu <[email protected]>
14197 L:      [email protected]
14198 S:      Supported
14199 F:      drivers/crypto/qat/
14200
14201 QCOM AUDIO (ASoC) DRIVERS
14202 M:      Patrick Lai <[email protected]>
14203 M:      Banajit Goswami <[email protected]>
14204 L:      [email protected] (moderated for non-subscribers)
14205 S:      Supported
14206 F:      sound/soc/qcom/
14207
14208 QCOM IPA DRIVER
14209 M:      Alex Elder <[email protected]>
14210 L:      [email protected]
14211 S:      Supported
14212 F:      drivers/net/ipa/
14213
14214 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14215 M:      Gabriel Somlo <[email protected]>
14216 M:      "Michael S. Tsirkin" <[email protected]>
14217 L:      [email protected]
14218 S:      Maintained
14219 F:      drivers/firmware/qemu_fw_cfg.c
14220 F:      include/uapi/linux/qemu_fw_cfg.h
14221
14222 QIB DRIVER
14223 M:      Dennis Dalessandro <[email protected]>
14224 M:      Mike Marciniszyn <[email protected]>
14225 L:      [email protected]
14226 S:      Supported
14227 F:      drivers/infiniband/hw/qib/
14228
14229 QLOGIC QL41xxx FCOE DRIVER
14230 M:      [email protected]
14231 L:      [email protected]
14232 S:      Supported
14233 F:      drivers/scsi/qedf/
14234
14235 QLOGIC QL41xxx ISCSI DRIVER
14236 M:      [email protected]
14237 L:      [email protected]
14238 S:      Supported
14239 F:      drivers/scsi/qedi/
14240
14241 QLOGIC QL4xxx ETHERNET DRIVER
14242 M:      Ariel Elior <[email protected]>
14243 M:      [email protected]
14244 L:      [email protected]
14245 S:      Supported
14246 F:      drivers/net/ethernet/qlogic/qed/
14247 F:      drivers/net/ethernet/qlogic/qede/
14248 F:      include/linux/qed/
14249
14250 QLOGIC QL4xxx RDMA DRIVER
14251 M:      Michal Kalderon <[email protected]>
14252 M:      Ariel Elior <[email protected]>
14253 L:      [email protected]
14254 S:      Supported
14255 F:      drivers/infiniband/hw/qedr/
14256 F:      include/uapi/rdma/qedr-abi.h
14257
14258 QLOGIC QLA1280 SCSI DRIVER
14259 M:      Michael Reed <[email protected]>
14260 L:      [email protected]
14261 S:      Maintained
14262 F:      drivers/scsi/qla1280.[ch]
14263
14264 QLOGIC QLA2XXX FC-SCSI DRIVER
14265 M:      Nilesh Javali <[email protected]>
14266 M:      [email protected]
14267 L:      [email protected]
14268 S:      Supported
14269 F:      Documentation/scsi/LICENSE.qla2xxx
14270 F:      drivers/scsi/qla2xxx/
14271
14272 QLOGIC QLA3XXX NETWORK DRIVER
14273 M:      [email protected]
14274 L:      [email protected]
14275 S:      Supported
14276 F:      Documentation/networking/device_drivers/ethernet/qlogic/LICENSE.qla3xxx
14277 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14278
14279 QLOGIC QLA4XXX iSCSI DRIVER
14280 M:      [email protected]
14281 L:      [email protected]
14282 S:      Supported
14283 F:      Documentation/scsi/LICENSE.qla4xxx
14284 F:      drivers/scsi/qla4xxx/
14285
14286 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14287 M:      Shahed Shaikh <[email protected]>
14288 M:      Manish Chopra <[email protected]>
14289 M:      [email protected]
14290 L:      [email protected]
14291 S:      Supported
14292 F:      drivers/net/ethernet/qlogic/qlcnic/
14293
14294 QLOGIC QLGE 10Gb ETHERNET DRIVER
14295 M:      Manish Chopra <[email protected]>
14296 M:      [email protected]
14297 L:      [email protected]
14298 S:      Supported
14299 F:      drivers/staging/qlge/
14300
14301 QM1D1B0004 MEDIA DRIVER
14302 M:      Akihiro Tsukada <[email protected]>
14303 L:      [email protected]
14304 S:      Odd Fixes
14305 F:      drivers/media/tuners/qm1d1b0004*
14306
14307 QM1D1C0042 MEDIA DRIVER
14308 M:      Akihiro Tsukada <[email protected]>
14309 L:      [email protected]
14310 S:      Odd Fixes
14311 F:      drivers/media/tuners/qm1d1c0042*
14312
14313 QNX4 FILESYSTEM
14314 M:      Anders Larsen <[email protected]>
14315 S:      Maintained
14316 W:      http://www.alarsen.net/linux/qnx4fs/
14317 F:      fs/qnx4/
14318 F:      include/uapi/linux/qnx4_fs.h
14319 F:      include/uapi/linux/qnxtypes.h
14320
14321 QORIQ DPAA2 FSL-MC BUS DRIVER
14322 M:      Stuart Yoder <[email protected]>
14323 M:      Laurentiu Tudor <[email protected]>
14324 L:      [email protected]
14325 S:      Maintained
14326 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14327 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
14328 F:      drivers/bus/fsl-mc/
14329
14330 QT1010 MEDIA DRIVER
14331 M:      Antti Palosaari <[email protected]>
14332 L:      [email protected]
14333 S:      Maintained
14334 W:      https://linuxtv.org
14335 W:      http://palosaari.fi/linux/
14336 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14337 T:      git git://linuxtv.org/anttip/media_tree.git
14338 F:      drivers/media/tuners/qt1010*
14339
14340 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14341 M:      Kalle Valo <[email protected]>
14342 L:      [email protected]
14343 S:      Supported
14344 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14346 F:      drivers/net/wireless/ath/ath10k/
14347
14348 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14349 M:      Kalle Valo <[email protected]>
14350 L:      [email protected]
14351 S:      Supported
14352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14353 F:      drivers/net/wireless/ath/ath11k/
14354
14355 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14356 M:      QCA ath9k Development <[email protected]>
14357 L:      [email protected]
14358 S:      Supported
14359 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14360 F:      drivers/net/wireless/ath/ath9k/
14361
14362 QUALCOMM CAMERA SUBSYSTEM DRIVER
14363 M:      Todor Tomov <[email protected]>
14364 L:      [email protected]
14365 S:      Maintained
14366 F:      Documentation/admin-guide/media/qcom_camss.rst
14367 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14368 F:      drivers/media/platform/qcom/camss/
14369
14370 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14371 M:      Niklas Cassel <[email protected]>
14372 L:      [email protected]
14373 L:      [email protected]
14374 S:      Maintained
14375 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14376 F:      drivers/power/avs/qcom-cpr.c
14377
14378 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14379 M:      Ilia Lin <[email protected]>
14380 L:      [email protected]
14381 S:      Maintained
14382 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14383 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14384
14385 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14386 M:      Timur Tabi <[email protected]>
14387 L:      [email protected]
14388 S:      Maintained
14389 F:      drivers/net/ethernet/qualcomm/emac/
14390
14391 QUALCOMM ETHQOS ETHERNET DRIVER
14392 M:      Vinod Koul <[email protected]>
14393 L:      [email protected]
14394 S:      Maintained
14395 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14396 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14397
14398 QUALCOMM GENERIC INTERFACE I2C DRIVER
14399 M:      Akash Asthana <[email protected]>
14400 M:      Mukesh Savaliya <[email protected]>
14401 L:      [email protected]
14402 L:      [email protected]
14403 S:      Supported
14404 F:      drivers/i2c/busses/i2c-qcom-geni.c
14405
14406 QUALCOMM HEXAGON ARCHITECTURE
14407 M:      Brian Cain <[email protected]>
14408 L:      [email protected]
14409 S:      Supported
14410 F:      arch/hexagon/
14411
14412 QUALCOMM HIDMA DRIVER
14413 M:      Sinan Kaya <[email protected]>
14414 L:      [email protected]
14415 L:      [email protected]
14416 L:      [email protected]
14417 S:      Supported
14418 F:      drivers/dma/qcom/hidma*
14419
14420 QUALCOMM I2C CCI DRIVER
14421 M:      Loic Poulain <[email protected]>
14422 M:      Robert Foss <[email protected]>
14423 L:      [email protected]
14424 L:      [email protected]
14425 S:      Maintained
14426 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14427 F:      drivers/i2c/busses/i2c-qcom-cci.c
14428
14429 QUALCOMM IOMMU
14430 M:      Rob Clark <[email protected]>
14431 L:      [email protected]
14432 L:      [email protected]
14433 S:      Maintained
14434 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
14435
14436 QUALCOMM IPCC MAILBOX DRIVER
14437 M:      Manivannan Sadhasivam <[email protected]>
14438 L:      [email protected]
14439 S:      Supported
14440 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14441 F:      drivers/mailbox/qcom-ipcc.c
14442 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14443
14444 QUALCOMM RMNET DRIVER
14445 M:      Subash Abhinov Kasiviswanathan <[email protected]>
14446 M:      Sean Tranchetti <[email protected]>
14447 L:      [email protected]
14448 S:      Maintained
14449 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
14450 F:      drivers/net/ethernet/qualcomm/rmnet/
14451 F:      include/linux/if_rmnet.h
14452
14453 QUALCOMM TSENS THERMAL DRIVER
14454 M:      Amit Kucheria <[email protected]>
14455 L:      [email protected]
14456 L:      [email protected]
14457 S:      Maintained
14458 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14459 F:      drivers/thermal/qcom/
14460
14461 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14462 M:      Stanimir Varbanov <[email protected]>
14463 L:      [email protected]
14464 L:      [email protected]
14465 S:      Maintained
14466 T:      git git://linuxtv.org/media_tree.git
14467 F:      Documentation/devicetree/bindings/media/*venus*
14468 F:      drivers/media/platform/qcom/venus/
14469
14470 QUALCOMM WCN36XX WIRELESS DRIVER
14471 M:      Kalle Valo <[email protected]>
14472 L:      [email protected]
14473 S:      Supported
14474 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14475 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14476 F:      drivers/net/wireless/ath/wcn36xx/
14477
14478 QUANTENNA QTNFMAC WIRELESS DRIVER
14479 M:      Igor Mitsyanko <[email protected]>
14480 R:      Sergey Matyukevich <[email protected]>
14481 L:      [email protected]
14482 S:      Maintained
14483 F:      drivers/net/wireless/quantenna
14484
14485 RADEON and AMDGPU DRM DRIVERS
14486 M:      Alex Deucher <[email protected]>
14487 M:      Christian König <[email protected]>
14488 L:      [email protected]
14489 S:      Supported
14490 T:      git git://people.freedesktop.org/~agd5f/linux
14491 F:      drivers/gpu/drm/amd/
14492 F:      drivers/gpu/drm/radeon/
14493 F:      include/uapi/drm/amdgpu_drm.h
14494 F:      include/uapi/drm/radeon_drm.h
14495
14496 RADEON FRAMEBUFFER DISPLAY DRIVER
14497 M:      Benjamin Herrenschmidt <[email protected]>
14498 L:      [email protected]
14499 S:      Maintained
14500 F:      drivers/video/fbdev/aty/radeon*
14501 F:      include/uapi/linux/radeonfb.h
14502
14503 RADIOSHARK RADIO DRIVER
14504 M:      Hans Verkuil <[email protected]>
14505 L:      [email protected]
14506 S:      Maintained
14507 T:      git git://linuxtv.org/media_tree.git
14508 F:      drivers/media/radio/radio-shark.c
14509
14510 RADIOSHARK2 RADIO DRIVER
14511 M:      Hans Verkuil <[email protected]>
14512 L:      [email protected]
14513 S:      Maintained
14514 T:      git git://linuxtv.org/media_tree.git
14515 F:      drivers/media/radio/radio-shark2.c
14516 F:      drivers/media/radio/radio-tea5777.c
14517
14518 RADOS BLOCK DEVICE (RBD)
14519 M:      Ilya Dryomov <[email protected]>
14520 R:      Dongsheng Yang <[email protected]>
14521 L:      [email protected]
14522 S:      Supported
14523 W:      http://ceph.com/
14524 T:      git git://github.com/ceph/ceph-client.git
14525 F:      Documentation/ABI/testing/sysfs-bus-rbd
14526 F:      drivers/block/rbd.c
14527 F:      drivers/block/rbd_types.h
14528
14529 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14530 M:      Paul Mackerras <[email protected]>
14531 L:      [email protected]
14532 S:      Maintained
14533 F:      drivers/video/fbdev/aty/aty128fb.c
14534
14535 RAINSHADOW-CEC DRIVER
14536 M:      Hans Verkuil <[email protected]>
14537 L:      [email protected]
14538 S:      Maintained
14539 T:      git git://linuxtv.org/media_tree.git
14540 F:      drivers/media/cec/usb/rainshadow/
14541
14542 RALINK MIPS ARCHITECTURE
14543 M:      John Crispin <[email protected]>
14544 L:      [email protected]
14545 S:      Maintained
14546 F:      arch/mips/ralink
14547
14548 RALINK RT2X00 WIRELESS LAN DRIVER
14549 M:      Stanislaw Gruszka <[email protected]>
14550 M:      Helmut Schaa <[email protected]>
14551 L:      [email protected]
14552 S:      Maintained
14553 F:      drivers/net/wireless/ralink/rt2x00/
14554
14555 RAMDISK RAM BLOCK DEVICE DRIVER
14556 M:      Jens Axboe <[email protected]>
14557 S:      Maintained
14558 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14559 F:      drivers/block/brd.c
14560
14561 RANCHU VIRTUAL BOARD FOR MIPS
14562 M:      Miodrag Dinic <[email protected]>
14563 L:      [email protected]
14564 S:      Supported
14565 F:      arch/mips/configs/generic/board-ranchu.config
14566 F:      arch/mips/generic/board-ranchu.c
14567
14568 RANDOM NUMBER DRIVER
14569 M:      "Theodore Ts'o" <[email protected]>
14570 S:      Maintained
14571 F:      drivers/char/random.c
14572
14573 RAPIDIO SUBSYSTEM
14574 M:      Matt Porter <[email protected]>
14575 M:      Alexandre Bounine <[email protected]>
14576 S:      Maintained
14577 F:      drivers/rapidio/
14578
14579 RAS INFRASTRUCTURE
14580 M:      Tony Luck <[email protected]>
14581 M:      Borislav Petkov <[email protected]>
14582 L:      [email protected]
14583 S:      Maintained
14584 F:      Documentation/admin-guide/ras.rst
14585 F:      drivers/ras/
14586 F:      include/linux/ras.h
14587 F:      include/ras/ras_event.h
14588
14589 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14590 L:      [email protected]
14591 S:      Orphan
14592 F:      drivers/net/wireless/ray*
14593
14594 RC-CORE / LIRC FRAMEWORK
14595 M:      Sean Young <[email protected]>
14596 L:      [email protected]
14597 S:      Maintained
14598 W:      http://linuxtv.org
14599 T:      git git://linuxtv.org/media_tree.git
14600 F:      Documentation/driver-api/media/rc-core.rst
14601 F:      Documentation/userspace-api/media/rc/
14602 F:      drivers/media/rc/
14603 F:      include/media/rc-map.h
14604 F:      include/media/rc-core.h
14605 F:      include/uapi/linux/lirc.h
14606
14607 RCMM REMOTE CONTROLS DECODER
14608 M:      Patrick Lerda <[email protected]>
14609 S:      Maintained
14610 F:      drivers/media/rc/ir-rcmm-decoder.c
14611
14612 RCUTORTURE TEST FRAMEWORK
14613 M:      "Paul E. McKenney" <[email protected]>
14614 M:      Josh Triplett <[email protected]>
14615 R:      Steven Rostedt <[email protected]>
14616 R:      Mathieu Desnoyers <[email protected]>
14617 R:      Lai Jiangshan <[email protected]>
14618 L:      [email protected]
14619 S:      Supported
14620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14621 F:      tools/testing/selftests/rcutorture
14622
14623 RDACM20 Camera Sensor
14624 M:      Jacopo Mondi <[email protected]>
14625 M:      Kieran Bingham <[email protected]>
14626 M:      Laurent Pinchart <[email protected]>
14627 M:      Niklas Söderlund <[email protected]>
14628 L:      [email protected]
14629 S:      Maintained
14630 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
14631 F:      drivers/media/i2c/rdacm20.c
14632 F:      drivers/media/i2c/max9271.c
14633 F:      drivers/media/i2c/max9271.h
14634
14635 RDC R-321X SoC
14636 M:      Florian Fainelli <[email protected]>
14637 S:      Maintained
14638
14639 RDC R6040 FAST ETHERNET DRIVER
14640 M:      Florian Fainelli <[email protected]>
14641 L:      [email protected]
14642 S:      Maintained
14643 F:      drivers/net/ethernet/rdc/r6040.c
14644
14645 RDMAVT - RDMA verbs software
14646 M:      Dennis Dalessandro <[email protected]>
14647 M:      Mike Marciniszyn <[email protected]>
14648 L:      [email protected]
14649 S:      Supported
14650 F:      drivers/infiniband/sw/rdmavt
14651
14652 RDS - RELIABLE DATAGRAM SOCKETS
14653 M:      Santosh Shilimkar <[email protected]>
14654 L:      [email protected]
14655 L:      [email protected]
14656 L:      [email protected] (moderated for non-subscribers)
14657 S:      Supported
14658 W:      https://oss.oracle.com/projects/rds/
14659 F:      Documentation/networking/rds.rst
14660 F:      net/rds/
14661
14662 RDT - RESOURCE ALLOCATION
14663 M:      Fenghua Yu <[email protected]>
14664 M:      Reinette Chatre <[email protected]>
14665 L:      [email protected]
14666 S:      Supported
14667 F:      Documentation/x86/resctrl*
14668 F:      arch/x86/include/asm/resctrl.h
14669 F:      arch/x86/kernel/cpu/resctrl/
14670 F:      tools/testing/selftests/resctrl/
14671
14672 READ-COPY UPDATE (RCU)
14673 M:      "Paul E. McKenney" <[email protected]>
14674 M:      Josh Triplett <[email protected]>
14675 R:      Steven Rostedt <[email protected]>
14676 R:      Mathieu Desnoyers <[email protected]>
14677 R:      Lai Jiangshan <[email protected]>
14678 R:      Joel Fernandes <[email protected]>
14679 L:      [email protected]
14680 S:      Supported
14681 W:      http://www.rdrop.com/users/paulmck/RCU/
14682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14683 F:      Documentation/RCU/
14684 F:      include/linux/rcu*
14685 F:      kernel/rcu/
14686 X:      Documentation/RCU/torture.rst
14687 X:      include/linux/srcu*.h
14688 X:      kernel/rcu/srcu*.c
14689
14690 REAL TIME CLOCK (RTC) SUBSYSTEM
14691 M:      Alessandro Zummo <[email protected]>
14692 M:      Alexandre Belloni <[email protected]>
14693 L:      [email protected]
14694 S:      Maintained
14695 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14697 F:      Documentation/admin-guide/rtc.rst
14698 F:      Documentation/devicetree/bindings/rtc/
14699 F:      drivers/rtc/
14700 F:      include/linux/platform_data/rtc-*
14701 F:      include/linux/rtc.h
14702 F:      include/linux/rtc/
14703 F:      include/uapi/linux/rtc.h
14704 F:      tools/testing/selftests/rtc/
14705
14706 REALTEK AUDIO CODECS
14707 M:      Oder Chiou <[email protected]>
14708 S:      Maintained
14709 F:      include/sound/rt*.h
14710 F:      sound/soc/codecs/rt*
14711
14712 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14713 M:      Linus Walleij <[email protected]>
14714 S:      Maintained
14715 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14716 F:      drivers/net/dsa/realtek-smi*
14717 F:      drivers/net/dsa/rtl83*
14718
14719 REALTEK WIRELESS DRIVER (rtlwifi family)
14720 M:      Ping-Ke Shih <[email protected]>
14721 L:      [email protected]
14722 S:      Maintained
14723 W:      https://wireless.wiki.kernel.org/
14724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14725 F:      drivers/net/wireless/realtek/rtlwifi/
14726
14727 REALTEK WIRELESS DRIVER (rtw88)
14728 M:      Yan-Hsuan Chuang <[email protected]>
14729 L:      [email protected]
14730 S:      Maintained
14731 F:      drivers/net/wireless/realtek/rtw88/
14732
14733 REDPINE WIRELESS DRIVER
14734 M:      Amitkumar Karwar <[email protected]>
14735 M:      Siva Rebbagondla <[email protected]>
14736 L:      [email protected]
14737 S:      Maintained
14738 F:      drivers/net/wireless/rsi/
14739
14740 REGISTER MAP ABSTRACTION
14741 M:      Mark Brown <[email protected]>
14742 L:      [email protected]
14743 S:      Supported
14744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14745 F:      Documentation/devicetree/bindings/regmap/
14746 F:      drivers/base/regmap/
14747 F:      include/linux/regmap.h
14748
14749 REISERFS FILE SYSTEM
14750 L:      [email protected]
14751 S:      Supported
14752 F:      fs/reiserfs/
14753
14754 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14755 M:      Ohad Ben-Cohen <[email protected]>
14756 M:      Bjorn Andersson <[email protected]>
14757 L:      [email protected]
14758 S:      Maintained
14759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14760 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14761 F:      Documentation/devicetree/bindings/remoteproc/
14762 F:      Documentation/staging/remoteproc.rst
14763 F:      drivers/remoteproc/
14764 F:      include/linux/remoteproc.h
14765 F:      include/linux/remoteproc/
14766
14767 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14768 M:      Ohad Ben-Cohen <[email protected]>
14769 M:      Bjorn Andersson <[email protected]>
14770 L:      [email protected]
14771 S:      Maintained
14772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14773 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14774 F:      Documentation/staging/rpmsg.rst
14775 F:      drivers/rpmsg/
14776 F:      include/linux/rpmsg.h
14777 F:      include/linux/rpmsg/
14778 F:      include/uapi/linux/rpmsg.h
14779 F:      samples/rpmsg/
14780
14781 RENESAS CLOCK DRIVERS
14782 M:      Geert Uytterhoeven <[email protected]>
14783 L:      [email protected]
14784 S:      Supported
14785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14786 F:      Documentation/devicetree/bindings/clock/renesas,*
14787 F:      drivers/clk/renesas/
14788
14789 RENESAS EMEV2 I2C DRIVER
14790 M:      Wolfram Sang <[email protected]>
14791 S:      Supported
14792 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14793 F:      drivers/i2c/busses/i2c-emev2.c
14794
14795 RENESAS ETHERNET DRIVERS
14796 R:      Sergei Shtylyov <[email protected]>
14797 L:      [email protected]
14798 L:      [email protected]
14799 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14800 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14801 F:      drivers/net/ethernet/renesas/
14802 F:      include/linux/sh_eth.h
14803
14804 RENESAS R-CAR GYROADC DRIVER
14805 M:      Marek Vasut <[email protected]>
14806 L:      [email protected]
14807 S:      Supported
14808 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14809 F:      drivers/iio/adc/rcar-gyroadc.c
14810
14811 RENESAS R-CAR I2C DRIVERS
14812 M:      Wolfram Sang <[email protected]>
14813 S:      Supported
14814 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14815 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14816 F:      drivers/i2c/busses/i2c-rcar.c
14817 F:      drivers/i2c/busses/i2c-sh_mobile.c
14818
14819 RENESAS R-CAR THERMAL DRIVERS
14820 M:      Niklas Söderlund <[email protected]>
14821 L:      [email protected]
14822 S:      Supported
14823 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
14824 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
14825 F:      drivers/thermal/rcar_gen3_thermal.c
14826 F:      drivers/thermal/rcar_thermal.c
14827
14828 RENESAS RIIC DRIVER
14829 M:      Chris Brandt <[email protected]>
14830 S:      Supported
14831 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14832 F:      drivers/i2c/busses/i2c-riic.c
14833
14834 RENESAS USB PHY DRIVER
14835 M:      Yoshihiro Shimoda <[email protected]>
14836 L:      [email protected]
14837 S:      Maintained
14838 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14839
14840 RESET CONTROLLER FRAMEWORK
14841 M:      Philipp Zabel <[email protected]>
14842 S:      Maintained
14843 T:      git git://git.pengutronix.de/git/pza/linux
14844 F:      Documentation/devicetree/bindings/reset/
14845 F:      drivers/reset/
14846 F:      include/dt-bindings/reset/
14847 F:      include/linux/reset-controller.h
14848 F:      include/linux/reset.h
14849 F:      include/linux/reset/
14850 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14851
14852 RESTARTABLE SEQUENCES SUPPORT
14853 M:      Mathieu Desnoyers <[email protected]>
14854 M:      Peter Zijlstra <[email protected]>
14855 M:      "Paul E. McKenney" <[email protected]>
14856 M:      Boqun Feng <[email protected]>
14857 L:      [email protected]
14858 S:      Supported
14859 F:      include/trace/events/rseq.h
14860 F:      include/uapi/linux/rseq.h
14861 F:      kernel/rseq.c
14862 F:      tools/testing/selftests/rseq/
14863
14864 RFKILL
14865 M:      Johannes Berg <[email protected]>
14866 L:      [email protected]
14867 S:      Maintained
14868 W:      https://wireless.wiki.kernel.org/
14869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14871 F:      Documentation/ABI/stable/sysfs-class-rfkill
14872 F:      Documentation/driver-api/rfkill.rst
14873 F:      include/linux/rfkill.h
14874 F:      include/uapi/linux/rfkill.h
14875 F:      net/rfkill/
14876
14877 RHASHTABLE
14878 M:      Thomas Graf <[email protected]>
14879 M:      Herbert Xu <[email protected]>
14880 L:      [email protected]
14881 S:      Maintained
14882 F:      include/linux/rhashtable-types.h
14883 F:      include/linux/rhashtable.h
14884 F:      lib/rhashtable.c
14885 F:      lib/test_rhashtable.c
14886
14887 RICOH R5C592 MEMORYSTICK DRIVER
14888 M:      Maxim Levitsky <[email protected]>
14889 S:      Maintained
14890 F:      drivers/memstick/host/r592.*
14891
14892 RICOH SMARTMEDIA/XD DRIVER
14893 M:      Maxim Levitsky <[email protected]>
14894 S:      Maintained
14895 F:      drivers/mtd/nand/raw/r852.c
14896 F:      drivers/mtd/nand/raw/r852.h
14897
14898 RISC-V ARCHITECTURE
14899 M:      Paul Walmsley <[email protected]>
14900 M:      Palmer Dabbelt <[email protected]>
14901 M:      Albert Ou <[email protected]>
14902 L:      [email protected]
14903 S:      Supported
14904 P:      Documentation/riscv/patch-acceptance.rst
14905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14906 F:      arch/riscv/
14907 N:      riscv
14908 K:      riscv
14909
14910 RNBD BLOCK DRIVERS
14911 M:      Danil Kipnis <[email protected]>
14912 M:      Jack Wang <[email protected]>
14913 L:      [email protected]
14914 S:      Maintained
14915 F:      drivers/block/rnbd/
14916
14917 ROCCAT DRIVERS
14918 M:      Stefan Achatz <[email protected]>
14919 S:      Maintained
14920 W:      http://sourceforge.net/projects/roccat/
14921 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14922 F:      drivers/hid/hid-roccat*
14923 F:      include/linux/hid-roccat*
14924
14925 ROCKCHIP ISP V1 DRIVER
14926 M:      Helen Koike <[email protected]>
14927 L:      [email protected]
14928 S:      Maintained
14929 F:      drivers/staging/media/rkisp1/
14930
14931 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14932 M:      Jacob Chen <[email protected]>
14933 M:      Ezequiel Garcia <[email protected]>
14934 L:      [email protected]
14935 L:      [email protected]
14936 S:      Maintained
14937 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
14938 F:      drivers/media/platform/rockchip/rga/
14939
14940 ROCKCHIP VIDEO DECODER DRIVER
14941 M:      Ezequiel Garcia <[email protected]>
14942 L:      [email protected]
14943 L:      [email protected]
14944 S:      Maintained
14945 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
14946 F:      drivers/staging/media/rkvdec/
14947
14948 ROCKER DRIVER
14949 M:      Jiri Pirko <[email protected]>
14950 L:      [email protected]
14951 S:      Supported
14952 F:      drivers/net/ethernet/rocker/
14953
14954 ROCKETPORT DRIVER
14955 S:      Maintained
14956 W:      http://www.comtrol.com
14957 F:      Documentation/driver-api/serial/rocket.rst
14958 F:      drivers/tty/rocket*
14959
14960 ROCKETPORT EXPRESS/INFINITY DRIVER
14961 M:      Kevin Cernekee <[email protected]>
14962 L:      [email protected]
14963 S:      Odd Fixes
14964 F:      drivers/tty/serial/rp2.*
14965
14966 ROHM BD99954 CHARGER IC
14967 R:      Matti Vaittinen <[email protected]>
14968 L:      [email protected]
14969 S:      Supported
14970 F:      drivers/power/supply/bd99954-charger.c
14971 F:      drivers/power/supply/bd99954-charger.h
14972
14973 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14974 M:      Tomasz Duszynski <[email protected]>
14975 S:      Maintained
14976 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14977 F:      drivers/iio/light/bh1750.c
14978
14979 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14980 M:      Marek Vasut <[email protected]>
14981 L:      [email protected]
14982 L:      [email protected]
14983 S:      Supported
14984 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14985 F:      drivers/gpio/gpio-bd9571mwv.c
14986 F:      drivers/mfd/bd9571mwv.c
14987 F:      drivers/regulator/bd9571mwv-regulator.c
14988 F:      include/linux/mfd/bd9571mwv.h
14989
14990 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
14991 R:      Matti Vaittinen <[email protected]>
14992 L:      [email protected]
14993 S:      Supported
14994 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
14995 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
14996 F:      drivers/clk/clk-bd718x7.c
14997 F:      drivers/gpio/gpio-bd70528.c
14998 F:      drivers/gpio/gpio-bd71828.c
14999 F:      drivers/mfd/rohm-bd70528.c
15000 F:      drivers/mfd/rohm-bd71828.c
15001 F:      drivers/mfd/rohm-bd718x7.c
15002 F:      drivers/power/supply/bd70528-charger.c
15003 F:      drivers/regulator/bd70528-regulator.c
15004 F:      drivers/regulator/bd71828-regulator.c
15005 F:      drivers/regulator/bd718x7-regulator.c
15006 F:      drivers/regulator/rohm-regulator.c
15007 F:      drivers/rtc/rtc-bd70528.c
15008 F:      drivers/watchdog/bd70528_wdt.c
15009 F:      include/linux/mfd/rohm-bd70528.h
15010 F:      include/linux/mfd/rohm-bd71828.h
15011 F:      include/linux/mfd/rohm-bd718x7.h
15012 F:      include/linux/mfd/rohm-generic.h
15013 F:      include/linux/mfd/rohm-shared.h
15014
15015 ROSE NETWORK LAYER
15016 M:      Ralf Baechle <[email protected]>
15017 L:      [email protected]
15018 S:      Maintained
15019 W:      http://www.linux-ax25.org/
15020 F:      include/net/rose.h
15021 F:      include/uapi/linux/rose.h
15022 F:      net/rose/
15023
15024 ROTATION DRIVER FOR ALLWINNER A83T
15025 M:      Jernej Skrabec <[email protected]>
15026 L:      [email protected]
15027 S:      Maintained
15028 T:      git git://linuxtv.org/media_tree.git
15029 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15030 F:      drivers/media/platform/sunxi/sun8i-rotate/
15031
15032 RTL2830 MEDIA DRIVER
15033 M:      Antti Palosaari <[email protected]>
15034 L:      [email protected]
15035 S:      Maintained
15036 W:      https://linuxtv.org
15037 W:      http://palosaari.fi/linux/
15038 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15039 T:      git git://linuxtv.org/anttip/media_tree.git
15040 F:      drivers/media/dvb-frontends/rtl2830*
15041
15042 RTL2832 MEDIA DRIVER
15043 M:      Antti Palosaari <[email protected]>
15044 L:      [email protected]
15045 S:      Maintained
15046 W:      https://linuxtv.org
15047 W:      http://palosaari.fi/linux/
15048 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15049 T:      git git://linuxtv.org/anttip/media_tree.git
15050 F:      drivers/media/dvb-frontends/rtl2832*
15051
15052 RTL2832_SDR MEDIA DRIVER
15053 M:      Antti Palosaari <[email protected]>
15054 L:      [email protected]
15055 S:      Maintained
15056 W:      https://linuxtv.org
15057 W:      http://palosaari.fi/linux/
15058 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15059 T:      git git://linuxtv.org/anttip/media_tree.git
15060 F:      drivers/media/dvb-frontends/rtl2832_sdr*
15061
15062 RTL8180 WIRELESS DRIVER
15063 L:      [email protected]
15064 S:      Orphan
15065 W:      https://wireless.wiki.kernel.org/
15066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15067 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
15068
15069 RTL8187 WIRELESS DRIVER
15070 M:      Herton Ronaldo Krzesinski <[email protected]>
15071 M:      Hin-Tak Leung <[email protected]>
15072 M:      Larry Finger <[email protected]>
15073 L:      [email protected]
15074 S:      Maintained
15075 W:      https://wireless.wiki.kernel.org/
15076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15077 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
15078
15079 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15080 M:      Jes Sorensen <[email protected]>
15081 L:      [email protected]
15082 S:      Maintained
15083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15084 F:      drivers/net/wireless/realtek/rtl8xxxu/
15085
15086 RTRS TRANSPORT DRIVERS
15087 M:      Danil Kipnis <[email protected]>
15088 M:      Jack Wang <[email protected]>
15089 L:      [email protected]
15090 S:      Maintained
15091 F:      drivers/infiniband/ulp/rtrs/
15092
15093 RXRPC SOCKETS (AF_RXRPC)
15094 M:      David Howells <[email protected]>
15095 L:      [email protected]
15096 S:      Supported
15097 W:      https://www.infradead.org/~dhowells/kafs/
15098 F:      Documentation/networking/rxrpc.rst
15099 F:      include/keys/rxrpc-type.h
15100 F:      include/net/af_rxrpc.h
15101 F:      include/trace/events/rxrpc.h
15102 F:      include/uapi/linux/rxrpc.h
15103 F:      net/rxrpc/
15104
15105 S3 SAVAGE FRAMEBUFFER DRIVER
15106 M:      Antonino Daplas <[email protected]>
15107 L:      [email protected]
15108 S:      Maintained
15109 F:      drivers/video/fbdev/savage/
15110
15111 S390
15112 M:      Heiko Carstens <[email protected]>
15113 M:      Vasily Gorbik <[email protected]>
15114 M:      Christian Borntraeger <[email protected]>
15115 L:      [email protected]
15116 S:      Supported
15117 W:      http://www.ibm.com/developerworks/linux/linux390/
15118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15119 F:      Documentation/driver-api/s390-drivers.rst
15120 F:      Documentation/s390/
15121 F:      arch/s390/
15122 F:      drivers/s390/
15123
15124 S390 COMMON I/O LAYER
15125 M:      Vineeth Vijayan <[email protected]>
15126 M:      Peter Oberparleiter <[email protected]>
15127 L:      [email protected]
15128 S:      Supported
15129 W:      http://www.ibm.com/developerworks/linux/linux390/
15130 F:      drivers/s390/cio/
15131
15132 S390 DASD DRIVER
15133 M:      Stefan Haberland <[email protected]>
15134 M:      Jan Hoeppner <[email protected]>
15135 L:      [email protected]
15136 S:      Supported
15137 W:      http://www.ibm.com/developerworks/linux/linux390/
15138 F:      block/partitions/ibm.c
15139 F:      drivers/s390/block/dasd*
15140 F:      include/linux/dasd_mod.h
15141
15142 S390 IOMMU (PCI)
15143 M:      Matthew Rosato <[email protected]>
15144 M:      Gerald Schaefer <[email protected]>
15145 L:      [email protected]
15146 S:      Supported
15147 W:      http://www.ibm.com/developerworks/linux/linux390/
15148 F:      drivers/iommu/s390-iommu.c
15149
15150 S390 IUCV NETWORK LAYER
15151 M:      Julian Wiedmann <[email protected]>
15152 M:      Karsten Graul <[email protected]>
15153 M:      Ursula Braun <[email protected]>
15154 L:      [email protected]
15155 S:      Supported
15156 W:      http://www.ibm.com/developerworks/linux/linux390/
15157 F:      drivers/s390/net/*iucv*
15158 F:      include/net/iucv/
15159 F:      net/iucv/
15160
15161 S390 NETWORK DRIVERS
15162 M:      Julian Wiedmann <[email protected]>
15163 M:      Karsten Graul <[email protected]>
15164 M:      Ursula Braun <[email protected]>
15165 L:      [email protected]
15166 S:      Supported
15167 W:      http://www.ibm.com/developerworks/linux/linux390/
15168 F:      drivers/s390/net/
15169
15170 S390 PCI SUBSYSTEM
15171 M:      Niklas Schnelle <[email protected]>
15172 M:      Gerald Schaefer <[email protected]>
15173 L:      [email protected]
15174 S:      Supported
15175 W:      http://www.ibm.com/developerworks/linux/linux390/
15176 F:      arch/s390/pci/
15177 F:      drivers/pci/hotplug/s390_pci_hpc.c
15178 F:      Documentation/s390/pci.rst
15179
15180 S390 VFIO AP DRIVER
15181 M:      Tony Krowiak <[email protected]>
15182 M:      Pierre Morel <[email protected]>
15183 M:      Halil Pasic <[email protected]>
15184 L:      [email protected]
15185 S:      Supported
15186 W:      http://www.ibm.com/developerworks/linux/linux390/
15187 F:      Documentation/s390/vfio-ap.rst
15188 F:      drivers/s390/crypto/vfio_ap_drv.c
15189 F:      drivers/s390/crypto/vfio_ap_ops.c
15190 F:      drivers/s390/crypto/vfio_ap_private.h
15191
15192 S390 VFIO-CCW DRIVER
15193 M:      Cornelia Huck <[email protected]>
15194 M:      Eric Farman <[email protected]>
15195 R:      Halil Pasic <[email protected]>
15196 L:      [email protected]
15197 L:      [email protected]
15198 S:      Supported
15199 F:      Documentation/s390/vfio-ccw.rst
15200 F:      drivers/s390/cio/vfio_ccw*
15201 F:      include/uapi/linux/vfio_ccw.h
15202
15203 S390 ZCRYPT DRIVER
15204 M:      Harald Freudenberger <[email protected]>
15205 L:      [email protected]
15206 S:      Supported
15207 W:      http://www.ibm.com/developerworks/linux/linux390/
15208 F:      drivers/s390/crypto/
15209
15210 S390 ZFCP DRIVER
15211 M:      Steffen Maier <[email protected]>
15212 M:      Benjamin Block <[email protected]>
15213 L:      [email protected]
15214 S:      Supported
15215 W:      http://www.ibm.com/developerworks/linux/linux390/
15216 F:      drivers/s390/scsi/zfcp_*
15217
15218 S3C24XX SD/MMC Driver
15219 M:      Ben Dooks <[email protected]>
15220 L:      [email protected] (moderated for non-subscribers)
15221 S:      Supported
15222 F:      drivers/mmc/host/s3cmci.*
15223
15224 SAA6588 RDS RECEIVER DRIVER
15225 M:      Hans Verkuil <[email protected]>
15226 L:      [email protected]
15227 S:      Odd Fixes
15228 W:      https://linuxtv.org
15229 T:      git git://linuxtv.org/media_tree.git
15230 F:      drivers/media/i2c/saa6588*
15231
15232 SAA7134 VIDEO4LINUX DRIVER
15233 M:      Mauro Carvalho Chehab <[email protected]>
15234 L:      [email protected]
15235 S:      Odd fixes
15236 W:      https://linuxtv.org
15237 T:      git git://linuxtv.org/media_tree.git
15238 F:      Documentation/driver-api/media/drivers/saa7134*
15239 F:      drivers/media/pci/saa7134/
15240
15241 SAA7146 VIDEO4LINUX-2 DRIVER
15242 M:      Hans Verkuil <[email protected]>
15243 L:      [email protected]
15244 S:      Maintained
15245 T:      git git://linuxtv.org/media_tree.git
15246 F:      drivers/media/common/saa7146/
15247 F:      drivers/media/pci/saa7146/
15248 F:      include/media/drv-intf/saa7146*
15249
15250 SAFESETID SECURITY MODULE
15251 M:      Micah Morton <[email protected]>
15252 S:      Supported
15253 F:      Documentation/admin-guide/LSM/SafeSetID.rst
15254 F:      security/safesetid/
15255
15256 SAMSUNG AUDIO (ASoC) DRIVERS
15257 M:      Krzysztof Kozlowski <[email protected]>
15258 M:      Sangbeom Kim <[email protected]>
15259 M:      Sylwester Nawrocki <[email protected]>
15260 L:      [email protected] (moderated for non-subscribers)
15261 S:      Supported
15262 F:      Documentation/devicetree/bindings/sound/samsung*
15263 F:      sound/soc/samsung/
15264
15265 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15266 M:      Krzysztof Kozlowski <[email protected]>
15267 L:      [email protected]
15268 L:      [email protected]
15269 S:      Maintained
15270 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15271 F:      drivers/crypto/exynos-rng.c
15272
15273 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15274 M:      Łukasz Stelmach <[email protected]>
15275 L:      [email protected]
15276 S:      Maintained
15277 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15278 F:      drivers/char/hw_random/exynos-trng.c
15279
15280 SAMSUNG FRAMEBUFFER DRIVER
15281 M:      Jingoo Han <[email protected]>
15282 L:      [email protected]
15283 S:      Maintained
15284 F:      drivers/video/fbdev/s3c-fb.c
15285
15286 SAMSUNG LAPTOP DRIVER
15287 M:      Corentin Chary <[email protected]>
15288 L:      [email protected]
15289 S:      Maintained
15290 F:      drivers/platform/x86/samsung-laptop.c
15291
15292 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15293 M:      Sangbeom Kim <[email protected]>
15294 M:      Krzysztof Kozlowski <[email protected]>
15295 M:      Bartlomiej Zolnierkiewicz <[email protected]>
15296 L:      [email protected]
15297 L:      [email protected]
15298 S:      Supported
15299 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15300 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15301 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15302 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15303 F:      drivers/clk/clk-s2mps11.c
15304 F:      drivers/mfd/sec*.c
15305 F:      drivers/regulator/s2m*.c
15306 F:      drivers/regulator/s5m*.c
15307 F:      drivers/rtc/rtc-s5m.c
15308 F:      include/linux/mfd/samsung/
15309
15310 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15311 M:      Sylwester Nawrocki <[email protected]>
15312 L:      [email protected]
15313 L:      [email protected] (moderated for non-subscribers)
15314 S:      Maintained
15315 F:      drivers/media/platform/s3c-camif/
15316 F:      include/media/drv-intf/s3c_camif.h
15317
15318 SAMSUNG S3FWRN5 NFC DRIVER
15319 M:      Krzysztof Kozlowski <[email protected]>
15320 M:      Krzysztof Opasiak <[email protected]>
15321 L:      [email protected] (moderated for non-subscribers)
15322 S:      Maintained
15323 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
15324 F:      drivers/nfc/s3fwrn5
15325
15326 SAMSUNG S5C73M3 CAMERA DRIVER
15327 M:      Kyungmin Park <[email protected]>
15328 M:      Andrzej Hajda <[email protected]>
15329 L:      [email protected]
15330 S:      Supported
15331 F:      drivers/media/i2c/s5c73m3/*
15332
15333 SAMSUNG S5K5BAF CAMERA DRIVER
15334 M:      Kyungmin Park <[email protected]>
15335 M:      Andrzej Hajda <[email protected]>
15336 L:      [email protected]
15337 S:      Supported
15338 F:      drivers/media/i2c/s5k5baf.c
15339
15340 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15341 M:      Krzysztof Kozlowski <[email protected]>
15342 M:      Vladimir Zapolskiy <[email protected]>
15343 M:      Kamil Konieczny <[email protected]>
15344 L:      [email protected]
15345 L:      [email protected]
15346 S:      Maintained
15347 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15348 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15349 F:      drivers/crypto/s5p-sss.c
15350
15351 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15352 M:      Kyungmin Park <[email protected]>
15353 M:      Sylwester Nawrocki <[email protected]>
15354 L:      [email protected]
15355 S:      Supported
15356 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15357 F:      drivers/media/platform/exynos4-is/
15358
15359 SAMSUNG SOC CLOCK DRIVERS
15360 M:      Sylwester Nawrocki <[email protected]>
15361 M:      Tomasz Figa <[email protected]>
15362 M:      Chanwoo Choi <[email protected]>
15363 L:      [email protected] (moderated for non-subscribers)
15364 S:      Supported
15365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15366 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15367 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15368 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15369 F:      drivers/clk/samsung/
15370 F:      include/dt-bindings/clock/exynos*.h
15371
15372 SAMSUNG SPI DRIVERS
15373 M:      Kukjin Kim <[email protected]>
15374 M:      Krzysztof Kozlowski <[email protected]>
15375 M:      Andi Shyti <[email protected]>
15376 L:      [email protected]
15377 L:      [email protected] (moderated for non-subscribers)
15378 S:      Maintained
15379 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15380 F:      drivers/spi/spi-s3c*
15381 F:      include/linux/platform_data/spi-s3c64xx.h
15382
15383 SAMSUNG SXGBE DRIVERS
15384 M:      Byungho An <[email protected]>
15385 L:      [email protected]
15386 S:      Supported
15387 F:      drivers/net/ethernet/samsung/sxgbe/
15388
15389 SAMSUNG THERMAL DRIVER
15390 M:      Bartlomiej Zolnierkiewicz <[email protected]>
15391 L:      [email protected]
15392 L:      [email protected]
15393 S:      Supported
15394 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15395 F:      drivers/thermal/samsung/
15396
15397 SAMSUNG USB2 PHY DRIVER
15398 M:      Kamil Debski <[email protected]>
15399 M:      Sylwester Nawrocki <[email protected]>
15400 L:      [email protected]
15401 S:      Supported
15402 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15403 F:      Documentation/driver-api/phy/samsung-usb2.rst
15404 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15405 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15406 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15407 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15408 F:      drivers/phy/samsung/phy-samsung-usb2.c
15409 F:      drivers/phy/samsung/phy-samsung-usb2.h
15410
15411 SC1200 WDT DRIVER
15412 M:      Zwane Mwaikambo <[email protected]>
15413 S:      Maintained
15414 F:      drivers/watchdog/sc1200wdt.c
15415
15416 SCHEDULER
15417 M:      Ingo Molnar <[email protected]>
15418 M:      Peter Zijlstra <[email protected]>
15419 M:      Juri Lelli <[email protected]> (SCHED_DEADLINE)
15420 M:      Vincent Guittot <[email protected]> (SCHED_NORMAL)
15421 R:      Dietmar Eggemann <[email protected]> (SCHED_NORMAL)
15422 R:      Steven Rostedt <[email protected]> (SCHED_FIFO/SCHED_RR)
15423 R:      Ben Segall <[email protected]> (CONFIG_CFS_BANDWIDTH)
15424 R:      Mel Gorman <[email protected]> (CONFIG_NUMA_BALANCING)
15425 L:      [email protected]
15426 S:      Maintained
15427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15428 F:      include/linux/preempt.h
15429 F:      include/linux/sched.h
15430 F:      include/linux/wait.h
15431 F:      include/uapi/linux/sched.h
15432 F:      kernel/sched/
15433
15434 SCR24X CHIP CARD INTERFACE DRIVER
15435 M:      Lubomir Rintel <[email protected]>
15436 S:      Supported
15437 F:      drivers/char/pcmcia/scr24x_cs.c
15438
15439 SCSI CDROM DRIVER
15440 M:      Jens Axboe <[email protected]>
15441 L:      [email protected]
15442 S:      Maintained
15443 W:      http://www.kernel.dk
15444 F:      drivers/scsi/sr*
15445
15446 SCSI RDMA PROTOCOL (SRP) INITIATOR
15447 M:      Bart Van Assche <[email protected]>
15448 L:      [email protected]
15449 S:      Supported
15450 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15451 F:      drivers/infiniband/ulp/srp/
15452 F:      include/scsi/srp.h
15453
15454 SCSI RDMA PROTOCOL (SRP) TARGET
15455 M:      Bart Van Assche <[email protected]>
15456 L:      [email protected]
15457 L:      [email protected]
15458 S:      Supported
15459 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15460 F:      drivers/infiniband/ulp/srpt/
15461
15462 SCSI SG DRIVER
15463 M:      Doug Gilbert <[email protected]>
15464 L:      [email protected]
15465 S:      Maintained
15466 W:      http://sg.danny.cz/sg
15467 F:      Documentation/scsi/scsi-generic.rst
15468 F:      drivers/scsi/sg.c
15469 F:      include/scsi/sg.h
15470
15471 SCSI SUBSYSTEM
15472 M:      "James E.J. Bottomley" <[email protected]>
15473 M:      "Martin K. Petersen" <[email protected]>
15474 L:      [email protected]
15475 S:      Maintained
15476 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15479 F:      Documentation/devicetree/bindings/scsi/
15480 F:      drivers/scsi/
15481 F:      include/scsi/
15482
15483 SCSI TAPE DRIVER
15484 M:      Kai Mäkisara <[email protected]>
15485 L:      [email protected]
15486 S:      Maintained
15487 F:      Documentation/scsi/st.rst
15488 F:      drivers/scsi/st.*
15489 F:      drivers/scsi/st_*.h
15490
15491 SCSI TARGET SUBSYSTEM
15492 M:      "Martin K. Petersen" <[email protected]>
15493 L:      [email protected]
15494 L:      [email protected]
15495 S:      Supported
15496 W:      http://www.linux-iscsi.org
15497 Q:      https://patchwork.kernel.org/project/target-devel/list/
15498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15499 F:      Documentation/target/
15500 F:      drivers/target/
15501 F:      include/target/
15502
15503 SCTP PROTOCOL
15504 M:      Vlad Yasevich <[email protected]>
15505 M:      Neil Horman <[email protected]>
15506 M:      Marcelo Ricardo Leitner <[email protected]>
15507 L:      [email protected]
15508 S:      Maintained
15509 W:      http://lksctp.sourceforge.net
15510 F:      Documentation/networking/sctp.rst
15511 F:      include/linux/sctp.h
15512 F:      include/net/sctp/
15513 F:      include/uapi/linux/sctp.h
15514 F:      net/sctp/
15515
15516 SCx200 CPU SUPPORT
15517 M:      Jim Cromie <[email protected]>
15518 S:      Odd Fixes
15519 F:      Documentation/i2c/busses/scx200_acb.rst
15520 F:      arch/x86/platform/scx200/
15521 F:      drivers/i2c/busses/scx200*
15522 F:      drivers/mtd/maps/scx200_docflash.c
15523 F:      drivers/watchdog/scx200_wdt.c
15524 F:      include/linux/scx200.h
15525
15526 SCx200 GPIO DRIVER
15527 M:      Jim Cromie <[email protected]>
15528 S:      Maintained
15529 F:      drivers/char/scx200_gpio.c
15530 F:      include/linux/scx200_gpio.h
15531
15532 SCx200 HRT CLOCKSOURCE DRIVER
15533 M:      Jim Cromie <[email protected]>
15534 S:      Maintained
15535 F:      drivers/clocksource/scx200_hrt.c
15536
15537 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15538 M:      Sascha Sommer <[email protected]>
15539 L:      [email protected] (subscribers-only)
15540 S:      Maintained
15541 F:      drivers/mmc/host/sdricoh_cs.c
15542
15543 SECO BOARDS CEC DRIVER
15544 M:      Ettore Chimenti <[email protected]>
15545 S:      Maintained
15546 F:      drivers/media/platform/seco-cec/seco-cec.c
15547 F:      drivers/media/platform/seco-cec/seco-cec.h
15548
15549 SECURE COMPUTING
15550 M:      Kees Cook <[email protected]>
15551 R:      Andy Lutomirski <[email protected]>
15552 R:      Will Drewry <[email protected]>
15553 S:      Supported
15554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15555 F:      Documentation/userspace-api/seccomp_filter.rst
15556 F:      include/linux/seccomp.h
15557 F:      include/uapi/linux/seccomp.h
15558 F:      kernel/seccomp.c
15559 F:      tools/testing/selftests/kselftest_harness.h
15560 F:      tools/testing/selftests/seccomp/*
15561 K:      \bsecure_computing
15562 K:      \bTIF_SECCOMP\b
15563
15564 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15565 M:      Al Cooper <[email protected]>
15566 L:      [email protected]
15567 L:      [email protected]
15568 S:      Maintained
15569 F:      drivers/mmc/host/sdhci-brcmstb*
15570
15571 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15572 M:      Adrian Hunter <[email protected]>
15573 L:      [email protected]
15574 S:      Maintained
15575 F:      drivers/mmc/host/sdhci*
15576 F:      include/linux/mmc/sdhci*
15577
15578 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15579 M:      Eugen Hristev <[email protected]>
15580 L:      [email protected]
15581 S:      Supported
15582 F:      drivers/mmc/host/sdhci-of-at91.c
15583
15584 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15585 M:      Ben Dooks <[email protected]>
15586 M:      Jaehoon Chung <[email protected]>
15587 L:      [email protected]
15588 S:      Maintained
15589 F:      drivers/mmc/host/sdhci-s3c*
15590
15591 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15592 M:      Viresh Kumar <[email protected]>
15593 L:      [email protected]
15594 S:      Maintained
15595 F:      drivers/mmc/host/sdhci-spear.c
15596
15597 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15598 M:      Kishon Vijay Abraham I <[email protected]>
15599 L:      [email protected]
15600 S:      Maintained
15601 F:      drivers/mmc/host/sdhci-omap.c
15602
15603 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15604 M:      Jonathan Derrick <[email protected]>
15605 M:      Revanth Rajashekar <[email protected]>
15606 L:      [email protected]
15607 S:      Supported
15608 F:      block/opal_proto.h
15609 F:      block/sed*
15610 F:      include/linux/sed*
15611 F:      include/uapi/linux/sed*
15612
15613 SECURITY CONTACT
15614 M:      Security Officers <[email protected]>
15615 S:      Supported
15616 F:      Documentation/admin-guide/security-bugs.rst
15617
15618 SECURITY SUBSYSTEM
15619 M:      James Morris <[email protected]>
15620 M:      "Serge E. Hallyn" <[email protected]>
15621 L:      [email protected] (suggested Cc:)
15622 S:      Supported
15623 W:      http://kernsec.org/
15624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15625 F:      security/
15626 X:      security/selinux/
15627
15628 SELINUX SECURITY MODULE
15629 M:      Paul Moore <[email protected]>
15630 M:      Stephen Smalley <[email protected]>
15631 M:      Eric Paris <[email protected]>
15632 L:      [email protected]
15633 S:      Supported
15634 W:      https://selinuxproject.org
15635 W:      https://github.com/SELinuxProject
15636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15637 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15638 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15639 F:      Documentation/admin-guide/LSM/SELinux.rst
15640 F:      include/uapi/linux/selinux_netlink.h
15641 F:      scripts/selinux/
15642 F:      security/selinux/
15643
15644 SENSABLE PHANTOM
15645 M:      Jiri Slaby <[email protected]>
15646 S:      Maintained
15647 F:      drivers/misc/phantom.c
15648 F:      include/uapi/linux/phantom.h
15649
15650 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
15651 M:      Tomasz Duszynski <[email protected]>
15652 S:      Maintained
15653 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
15654 F:      drivers/iio/chemical/scd30.h
15655 F:      drivers/iio/chemical/scd30_core.c
15656 F:      drivers/iio/chemical/scd30_i2c.c
15657 F:      drivers/iio/chemical/scd30_serial.c
15658
15659 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15660 M:      Tomasz Duszynski <[email protected]>
15661 S:      Maintained
15662 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15663 F:      drivers/iio/chemical/sps30.c
15664
15665 SERIAL DEVICE BUS
15666 M:      Rob Herring <[email protected]>
15667 L:      [email protected]
15668 S:      Maintained
15669 F:      Documentation/devicetree/bindings/serial/serial.yaml
15670 F:      drivers/tty/serdev/
15671 F:      include/linux/serdev.h
15672
15673 SERIAL DRIVERS
15674 M:      Greg Kroah-Hartman <[email protected]>
15675 L:      [email protected]
15676 S:      Maintained
15677 F:      Documentation/devicetree/bindings/serial/
15678 F:      drivers/tty/serial/
15679
15680 SERIAL IR RECEIVER
15681 M:      Sean Young <[email protected]>
15682 L:      [email protected]
15683 S:      Maintained
15684 F:      drivers/media/rc/serial_ir.c
15685
15686 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15687 M:      Srinivas Kandagatla <[email protected]>
15688 L:      [email protected] (moderated for non-subscribers)
15689 S:      Maintained
15690 F:      Documentation/devicetree/bindings/slimbus/
15691 F:      drivers/slimbus/
15692 F:      include/linux/slimbus.h
15693
15694 SFC NETWORK DRIVER
15695 M:      Solarflare linux maintainers <[email protected]>
15696 M:      Edward Cree <[email protected]>
15697 M:      Martin Habets <[email protected]>
15698 L:      [email protected]
15699 S:      Supported
15700 F:      drivers/net/ethernet/sfc/
15701
15702 SFF/SFP/SFP+ MODULE SUPPORT
15703 M:      Russell King <[email protected]>
15704 L:      [email protected]
15705 S:      Maintained
15706 F:      drivers/net/phy/phylink.c
15707 F:      drivers/net/phy/sfp*
15708 F:      include/linux/mdio/mdio-i2c.h
15709 F:      include/linux/phylink.h
15710 F:      include/linux/sfp.h
15711 K:      phylink\.h|struct\s+phylink|\.phylink|>phylink_|phylink_(autoneg|clear|connect|create|destroy|disconnect|ethtool|helper|mac|mii|of|set|start|stop|test|validate)
15712
15713 SGI GRU DRIVER
15714 M:      Dimitri Sivanich <[email protected]>
15715 S:      Maintained
15716 F:      drivers/misc/sgi-gru/
15717
15718 SGI XP/XPC/XPNET DRIVER
15719 M:      Cliff Whickman <[email protected]>
15720 M:      Robin Holt <[email protected]>
15721 S:      Maintained
15722 F:      drivers/misc/sgi-xp/
15723
15724 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15725 M:      Ursula Braun <[email protected]>
15726 M:      Karsten Graul <[email protected]>
15727 L:      [email protected]
15728 S:      Supported
15729 W:      http://www.ibm.com/developerworks/linux/linux390/
15730 F:      net/smc/
15731
15732 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15733 M:      Linus Walleij <[email protected]>
15734 L:      [email protected]
15735 S:      Maintained
15736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15737 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15738 F:      drivers/iio/light/gp2ap002.c
15739
15740 SHARP RJ54N1CB0C SENSOR DRIVER
15741 M:      Jacopo Mondi <[email protected]>
15742 L:      [email protected]
15743 S:      Odd fixes
15744 T:      git git://linuxtv.org/media_tree.git
15745 F:      drivers/media/i2c/rj54n1cb0c.c
15746 F:      include/media/i2c/rj54n1cb0c.h
15747
15748 SH_VOU V4L2 OUTPUT DRIVER
15749 L:      [email protected]
15750 S:      Orphan
15751 F:      drivers/media/platform/sh_vou.c
15752 F:      include/media/drv-intf/sh_vou.h
15753
15754 SI2157 MEDIA DRIVER
15755 M:      Antti Palosaari <[email protected]>
15756 L:      [email protected]
15757 S:      Maintained
15758 W:      https://linuxtv.org
15759 W:      http://palosaari.fi/linux/
15760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15761 T:      git git://linuxtv.org/anttip/media_tree.git
15762 F:      drivers/media/tuners/si2157*
15763
15764 SI2165 MEDIA DRIVER
15765 M:      Matthias Schwarzott <[email protected]>
15766 L:      [email protected]
15767 S:      Maintained
15768 W:      https://linuxtv.org
15769 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15770 F:      drivers/media/dvb-frontends/si2165*
15771
15772 SI2168 MEDIA DRIVER
15773 M:      Antti Palosaari <[email protected]>
15774 L:      [email protected]
15775 S:      Maintained
15776 W:      https://linuxtv.org
15777 W:      http://palosaari.fi/linux/
15778 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15779 T:      git git://linuxtv.org/anttip/media_tree.git
15780 F:      drivers/media/dvb-frontends/si2168*
15781
15782 SI470X FM RADIO RECEIVER I2C DRIVER
15783 M:      Hans Verkuil <[email protected]>
15784 L:      [email protected]
15785 S:      Odd Fixes
15786 W:      https://linuxtv.org
15787 T:      git git://linuxtv.org/media_tree.git
15788 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15789
15790 SI470X FM RADIO RECEIVER USB DRIVER
15791 M:      Hans Verkuil <[email protected]>
15792 L:      [email protected]
15793 S:      Maintained
15794 W:      https://linuxtv.org
15795 T:      git git://linuxtv.org/media_tree.git
15796 F:      drivers/media/radio/si470x/radio-si470x-common.c
15797 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15798 F:      drivers/media/radio/si470x/radio-si470x.h
15799
15800 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15801 M:      Eduardo Valentin <[email protected]>
15802 L:      [email protected]
15803 S:      Odd Fixes
15804 W:      https://linuxtv.org
15805 T:      git git://linuxtv.org/media_tree.git
15806 F:      drivers/media/radio/si4713/si4713.?
15807
15808 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15809 M:      Eduardo Valentin <[email protected]>
15810 L:      [email protected]
15811 S:      Odd Fixes
15812 W:      https://linuxtv.org
15813 T:      git git://linuxtv.org/media_tree.git
15814 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15815
15816 SI4713 FM RADIO TRANSMITTER USB DRIVER
15817 M:      Hans Verkuil <[email protected]>
15818 L:      [email protected]
15819 S:      Maintained
15820 W:      https://linuxtv.org
15821 T:      git git://linuxtv.org/media_tree.git
15822 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15823
15824 SIANO DVB DRIVER
15825 M:      Mauro Carvalho Chehab <[email protected]>
15826 L:      [email protected]
15827 S:      Odd fixes
15828 W:      https://linuxtv.org
15829 T:      git git://linuxtv.org/media_tree.git
15830 F:      drivers/media/common/siano/
15831 F:      drivers/media/mmc/siano/
15832 F:      drivers/media/usb/siano/
15833 F:      drivers/media/usb/siano/
15834
15835 SIFIVE DRIVERS
15836 M:      Palmer Dabbelt <[email protected]>
15837 M:      Paul Walmsley <[email protected]>
15838 L:      [email protected]
15839 S:      Supported
15840 T:      git git://github.com/sifive/riscv-linux.git
15841 N:      sifive
15842 K:      [^@]sifive
15843
15844 SIFIVE FU540 SYSTEM-ON-CHIP
15845 M:      Paul Walmsley <[email protected]>
15846 M:      Palmer Dabbelt <[email protected]>
15847 L:      [email protected]
15848 S:      Supported
15849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15850 N:      fu540
15851 K:      fu540
15852
15853 SIFIVE PDMA DRIVER
15854 M:      Green Wan <[email protected]>
15855 S:      Maintained
15856 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15857 F:      drivers/dma/sf-pdma/
15858
15859 SILEAD TOUCHSCREEN DRIVER
15860 M:      Hans de Goede <[email protected]>
15861 L:      [email protected]
15862 L:      [email protected]
15863 S:      Maintained
15864 F:      drivers/input/touchscreen/silead.c
15865 F:      drivers/platform/x86/touchscreen_dmi.c
15866
15867 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15868 M:      Jérôme Pouiller <[email protected]>
15869 S:      Supported
15870 F:      drivers/staging/wfx/
15871
15872 SILICON MOTION SM712 FRAME BUFFER DRIVER
15873 M:      Sudip Mukherjee <[email protected]>
15874 M:      Teddy Wang <[email protected]>
15875 M:      Sudip Mukherjee <[email protected]>
15876 L:      [email protected]
15877 S:      Maintained
15878 F:      Documentation/fb/sm712fb.rst
15879 F:      drivers/video/fbdev/sm712*
15880
15881 SIMPLE FIRMWARE INTERFACE (SFI)
15882 S:      Obsolete
15883 W:      http://simplefirmware.org/
15884 F:      arch/x86/platform/sfi/
15885 F:      drivers/sfi/
15886 F:      include/linux/sfi*.h
15887
15888 SIMPLEFB FB DRIVER
15889 M:      Hans de Goede <[email protected]>
15890 L:      [email protected]
15891 S:      Maintained
15892 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15893 F:      drivers/video/fbdev/simplefb.c
15894 F:      include/linux/platform_data/simplefb.h
15895
15896 SIMTEC EB110ATX (Chalice CATS)
15897 M:      Vincent Sanders <[email protected]>
15898 M:      Simtec Linux Team <[email protected]>
15899 S:      Supported
15900 W:      http://www.simtec.co.uk/products/EB110ATX/
15901
15902 SIMTEC EB2410ITX (BAST)
15903 M:      Vincent Sanders <[email protected]>
15904 M:      Simtec Linux Team <[email protected]>
15905 S:      Supported
15906 W:      http://www.simtec.co.uk/products/EB2410ITX/
15907 F:      arch/arm/mach-s3c24xx/bast-ide.c
15908 F:      arch/arm/mach-s3c24xx/bast-irq.c
15909 F:      arch/arm/mach-s3c24xx/mach-bast.c
15910
15911 SIOX
15912 M:      Thorsten Scherer <[email protected]>
15913 M:      Uwe Kleine-König <[email protected]>
15914 R:      Pengutronix Kernel Team <[email protected]>
15915 S:      Supported
15916 F:      drivers/gpio/gpio-siox.c
15917 F:      drivers/siox/*
15918 F:      include/trace/events/siox.h
15919
15920 SIPHASH PRF ROUTINES
15921 M:      Jason A. Donenfeld <[email protected]>
15922 S:      Maintained
15923 F:      include/linux/siphash.h
15924 F:      lib/siphash.c
15925 F:      lib/test_siphash.c
15926
15927 SIS 190 ETHERNET DRIVER
15928 M:      Francois Romieu <[email protected]>
15929 L:      [email protected]
15930 S:      Maintained
15931 F:      drivers/net/ethernet/sis/sis190.c
15932
15933 SIS 900/7016 FAST ETHERNET DRIVER
15934 M:      Daniele Venzano <[email protected]>
15935 L:      [email protected]
15936 S:      Maintained
15937 W:      http://www.brownhat.org/sis900.html
15938 F:      drivers/net/ethernet/sis/sis900.*
15939
15940 SIS FRAMEBUFFER DRIVER
15941 M:      Thomas Winischhofer <[email protected]>
15942 S:      Maintained
15943 W:      http://www.winischhofer.net/linuxsisvga.shtml
15944 F:      Documentation/fb/sisfb.rst
15945 F:      drivers/video/fbdev/sis/
15946 F:      include/video/sisfb.h
15947
15948 SIS USB2VGA DRIVER
15949 M:      Thomas Winischhofer <[email protected]>
15950 S:      Maintained
15951 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15952 F:      drivers/usb/misc/sisusbvga/
15953
15954 SLAB ALLOCATOR
15955 M:      Christoph Lameter <[email protected]>
15956 M:      Pekka Enberg <[email protected]>
15957 M:      David Rientjes <[email protected]>
15958 M:      Joonsoo Kim <[email protected]>
15959 M:      Andrew Morton <[email protected]>
15960 L:      [email protected]
15961 S:      Maintained
15962 F:      include/linux/sl?b*.h
15963 F:      mm/sl?b*
15964
15965 SLEEPABLE READ-COPY UPDATE (SRCU)
15966 M:      Lai Jiangshan <[email protected]>
15967 M:      "Paul E. McKenney" <[email protected]>
15968 M:      Josh Triplett <[email protected]>
15969 R:      Steven Rostedt <[email protected]>
15970 R:      Mathieu Desnoyers <[email protected]>
15971 L:      [email protected]
15972 S:      Supported
15973 W:      http://www.rdrop.com/users/paulmck/RCU/
15974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15975 F:      include/linux/srcu*.h
15976 F:      kernel/rcu/srcu*.c
15977
15978 SMACK SECURITY MODULE
15979 M:      Casey Schaufler <[email protected]>
15980 L:      [email protected]
15981 S:      Maintained
15982 W:      http://schaufler-ca.com
15983 T:      git git://github.com/cschaufler/smack-next
15984 F:      Documentation/admin-guide/LSM/Smack.rst
15985 F:      security/smack/
15986
15987 SMC91x ETHERNET DRIVER
15988 M:      Nicolas Pitre <[email protected]>
15989 S:      Odd Fixes
15990 F:      drivers/net/ethernet/smsc/smc91x.*
15991
15992 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
15993 M:      Mark Rutland <[email protected]>
15994 M:      Lorenzo Pieralisi <[email protected]>
15995 M:      Sudeep Holla <[email protected]>
15996 L:      [email protected]
15997 S:      Maintained
15998 F:      drivers/firmware/smccc/
15999 F:      include/linux/arm-smccc.h
16000
16001 SMIA AND SMIA++ IMAGE SENSOR DRIVER
16002 M:      Sakari Ailus <[email protected]>
16003 L:      [email protected]
16004 S:      Maintained
16005 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
16006 F:      drivers/media/i2c/smiapp-pll.c
16007 F:      drivers/media/i2c/smiapp-pll.h
16008 F:      drivers/media/i2c/smiapp/
16009 F:      include/uapi/linux/smiapp.h
16010
16011 SMM665 HARDWARE MONITOR DRIVER
16012 M:      Guenter Roeck <[email protected]>
16013 L:      [email protected]
16014 S:      Maintained
16015 F:      Documentation/hwmon/smm665.rst
16016 F:      drivers/hwmon/smm665.c
16017
16018 SMSC EMC2103 HARDWARE MONITOR DRIVER
16019 M:      Steve Glendinning <[email protected]>
16020 L:      [email protected]
16021 S:      Maintained
16022 F:      Documentation/hwmon/emc2103.rst
16023 F:      drivers/hwmon/emc2103.c
16024
16025 SMSC SCH5627 HARDWARE MONITOR DRIVER
16026 M:      Hans de Goede <[email protected]>
16027 L:      [email protected]
16028 S:      Supported
16029 F:      Documentation/hwmon/sch5627.rst
16030 F:      drivers/hwmon/sch5627.c
16031
16032 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16033 M:      Steve Glendinning <[email protected]>
16034 L:      [email protected]
16035 S:      Maintained
16036 F:      drivers/video/fbdev/smscufx.c
16037
16038 SMSC47B397 HARDWARE MONITOR DRIVER
16039 M:      Jean Delvare <[email protected]>
16040 L:      [email protected]
16041 S:      Maintained
16042 F:      Documentation/hwmon/smsc47b397.rst
16043 F:      drivers/hwmon/smsc47b397.c
16044
16045 SMSC911x ETHERNET DRIVER
16046 M:      Steve Glendinning <[email protected]>
16047 L:      [email protected]
16048 S:      Maintained
16049 F:      drivers/net/ethernet/smsc/smsc911x.*
16050 F:      include/linux/smsc911x.h
16051
16052 SMSC9420 PCI ETHERNET DRIVER
16053 M:      Steve Glendinning <[email protected]>
16054 L:      [email protected]
16055 S:      Maintained
16056 F:      drivers/net/ethernet/smsc/smsc9420.*
16057
16058 SOCIONEXT (SNI) AVE NETWORK DRIVER
16059 M:      Kunihiko Hayashi <[email protected]>
16060 L:      [email protected]
16061 S:      Maintained
16062 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16063 F:      drivers/net/ethernet/socionext/sni_ave.c
16064
16065 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16066 M:      Jassi Brar <[email protected]>
16067 M:      Ilias Apalodimas <[email protected]>
16068 L:      [email protected]
16069 S:      Maintained
16070 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
16071 F:      drivers/net/ethernet/socionext/netsec.c
16072
16073 SOCIONEXT (SNI) Synquacer SPI DRIVER
16074 M:      Masahisa Kojima <[email protected]>
16075 M:      Jassi Brar <[email protected]>
16076 L:      [email protected]
16077 S:      Maintained
16078 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
16079 F:      drivers/spi/spi-synquacer.c
16080
16081 SOCIONEXT SYNQUACER I2C DRIVER
16082 M:      Ard Biesheuvel <[email protected]>
16083 L:      [email protected]
16084 S:      Maintained
16085 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16086 F:      drivers/i2c/busses/i2c-synquacer.c
16087
16088 SOCIONEXT UNIPHIER SOUND DRIVER
16089 L:      [email protected] (moderated for non-subscribers)
16090 S:      Orphan
16091 F:      sound/soc/uniphier/
16092
16093 SOEKRIS NET48XX LED SUPPORT
16094 M:      Chris Boot <[email protected]>
16095 S:      Maintained
16096 F:      drivers/leds/leds-net48xx.c
16097
16098 SOFT-IWARP DRIVER (siw)
16099 M:      Bernard Metzler <[email protected]>
16100 L:      [email protected]
16101 S:      Supported
16102 F:      drivers/infiniband/sw/siw/
16103 F:      include/uapi/rdma/siw-abi.h
16104
16105 SOFT-ROCE DRIVER (rxe)
16106 M:      Zhu Yanjun <[email protected]>
16107 L:      [email protected]
16108 S:      Supported
16109 F:      drivers/infiniband/sw/rxe/
16110 F:      include/uapi/rdma/rdma_user_rxe.h
16111
16112 SOFTLOGIC 6x10 MPEG CODEC
16113 M:      Bluecherry Maintainers <[email protected]>
16114 M:      Anton Sviridenko <[email protected]>
16115 M:      Andrey Utkin <[email protected]>
16116 M:      Andrey Utkin <[email protected]>
16117 M:      Ismael Luceno <[email protected]>
16118 L:      [email protected]
16119 S:      Supported
16120 F:      drivers/media/pci/solo6x10/
16121
16122 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16123 M:      James Morse <[email protected]>
16124 L:      [email protected]
16125 S:      Maintained
16126 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
16127 F:      drivers/firmware/arm_sdei.c
16128 F:      include/linux/arm_sdei.h
16129 F:      include/uapi/linux/arm_sdei.h
16130
16131 SOFTWARE RAID (Multiple Disks) SUPPORT
16132 M:      Song Liu <[email protected]>
16133 L:      [email protected]
16134 S:      Supported
16135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16136 F:      drivers/md/Kconfig
16137 F:      drivers/md/Makefile
16138 F:      drivers/md/md*
16139 F:      drivers/md/raid*
16140 F:      include/linux/raid/
16141 F:      include/uapi/linux/raid/
16142
16143 SOLIDRUN CLEARFOG SUPPORT
16144 M:      Russell King <[email protected]>
16145 S:      Maintained
16146 F:      arch/arm/boot/dts/armada-388-clearfog*
16147 F:      arch/arm/boot/dts/armada-38x-solidrun-*
16148
16149 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16150 M:      Russell King <[email protected]>
16151 S:      Maintained
16152 F:      arch/arm/boot/dts/imx6*-cubox-i*
16153 F:      arch/arm/boot/dts/imx6*-hummingboard*
16154 F:      arch/arm/boot/dts/imx6*-sr-*
16155
16156 SONIC NETWORK DRIVER
16157 M:      Thomas Bogendoerfer <[email protected]>
16158 L:      [email protected]
16159 S:      Maintained
16160 F:      drivers/net/ethernet/natsemi/sonic.*
16161
16162 SONICS SILICON BACKPLANE DRIVER (SSB)
16163 M:      Michael Buesch <[email protected]>
16164 L:      [email protected]
16165 S:      Maintained
16166 F:      drivers/ssb/
16167 F:      include/linux/ssb/
16168
16169 SONY IMX214 SENSOR DRIVER
16170 M:      Ricardo Ribalda <[email protected]>
16171 L:      [email protected]
16172 S:      Maintained
16173 T:      git git://linuxtv.org/media_tree.git
16174 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
16175 F:      drivers/media/i2c/imx214.c
16176
16177 SONY IMX219 SENSOR DRIVER
16178 M:      Dave Stevenson <[email protected]>
16179 L:      [email protected]
16180 S:      Maintained
16181 T:      git git://linuxtv.org/media_tree.git
16182 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
16183 F:      drivers/media/i2c/imx219.c
16184
16185 SONY IMX258 SENSOR DRIVER
16186 M:      Sakari Ailus <[email protected]>
16187 L:      [email protected]
16188 S:      Maintained
16189 T:      git git://linuxtv.org/media_tree.git
16190 F:      drivers/media/i2c/imx258.c
16191
16192 SONY IMX274 SENSOR DRIVER
16193 M:      Leon Luo <[email protected]>
16194 L:      [email protected]
16195 S:      Maintained
16196 T:      git git://linuxtv.org/media_tree.git
16197 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
16198 F:      drivers/media/i2c/imx274.c
16199
16200 SONY IMX290 SENSOR DRIVER
16201 M:      Manivannan Sadhasivam <[email protected]>
16202 L:      [email protected]
16203 S:      Maintained
16204 T:      git git://linuxtv.org/media_tree.git
16205 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
16206 F:      drivers/media/i2c/imx290.c
16207
16208 SONY IMX319 SENSOR DRIVER
16209 M:      Bingbu Cao <[email protected]>
16210 L:      [email protected]
16211 S:      Maintained
16212 T:      git git://linuxtv.org/media_tree.git
16213 F:      drivers/media/i2c/imx319.c
16214
16215 SONY IMX355 SENSOR DRIVER
16216 M:      Tianshu Qiu <[email protected]>
16217 L:      [email protected]
16218 S:      Maintained
16219 T:      git git://linuxtv.org/media_tree.git
16220 F:      drivers/media/i2c/imx355.c
16221
16222 SONY MEMORYSTICK SUBSYSTEM
16223 M:      Maxim Levitsky <[email protected]>
16224 M:      Alex Dubov <[email protected]>
16225 M:      Ulf Hansson <[email protected]>
16226 L:      [email protected]
16227 S:      Maintained
16228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
16229 F:      drivers/memstick/
16230 F:      include/linux/memstick.h
16231
16232 SONY VAIO CONTROL DEVICE DRIVER
16233 M:      Mattia Dongili <[email protected]>
16234 L:      [email protected]
16235 S:      Maintained
16236 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
16237 F:      Documentation/admin-guide/laptops/sony-laptop.rst
16238 F:      drivers/char/sonypi.c
16239 F:      drivers/platform/x86/sony-laptop.c
16240 F:      include/linux/sony-laptop.h
16241
16242 SOUND
16243 M:      Jaroslav Kysela <[email protected]>
16244 M:      Takashi Iwai <[email protected]>
16245 L:      [email protected] (moderated for non-subscribers)
16246 S:      Maintained
16247 W:      http://www.alsa-project.org/
16248 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
16249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16250 F:      Documentation/sound/
16251 F:      include/sound/
16252 F:      include/uapi/sound/
16253 F:      sound/
16254
16255 SOUND - COMPRESSED AUDIO
16256 M:      Vinod Koul <[email protected]>
16257 L:      [email protected] (moderated for non-subscribers)
16258 S:      Supported
16259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16260 F:      Documentation/sound/designs/compress-offload.rst
16261 F:      include/sound/compress_driver.h
16262 F:      include/uapi/sound/compress_*
16263 F:      sound/core/compress_offload.c
16264 F:      sound/soc/soc-compress.c
16265
16266 SOUND - DMAENGINE HELPERS
16267 M:      Lars-Peter Clausen <[email protected]>
16268 S:      Supported
16269 F:      include/sound/dmaengine_pcm.h
16270 F:      sound/core/pcm_dmaengine.c
16271 F:      sound/soc/soc-generic-dmaengine-pcm.c
16272
16273 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
16274 M:      Liam Girdwood <[email protected]>
16275 M:      Mark Brown <[email protected]>
16276 L:      [email protected] (moderated for non-subscribers)
16277 S:      Supported
16278 W:      http://alsa-project.org/main/index.php/ASoC
16279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16280 F:      Documentation/devicetree/bindings/sound/
16281 F:      Documentation/sound/soc/
16282 F:      include/dt-bindings/sound/
16283 F:      include/sound/soc*
16284 F:      sound/soc/
16285
16286 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16287 M:      Pierre-Louis Bossart <[email protected]>
16288 M:      Liam Girdwood <[email protected]>
16289 M:      Ranjani Sridharan <[email protected]>
16290 M:      Kai Vehmanen <[email protected]>
16291 M:      Daniel Baluta <[email protected]>
16292 L:      [email protected] (moderated for non-subscribers)
16293 S:      Supported
16294 W:      https://github.com/thesofproject/linux/
16295 F:      sound/soc/sof/
16296
16297 SOUNDWIRE SUBSYSTEM
16298 M:      Vinod Koul <[email protected]>
16299 M:      Bard Liao <[email protected]>
16300 R:      Pierre-Louis Bossart <[email protected]>
16301 R:      Sanyog Kale <[email protected]>
16302 L:      [email protected] (moderated for non-subscribers)
16303 S:      Supported
16304 F:      Documentation/driver-api/soundwire/
16305 F:      drivers/soundwire/
16306 F:      include/linux/soundwire/
16307
16308 SP2 MEDIA DRIVER
16309 M:      Olli Salonen <[email protected]>
16310 L:      [email protected]
16311 S:      Maintained
16312 W:      https://linuxtv.org
16313 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16314 F:      drivers/media/dvb-frontends/sp2*
16315
16316 SPARC + UltraSPARC (sparc/sparc64)
16317 M:      "David S. Miller" <[email protected]>
16318 L:      [email protected]
16319 S:      Maintained
16320 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16323 F:      arch/sparc/
16324 F:      drivers/sbus/
16325
16326 SPARC SERIAL DRIVERS
16327 M:      "David S. Miller" <[email protected]>
16328 L:      [email protected]
16329 S:      Maintained
16330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16332 F:      drivers/tty/serial/suncore.c
16333 F:      drivers/tty/serial/sunhv.c
16334 F:      drivers/tty/serial/sunsab.c
16335 F:      drivers/tty/serial/sunsab.h
16336 F:      drivers/tty/serial/sunsu.c
16337 F:      drivers/tty/serial/sunzilog.c
16338 F:      drivers/tty/serial/sunzilog.h
16339 F:      drivers/tty/vcc.c
16340 F:      include/linux/sunserialcore.h
16341
16342 SPARSE CHECKER
16343 M:      "Luc Van Oostenryck" <[email protected]>
16344 L:      [email protected]
16345 S:      Maintained
16346 W:      https://sparse.docs.kernel.org/
16347 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16348 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16349 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16350 F:      include/linux/compiler.h
16351
16352 SPEAKUP CONSOLE SPEECH DRIVER
16353 M:      William Hubbs <[email protected]>
16354 M:      Chris Brannon <[email protected]>
16355 M:      Kirk Reiser <[email protected]>
16356 M:      Samuel Thibault <[email protected]>
16357 L:      [email protected]
16358 S:      Odd Fixes
16359 W:      http://www.linux-speakup.org/
16360 F:      drivers/accessibility/speakup/
16361
16362 SPEAR CLOCK FRAMEWORK SUPPORT
16363 M:      Viresh Kumar <[email protected]>
16364 L:      [email protected] (moderated for non-subscribers)
16365 S:      Maintained
16366 W:      http://www.st.com/spear
16367 F:      drivers/clk/spear/
16368
16369 SPEAR PLATFORM SUPPORT
16370 M:      Viresh Kumar <[email protected]>
16371 M:      Shiraz Hashim <[email protected]>
16372 L:      [email protected] (moderated for non-subscribers)
16373 S:      Maintained
16374 W:      http://www.st.com/spear
16375 F:      arch/arm/boot/dts/spear*
16376 F:      arch/arm/mach-spear/
16377
16378 SPI NOR SUBSYSTEM
16379 M:      Tudor Ambarus <[email protected]>
16380 L:      [email protected]
16381 S:      Maintained
16382 W:      http://www.linux-mtd.infradead.org/
16383 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16384 C:      irc://irc.oftc.net/mtd
16385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16386 F:      drivers/mtd/spi-nor/
16387 F:      include/linux/mtd/spi-nor.h
16388
16389 SPI SUBSYSTEM
16390 M:      Mark Brown <[email protected]>
16391 L:      [email protected]
16392 S:      Maintained
16393 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16395 F:      Documentation/devicetree/bindings/spi/
16396 F:      Documentation/spi/
16397 F:      drivers/spi/
16398 F:      include/linux/spi/
16399 F:      include/uapi/linux/spi/
16400 F:      tools/spi/
16401
16402 SPIDERNET NETWORK DRIVER for CELL
16403 M:      Ishizaki Kou <[email protected]>
16404 L:      [email protected]
16405 S:      Supported
16406 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
16407 F:      drivers/net/ethernet/toshiba/spider_net*
16408
16409 SPMI SUBSYSTEM
16410 R:      Stephen Boyd <[email protected]>
16411 L:      [email protected]
16412 F:      Documentation/devicetree/bindings/spmi/
16413 F:      drivers/spmi/
16414 F:      include/dt-bindings/spmi/spmi.h
16415 F:      include/linux/spmi.h
16416 F:      include/trace/events/spmi.h
16417
16418 SPU FILE SYSTEM
16419 M:      Jeremy Kerr <[email protected]>
16420 L:      [email protected]
16421 S:      Supported
16422 W:      http://www.ibm.com/developerworks/power/cell/
16423 F:      Documentation/filesystems/spufs/spufs.rst
16424 F:      arch/powerpc/platforms/cell/spufs/
16425
16426 SQUASHFS FILE SYSTEM
16427 M:      Phillip Lougher <[email protected]>
16428 L:      [email protected] (subscribers-only)
16429 S:      Maintained
16430 W:      http://squashfs.org.uk
16431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16432 F:      Documentation/filesystems/squashfs.rst
16433 F:      fs/squashfs/
16434
16435 SRM (Alpha) environment access
16436 M:      Jan-Benedict Glaw <[email protected]>
16437 S:      Maintained
16438 F:      arch/alpha/kernel/srm_env.c
16439
16440 ST LSM6DSx IMU IIO DRIVER
16441 M:      Lorenzo Bianconi <[email protected]>
16442 L:      [email protected]
16443 S:      Maintained
16444 W:      http://www.st.com/
16445 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16446 F:      drivers/iio/imu/st_lsm6dsx/
16447
16448 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16449 M:      Mickael Guene <[email protected]>
16450 L:      [email protected]
16451 S:      Maintained
16452 T:      git git://linuxtv.org/media_tree.git
16453 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16454 F:      drivers/media/i2c/st-mipid02.c
16455
16456 ST STM32 I2C/SMBUS DRIVER
16457 M:      Pierre-Yves MORDRET <[email protected]>
16458 L:      [email protected]
16459 S:      Maintained
16460 F:      drivers/i2c/busses/i2c-stm32*
16461
16462 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16463 M:      Song Qiang <[email protected]>
16464 L:      [email protected]
16465 S:      Maintained
16466 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16467 F:      drivers/iio/proximity/vl53l0x-i2c.c
16468
16469 STABLE BRANCH
16470 M:      Greg Kroah-Hartman <[email protected]>
16471 M:      Sasha Levin <[email protected]>
16472 L:      [email protected]
16473 S:      Supported
16474 F:      Documentation/process/stable-kernel-rules.rst
16475
16476 STAGING - ATOMISP DRIVER
16477 M:      Mauro Carvalho Chehab <[email protected]>
16478 R:      Sakari Ailus <[email protected]>
16479 L:      [email protected]
16480 S:      Maintained
16481 F:      drivers/staging/media/atomisp/
16482
16483 STAGING - COMEDI
16484 M:      Ian Abbott <[email protected]>
16485 M:      H Hartley Sweeten <[email protected]>
16486 S:      Odd Fixes
16487 F:      drivers/staging/comedi/
16488
16489 STAGING - FIELDBUS SUBSYSTEM
16490 M:      Sven Van Asbroeck <[email protected]>
16491 S:      Maintained
16492 F:      drivers/staging/fieldbus/*
16493 F:      drivers/staging/fieldbus/Documentation/
16494
16495 STAGING - HMS ANYBUS-S BUS
16496 M:      Sven Van Asbroeck <[email protected]>
16497 S:      Maintained
16498 F:      drivers/staging/fieldbus/anybuss/
16499
16500 STAGING - INDUSTRIAL IO
16501 M:      Jonathan Cameron <[email protected]>
16502 L:      [email protected]
16503 S:      Odd Fixes
16504 F:      Documentation/devicetree/bindings/staging/iio/
16505 F:      drivers/staging/iio/
16506
16507 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16508 M:      Marc Dietrich <[email protected]>
16509 L:      [email protected] (moderated for non-subscribers)
16510 L:      [email protected]
16511 S:      Maintained
16512 F:      drivers/staging/nvec/
16513
16514 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16515 M:      Jens Frederich <[email protected]>
16516 M:      Daniel Drake <[email protected]>
16517 M:      Jon Nettleton <[email protected]>
16518 S:      Maintained
16519 W:      http://wiki.laptop.org/go/DCON
16520 F:      drivers/staging/olpc_dcon/
16521
16522 STAGING - REALTEK RTL8188EU DRIVERS
16523 M:      Larry Finger <[email protected]>
16524 S:      Odd Fixes
16525 F:      drivers/staging/rtl8188eu/
16526
16527 STAGING - REALTEK RTL8712U DRIVERS
16528 M:      Larry Finger <[email protected]>
16529 M:      Florian Schilhabel <[email protected]>.
16530 S:      Odd Fixes
16531 F:      drivers/staging/rtl8712/
16532
16533 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16534 M:      Michael Hennerich <[email protected]>
16535 M:      Beniamin Bia <[email protected]>
16536 L:      [email protected]
16537 S:      Supported
16538 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16539 F:      drivers/staging/fbtft/fb_seps525.c
16540
16541 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16542 M:      Sudip Mukherjee <[email protected]>
16543 M:      Teddy Wang <[email protected]>
16544 M:      Sudip Mukherjee <[email protected]>
16545 L:      [email protected]
16546 S:      Maintained
16547 F:      drivers/staging/sm750fb/
16548
16549 STAGING - VIA VT665X DRIVERS
16550 M:      Forest Bond <[email protected]>
16551 S:      Odd Fixes
16552 F:      drivers/staging/vt665?/
16553
16554 STAGING SUBSYSTEM
16555 M:      Greg Kroah-Hartman <[email protected]>
16556 L:      [email protected]
16557 S:      Supported
16558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16559 F:      drivers/staging/
16560
16561 STARFIRE/DURALAN NETWORK DRIVER
16562 M:      Ion Badulescu <[email protected]>
16563 S:      Odd Fixes
16564 F:      drivers/net/ethernet/adaptec/starfire*
16565
16566 STEC S1220 SKD DRIVER
16567 M:      Damien Le Moal <[email protected]>
16568 L:      [email protected]
16569 S:      Maintained
16570 F:      drivers/block/skd*[ch]
16571
16572 STI AUDIO (ASoC) DRIVERS
16573 M:      Arnaud Pouliquen <[email protected]>
16574 L:      [email protected] (moderated for non-subscribers)
16575 S:      Maintained
16576 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16577 F:      sound/soc/sti/
16578
16579 STI CEC DRIVER
16580 M:      Benjamin Gaignard <[email protected]>
16581 S:      Maintained
16582 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16583 F:      drivers/media/platform/sti/cec/
16584
16585 STK1160 USB VIDEO CAPTURE DRIVER
16586 M:      Ezequiel Garcia <[email protected]>
16587 L:      [email protected]
16588 S:      Maintained
16589 T:      git git://linuxtv.org/media_tree.git
16590 F:      drivers/media/usb/stk1160/
16591
16592 STM32 AUDIO (ASoC) DRIVERS
16593 M:      Olivier Moysan <[email protected]>
16594 M:      Arnaud Pouliquen <[email protected]>
16595 L:      [email protected] (moderated for non-subscribers)
16596 S:      Maintained
16597 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16598 F:      sound/soc/stm/
16599
16600 STM32 TIMER/LPTIMER DRIVERS
16601 M:      Fabrice Gasnier <[email protected]>
16602 S:      Maintained
16603 F:      Documentation/ABI/testing/*timer-stm32
16604 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16605 F:      drivers/*/stm32-*timer*
16606 F:      drivers/pwm/pwm-stm32*
16607 F:      include/linux/*/stm32-*tim*
16608
16609 STMMAC ETHERNET DRIVER
16610 M:      Giuseppe Cavallaro <[email protected]>
16611 M:      Alexandre Torgue <[email protected]>
16612 M:      Jose Abreu <[email protected]>
16613 L:      [email protected]
16614 S:      Supported
16615 W:      http://www.stlinux.com
16616 F:      Documentation/networking/device_drivers/ethernet/stmicro/
16617 F:      drivers/net/ethernet/stmicro/stmmac/
16618
16619 SUN3/3X
16620 M:      Sam Creasey <[email protected]>
16621 S:      Maintained
16622 W:      http://sammy.net/sun3/
16623 F:      arch/m68k/include/asm/sun3*
16624 F:      arch/m68k/kernel/*sun3*
16625 F:      arch/m68k/sun3*/
16626 F:      drivers/net/ethernet/i825xx/sun3*
16627
16628 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16629 M:      Hans de Goede <[email protected]>
16630 L:      [email protected]
16631 S:      Maintained
16632 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16633 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16634
16635 SUNDANCE NETWORK DRIVER
16636 M:      Denis Kirjanov <[email protected]>
16637 L:      [email protected]
16638 S:      Maintained
16639 F:      drivers/net/ethernet/dlink/sundance.c
16640
16641 SUPERH
16642 M:      Yoshinori Sato <[email protected]>
16643 M:      Rich Felker <[email protected]>
16644 L:      [email protected]
16645 S:      Maintained
16646 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16647 F:      Documentation/sh/
16648 F:      arch/sh/
16649 F:      drivers/sh/
16650
16651 SUSPEND TO RAM
16652 M:      "Rafael J. Wysocki" <[email protected]>
16653 M:      Len Brown <[email protected]>
16654 M:      Pavel Machek <[email protected]>
16655 L:      [email protected]
16656 S:      Supported
16657 B:      https://bugzilla.kernel.org
16658 F:      Documentation/power/
16659 F:      arch/x86/kernel/acpi/
16660 F:      drivers/base/power/
16661 F:      include/linux/freezer.h
16662 F:      include/linux/pm.h
16663 F:      include/linux/suspend.h
16664 F:      kernel/power/
16665
16666 SVGA HANDLING
16667 M:      Martin Mares <[email protected]>
16668 L:      [email protected]
16669 S:      Maintained
16670 F:      Documentation/admin-guide/svga.rst
16671 F:      arch/x86/boot/video*
16672
16673 SWIOTLB SUBSYSTEM
16674 M:      Konrad Rzeszutek Wilk <[email protected]>
16675 L:      [email protected]
16676 S:      Supported
16677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16678 F:      arch/*/kernel/pci-swiotlb.c
16679 F:      include/linux/swiotlb.h
16680 F:      kernel/dma/swiotlb.c
16681
16682 SWITCHDEV
16683 M:      Jiri Pirko <[email protected]>
16684 M:      Ivan Vecera <[email protected]>
16685 L:      [email protected]
16686 S:      Supported
16687 F:      include/net/switchdev.h
16688 F:      net/switchdev/
16689
16690 SY8106A REGULATOR DRIVER
16691 M:      Icenowy Zheng <[email protected]>
16692 S:      Maintained
16693 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16694 F:      drivers/regulator/sy8106a-regulator.c
16695
16696 SYNC FILE FRAMEWORK
16697 M:      Sumit Semwal <[email protected]>
16698 R:      Gustavo Padovan <[email protected]>
16699 L:      [email protected]
16700 L:      [email protected]
16701 S:      Maintained
16702 T:      git git://anongit.freedesktop.org/drm/drm-misc
16703 F:      Documentation/driver-api/sync_file.rst
16704 F:      drivers/dma-buf/dma-fence*
16705 F:      drivers/dma-buf/sw_sync.c
16706 F:      drivers/dma-buf/sync_*
16707 F:      include/linux/sync_file.h
16708 F:      include/uapi/linux/sync_file.h
16709
16710 SYNOPSYS ARC ARCHITECTURE
16711 M:      Vineet Gupta <[email protected]>
16712 L:      [email protected]
16713 S:      Supported
16714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16715 F:      Documentation/devicetree/bindings/arc/*
16716 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16717 F:      arch/arc/
16718 F:      drivers/clocksource/arc_timer.c
16719 F:      drivers/tty/serial/arc_uart.c
16720
16721 SYNOPSYS ARC HSDK SDP pll clock driver
16722 M:      Eugeniy Paltsev <[email protected]>
16723 S:      Supported
16724 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16725 F:      drivers/clk/clk-hsdk-pll.c
16726
16727 SYNOPSYS ARC SDP clock driver
16728 M:      Eugeniy Paltsev <[email protected]>
16729 S:      Supported
16730 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16731 F:      drivers/clk/axs10x/*
16732
16733 SYNOPSYS ARC SDP platform support
16734 M:      Alexey Brodkin <[email protected]>
16735 S:      Supported
16736 F:      Documentation/devicetree/bindings/arc/axs10*
16737 F:      arch/arc/boot/dts/ax*
16738 F:      arch/arc/plat-axs10x
16739
16740 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16741 M:      Eugeniy Paltsev <[email protected]>
16742 S:      Supported
16743 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16744 F:      drivers/reset/reset-axs10x.c
16745
16746 SYNOPSYS CREG GPIO DRIVER
16747 M:      Eugeniy Paltsev <[email protected]>
16748 S:      Maintained
16749 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16750 F:      drivers/gpio/gpio-creg-snps.c
16751
16752 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16753 R:      Andy Shevchenko <[email protected]>
16754 S:      Maintained
16755 F:      drivers/tty/serial/8250/8250_dw.c
16756 F:      drivers/tty/serial/8250/8250_dwlib.*
16757 F:      drivers/tty/serial/8250/8250_lpss.c
16758
16759 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16760 M:      Hoan Tran <[email protected]>
16761 M:      Serge Semin <[email protected]>
16762 L:      [email protected]
16763 S:      Maintained
16764 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
16765 F:      drivers/gpio/gpio-dwapb.c
16766
16767 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16768 M:      Eugeniy Paltsev <[email protected]>
16769 S:      Maintained
16770 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16771 F:      drivers/dma/dw-axi-dmac/
16772
16773 SYNOPSYS DESIGNWARE DMAC DRIVER
16774 M:      Viresh Kumar <[email protected]>
16775 R:      Andy Shevchenko <[email protected]>
16776 S:      Maintained
16777 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16778 F:      drivers/dma/dw/
16779 F:      include/dt-bindings/dma/dw-dmac.h
16780 F:      include/linux/dma/dw.h
16781 F:      include/linux/platform_data/dma-dw.h
16782
16783 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16784 M:      Jose Abreu <[email protected]>
16785 L:      [email protected]
16786 S:      Supported
16787 F:      drivers/net/ethernet/synopsys/
16788
16789 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16790 M:      Jose Abreu <[email protected]>
16791 L:      [email protected]
16792 S:      Supported
16793 F:      drivers/net/pcs/pcs-xpcs.c
16794 F:      include/linux/pcs/pcs-xpcs.h
16795
16796 SYNOPSYS DESIGNWARE I2C DRIVER
16797 M:      Jarkko Nikula <[email protected]>
16798 R:      Andy Shevchenko <[email protected]>
16799 R:      Mika Westerberg <[email protected]>
16800 L:      [email protected]
16801 S:      Maintained
16802 F:      drivers/i2c/busses/i2c-designware-*
16803 F:      include/linux/platform_data/i2c-designware.h
16804
16805 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16806 M:      Jaehoon Chung <[email protected]>
16807 L:      [email protected]
16808 S:      Maintained
16809 F:      drivers/mmc/host/dw_mmc*
16810
16811 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16812 M:      Eugeniy Paltsev <[email protected]>
16813 S:      Supported
16814 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16815 F:      drivers/reset/reset-hsdk.c
16816 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16817
16818 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
16819 M:      Prabu Thangamuthu <[email protected]>
16820 M:      Manjunath M B <[email protected]>
16821 L:      [email protected]
16822 S:      Maintained
16823 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
16824
16825 SYSTEM CONFIGURATION (SYSCON)
16826 M:      Lee Jones <[email protected]>
16827 M:      Arnd Bergmann <[email protected]>
16828 S:      Supported
16829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16830 F:      drivers/mfd/syscon.c
16831
16832 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16833 M:      Sudeep Holla <[email protected]>
16834 L:      [email protected]
16835 S:      Maintained
16836 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16837 F:      drivers/clk/clk-sc[mp]i.c
16838 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16839 F:      drivers/firmware/arm_scmi/
16840 F:      drivers/firmware/arm_scpi.c
16841 F:      drivers/reset/reset-scmi.c
16842 F:      include/linux/sc[mp]i_protocol.h
16843 F:      include/trace/events/scmi.h
16844
16845 SYSTEM RESET/SHUTDOWN DRIVERS
16846 M:      Sebastian Reichel <[email protected]>
16847 L:      [email protected]
16848 S:      Maintained
16849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16850 F:      Documentation/devicetree/bindings/power/reset/
16851 F:      drivers/power/reset/
16852
16853 SYSTEM TRACE MODULE CLASS
16854 M:      Alexander Shishkin <[email protected]>
16855 S:      Maintained
16856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16857 F:      Documentation/trace/stm.rst
16858 F:      drivers/hwtracing/stm/
16859 F:      include/linux/stm.h
16860 F:      include/uapi/linux/stm.h
16861
16862 SYSTEM76 ACPI DRIVER
16863 M:      Jeremy Soller <[email protected]>
16864 M:      System76 Product Development <[email protected]>
16865 L:      [email protected]
16866 S:      Maintained
16867 F:      drivers/platform/x86/system76_acpi.c
16868
16869 SYSV FILESYSTEM
16870 M:      Christoph Hellwig <[email protected]>
16871 S:      Maintained
16872 F:      Documentation/filesystems/sysv-fs.rst
16873 F:      fs/sysv/
16874 F:      include/linux/sysv_fs.h
16875
16876 TASKSTATS STATISTICS INTERFACE
16877 M:      Balbir Singh <[email protected]>
16878 S:      Maintained
16879 F:      Documentation/accounting/taskstats*
16880 F:      include/linux/taskstats*
16881 F:      kernel/taskstats.c
16882
16883 TC subsystem
16884 M:      Jamal Hadi Salim <[email protected]>
16885 M:      Cong Wang <[email protected]>
16886 M:      Jiri Pirko <[email protected]>
16887 L:      [email protected]
16888 S:      Maintained
16889 F:      include/net/pkt_cls.h
16890 F:      include/net/pkt_sched.h
16891 F:      include/net/tc_act/
16892 F:      include/uapi/linux/pkt_cls.h
16893 F:      include/uapi/linux/pkt_sched.h
16894 F:      include/uapi/linux/tc_act/
16895 F:      include/uapi/linux/tc_ematch/
16896 F:      net/sched/
16897
16898 TC90522 MEDIA DRIVER
16899 M:      Akihiro Tsukada <[email protected]>
16900 L:      [email protected]
16901 S:      Odd Fixes
16902 F:      drivers/media/dvb-frontends/tc90522*
16903
16904 TCP LOW PRIORITY MODULE
16905 M:      "Wong Hoi Sing, Edison" <[email protected]>
16906 M:      "Hung Hing Lun, Mike" <[email protected]>
16907 S:      Maintained
16908 W:      http://tcp-lp-mod.sourceforge.net/
16909 F:      net/ipv4/tcp_lp.c
16910
16911 TDA10071 MEDIA DRIVER
16912 M:      Antti Palosaari <[email protected]>
16913 L:      [email protected]
16914 S:      Maintained
16915 W:      https://linuxtv.org
16916 W:      http://palosaari.fi/linux/
16917 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16918 T:      git git://linuxtv.org/anttip/media_tree.git
16919 F:      drivers/media/dvb-frontends/tda10071*
16920
16921 TDA18212 MEDIA DRIVER
16922 M:      Antti Palosaari <[email protected]>
16923 L:      [email protected]
16924 S:      Maintained
16925 W:      https://linuxtv.org
16926 W:      http://palosaari.fi/linux/
16927 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16928 T:      git git://linuxtv.org/anttip/media_tree.git
16929 F:      drivers/media/tuners/tda18212*
16930
16931 TDA18218 MEDIA DRIVER
16932 M:      Antti Palosaari <[email protected]>
16933 L:      [email protected]
16934 S:      Maintained
16935 W:      https://linuxtv.org
16936 W:      http://palosaari.fi/linux/
16937 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16938 T:      git git://linuxtv.org/anttip/media_tree.git
16939 F:      drivers/media/tuners/tda18218*
16940
16941 TDA18250 MEDIA DRIVER
16942 M:      Olli Salonen <[email protected]>
16943 L:      [email protected]
16944 S:      Maintained
16945 W:      https://linuxtv.org
16946 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16947 T:      git git://linuxtv.org/media_tree.git
16948 F:      drivers/media/tuners/tda18250*
16949
16950 TDA18271 MEDIA DRIVER
16951 M:      Michael Krufky <[email protected]>
16952 L:      [email protected]
16953 S:      Maintained
16954 W:      https://linuxtv.org
16955 W:      http://github.com/mkrufky
16956 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16957 T:      git git://linuxtv.org/mkrufky/tuners.git
16958 F:      drivers/media/tuners/tda18271*
16959
16960 TDA1997x MEDIA DRIVER
16961 M:      Tim Harvey <[email protected]>
16962 L:      [email protected]
16963 S:      Maintained
16964 W:      https://linuxtv.org
16965 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16966 F:      drivers/media/i2c/tda1997x.*
16967
16968 TDA827x MEDIA DRIVER
16969 M:      Michael Krufky <[email protected]>
16970 L:      [email protected]
16971 S:      Maintained
16972 W:      https://linuxtv.org
16973 W:      http://github.com/mkrufky
16974 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16975 T:      git git://linuxtv.org/mkrufky/tuners.git
16976 F:      drivers/media/tuners/tda8290.*
16977
16978 TDA8290 MEDIA DRIVER
16979 M:      Michael Krufky <[email protected]>
16980 L:      [email protected]
16981 S:      Maintained
16982 W:      https://linuxtv.org
16983 W:      http://github.com/mkrufky
16984 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16985 T:      git git://linuxtv.org/mkrufky/tuners.git
16986 F:      drivers/media/tuners/tda8290.*
16987
16988 TDA9840 MEDIA DRIVER
16989 M:      Hans Verkuil <[email protected]>
16990 L:      [email protected]
16991 S:      Maintained
16992 W:      https://linuxtv.org
16993 T:      git git://linuxtv.org/media_tree.git
16994 F:      drivers/media/i2c/tda9840*
16995
16996 TEA5761 TUNER DRIVER
16997 M:      Mauro Carvalho Chehab <[email protected]>
16998 L:      [email protected]
16999 S:      Odd fixes
17000 W:      https://linuxtv.org
17001 T:      git git://linuxtv.org/media_tree.git
17002 F:      drivers/media/tuners/tea5761.*
17003
17004 TEA5767 TUNER DRIVER
17005 M:      Mauro Carvalho Chehab <[email protected]>
17006 L:      [email protected]
17007 S:      Maintained
17008 W:      https://linuxtv.org
17009 T:      git git://linuxtv.org/media_tree.git
17010 F:      drivers/media/tuners/tea5767.*
17011
17012 TEA6415C MEDIA DRIVER
17013 M:      Hans Verkuil <[email protected]>
17014 L:      [email protected]
17015 S:      Maintained
17016 W:      https://linuxtv.org
17017 T:      git git://linuxtv.org/media_tree.git
17018 F:      drivers/media/i2c/tea6415c*
17019
17020 TEA6420 MEDIA DRIVER
17021 M:      Hans Verkuil <[email protected]>
17022 L:      [email protected]
17023 S:      Maintained
17024 W:      https://linuxtv.org
17025 T:      git git://linuxtv.org/media_tree.git
17026 F:      drivers/media/i2c/tea6420*
17027
17028 TEAM DRIVER
17029 M:      Jiri Pirko <[email protected]>
17030 L:      [email protected]
17031 S:      Supported
17032 F:      drivers/net/team/
17033 F:      include/linux/if_team.h
17034 F:      include/uapi/linux/if_team.h
17035
17036 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17037 M:      "Savoir-faire Linux Inc." <[email protected]>
17038 S:      Maintained
17039 F:      arch/x86/platform/ts5500/
17040
17041 TECHNOTREND USB IR RECEIVER
17042 M:      Sean Young <[email protected]>
17043 L:      [email protected]
17044 S:      Maintained
17045 F:      drivers/media/rc/ttusbir.c
17046
17047 TECHWELL TW9910 VIDEO DECODER
17048 L:      [email protected]
17049 S:      Orphan
17050 F:      drivers/media/i2c/tw9910.c
17051 F:      include/media/i2c/tw9910.h
17052
17053 TEE SUBSYSTEM
17054 M:      Jens Wiklander <[email protected]>
17055 L:      [email protected]
17056 S:      Maintained
17057 F:      Documentation/staging/tee.rst
17058 F:      drivers/tee/
17059 F:      include/linux/tee_drv.h
17060 F:      include/uapi/linux/tee.h
17061
17062 TEGRA ARCHITECTURE SUPPORT
17063 M:      Thierry Reding <[email protected]>
17064 M:      Jonathan Hunter <[email protected]>
17065 L:      [email protected]
17066 S:      Supported
17067 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
17068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17069 N:      [^a-z]tegra
17070
17071 TEGRA CLOCK DRIVER
17072 M:      Peter De Schrijver <[email protected]>
17073 M:      Prashant Gaikwad <[email protected]>
17074 S:      Supported
17075 F:      drivers/clk/tegra/
17076
17077 TEGRA DMA DRIVERS
17078 M:      Laxman Dewangan <[email protected]>
17079 M:      Jon Hunter <[email protected]>
17080 S:      Supported
17081 F:      drivers/dma/tegra*
17082
17083 TEGRA I2C DRIVER
17084 M:      Laxman Dewangan <[email protected]>
17085 R:      Dmitry Osipenko <[email protected]>
17086 S:      Supported
17087 F:      drivers/i2c/busses/i2c-tegra.c
17088
17089 TEGRA IOMMU DRIVERS
17090 M:      Thierry Reding <[email protected]>
17091 R:      Krishna Reddy <[email protected]>
17092 L:      [email protected]
17093 S:      Supported
17094 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17095 F:      drivers/iommu/tegra*
17096
17097 TEGRA KBC DRIVER
17098 M:      Laxman Dewangan <[email protected]>
17099 S:      Supported
17100 F:      drivers/input/keyboard/tegra-kbc.c
17101
17102 TEGRA NAND DRIVER
17103 M:      Stefan Agner <[email protected]>
17104 M:      Lucas Stach <[email protected]>
17105 S:      Maintained
17106 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17107 F:      drivers/mtd/nand/raw/tegra_nand.c
17108
17109 TEGRA PWM DRIVER
17110 M:      Thierry Reding <[email protected]>
17111 S:      Supported
17112 F:      drivers/pwm/pwm-tegra.c
17113
17114 TEGRA SERIAL DRIVER
17115 M:      Laxman Dewangan <[email protected]>
17116 S:      Supported
17117 F:      drivers/tty/serial/serial-tegra.c
17118
17119 TEGRA SPI DRIVER
17120 M:      Laxman Dewangan <[email protected]>
17121 S:      Supported
17122 F:      drivers/spi/spi-tegra*
17123
17124 TEGRA VIDEO DRIVER
17125 M:      Thierry Reding <[email protected]>
17126 M:      Jonathan Hunter <[email protected]>
17127 M:      Sowjanya Komatineni <[email protected]>
17128 L:      [email protected]
17129 L:      [email protected]
17130 S:      Maintained
17131 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17132 F:      drivers/staging/media/tegra-video/
17133
17134 TEGRA XUSB PADCTL DRIVER
17135 M:      JC Kuo <[email protected]>
17136 S:      Supported
17137 F:      drivers/phy/tegra/xusb*
17138
17139 TEHUTI ETHERNET DRIVER
17140 M:      Andy Gospodarek <[email protected]>
17141 L:      [email protected]
17142 S:      Supported
17143 F:      drivers/net/ethernet/tehuti/*
17144
17145 TELECOM CLOCK DRIVER FOR MCPL0010
17146 M:      Mark Gross <[email protected]>
17147 S:      Supported
17148 F:      drivers/char/tlclk.c
17149
17150 TEMPO SEMICONDUCTOR DRIVERS
17151 M:      Steven Eckhoff <[email protected]>
17152 S:      Maintained
17153 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17154 F:      sound/soc/codecs/tscs*.c
17155 F:      sound/soc/codecs/tscs*.h
17156
17157 TENSILICA XTENSA PORT (xtensa)
17158 M:      Chris Zankel <[email protected]>
17159 M:      Max Filippov <[email protected]>
17160 L:      [email protected]
17161 S:      Maintained
17162 T:      git git://github.com/czankel/xtensa-linux.git
17163 F:      arch/xtensa/
17164 F:      drivers/irqchip/irq-xtensa-*
17165
17166 TEXAS INSTRUMENTS ASoC DRIVERS
17167 M:      Peter Ujfalusi <[email protected]>
17168 L:      [email protected] (moderated for non-subscribers)
17169 S:      Maintained
17170 F:      sound/soc/ti/
17171
17172 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
17173 M:      Ricardo Ribalda <[email protected]>
17174 L:      [email protected]
17175 S:      Supported
17176 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
17177 F:      drivers/iio/dac/ti-dac7612.c
17178
17179 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
17180 M:      Nishanth Menon <[email protected]>
17181 M:      Tero Kristo <[email protected]>
17182 M:      Santosh Shilimkar <[email protected]>
17183 L:      [email protected]
17184 S:      Maintained
17185 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
17186 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
17187 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
17188 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
17189 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
17190 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
17191 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
17192 F:      drivers/clk/keystone/sci-clk.c
17193 F:      drivers/firmware/ti_sci*
17194 F:      drivers/irqchip/irq-ti-sci-inta.c
17195 F:      drivers/irqchip/irq-ti-sci-intr.c
17196 F:      drivers/reset/reset-ti-sci.c
17197 F:      drivers/soc/ti/ti_sci_inta_msi.c
17198 F:      drivers/soc/ti/ti_sci_pm_domains.c
17199 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
17200 F:      include/linux/soc/ti/ti_sci_inta_msi.h
17201 F:      include/linux/soc/ti/ti_sci_protocol.h
17202
17203 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
17204 M:      Hans Verkuil <[email protected]>
17205 L:      [email protected]
17206 S:      Maintained
17207 W:      https://linuxtv.org
17208 T:      git git://linuxtv.org/media_tree.git
17209 F:      drivers/media/radio/radio-raremono.c
17210
17211 THERMAL
17212 M:      Zhang Rui <[email protected]>
17213 M:      Daniel Lezcano <[email protected]>
17214 R:      Amit Kucheria <[email protected]>
17215 L:      [email protected]
17216 S:      Supported
17217 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
17219 F:      Documentation/devicetree/bindings/thermal/
17220 F:      drivers/thermal/
17221 F:      include/linux/cpu_cooling.h
17222 F:      include/linux/thermal.h
17223 F:      include/uapi/linux/thermal.h
17224
17225 THERMAL DRIVER FOR AMLOGIC SOCS
17226 M:      Guillaume La Roque <[email protected]>
17227 L:      [email protected]
17228 L:      [email protected]
17229 S:      Supported
17230 W:      http://linux-meson.com/
17231 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
17232 F:      drivers/thermal/amlogic_thermal.c
17233
17234 THERMAL/CPU_COOLING
17235 M:      Amit Daniel Kachhap <[email protected]>
17236 M:      Daniel Lezcano <[email protected]>
17237 M:      Viresh Kumar <[email protected]>
17238 M:      Javi Merino <[email protected]>
17239 L:      [email protected]
17240 S:      Supported
17241 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
17242 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
17243 F:      drivers/thermal/cpufreq_cooling.c
17244 F:      drivers/thermal/cpuidle_cooling.c
17245 F:      include/linux/cpu_cooling.h
17246
17247 THERMAL/POWER_ALLOCATOR
17248 M:      Lukasz Luba <[email protected]>
17249 L:      [email protected]
17250 S:      Maintained
17251 F:      Documentation/driver-api/thermal/power_allocator.rst
17252 F:      drivers/thermal/gov_power_allocator.c
17253 F:      include/trace/events/thermal_power_allocator.h
17254
17255 THINKPAD ACPI EXTRAS DRIVER
17256 M:      Henrique de Moraes Holschuh <[email protected]>
17257 L:      [email protected]
17258 L:      [email protected]
17259 S:      Maintained
17260 W:      http://ibm-acpi.sourceforge.net
17261 W:      http://thinkwiki.org/wiki/Ibm-acpi
17262 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
17263 F:      drivers/platform/x86/thinkpad_acpi.c
17264
17265 THUNDERBOLT DRIVER
17266 M:      Andreas Noever <[email protected]>
17267 M:      Michael Jamet <[email protected]>
17268 M:      Mika Westerberg <[email protected]>
17269 M:      Yehezkel Bernat <[email protected]>
17270 L:      [email protected]
17271 S:      Maintained
17272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
17273 F:      Documentation/admin-guide/thunderbolt.rst
17274 F:      drivers/thunderbolt/
17275 F:      include/linux/thunderbolt.h
17276
17277 THUNDERBOLT NETWORK DRIVER
17278 M:      Michael Jamet <[email protected]>
17279 M:      Mika Westerberg <[email protected]>
17280 M:      Yehezkel Bernat <[email protected]>
17281 L:      [email protected]
17282 S:      Maintained
17283 F:      drivers/net/thunderbolt.c
17284
17285 THUNDERX GPIO DRIVER
17286 M:      Robert Richter <[email protected]>
17287 S:      Odd Fixes
17288 F:      drivers/gpio/gpio-thunderx.c
17289
17290 TI AM437X VPFE DRIVER
17291 M:      "Lad, Prabhakar" <[email protected]>
17292 L:      [email protected]
17293 S:      Maintained
17294 W:      https://linuxtv.org
17295 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17296 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17297 F:      drivers/media/platform/am437x/
17298
17299 TI BANDGAP AND THERMAL DRIVER
17300 M:      Eduardo Valentin <[email protected]>
17301 M:      Keerthy <[email protected]>
17302 L:      [email protected]
17303 L:      [email protected]
17304 S:      Maintained
17305 F:      drivers/thermal/ti-soc-thermal/
17306
17307 TI BQ27XXX POWER SUPPLY DRIVER
17308 R:      Andrew F. Davis <[email protected]>
17309 F:      drivers/power/supply/bq27xxx_battery.c
17310 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17311 F:      include/linux/power/bq27xxx_battery.h
17312
17313 TI CDCE706 CLOCK DRIVER
17314 M:      Max Filippov <[email protected]>
17315 S:      Maintained
17316 F:      drivers/clk/clk-cdce706.c
17317
17318 TI CLOCK DRIVER
17319 M:      Tero Kristo <[email protected]>
17320 L:      [email protected]
17321 S:      Maintained
17322 F:      drivers/clk/ti/
17323 F:      include/linux/clk/ti.h
17324
17325 TI DAVINCI MACHINE SUPPORT
17326 M:      Sekhar Nori <[email protected]>
17327 R:      Bartosz Golaszewski <[email protected]>
17328 L:      [email protected] (moderated for non-subscribers)
17329 S:      Supported
17330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17331 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17332 F:      arch/arm/boot/dts/da850*
17333 F:      arch/arm/mach-davinci/
17334 F:      drivers/i2c/busses/i2c-davinci.c
17335
17336 TI DAVINCI SERIES CLOCK DRIVER
17337 M:      David Lechner <[email protected]>
17338 R:      Sekhar Nori <[email protected]>
17339 S:      Maintained
17340 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17341 F:      drivers/clk/davinci/
17342
17343 TI DAVINCI SERIES GPIO DRIVER
17344 M:      Keerthy <[email protected]>
17345 L:      [email protected]
17346 S:      Maintained
17347 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17348 F:      drivers/gpio/gpio-davinci.c
17349
17350 TI DAVINCI SERIES MEDIA DRIVER
17351 M:      "Lad, Prabhakar" <[email protected]>
17352 L:      [email protected]
17353 S:      Maintained
17354 W:      https://linuxtv.org
17355 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17356 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17357 F:      drivers/media/platform/davinci/
17358 F:      include/media/davinci/
17359
17360 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17361 R:      David Lechner <[email protected]>
17362 L:      [email protected]
17363 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17364 F:      drivers/counter/ti-eqep.c
17365
17366 TI ETHERNET SWITCH DRIVER (CPSW)
17367 R:      Grygorii Strashko <[email protected]>
17368 L:      [email protected]
17369 L:      [email protected]
17370 S:      Maintained
17371 F:      drivers/net/ethernet/ti/cpsw*
17372 F:      drivers/net/ethernet/ti/davinci*
17373
17374 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17375 M:      Alex Dubov <[email protected]>
17376 S:      Maintained
17377 W:      http://tifmxx.berlios.de/
17378 F:      drivers/memstick/host/tifm_ms.c
17379 F:      drivers/misc/tifm*
17380 F:      drivers/mmc/host/tifm_sd.c
17381 F:      include/linux/tifm.h
17382
17383 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17384 M:      Santosh Shilimkar <[email protected]>
17385 L:      [email protected]
17386 L:      [email protected] (moderated for non-subscribers)
17387 S:      Maintained
17388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17389 F:      drivers/soc/ti/*
17390
17391 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17392 M:      M R Swami Reddy <[email protected]>
17393 M:      Vishwas A Deshpande <[email protected]>
17394 L:      [email protected] (moderated for non-subscribers)
17395 S:      Maintained
17396 F:      sound/soc/codecs/isabelle*
17397 F:      sound/soc/codecs/lm49453*
17398
17399 TI LP855x BACKLIGHT DRIVER
17400 M:      Milo Kim <[email protected]>
17401 S:      Maintained
17402 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17403 F:      drivers/video/backlight/lp855x_bl.c
17404 F:      include/linux/platform_data/lp855x.h
17405
17406 TI LP8727 CHARGER DRIVER
17407 M:      Milo Kim <[email protected]>
17408 S:      Maintained
17409 F:      drivers/power/supply/lp8727_charger.c
17410 F:      include/linux/platform_data/lp8727.h
17411
17412 TI LP8788 MFD DRIVER
17413 M:      Milo Kim <[email protected]>
17414 S:      Maintained
17415 F:      drivers/iio/adc/lp8788_adc.c
17416 F:      drivers/leds/leds-lp8788.c
17417 F:      drivers/mfd/lp8788*.c
17418 F:      drivers/power/supply/lp8788-charger.c
17419 F:      drivers/regulator/lp8788-*.c
17420 F:      include/linux/mfd/lp8788*.h
17421
17422 TI NETCP ETHERNET DRIVER
17423 M:      Wingman Kwok <[email protected]>
17424 M:      Murali Karicheri <[email protected]>
17425 L:      [email protected]
17426 S:      Maintained
17427 F:      drivers/net/ethernet/ti/netcp*
17428
17429 TI PCM3060 ASoC CODEC DRIVER
17430 M:      Kirill Marinushkin <[email protected]>
17431 L:      [email protected] (moderated for non-subscribers)
17432 S:      Maintained
17433 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17434 F:      sound/soc/codecs/pcm3060*
17435
17436 TI TAS571X FAMILY ASoC CODEC DRIVER
17437 M:      Kevin Cernekee <[email protected]>
17438 L:      [email protected] (moderated for non-subscribers)
17439 S:      Odd Fixes
17440 F:      sound/soc/codecs/tas571x*
17441
17442 TI TCAN4X5X DEVICE DRIVER
17443 M:      Dan Murphy <[email protected]>
17444 L:      [email protected]
17445 S:      Maintained
17446 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17447 F:      drivers/net/can/m_can/tcan4x5x.c
17448
17449 TI TRF7970A NFC DRIVER
17450 M:      Mark Greer <[email protected]>
17451 L:      [email protected]
17452 L:      [email protected] (moderated for non-subscribers)
17453 S:      Supported
17454 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17455 F:      drivers/nfc/trf7970a.c
17456
17457 TI TWL4030 SERIES SOC CODEC DRIVER
17458 M:      Peter Ujfalusi <[email protected]>
17459 L:      [email protected] (moderated for non-subscribers)
17460 S:      Maintained
17461 F:      sound/soc/codecs/twl4030*
17462
17463 TI VPE/CAL DRIVERS
17464 M:      Benoit Parrot <[email protected]>
17465 L:      [email protected]
17466 S:      Maintained
17467 W:      http://linuxtv.org/
17468 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17469 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17470 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17471 F:      drivers/media/platform/ti-vpe/
17472
17473 TI WILINK WIRELESS DRIVERS
17474 L:      [email protected]
17475 S:      Orphan
17476 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17477 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17479 F:      drivers/net/wireless/ti/
17480 F:      include/linux/wl12xx.h
17481
17482 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17483 M:      John Stultz <[email protected]>
17484 M:      Thomas Gleixner <[email protected]>
17485 R:      Stephen Boyd <[email protected]>
17486 L:      [email protected]
17487 S:      Supported
17488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17489 F:      include/linux/clocksource.h
17490 F:      include/linux/time.h
17491 F:      include/linux/timex.h
17492 F:      include/uapi/linux/time.h
17493 F:      include/uapi/linux/timex.h
17494 F:      kernel/time/alarmtimer.c
17495 F:      kernel/time/clocksource.c
17496 F:      kernel/time/ntp.c
17497 F:      kernel/time/time*.c
17498 F:      tools/testing/selftests/timers/
17499
17500 TIPC NETWORK LAYER
17501 M:      Jon Maloy <[email protected]>
17502 M:      Ying Xue <[email protected]>
17503 L:      [email protected] (core kernel code)
17504 L:      [email protected] (user apps, general discussion)
17505 S:      Maintained
17506 W:      http://tipc.sourceforge.net/
17507 F:      include/uapi/linux/tipc*.h
17508 F:      net/tipc/
17509
17510 TLAN NETWORK DRIVER
17511 M:      Samuel Chessman <[email protected]>
17512 L:      [email protected] (subscribers-only)
17513 S:      Maintained
17514 W:      http://sourceforge.net/projects/tlan/
17515 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
17516 F:      drivers/net/ethernet/ti/tlan.*
17517
17518 TM6000 VIDEO4LINUX DRIVER
17519 M:      Mauro Carvalho Chehab <[email protected]>
17520 L:      [email protected]
17521 S:      Odd fixes
17522 W:      https://linuxtv.org
17523 T:      git git://linuxtv.org/media_tree.git
17524 F:      Documentation/admin-guide/media/tm6000*
17525 F:      drivers/media/usb/tm6000/
17526
17527 TMIO/SDHI MMC DRIVER
17528 M:      Wolfram Sang <[email protected]>
17529 L:      [email protected]
17530 S:      Supported
17531 F:      drivers/mmc/host/renesas_sdhi*
17532 F:      drivers/mmc/host/tmio_mmc*
17533 F:      include/linux/mfd/tmio.h
17534
17535 TMP401 HARDWARE MONITOR DRIVER
17536 M:      Guenter Roeck <[email protected]>
17537 L:      [email protected]
17538 S:      Maintained
17539 F:      Documentation/hwmon/tmp401.rst
17540 F:      drivers/hwmon/tmp401.c
17541
17542 TMP513 HARDWARE MONITOR DRIVER
17543 M:      Eric Tremblay <[email protected]>
17544 L:      [email protected]
17545 S:      Maintained
17546 F:      Documentation/hwmon/tmp513.rst
17547 F:      drivers/hwmon/tmp513.c
17548
17549 TMPFS (SHMEM FILESYSTEM)
17550 M:      Hugh Dickins <[email protected]>
17551 L:      [email protected]
17552 S:      Maintained
17553 F:      include/linux/shmem_fs.h
17554 F:      mm/shmem.c
17555
17556 TOMOYO SECURITY MODULE
17557 M:      Kentaro Takeda <[email protected]>
17558 M:      Tetsuo Handa <[email protected]>
17559 L:      [email protected] (subscribers-only, for developers in English)
17560 L:      [email protected] (subscribers-only, for users in English)
17561 L:      [email protected] (subscribers-only, for developers in Japanese)
17562 L:      [email protected] (subscribers-only, for users in Japanese)
17563 S:      Maintained
17564 W:      https://tomoyo.osdn.jp/
17565 F:      security/tomoyo/
17566
17567 TOPSTAR LAPTOP EXTRAS DRIVER
17568 M:      Herton Ronaldo Krzesinski <[email protected]>
17569 L:      [email protected]
17570 S:      Maintained
17571 F:      drivers/platform/x86/topstar-laptop.c
17572
17573 TORTURE-TEST MODULES
17574 M:      Davidlohr Bueso <[email protected]>
17575 M:      "Paul E. McKenney" <[email protected]>
17576 M:      Josh Triplett <[email protected]>
17577 L:      [email protected]
17578 S:      Supported
17579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17580 F:      Documentation/RCU/torture.rst
17581 F:      kernel/locking/locktorture.c
17582 F:      kernel/rcu/rcuperf.c
17583 F:      kernel/rcu/rcutorture.c
17584 F:      kernel/torture.c
17585
17586 TOSHIBA ACPI EXTRAS DRIVER
17587 M:      Azael Avalos <[email protected]>
17588 L:      [email protected]
17589 S:      Maintained
17590 F:      drivers/platform/x86/toshiba_acpi.c
17591
17592 TOSHIBA BLUETOOTH DRIVER
17593 M:      Azael Avalos <[email protected]>
17594 L:      [email protected]
17595 S:      Maintained
17596 F:      drivers/platform/x86/toshiba_bluetooth.c
17597
17598 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17599 M:      Azael Avalos <[email protected]>
17600 L:      [email protected]
17601 S:      Maintained
17602 F:      drivers/platform/x86/toshiba_haps.c
17603
17604 TOSHIBA SMM DRIVER
17605 M:      Jonathan Buzzard <[email protected]>
17606 S:      Maintained
17607 W:      http://www.buzzard.org.uk/toshiba/
17608 F:      drivers/char/toshiba.c
17609 F:      include/linux/toshiba.h
17610 F:      include/uapi/linux/toshiba.h
17611
17612 TOSHIBA TC358743 DRIVER
17613 M:      Mats Randgaard <[email protected]>
17614 L:      [email protected]
17615 S:      Maintained
17616 F:      drivers/media/i2c/tc358743*
17617 F:      include/media/i2c/tc358743.h
17618
17619 TOSHIBA WMI HOTKEYS DRIVER
17620 M:      Azael Avalos <[email protected]>
17621 L:      [email protected]
17622 S:      Maintained
17623 F:      drivers/platform/x86/toshiba-wmi.c
17624
17625 TPM DEVICE DRIVER
17626 M:      Peter Huewe <[email protected]>
17627 M:      Jarkko Sakkinen <[email protected]>
17628 R:      Jason Gunthorpe <[email protected]>
17629 L:      [email protected]
17630 S:      Maintained
17631 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17632 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17633 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
17634 F:      drivers/char/tpm/
17635
17636 TRACING
17637 M:      Steven Rostedt <[email protected]>
17638 M:      Ingo Molnar <[email protected]>
17639 S:      Maintained
17640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17641 F:      Documentation/trace/ftrace.rst
17642 F:      arch/*/*/*/ftrace.h
17643 F:      arch/*/kernel/ftrace.c
17644 F:      include/*/ftrace.h
17645 F:      include/linux/trace*.h
17646 F:      include/trace/
17647 F:      kernel/trace/
17648 F:      tools/testing/selftests/ftrace/
17649
17650 TRACING MMIO ACCESSES (MMIOTRACE)
17651 M:      Steven Rostedt <[email protected]>
17652 M:      Ingo Molnar <[email protected]>
17653 R:      Karol Herbst <[email protected]>
17654 R:      Pekka Paalanen <[email protected]>
17655 L:      [email protected]
17656 L:      [email protected]
17657 S:      Maintained
17658 F:      arch/x86/mm/kmmio.c
17659 F:      arch/x86/mm/mmio-mod.c
17660 F:      arch/x86/mm/testmmiotrace.c
17661 F:      include/linux/mmiotrace.h
17662 F:      kernel/trace/trace_mmiotrace.c
17663
17664 TRIVIAL PATCHES
17665 M:      Jiri Kosina <[email protected]>
17666 S:      Maintained
17667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17668 K:      ^Subject:.*(?i)trivial
17669
17670 TTY LAYER
17671 M:      Greg Kroah-Hartman <[email protected]>
17672 M:      Jiri Slaby <[email protected]>
17673 S:      Supported
17674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17675 F:      Documentation/driver-api/serial/
17676 F:      drivers/tty/
17677 F:      drivers/tty/serial/serial_core.c
17678 F:      include/linux/serial.h
17679 F:      include/linux/serial_core.h
17680 F:      include/linux/tty.h
17681 F:      include/uapi/linux/serial.h
17682 F:      include/uapi/linux/serial_core.h
17683 F:      include/uapi/linux/tty.h
17684
17685 TUA9001 MEDIA DRIVER
17686 M:      Antti Palosaari <[email protected]>
17687 L:      [email protected]
17688 S:      Maintained
17689 W:      https://linuxtv.org
17690 W:      http://palosaari.fi/linux/
17691 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17692 T:      git git://linuxtv.org/anttip/media_tree.git
17693 F:      drivers/media/tuners/tua9001*
17694
17695 TULIP NETWORK DRIVERS
17696 L:      [email protected]
17697 L:      [email protected]
17698 S:      Orphan
17699 F:      drivers/net/ethernet/dec/tulip/
17700
17701 TUN/TAP driver
17702 M:      Maxim Krasnyansky <[email protected]>
17703 S:      Maintained
17704 W:      http://vtun.sourceforge.net/tun
17705 F:      Documentation/networking/tuntap.rst
17706 F:      arch/um/os-Linux/drivers/
17707
17708 TURBOCHANNEL SUBSYSTEM
17709 M:      "Maciej W. Rozycki" <[email protected]>
17710 M:      Ralf Baechle <[email protected]>
17711 L:      [email protected]
17712 S:      Maintained
17713 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17714 F:      drivers/tc/
17715 F:      include/linux/tc.h
17716
17717 TURBOSTAT UTILITY
17718 M:      "Len Brown" <[email protected]>
17719 L:      [email protected]
17720 S:      Supported
17721 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17722 B:      https://bugzilla.kernel.org
17723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17724 F:      tools/power/x86/turbostat/
17725
17726 TW5864 VIDEO4LINUX DRIVER
17727 M:      Bluecherry Maintainers <[email protected]>
17728 M:      Anton Sviridenko <[email protected]>
17729 M:      Andrey Utkin <[email protected]>
17730 M:      Andrey Utkin <[email protected]>
17731 L:      [email protected]
17732 S:      Supported
17733 F:      drivers/media/pci/tw5864/
17734
17735 TW68 VIDEO4LINUX DRIVER
17736 M:      Hans Verkuil <[email protected]>
17737 L:      [email protected]
17738 S:      Odd Fixes
17739 W:      https://linuxtv.org
17740 T:      git git://linuxtv.org/media_tree.git
17741 F:      drivers/media/pci/tw68/
17742
17743 TW686X VIDEO4LINUX DRIVER
17744 M:      Ezequiel Garcia <[email protected]>
17745 L:      [email protected]
17746 S:      Maintained
17747 W:      http://linuxtv.org
17748 T:      git git://linuxtv.org/media_tree.git
17749 F:      drivers/media/pci/tw686x/
17750
17751 UACCE ACCELERATOR FRAMEWORK
17752 M:      Zhangfei Gao <[email protected]>
17753 M:      Zhou Wang <[email protected]>
17754 L:      [email protected]
17755 L:      [email protected]
17756 S:      Maintained
17757 F:      Documentation/ABI/testing/sysfs-driver-uacce
17758 F:      Documentation/misc-devices/uacce.rst
17759 F:      drivers/misc/uacce/
17760 F:      include/linux/uacce.h
17761 F:      include/uapi/misc/uacce/
17762
17763 UBI FILE SYSTEM (UBIFS)
17764 M:      Richard Weinberger <[email protected]>
17765 L:      [email protected]
17766 S:      Supported
17767 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17770 F:      Documentation/filesystems/ubifs.rst
17771 F:      fs/ubifs/
17772
17773 UCLINUX (M68KNOMMU AND COLDFIRE)
17774 M:      Greg Ungerer <[email protected]>
17775 L:      [email protected]
17776 L:      [email protected]  (subscribers-only)
17777 S:      Maintained
17778 W:      http://www.linux-m68k.org/
17779 W:      http://www.uclinux.org/
17780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17781 F:      arch/m68k/*/*_no.*
17782 F:      arch/m68k/68*/
17783 F:      arch/m68k/coldfire/
17784 F:      arch/m68k/include/asm/*_no.*
17785
17786 UDF FILESYSTEM
17787 M:      Jan Kara <[email protected]>
17788 S:      Maintained
17789 F:      Documentation/filesystems/udf.rst
17790 F:      fs/udf/
17791
17792 UDRAW TABLET
17793 M:      Bastien Nocera <[email protected]>
17794 L:      [email protected]
17795 S:      Maintained
17796 F:      drivers/hid/hid-udraw-ps3.c
17797
17798 UFS FILESYSTEM
17799 M:      Evgeniy Dushistov <[email protected]>
17800 S:      Maintained
17801 F:      Documentation/admin-guide/ufs.rst
17802 F:      fs/ufs/
17803
17804 UHID USERSPACE HID IO DRIVER
17805 M:      David Rheinsberg <[email protected]>
17806 L:      [email protected]
17807 S:      Maintained
17808 F:      drivers/hid/uhid.c
17809 F:      include/uapi/linux/uhid.h
17810
17811 ULPI BUS
17812 M:      Heikki Krogerus <[email protected]>
17813 L:      [email protected]
17814 S:      Maintained
17815 F:      drivers/usb/common/ulpi.c
17816 F:      include/linux/ulpi/
17817
17818 UNICODE SUBSYSTEM
17819 M:      Gabriel Krisman Bertazi <[email protected]>
17820 L:      [email protected]
17821 S:      Supported
17822 F:      fs/unicode/
17823
17824 UNIFDEF
17825 M:      Tony Finch <[email protected]>
17826 S:      Maintained
17827 W:      http://dotat.at/prog/unifdef
17828 F:      scripts/unifdef.c
17829
17830 UNIFORM CDROM DRIVER
17831 M:      Jens Axboe <[email protected]>
17832 S:      Maintained
17833 W:      http://www.kernel.dk
17834 F:      Documentation/cdrom/
17835 F:      drivers/cdrom/cdrom.c
17836 F:      include/linux/cdrom.h
17837 F:      include/uapi/linux/cdrom.h
17838
17839 UNISYS S-PAR DRIVERS
17840 M:      David Kershner <[email protected]>
17841 L:      [email protected] (Unisys internal)
17842 S:      Supported
17843 F:      drivers/staging/unisys/
17844 F:      drivers/visorbus/
17845 F:      include/linux/visorbus.h
17846
17847 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17848 R:      Alim Akhtar <[email protected]>
17849 R:      Avri Altman <[email protected]>
17850 L:      [email protected]
17851 S:      Supported
17852 F:      Documentation/scsi/ufs.rst
17853 F:      drivers/scsi/ufs/
17854
17855 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17856 M:      Pedro Sousa <[email protected]>
17857 L:      [email protected]
17858 S:      Supported
17859 F:      drivers/scsi/ufs/*dwc*
17860
17861 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17862 M:      Stanley Chu <[email protected]>
17863 L:      [email protected]
17864 L:      [email protected] (moderated for non-subscribers)
17865 S:      Maintained
17866 F:      drivers/scsi/ufs/ufs-mediatek*
17867
17868 UNSORTED BLOCK IMAGES (UBI)
17869 M:      Richard Weinberger <[email protected]>
17870 L:      [email protected]
17871 S:      Supported
17872 W:      http://www.linux-mtd.infradead.org/
17873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17875 F:      drivers/mtd/ubi/
17876 F:      include/linux/mtd/ubi.h
17877 F:      include/uapi/mtd/ubi-user.h
17878
17879 USB "USBNET" DRIVER FRAMEWORK
17880 M:      Oliver Neukum <[email protected]>
17881 L:      [email protected]
17882 S:      Maintained
17883 W:      http://www.linux-usb.org/usbnet
17884 F:      drivers/net/usb/usbnet.c
17885 F:      include/linux/usb/usbnet.h
17886
17887 USB ACM DRIVER
17888 M:      Oliver Neukum <[email protected]>
17889 L:      [email protected]
17890 S:      Maintained
17891 F:      Documentation/usb/acm.rst
17892 F:      drivers/usb/class/cdc-acm.*
17893
17894 USB APPLE MFI FASTCHARGE DRIVER
17895 M:      Bastien Nocera <[email protected]>
17896 L:      [email protected]
17897 S:      Maintained
17898 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17899
17900 USB AR5523 WIRELESS DRIVER
17901 M:      Pontus Fuchs <[email protected]>
17902 L:      [email protected]
17903 S:      Maintained
17904 F:      drivers/net/wireless/ath/ar5523/
17905
17906 USB ATTACHED SCSI
17907 M:      Oliver Neukum <[email protected]>
17908 L:      [email protected]
17909 L:      [email protected]
17910 S:      Maintained
17911 F:      drivers/usb/storage/uas.c
17912
17913 USB CDC ETHERNET DRIVER
17914 M:      Oliver Neukum <[email protected]>
17915 L:      [email protected]
17916 S:      Maintained
17917 F:      drivers/net/usb/cdc_*.c
17918 F:      include/uapi/linux/usb/cdc.h
17919
17920 USB CHAOSKEY DRIVER
17921 M:      Keith Packard <[email protected]>
17922 L:      [email protected]
17923 S:      Maintained
17924 F:      drivers/usb/misc/chaoskey.c
17925
17926 USB CYPRESS C67X00 DRIVER
17927 M:      Peter Korsgaard <[email protected]>
17928 L:      [email protected]
17929 S:      Maintained
17930 F:      drivers/usb/c67x00/
17931
17932 USB DAVICOM DM9601 DRIVER
17933 M:      Peter Korsgaard <[email protected]>
17934 L:      [email protected]
17935 S:      Maintained
17936 W:      http://www.linux-usb.org/usbnet
17937 F:      drivers/net/usb/dm9601.c
17938
17939 USB EHCI DRIVER
17940 M:      Alan Stern <[email protected]>
17941 L:      [email protected]
17942 S:      Maintained
17943 F:      Documentation/usb/ehci.rst
17944 F:      drivers/usb/host/ehci*
17945
17946 USB GADGET/PERIPHERAL SUBSYSTEM
17947 M:      Felipe Balbi <[email protected]>
17948 L:      [email protected]
17949 S:      Maintained
17950 W:      http://www.linux-usb.org/gadget
17951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17952 F:      drivers/usb/gadget/
17953 F:      include/linux/usb/gadget*
17954
17955 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17956 M:      Jiri Kosina <[email protected]>
17957 M:      Benjamin Tissoires <[email protected]>
17958 L:      [email protected]
17959 S:      Maintained
17960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17961 F:      Documentation/hid/hiddev.rst
17962 F:      drivers/hid/usbhid/
17963
17964 USB INTEL XHCI ROLE MUX DRIVER
17965 M:      Hans de Goede <[email protected]>
17966 L:      [email protected]
17967 S:      Maintained
17968 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17969
17970 USB IP DRIVER FOR HISILICON KIRIN
17971 M:      Yu Chen <[email protected]>
17972 M:      Binghui Wang <[email protected]>
17973 L:      [email protected]
17974 S:      Maintained
17975 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17976 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17977
17978 USB ISP116X DRIVER
17979 M:      Olav Kongas <[email protected]>
17980 L:      [email protected]
17981 S:      Maintained
17982 F:      drivers/usb/host/isp116x*
17983 F:      include/linux/usb/isp116x.h
17984
17985 USB LAN78XX ETHERNET DRIVER
17986 M:      Woojung Huh <[email protected]>
17987 M:      Microchip Linux Driver Support <[email protected]>
17988 L:      [email protected]
17989 S:      Maintained
17990 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17991 F:      drivers/net/usb/lan78xx.*
17992 F:      include/dt-bindings/net/microchip-lan78xx.h
17993
17994 USB MASS STORAGE DRIVER
17995 M:      Alan Stern <[email protected]>
17996 L:      [email protected]
17997 L:      [email protected]
17998 S:      Maintained
17999 F:      drivers/usb/storage/
18000
18001 USB MIDI DRIVER
18002 M:      Clemens Ladisch <[email protected]>
18003 L:      [email protected] (moderated for non-subscribers)
18004 S:      Maintained
18005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18006 F:      sound/usb/midi.*
18007
18008 USB NETWORKING DRIVERS
18009 L:      [email protected]
18010 S:      Odd Fixes
18011 F:      drivers/net/usb/
18012
18013 USB OHCI DRIVER
18014 M:      Alan Stern <[email protected]>
18015 L:      [email protected]
18016 S:      Maintained
18017 F:      Documentation/usb/ohci.rst
18018 F:      drivers/usb/host/ohci*
18019
18020 USB OTG FSM (Finite State Machine)
18021 M:      Peter Chen <[email protected]>
18022 L:      [email protected]
18023 S:      Maintained
18024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18025 F:      drivers/usb/common/usb-otg-fsm.c
18026
18027 USB OVER IP DRIVER
18028 M:      Valentina Manea <[email protected]>
18029 M:      Shuah Khan <[email protected]>
18030 M:      Shuah Khan <[email protected]>
18031 L:      [email protected]
18032 S:      Maintained
18033 F:      Documentation/usb/usbip_protocol.rst
18034 F:      drivers/usb/usbip/
18035 F:      tools/testing/selftests/drivers/usb/usbip/
18036 F:      tools/usb/usbip/
18037
18038 USB PEGASUS DRIVER
18039 M:      Petko Manolov <[email protected]>
18040 L:      [email protected]
18041 L:      [email protected]
18042 S:      Maintained
18043 W:      https://github.com/petkan/pegasus
18044 T:      git git://github.com/petkan/pegasus.git
18045 F:      drivers/net/usb/pegasus.*
18046
18047 USB PHY LAYER
18048 M:      Felipe Balbi <[email protected]>
18049 L:      [email protected]
18050 S:      Maintained
18051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18052 F:      drivers/usb/phy/
18053
18054 USB PRINTER DRIVER (usblp)
18055 M:      Pete Zaitcev <[email protected]>
18056 L:      [email protected]
18057 S:      Supported
18058 F:      drivers/usb/class/usblp.c
18059
18060 USB QMI WWAN NETWORK DRIVER
18061 M:      Bjørn Mork <[email protected]>
18062 L:      [email protected]
18063 S:      Maintained
18064 F:      Documentation/ABI/testing/sysfs-class-net-qmi
18065 F:      drivers/net/usb/qmi_wwan.c
18066
18067 USB RTL8150 DRIVER
18068 M:      Petko Manolov <[email protected]>
18069 L:      [email protected]
18070 L:      [email protected]
18071 S:      Maintained
18072 W:      https://github.com/petkan/rtl8150
18073 T:      git git://github.com/petkan/rtl8150.git
18074 F:      drivers/net/usb/rtl8150.c
18075
18076 USB SERIAL SUBSYSTEM
18077 M:      Johan Hovold <[email protected]>
18078 L:      [email protected]
18079 S:      Maintained
18080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18081 F:      Documentation/usb/usb-serial.rst
18082 F:      drivers/usb/serial/
18083 F:      include/linux/usb/serial.h
18084
18085 USB SMSC75XX ETHERNET DRIVER
18086 M:      Steve Glendinning <[email protected]>
18087 L:      [email protected]
18088 S:      Maintained
18089 F:      drivers/net/usb/smsc75xx.*
18090
18091 USB SMSC95XX ETHERNET DRIVER
18092 M:      Steve Glendinning <[email protected]>
18093 M:      Microchip Linux Driver Support <[email protected]>
18094 L:      [email protected]
18095 S:      Maintained
18096 F:      drivers/net/usb/smsc95xx.*
18097
18098 USB SUBSYSTEM
18099 M:      Greg Kroah-Hartman <[email protected]>
18100 L:      [email protected]
18101 S:      Supported
18102 W:      http://www.linux-usb.org
18103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18104 F:      Documentation/devicetree/bindings/usb/
18105 F:      Documentation/usb/
18106 F:      drivers/usb/
18107 F:      include/linux/usb.h
18108 F:      include/linux/usb/
18109
18110 USB TYPEC BUS FOR ALTERNATE MODES
18111 M:      Heikki Krogerus <[email protected]>
18112 L:      [email protected]
18113 S:      Maintained
18114 F:      Documentation/ABI/testing/sysfs-bus-typec
18115 F:      Documentation/driver-api/usb/typec_bus.rst
18116 F:      drivers/usb/typec/altmodes/
18117 F:      include/linux/usb/typec_altmode.h
18118
18119 USB TYPEC CLASS
18120 M:      Heikki Krogerus <[email protected]>
18121 L:      [email protected]
18122 S:      Maintained
18123 F:      Documentation/ABI/testing/sysfs-class-typec
18124 F:      Documentation/driver-api/usb/typec.rst
18125 F:      drivers/usb/typec/
18126 F:      include/linux/usb/typec.h
18127
18128 USB TYPEC INTEL PMC MUX DRIVER
18129 M:      Heikki Krogerus <[email protected]>
18130 L:      [email protected]
18131 S:      Maintained
18132 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
18133 F:      drivers/usb/typec/mux/intel_pmc_mux.c
18134
18135 USB TYPEC PI3USB30532 MUX DRIVER
18136 M:      Hans de Goede <[email protected]>
18137 L:      [email protected]
18138 S:      Maintained
18139 F:      drivers/usb/typec/mux/pi3usb30532.c
18140
18141 USB TYPEC PORT CONTROLLER DRIVERS
18142 M:      Guenter Roeck <[email protected]>
18143 L:      [email protected]
18144 S:      Maintained
18145 F:      drivers/usb/typec/tcpm/
18146
18147 USB UHCI DRIVER
18148 M:      Alan Stern <[email protected]>
18149 L:      [email protected]
18150 S:      Maintained
18151 F:      drivers/usb/host/uhci*
18152
18153 USB VIDEO CLASS
18154 M:      Laurent Pinchart <[email protected]>
18155 L:      [email protected] (subscribers-only)
18156 L:      [email protected]
18157 S:      Maintained
18158 W:      http://www.ideasonboard.org/uvc/
18159 T:      git git://linuxtv.org/media_tree.git
18160 F:      drivers/media/usb/uvc/
18161 F:      include/uapi/linux/uvcvideo.h
18162
18163 USB VISION DRIVER
18164 M:      Hans Verkuil <[email protected]>
18165 L:      [email protected]
18166 S:      Odd Fixes
18167 W:      https://linuxtv.org
18168 T:      git git://linuxtv.org/media_tree.git
18169 F:      drivers/staging/media/usbvision/
18170
18171 USB WEBCAM GADGET
18172 M:      Laurent Pinchart <[email protected]>
18173 L:      [email protected]
18174 S:      Maintained
18175 F:      drivers/usb/gadget/function/*uvc*
18176 F:      drivers/usb/gadget/legacy/webcam.c
18177 F:      include/uapi/linux/usb/g_uvc.h
18178
18179 USB WIRELESS RNDIS DRIVER (rndis_wlan)
18180 M:      Jussi Kivilinna <[email protected]>
18181 L:      [email protected]
18182 S:      Maintained
18183 F:      drivers/net/wireless/rndis_wlan.c
18184
18185 USB XHCI DRIVER
18186 M:      Mathias Nyman <[email protected]>
18187 L:      [email protected]
18188 S:      Supported
18189 F:      drivers/usb/host/pci-quirks*
18190 F:      drivers/usb/host/xhci*
18191
18192 USB ZD1201 DRIVER
18193 L:      [email protected]
18194 S:      Orphan
18195 W:      http://linux-lc100020.sourceforge.net
18196 F:      drivers/net/wireless/zydas/zd1201.*
18197
18198 USB ZR364XX DRIVER
18199 M:      Antoine Jacquet <[email protected]>
18200 L:      [email protected]
18201 L:      [email protected]
18202 S:      Maintained
18203 W:      http://royale.zerezo.com/zr364xx/
18204 T:      git git://linuxtv.org/media_tree.git
18205 F:      Documentation/admin-guide/media/zr364xx*
18206 F:      drivers/media/usb/zr364xx/
18207
18208 USER-MODE LINUX (UML)
18209 M:      Jeff Dike <[email protected]>
18210 M:      Richard Weinberger <[email protected]>
18211 M:      Anton Ivanov <[email protected]>
18212 L:      [email protected]
18213 S:      Maintained
18214 W:      http://user-mode-linux.sourceforge.net
18215 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
18216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
18217 F:      Documentation/virt/uml/
18218 F:      arch/um/
18219 F:      arch/x86/um/
18220 F:      fs/hostfs/
18221
18222 USERSPACE COPYIN/COPYOUT (UIOVEC)
18223 M:      Alexander Viro <[email protected]>
18224 S:      Maintained
18225 F:      include/linux/uio.h
18226 F:      lib/iov_iter.c
18227
18228 USERSPACE DMA BUFFER DRIVER
18229 M:      Gerd Hoffmann <[email protected]>
18230 L:      [email protected]
18231 S:      Maintained
18232 T:      git git://anongit.freedesktop.org/drm/drm-misc
18233 F:      drivers/dma-buf/udmabuf.c
18234 F:      include/uapi/linux/udmabuf.h
18235
18236 USERSPACE I/O (UIO)
18237 M:      Greg Kroah-Hartman <[email protected]>
18238 S:      Maintained
18239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18240 F:      Documentation/driver-api/uio-howto.rst
18241 F:      drivers/uio/
18242 F:      include/linux/uio_driver.h
18243
18244 UTIL-LINUX PACKAGE
18245 M:      Karel Zak <[email protected]>
18246 L:      [email protected]
18247 S:      Maintained
18248 W:      http://en.wikipedia.org/wiki/Util-linux
18249 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
18250
18251 UUID HELPERS
18252 M:      Christoph Hellwig <[email protected]>
18253 R:      Andy Shevchenko <[email protected]>
18254 L:      [email protected]
18255 S:      Maintained
18256 T:      git git://git.infradead.org/users/hch/uuid.git
18257 F:      include/linux/uuid.h
18258 F:      include/uapi/linux/uuid.h
18259 F:      lib/test_uuid.c
18260 F:      lib/uuid.c
18261
18262 UVESAFB DRIVER
18263 M:      Michal Januszewski <[email protected]>
18264 L:      [email protected]
18265 S:      Maintained
18266 W:      https://github.com/mjanusz/v86d
18267 F:      Documentation/fb/uvesafb.rst
18268 F:      drivers/video/fbdev/uvesafb.*
18269
18270 Ux500 CLOCK DRIVERS
18271 M:      Ulf Hansson <[email protected]>
18272 L:      [email protected]
18273 L:      [email protected] (moderated for non-subscribers)
18274 S:      Maintained
18275 F:      drivers/clk/ux500/
18276
18277 VF610 NAND DRIVER
18278 M:      Stefan Agner <[email protected]>
18279 L:      [email protected]
18280 S:      Supported
18281 F:      drivers/mtd/nand/raw/vf610_nfc.c
18282
18283 VFAT/FAT/MSDOS FILESYSTEM
18284 M:      OGAWA Hirofumi <[email protected]>
18285 S:      Maintained
18286 F:      Documentation/filesystems/vfat.rst
18287 F:      fs/fat/
18288
18289 VFIO DRIVER
18290 M:      Alex Williamson <[email protected]>
18291 R:      Cornelia Huck <[email protected]>
18292 L:      [email protected]
18293 S:      Maintained
18294 T:      git git://github.com/awilliam/linux-vfio.git
18295 F:      Documentation/driver-api/vfio.rst
18296 F:      drivers/vfio/
18297 F:      include/linux/vfio.h
18298 F:      include/uapi/linux/vfio.h
18299
18300 VFIO MEDIATED DEVICE DRIVERS
18301 M:      Kirti Wankhede <[email protected]>
18302 L:      [email protected]
18303 S:      Maintained
18304 F:      Documentation/driver-api/vfio-mediated-device.rst
18305 F:      drivers/vfio/mdev/
18306 F:      include/linux/mdev.h
18307 F:      samples/vfio-mdev/
18308
18309 VFIO PLATFORM DRIVER
18310 M:      Eric Auger <[email protected]>
18311 L:      [email protected]
18312 S:      Maintained
18313 F:      drivers/vfio/platform/
18314
18315 VGA_SWITCHEROO
18316 R:      Lukas Wunner <[email protected]>
18317 S:      Maintained
18318 T:      git git://anongit.freedesktop.org/drm/drm-misc
18319 F:      Documentation/gpu/vga-switcheroo.rst
18320 F:      drivers/gpu/vga/vga_switcheroo.c
18321 F:      include/linux/vga_switcheroo.h
18322
18323 VIA RHINE NETWORK DRIVER
18324 S:      Maintained
18325 M:      Kevin Brace <[email protected]>
18326 F:      drivers/net/ethernet/via/via-rhine.c
18327
18328 VIA SD/MMC CARD CONTROLLER DRIVER
18329 M:      Bruce Chang <[email protected]>
18330 M:      Harald Welte <[email protected]>
18331 S:      Maintained
18332 F:      drivers/mmc/host/via-sdmmc.c
18333
18334 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18335 M:      Florian Tobias Schandinat <[email protected]>
18336 L:      [email protected]
18337 S:      Maintained
18338 F:      drivers/video/fbdev/via/
18339 F:      include/linux/via-core.h
18340 F:      include/linux/via-gpio.h
18341 F:      include/linux/via_i2c.h
18342
18343 VIA VELOCITY NETWORK DRIVER
18344 M:      Francois Romieu <[email protected]>
18345 L:      [email protected]
18346 S:      Maintained
18347 F:      drivers/net/ethernet/via/via-velocity.*
18348
18349 VICODEC VIRTUAL CODEC DRIVER
18350 M:      Hans Verkuil <[email protected]>
18351 L:      [email protected]
18352 S:      Maintained
18353 W:      https://linuxtv.org
18354 T:      git git://linuxtv.org/media_tree.git
18355 F:      drivers/media/test-drivers/vicodec/*
18356
18357 VIDEO I2C POLLING DRIVER
18358 M:      Matt Ranostay <[email protected]>
18359 L:      [email protected]
18360 S:      Maintained
18361 F:      drivers/media/i2c/video-i2c.c
18362
18363 VIDEO MULTIPLEXER DRIVER
18364 M:      Philipp Zabel <[email protected]>
18365 L:      [email protected]
18366 S:      Maintained
18367 F:      drivers/media/platform/video-mux.c
18368
18369 VIDEOBUF2 FRAMEWORK
18370 M:      Pawel Osciak <[email protected]>
18371 M:      Marek Szyprowski <[email protected]>
18372 M:      Kyungmin Park <[email protected]>
18373 R:      Tomasz Figa <[email protected]>
18374 L:      [email protected]
18375 S:      Maintained
18376 F:      drivers/media/common/videobuf2/*
18377 F:      include/media/videobuf2-*
18378
18379 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18380 M:      Helen Koike <[email protected]>
18381 R:      Shuah Khan <[email protected]>
18382 L:      [email protected]
18383 S:      Maintained
18384 W:      https://linuxtv.org
18385 T:      git git://linuxtv.org/media_tree.git
18386 F:      drivers/media/test-drivers/vimc/*
18387
18388 VIRT LIB
18389 M:      Alex Williamson <[email protected]>
18390 M:      Paolo Bonzini <[email protected]>
18391 L:      [email protected]
18392 S:      Supported
18393 F:      virt/lib/
18394
18395 VIRTIO AND VHOST VSOCK DRIVER
18396 M:      Stefan Hajnoczi <[email protected]>
18397 M:      Stefano Garzarella <[email protected]>
18398 L:      [email protected]
18399 L:      [email protected]
18400 L:      [email protected]
18401 S:      Maintained
18402 F:      drivers/net/vsockmon.c
18403 F:      drivers/vhost/vsock.c
18404 F:      include/linux/virtio_vsock.h
18405 F:      include/uapi/linux/virtio_vsock.h
18406 F:      include/uapi/linux/vm_sockets_diag.h
18407 F:      include/uapi/linux/vsockmon.h
18408 F:      net/vmw_vsock/af_vsock_tap.c
18409 F:      net/vmw_vsock/diag.c
18410 F:      net/vmw_vsock/virtio_transport.c
18411 F:      net/vmw_vsock/virtio_transport_common.c
18412 F:      net/vmw_vsock/vsock_loopback.c
18413 F:      tools/testing/vsock/
18414
18415 VIRTIO BLOCK AND SCSI DRIVERS
18416 M:      "Michael S. Tsirkin" <[email protected]>
18417 M:      Jason Wang <[email protected]>
18418 R:      Paolo Bonzini <[email protected]>
18419 R:      Stefan Hajnoczi <[email protected]>
18420 L:      [email protected]
18421 S:      Maintained
18422 F:      drivers/block/virtio_blk.c
18423 F:      drivers/scsi/virtio_scsi.c
18424 F:      drivers/vhost/scsi.c
18425 F:      include/uapi/linux/virtio_blk.h
18426 F:      include/uapi/linux/virtio_scsi.h
18427
18428 VIRTIO CONSOLE DRIVER
18429 M:      Amit Shah <[email protected]>
18430 L:      [email protected]
18431 S:      Maintained
18432 F:      drivers/char/virtio_console.c
18433 F:      include/linux/virtio_console.h
18434 F:      include/uapi/linux/virtio_console.h
18435
18436 VIRTIO CORE AND NET DRIVERS
18437 M:      "Michael S. Tsirkin" <[email protected]>
18438 M:      Jason Wang <[email protected]>
18439 L:      [email protected]
18440 S:      Maintained
18441 F:      Documentation/devicetree/bindings/virtio/
18442 F:      drivers/block/virtio_blk.c
18443 F:      drivers/crypto/virtio/
18444 F:      drivers/net/virtio_net.c
18445 F:      drivers/vdpa/
18446 F:      drivers/virtio/
18447 F:      include/linux/vdpa.h
18448 F:      include/linux/virtio*.h
18449 F:      include/uapi/linux/virtio_*.h
18450 F:      tools/virtio/
18451
18452 VIRTIO BALLOON
18453 M:      "Michael S. Tsirkin" <[email protected]>
18454 M:      David Hildenbrand <[email protected]>
18455 L:      [email protected]
18456 S:      Maintained
18457 F:      drivers/virtio/virtio_balloon.c
18458 F:      include/uapi/linux/virtio_balloon.h
18459 F:      include/linux/balloon_compaction.h
18460 F:      mm/balloon_compaction.c
18461
18462 VIRTIO CRYPTO DRIVER
18463 M:      Gonglei <[email protected]>
18464 L:      [email protected]
18465 L:      [email protected]
18466 S:      Maintained
18467 F:      drivers/crypto/virtio/
18468 F:      include/uapi/linux/virtio_crypto.h
18469
18470 VIRTIO DRIVERS FOR S390
18471 M:      Cornelia Huck <[email protected]>
18472 M:      Halil Pasic <[email protected]>
18473 L:      [email protected]
18474 L:      [email protected]
18475 L:      [email protected]
18476 S:      Supported
18477 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18478 F:      drivers/s390/virtio/
18479
18480 VIRTIO FILE SYSTEM
18481 M:      Vivek Goyal <[email protected]>
18482 M:      Stefan Hajnoczi <[email protected]>
18483 M:      Miklos Szeredi <[email protected]>
18484 L:      [email protected]
18485 L:      [email protected]
18486 S:      Supported
18487 W:      https://virtio-fs.gitlab.io/
18488 F:      Documentation/filesystems/virtiofs.rst
18489 F:      fs/fuse/virtio_fs.c
18490 F:      include/uapi/linux/virtio_fs.h
18491
18492 VIRTIO GPU DRIVER
18493 M:      David Airlie <[email protected]>
18494 M:      Gerd Hoffmann <[email protected]>
18495 L:      [email protected]
18496 L:      [email protected]
18497 S:      Maintained
18498 T:      git git://anongit.freedesktop.org/drm/drm-misc
18499 F:      drivers/gpu/drm/virtio/
18500 F:      include/uapi/linux/virtio_gpu.h
18501
18502 VIRTIO HOST (VHOST)
18503 M:      "Michael S. Tsirkin" <[email protected]>
18504 M:      Jason Wang <[email protected]>
18505 L:      [email protected]
18506 L:      [email protected]
18507 L:      [email protected]
18508 S:      Maintained
18509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18510 F:      drivers/vhost/
18511 F:      include/linux/vhost_iotlb.h
18512 F:      include/uapi/linux/vhost.h
18513
18514 VIRTIO INPUT DRIVER
18515 M:      Gerd Hoffmann <[email protected]>
18516 S:      Maintained
18517 F:      drivers/virtio/virtio_input.c
18518 F:      include/uapi/linux/virtio_input.h
18519
18520 VIRTIO IOMMU DRIVER
18521 M:      Jean-Philippe Brucker <[email protected]>
18522 L:      [email protected]
18523 S:      Maintained
18524 F:      drivers/iommu/virtio-iommu.c
18525 F:      include/uapi/linux/virtio_iommu.h
18526
18527 VIRTIO MEM DRIVER
18528 M:      David Hildenbrand <[email protected]>
18529 L:      [email protected]
18530 S:      Maintained
18531 F:      drivers/virtio/virtio_mem.c
18532 F:      include/uapi/linux/virtio_mem.h
18533
18534 VIRTUAL BOX GUEST DEVICE DRIVER
18535 M:      Hans de Goede <[email protected]>
18536 M:      Arnd Bergmann <[email protected]>
18537 M:      Greg Kroah-Hartman <[email protected]>
18538 S:      Maintained
18539 F:      drivers/virt/vboxguest/
18540 F:      include/linux/vbox_utils.h
18541 F:      include/uapi/linux/vbox*.h
18542
18543 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18544 M:      Hans de Goede <[email protected]>
18545 L:      [email protected]
18546 S:      Maintained
18547 F:      fs/vboxsf/*
18548
18549 VIRTUAL SERIO DEVICE DRIVER
18550 M:      Stephen Chandler Paul <[email protected]>
18551 S:      Maintained
18552 F:      drivers/input/serio/userio.c
18553 F:      include/uapi/linux/userio.h
18554
18555 VIVID VIRTUAL VIDEO DRIVER
18556 M:      Hans Verkuil <[email protected]>
18557 L:      [email protected]
18558 S:      Maintained
18559 W:      https://linuxtv.org
18560 T:      git git://linuxtv.org/media_tree.git
18561 F:      drivers/media/test-drivers/vivid/*
18562
18563 VLYNQ BUS
18564 M:      Florian Fainelli <[email protected]>
18565 L:      [email protected] (subscribers-only)
18566 S:      Maintained
18567 F:      drivers/vlynq/vlynq.c
18568 F:      include/linux/vlynq.h
18569
18570 VME SUBSYSTEM
18571 M:      Martyn Welch <[email protected]>
18572 M:      Manohar Vanga <[email protected]>
18573 M:      Greg Kroah-Hartman <[email protected]>
18574 L:      [email protected]
18575 S:      Maintained
18576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18577 F:      Documentation/driver-api/vme.rst
18578 F:      drivers/staging/vme/
18579 F:      drivers/vme/
18580 F:      include/linux/vme*
18581
18582 VMWARE BALLOON DRIVER
18583 M:      Nadav Amit <[email protected]>
18584 M:      "VMware, Inc." <[email protected]>
18585 L:      [email protected]
18586 S:      Maintained
18587 F:      drivers/misc/vmw_balloon.c
18588
18589 VMWARE HYPERVISOR INTERFACE
18590 M:      Deep Shah <[email protected]>
18591 M:      "VMware, Inc." <[email protected]>
18592 L:      [email protected]
18593 S:      Supported
18594 F:      arch/x86/include/asm/vmware.h
18595 F:      arch/x86/kernel/cpu/vmware.c
18596
18597 VMWARE PVRDMA DRIVER
18598 M:      Adit Ranadive <[email protected]>
18599 M:      VMware PV-Drivers <[email protected]>
18600 L:      [email protected]
18601 S:      Maintained
18602 F:      drivers/infiniband/hw/vmw_pvrdma/
18603
18604 VMware PVSCSI driver
18605 M:      Jim Gill <[email protected]>
18606 M:      VMware PV-Drivers <[email protected]>
18607 L:      [email protected]
18608 S:      Maintained
18609 F:      drivers/scsi/vmw_pvscsi.c
18610 F:      drivers/scsi/vmw_pvscsi.h
18611
18612 VMWARE VIRTUAL PTP CLOCK DRIVER
18613 M:      Vivek Thampi <[email protected]>
18614 M:      "VMware, Inc." <[email protected]>
18615 L:      [email protected]
18616 S:      Supported
18617 F:      drivers/ptp/ptp_vmw.c
18618
18619 VMWARE VMMOUSE SUBDRIVER
18620 M:      "VMware Graphics" <[email protected]>
18621 M:      "VMware, Inc." <[email protected]>
18622 L:      [email protected]
18623 S:      Maintained
18624 F:      drivers/input/mouse/vmmouse.c
18625 F:      drivers/input/mouse/vmmouse.h
18626
18627 VMWARE VMXNET3 ETHERNET DRIVER
18628 M:      Ronak Doshi <[email protected]>
18629 M:      "VMware, Inc." <[email protected]>
18630 L:      [email protected]
18631 S:      Maintained
18632 F:      drivers/net/vmxnet3/
18633
18634 VOCORE VOCORE2 BOARD
18635 M:      Harvey Hunt <[email protected]>
18636 L:      [email protected]
18637 S:      Maintained
18638 F:      arch/mips/boot/dts/ralink/vocore2.dts
18639
18640 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18641 M:      Liam Girdwood <[email protected]>
18642 M:      Mark Brown <[email protected]>
18643 L:      [email protected]
18644 S:      Supported
18645 W:      http://www.slimlogic.co.uk/?p=48
18646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18647 F:      Documentation/devicetree/bindings/regulator/
18648 F:      Documentation/power/regulator/
18649 F:      drivers/regulator/
18650 F:      include/dt-bindings/regulator/
18651 F:      include/linux/regulator/
18652 K:      regulator_get_optional
18653
18654 VRF
18655 M:      David Ahern <[email protected]>
18656 M:      Shrijeet Mukherjee <[email protected]>
18657 L:      [email protected]
18658 S:      Maintained
18659 F:      Documentation/networking/vrf.rst
18660 F:      drivers/net/vrf.c
18661
18662 VSPRINTF
18663 M:      Petr Mladek <[email protected]>
18664 M:      Steven Rostedt <[email protected]>
18665 M:      Sergey Senozhatsky <[email protected]>
18666 R:      Andy Shevchenko <[email protected]>
18667 R:      Rasmus Villemoes <[email protected]>
18668 S:      Maintained
18669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18670 F:      Documentation/core-api/printk-formats.rst
18671 F:      lib/test_printf.c
18672 F:      lib/vsprintf.c
18673
18674 VT1211 HARDWARE MONITOR DRIVER
18675 M:      Juerg Haefliger <[email protected]>
18676 L:      [email protected]
18677 S:      Maintained
18678 F:      Documentation/hwmon/vt1211.rst
18679 F:      drivers/hwmon/vt1211.c
18680
18681 VT8231 HARDWARE MONITOR DRIVER
18682 M:      Roger Lucas <[email protected]>
18683 L:      [email protected]
18684 S:      Maintained
18685 F:      drivers/hwmon/vt8231.c
18686
18687 VUB300 USB to SDIO/SD/MMC bridge chip
18688 L:      [email protected]
18689 S:      Orphan
18690 F:      drivers/mmc/host/vub300.c
18691
18692 W1 DALLAS'S 1-WIRE BUS
18693 M:      Evgeniy Polyakov <[email protected]>
18694 S:      Maintained
18695 F:      Documentation/devicetree/bindings/w1/
18696 F:      Documentation/w1/
18697 F:      drivers/w1/
18698 F:      include/linux/w1.h
18699
18700 W83791D HARDWARE MONITORING DRIVER
18701 M:      Marc Hulsman <[email protected]>
18702 L:      [email protected]
18703 S:      Maintained
18704 F:      Documentation/hwmon/w83791d.rst
18705 F:      drivers/hwmon/w83791d.c
18706
18707 W83793 HARDWARE MONITORING DRIVER
18708 M:      Rudolf Marek <[email protected]>
18709 L:      [email protected]
18710 S:      Maintained
18711 F:      Documentation/hwmon/w83793.rst
18712 F:      drivers/hwmon/w83793.c
18713
18714 W83795 HARDWARE MONITORING DRIVER
18715 M:      Jean Delvare <[email protected]>
18716 L:      [email protected]
18717 S:      Maintained
18718 F:      drivers/hwmon/w83795.c
18719
18720 W83L51xD SD/MMC CARD INTERFACE DRIVER
18721 M:      Pierre Ossman <[email protected]>
18722 S:      Maintained
18723 F:      drivers/mmc/host/wbsd.*
18724
18725 WACOM PROTOCOL 4 SERIAL TABLETS
18726 M:      Julian Squires <[email protected]>
18727 M:      Hans de Goede <[email protected]>
18728 L:      [email protected]
18729 S:      Maintained
18730 F:      drivers/input/tablet/wacom_serial4.c
18731
18732 WATCHDOG DEVICE DRIVERS
18733 M:      Wim Van Sebroeck <[email protected]>
18734 M:      Guenter Roeck <[email protected]>
18735 L:      [email protected]
18736 S:      Maintained
18737 W:      http://www.linux-watchdog.org/
18738 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18739 F:      Documentation/devicetree/bindings/watchdog/
18740 F:      Documentation/watchdog/
18741 F:      drivers/watchdog/
18742 F:      include/linux/watchdog.h
18743 F:      include/uapi/linux/watchdog.h
18744
18745 WHISKEYCOVE PMIC GPIO DRIVER
18746 M:      Kuppuswamy Sathyanarayanan <[email protected]>
18747 L:      [email protected]
18748 S:      Maintained
18749 F:      drivers/gpio/gpio-wcove.c
18750
18751 WHWAVE RTC DRIVER
18752 M:      Dianlong Li <[email protected]>
18753 L:      [email protected]
18754 S:      Maintained
18755 F:      drivers/rtc/rtc-sd3078.c
18756
18757 WIIMOTE HID DRIVER
18758 M:      David Rheinsberg <[email protected]>
18759 L:      [email protected]
18760 S:      Maintained
18761 F:      drivers/hid/hid-wiimote*
18762
18763 WILOCITY WIL6210 WIRELESS DRIVER
18764 M:      Maya Erez <[email protected]>
18765 L:      [email protected]
18766 L:      [email protected]
18767 S:      Supported
18768 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
18769 F:      drivers/net/wireless/ath/wil6210/
18770
18771 WIMAX STACK
18772 M:      Inaky Perez-Gonzalez <[email protected]>
18773 M:      [email protected]
18774 L:      [email protected] (subscribers-only)
18775 S:      Supported
18776 W:      http://linuxwimax.org
18777 F:      Documentation/admin-guide/wimax/wimax.rst
18778 F:      include/linux/wimax/debug.h
18779 F:      include/net/wimax.h
18780 F:      include/uapi/linux/wimax.h
18781 F:      net/wimax/
18782
18783 WINBOND CIR DRIVER
18784 M:      David Härdeman <[email protected]>
18785 S:      Maintained
18786 F:      drivers/media/rc/winbond-cir.c
18787
18788 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18789 M:      William Breathitt Gray <[email protected]>
18790 L:      [email protected]
18791 S:      Maintained
18792 F:      drivers/watchdog/ebc-c384_wdt.c
18793
18794 WINSYSTEMS WS16C48 GPIO DRIVER
18795 M:      William Breathitt Gray <[email protected]>
18796 L:      [email protected]
18797 S:      Maintained
18798 F:      drivers/gpio/gpio-ws16c48.c
18799
18800 WIREGUARD SECURE NETWORK TUNNEL
18801 M:      Jason A. Donenfeld <[email protected]>
18802 L:      [email protected]
18803 L:      [email protected]
18804 S:      Maintained
18805 F:      drivers/net/wireguard/
18806 F:      tools/testing/selftests/wireguard/
18807
18808 WISTRON LAPTOP BUTTON DRIVER
18809 M:      Miloslav Trmac <[email protected]>
18810 S:      Maintained
18811 F:      drivers/input/misc/wistron_btns.c
18812
18813 WL3501 WIRELESS PCMCIA CARD DRIVER
18814 L:      [email protected]
18815 S:      Odd fixes
18816 F:      drivers/net/wireless/wl3501*
18817
18818 WOLFSON MICROELECTRONICS DRIVERS
18819 L:      [email protected]
18820 S:      Supported
18821 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18822 T:      git https://github.com/CirrusLogic/linux-drivers.git
18823 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
18824 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
18825 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18826 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
18827 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
18828 F:      Documentation/hwmon/wm83??.rst
18829 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18830 F:      drivers/clk/clk-wm83*.c
18831 F:      drivers/extcon/extcon-arizona.c
18832 F:      drivers/gpio/gpio-*wm*.c
18833 F:      drivers/gpio/gpio-arizona.c
18834 F:      drivers/hwmon/wm83??-hwmon.c
18835 F:      drivers/input/misc/wm831x-on.c
18836 F:      drivers/input/touchscreen/wm831x-ts.c
18837 F:      drivers/input/touchscreen/wm97*.c
18838 F:      drivers/leds/leds-wm83*.c
18839 F:      drivers/mfd/arizona*
18840 F:      drivers/mfd/cs47l24*
18841 F:      drivers/mfd/wm*.c
18842 F:      drivers/power/supply/wm83*.c
18843 F:      drivers/regulator/arizona*
18844 F:      drivers/regulator/wm8*.c
18845 F:      drivers/rtc/rtc-wm83*.c
18846 F:      drivers/video/backlight/wm83*_bl.c
18847 F:      drivers/watchdog/wm83*_wdt.c
18848 F:      include/linux/mfd/arizona/
18849 F:      include/linux/mfd/wm831x/
18850 F:      include/linux/mfd/wm8350/
18851 F:      include/linux/mfd/wm8400*
18852 F:      include/linux/regulator/arizona*
18853 F:      include/linux/wm97xx.h
18854 F:      include/sound/wm????.h
18855 F:      sound/soc/codecs/arizona.?
18856 F:      sound/soc/codecs/cs47l24*
18857 F:      sound/soc/codecs/wm*
18858
18859 WORKQUEUE
18860 M:      Tejun Heo <[email protected]>
18861 R:      Lai Jiangshan <[email protected]>
18862 S:      Maintained
18863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18864 F:      Documentation/core-api/workqueue.rst
18865 F:      include/linux/workqueue.h
18866 F:      kernel/workqueue.c
18867
18868 X-POWERS AXP288 PMIC DRIVERS
18869 M:      Hans de Goede <[email protected]>
18870 S:      Maintained
18871 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18872 N:      axp288
18873
18874 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18875 M:      Chen-Yu Tsai <[email protected]>
18876 L:      [email protected]
18877 S:      Maintained
18878 N:      axp[128]
18879
18880 X.25 NETWORK LAYER
18881 M:      Andrew Hendry <[email protected]>
18882 L:      [email protected]
18883 S:      Odd Fixes
18884 F:      Documentation/networking/x25*
18885 F:      include/net/x25*
18886 F:      net/x25/
18887
18888 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18889 M:      Thomas Gleixner <[email protected]>
18890 M:      Ingo Molnar <[email protected]>
18891 M:      Borislav Petkov <[email protected]>
18892 M:      [email protected]
18893 R:      "H. Peter Anvin" <[email protected]>
18894 L:      [email protected]
18895 S:      Maintained
18896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18897 F:      Documentation/devicetree/bindings/x86/
18898 F:      Documentation/x86/
18899 F:      arch/x86/
18900
18901 X86 ENTRY CODE
18902 M:      Andy Lutomirski <[email protected]>
18903 L:      [email protected]
18904 S:      Maintained
18905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18906 F:      arch/x86/entry/
18907
18908 X86 MCE INFRASTRUCTURE
18909 M:      Tony Luck <[email protected]>
18910 M:      Borislav Petkov <[email protected]>
18911 L:      [email protected]
18912 S:      Maintained
18913 F:      arch/x86/kernel/cpu/mce/*
18914
18915 X86 MICROCODE UPDATE SUPPORT
18916 M:      Borislav Petkov <[email protected]>
18917 S:      Maintained
18918 F:      arch/x86/kernel/cpu/microcode/*
18919
18920 X86 MM
18921 M:      Dave Hansen <[email protected]>
18922 M:      Andy Lutomirski <[email protected]>
18923 M:      Peter Zijlstra <[email protected]>
18924 L:      [email protected]
18925 S:      Maintained
18926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18927 F:      arch/x86/mm/
18928
18929 X86 PLATFORM DRIVERS
18930 M:      Hans de Goede <[email protected]>
18931 M:      Mark Gross <[email protected]>
18932 L:      [email protected]
18933 S:      Maintained
18934 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
18935 F:      drivers/platform/olpc/
18936 F:      drivers/platform/x86/
18937
18938 X86 PLATFORM DRIVERS - ARCH
18939 R:      Darren Hart <[email protected]>
18940 R:      Andy Shevchenko <[email protected]>
18941 L:      [email protected]
18942 L:      [email protected]
18943 S:      Maintained
18944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18945 F:      arch/x86/platform
18946
18947 X86 PLATFORM UV HPE SUPERDOME FLEX
18948 M:      Steve Wahl <[email protected]>
18949 R:      Dimitri Sivanich <[email protected]>
18950 R:      Russ Anderson <[email protected]>
18951 S:      Supported
18952 F:      arch/x86/include/asm/uv/
18953 F:      arch/x86/kernel/apic/x2apic_uv_x.c
18954 F:      arch/x86/platform/uv/
18955
18956 X86 VDSO
18957 M:      Andy Lutomirski <[email protected]>
18958 L:      [email protected]
18959 S:      Maintained
18960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18961 F:      arch/x86/entry/vdso/
18962
18963 XARRAY
18964 M:      Matthew Wilcox <[email protected]>
18965 L:      [email protected]
18966 S:      Supported
18967 F:      Documentation/core-api/xarray.rst
18968 F:      include/linux/idr.h
18969 F:      include/linux/xarray.h
18970 F:      lib/idr.c
18971 F:      lib/xarray.c
18972 F:      tools/testing/radix-tree
18973
18974 XBOX DVD IR REMOTE
18975 M:      Benjamin Valentin <[email protected]>
18976 S:      Maintained
18977 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
18978 F:      drivers/media/rc/xbox_remote.c
18979
18980 XC2028/3028 TUNER DRIVER
18981 M:      Mauro Carvalho Chehab <[email protected]>
18982 L:      [email protected]
18983 S:      Maintained
18984 W:      https://linuxtv.org
18985 T:      git git://linuxtv.org/media_tree.git
18986 F:      drivers/media/tuners/tuner-xc2028.*
18987
18988 XDP (eXpress Data Path)
18989 M:      Alexei Starovoitov <[email protected]>
18990 M:      Daniel Borkmann <[email protected]>
18991 M:      David S. Miller <[email protected]>
18992 M:      Jakub Kicinski <[email protected]>
18993 M:      Jesper Dangaard Brouer <[email protected]>
18994 M:      John Fastabend <[email protected]>
18995 L:      [email protected]
18996 L:      [email protected]
18997 S:      Supported
18998 F:      include/net/xdp.h
18999 F:      include/trace/events/xdp.h
19000 F:      kernel/bpf/cpumap.c
19001 F:      kernel/bpf/devmap.c
19002 F:      net/core/xdp.c
19003 N:      xdp
19004 K:      xdp
19005
19006 XDP SOCKETS (AF_XDP)
19007 M:      Björn Töpel <[email protected]>
19008 M:      Magnus Karlsson <[email protected]>
19009 R:      Jonathan Lemon <[email protected]>
19010 L:      [email protected]
19011 L:      [email protected]
19012 S:      Maintained
19013 F:      include/net/xdp_sock*
19014 F:      include/net/xsk_buff_pool.h
19015 F:      include/uapi/linux/if_xdp.h
19016 F:      net/xdp/
19017 F:      samples/bpf/xdpsock*
19018 F:      tools/lib/bpf/xsk*
19019
19020 XEN BLOCK SUBSYSTEM
19021 M:      Konrad Rzeszutek Wilk <[email protected]>
19022 M:      Roger Pau Monné <[email protected]>
19023 L:      [email protected] (moderated for non-subscribers)
19024 S:      Supported
19025 F:      drivers/block/xen*
19026 F:      drivers/block/xen-blkback/*
19027
19028 XEN HYPERVISOR ARM
19029 M:      Stefano Stabellini <[email protected]>
19030 L:      [email protected] (moderated for non-subscribers)
19031 S:      Maintained
19032 F:      arch/arm/include/asm/xen/
19033 F:      arch/arm/xen/
19034
19035 XEN HYPERVISOR ARM64
19036 M:      Stefano Stabellini <[email protected]>
19037 L:      [email protected] (moderated for non-subscribers)
19038 S:      Maintained
19039 F:      arch/arm64/include/asm/xen/
19040 F:      arch/arm64/xen/
19041
19042 XEN HYPERVISOR INTERFACE
19043 M:      Boris Ostrovsky <[email protected]>
19044 M:      Juergen Gross <[email protected]>
19045 R:      Stefano Stabellini <[email protected]>
19046 L:      [email protected] (moderated for non-subscribers)
19047 S:      Supported
19048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19049 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
19050 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
19051 F:      arch/x86/include/asm/pvclock-abi.h
19052 F:      arch/x86/include/asm/xen/
19053 F:      arch/x86/platform/pvh/
19054 F:      arch/x86/xen/
19055 F:      drivers/*/xen-*front.c
19056 F:      drivers/xen/
19057 F:      include/uapi/xen/
19058 F:      include/xen/
19059
19060 XEN NETWORK BACKEND DRIVER
19061 M:      Wei Liu <[email protected]>
19062 M:      Paul Durrant <[email protected]>
19063 L:      [email protected] (moderated for non-subscribers)
19064 L:      [email protected]
19065 S:      Supported
19066 F:      drivers/net/xen-netback/*
19067
19068 XEN PCI SUBSYSTEM
19069 M:      Konrad Rzeszutek Wilk <[email protected]>
19070 L:      [email protected] (moderated for non-subscribers)
19071 S:      Supported
19072 F:      arch/x86/pci/*xen*
19073 F:      drivers/pci/*xen*
19074
19075 XEN PVSCSI DRIVERS
19076 M:      Juergen Gross <[email protected]>
19077 L:      [email protected] (moderated for non-subscribers)
19078 L:      [email protected]
19079 S:      Supported
19080 F:      drivers/scsi/xen-scsifront.c
19081 F:      drivers/xen/xen-scsiback.c
19082 F:      include/xen/interface/io/vscsiif.h
19083
19084 XEN SOUND FRONTEND DRIVER
19085 M:      Oleksandr Andrushchenko <[email protected]>
19086 L:      [email protected] (moderated for non-subscribers)
19087 L:      [email protected] (moderated for non-subscribers)
19088 S:      Supported
19089 F:      sound/xen/*
19090
19091 XEN SWIOTLB SUBSYSTEM
19092 M:      Konrad Rzeszutek Wilk <[email protected]>
19093 L:      [email protected] (moderated for non-subscribers)
19094 L:      [email protected]
19095 S:      Supported
19096 F:      arch/x86/xen/*swiotlb*
19097 F:      drivers/xen/*swiotlb*
19098
19099 XFS FILESYSTEM
19100 M:      Darrick J. Wong <[email protected]>
19101 M:      [email protected]
19102 L:      [email protected]
19103 S:      Supported
19104 W:      http://xfs.org/
19105 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19106 F:      Documentation/ABI/testing/sysfs-fs-xfs
19107 F:      Documentation/admin-guide/xfs.rst
19108 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
19109 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
19110 F:      fs/xfs/
19111 F:      include/uapi/linux/dqblk_xfs.h
19112 F:      include/uapi/linux/fsmap.h
19113
19114 XILINX AXI ETHERNET DRIVER
19115 M:      Radhey Shyam Pandey <[email protected]>
19116 S:      Maintained
19117 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
19118
19119 XILINX CAN DRIVER
19120 M:      Appana Durga Kedareswara rao <[email protected]>
19121 R:      Naga Sureshkumar Relli <[email protected]>
19122 L:      [email protected]
19123 S:      Maintained
19124 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
19125 F:      drivers/net/can/xilinx_can.c
19126
19127 XILINX SD-FEC IP CORES
19128 M:      Derek Kiernan <[email protected]>
19129 M:      Dragan Cvetic <[email protected]>
19130 S:      Maintained
19131 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
19132 F:      Documentation/misc-devices/xilinx_sdfec.rst
19133 F:      drivers/misc/Kconfig
19134 F:      drivers/misc/Makefile
19135 F:      drivers/misc/xilinx_sdfec.c
19136 F:      include/uapi/misc/xilinx_sdfec.h
19137
19138 XILINX UARTLITE SERIAL DRIVER
19139 M:      Peter Korsgaard <[email protected]>
19140 L:      [email protected]
19141 S:      Maintained
19142 F:      drivers/tty/serial/uartlite.c
19143
19144 XILINX VIDEO IP CORES
19145 M:      Hyun Kwon <[email protected]>
19146 M:      Laurent Pinchart <[email protected]>
19147 L:      [email protected]
19148 S:      Supported
19149 T:      git git://linuxtv.org/media_tree.git
19150 F:      Documentation/devicetree/bindings/media/xilinx/
19151 F:      drivers/media/platform/xilinx/
19152 F:      include/uapi/linux/xilinx-v4l2-controls.h
19153
19154 XILINX ZYNQMP DPDMA DRIVER
19155 M:      Hyun Kwon <[email protected]>
19156 M:      Laurent Pinchart <[email protected]>
19157 L:      [email protected]
19158 S:      Supported
19159 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
19160 F:      drivers/dma/xilinx/xilinx_dpdma.c
19161 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
19162
19163 XILINX ZYNQMP PSGTR PHY DRIVER
19164 M:      Anurag Kumar Vulisha <[email protected]>
19165 M:      Laurent Pinchart <[email protected]>
19166 L:      [email protected]
19167 S:      Supported
19168 T:      git https://github.com/Xilinx/linux-xlnx.git
19169 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
19170 F:      drivers/phy/xilinx/phy-zynqmp.c
19171
19172 XILLYBUS DRIVER
19173 M:      Eli Billauer <[email protected]>
19174 L:      [email protected]
19175 S:      Supported
19176 F:      drivers/char/xillybus/
19177
19178 XLP9XX I2C DRIVER
19179 M:      George Cherian <[email protected]>
19180 L:      [email protected]
19181 S:      Supported
19182 W:      http://www.marvell.com
19183 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
19184 F:      drivers/i2c/busses/i2c-xlp9xx.c
19185
19186 XRA1403 GPIO EXPANDER
19187 M:      Nandor Han <[email protected]>
19188 M:      Semi Malinen <[email protected]>
19189 L:      [email protected]
19190 S:      Maintained
19191 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
19192 F:      drivers/gpio/gpio-xra1403.c
19193
19194 XTENSA XTFPGA PLATFORM SUPPORT
19195 M:      Max Filippov <[email protected]>
19196 L:      [email protected]
19197 S:      Maintained
19198 F:      drivers/spi/spi-xtensa-xtfpga.c
19199 F:      sound/soc/xtensa/xtfpga-i2s.c
19200
19201 YAM DRIVER FOR AX.25
19202 M:      Jean-Paul Roubelat <[email protected]>
19203 L:      [email protected]
19204 S:      Maintained
19205 F:      drivers/net/hamradio/yam*
19206 F:      include/linux/yam.h
19207
19208 YAMA SECURITY MODULE
19209 M:      Kees Cook <[email protected]>
19210 S:      Supported
19211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
19212 F:      Documentation/admin-guide/LSM/Yama.rst
19213 F:      security/yama/
19214
19215 YEALINK PHONE DRIVER
19216 M:      Henk Vergonet <[email protected]>
19217 L:      [email protected]
19218 S:      Maintained
19219 F:      Documentation/input/devices/yealink.rst
19220 F:      drivers/input/misc/yealink.*
19221
19222 Z8530 DRIVER FOR AX.25
19223 M:      Joerg Reuter <[email protected]>
19224 L:      [email protected]
19225 S:      Maintained
19226 W:      http://yaina.de/jreuter/
19227 W:      http://www.qsl.net/dl1bke/
19228 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
19229 F:      drivers/net/hamradio/*scc.c
19230 F:      drivers/net/hamradio/z8530.h
19231
19232 ZBUD COMPRESSED PAGE ALLOCATOR
19233 M:      Seth Jennings <[email protected]>
19234 M:      Dan Streetman <[email protected]>
19235 L:      [email protected]
19236 S:      Maintained
19237 F:      include/linux/zbud.h
19238 F:      mm/zbud.c
19239
19240 ZD1211RW WIRELESS DRIVER
19241 M:      Daniel Drake <[email protected]>
19242 M:      Ulrich Kunitz <[email protected]>
19243 L:      [email protected]
19244 L:      [email protected] (subscribers-only)
19245 S:      Maintained
19246 W:      http://zd1211.ath.cx/wiki/DriverRewrite
19247 F:      drivers/net/wireless/zydas/zd1211rw/
19248
19249 ZD1301 MEDIA DRIVER
19250 M:      Antti Palosaari <[email protected]>
19251 L:      [email protected]
19252 S:      Maintained
19253 W:      https://linuxtv.org/
19254 W:      http://palosaari.fi/linux/
19255 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19256 F:      drivers/media/usb/dvb-usb-v2/zd1301*
19257
19258 ZD1301_DEMOD MEDIA DRIVER
19259 M:      Antti Palosaari <[email protected]>
19260 L:      [email protected]
19261 S:      Maintained
19262 W:      https://linuxtv.org/
19263 W:      http://palosaari.fi/linux/
19264 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19265 F:      drivers/media/dvb-frontends/zd1301_demod*
19266
19267 ZHAOXIN PROCESSOR SUPPORT
19268 M:      Tony W Wang-oc <[email protected]>
19269 L:      [email protected]
19270 S:      Maintained
19271 F:      arch/x86/kernel/cpu/zhaoxin.c
19272
19273 ZONEFS FILESYSTEM
19274 M:      Damien Le Moal <[email protected]>
19275 M:      Naohiro Aota <[email protected]>
19276 R:      Johannes Thumshirn <[email protected]>
19277 L:      [email protected]
19278 S:      Maintained
19279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
19280 F:      Documentation/filesystems/zonefs.rst
19281 F:      fs/zonefs/
19282
19283 ZPOOL COMPRESSED PAGE STORAGE API
19284 M:      Dan Streetman <[email protected]>
19285 L:      [email protected]
19286 S:      Maintained
19287 F:      include/linux/zpool.h
19288 F:      mm/zpool.c
19289
19290 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
19291 M:      Minchan Kim <[email protected]>
19292 M:      Nitin Gupta <[email protected]>
19293 R:      Sergey Senozhatsky <[email protected]>
19294 L:      [email protected]
19295 S:      Maintained
19296 F:      Documentation/admin-guide/blockdev/zram.rst
19297 F:      drivers/block/zram/
19298
19299 ZS DECSTATION Z85C30 SERIAL DRIVER
19300 M:      "Maciej W. Rozycki" <[email protected]>
19301 S:      Maintained
19302 F:      drivers/tty/serial/zs.*
19303
19304 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19305 M:      Minchan Kim <[email protected]>
19306 M:      Nitin Gupta <[email protected]>
19307 R:      Sergey Senozhatsky <[email protected]>
19308 L:      [email protected]
19309 S:      Maintained
19310 F:      Documentation/vm/zsmalloc.rst
19311 F:      include/linux/zsmalloc.h
19312 F:      mm/zsmalloc.c
19313
19314 ZSWAP COMPRESSED SWAP CACHING
19315 M:      Seth Jennings <[email protected]>
19316 M:      Dan Streetman <[email protected]>
19317 M:      Vitaly Wool <[email protected]>
19318 L:      [email protected]
19319 S:      Maintained
19320 F:      mm/zswap.c
19321
19322 THE REST
19323 M:      Linus Torvalds <[email protected]>
19324 L:      [email protected]
19325 S:      Buried alive in reporters
19326 Q:      http://patchwork.kernel.org/project/LKML/list/
19327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19328 F:      *
19329 F:      */
This page took 1.062044 seconds and 4 git commands to generate.