]> Git Repo - linux.git/blob - MAINTAINERS
hinic: add firmware update support
[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:      Thor Thayer <[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 L:      [email protected]
834 S:      Supported
835 F:      drivers/crypto/ccp/
836 F:      include/linux/ccp.h
837
838 AMD DISPLAY CORE
839 M:      Harry Wentland <[email protected]>
840 M:      Leo Li <[email protected]>
841 L:      [email protected]
842 S:      Supported
843 T:      git git://people.freedesktop.org/~agd5f/linux
844 F:      drivers/gpu/drm/amd/display/
845
846 AMD ENERGY DRIVER
847 M:      Naveen Krishna Chatradhi <[email protected]>
848 L:      [email protected]
849 S:      Maintained
850 F:      Documentation/hwmon/amd_energy.rst
851 F:      drivers/hwmon/amd_energy.c
852
853 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
854 M:      Huang Rui <[email protected]>
855 L:      [email protected]
856 S:      Supported
857 F:      Documentation/hwmon/fam15h_power.rst
858 F:      drivers/hwmon/fam15h_power.c
859
860 AMD FCH GPIO DRIVER
861 M:      Enrico Weigelt, metux IT consult <[email protected]>
862 L:      [email protected]
863 S:      Maintained
864 F:      drivers/gpio/gpio-amd-fch.c
865 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
866
867 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
868 L:      [email protected] (moderated for non-subscribers)
869 S:      Orphan
870 F:      drivers/usb/gadget/udc/amd5536udc.*
871
872 AMD GEODE PROCESSOR/CHIPSET SUPPORT
873 M:      Andres Salomon <[email protected]>
874 L:      [email protected] (moderated for non-subscribers)
875 S:      Supported
876 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
877 F:      arch/x86/include/asm/geode.h
878 F:      drivers/char/hw_random/geode-rng.c
879 F:      drivers/crypto/geode*
880 F:      drivers/video/fbdev/geode/
881
882 AMD IOMMU (AMD-VI)
883 M:      Joerg Roedel <[email protected]>
884 L:      [email protected]
885 S:      Maintained
886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
887 F:      drivers/iommu/amd/
888 F:      include/linux/amd-iommu.h
889
890 AMD KFD
891 M:      Felix Kuehling <[email protected]>
892 L:      [email protected]
893 S:      Supported
894 T:      git git://people.freedesktop.org/~agd5f/linux
895 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
896 F:      drivers/gpu/drm/amd/amdkfd/
897 F:      drivers/gpu/drm/amd/include/cik_structs.h
898 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
899 F:      drivers/gpu/drm/amd/include/v9_structs.h
900 F:      drivers/gpu/drm/amd/include/vi_structs.h
901 F:      include/uapi/linux/kfd_ioctl.h
902
903 AMD SPI DRIVER
904 M:      Sanjay R Mehta <[email protected]>
905 S:      Maintained
906 F:      drivers/spi/spi-amd.c
907
908 AMD MP2 I2C DRIVER
909 M:      Elie Morisse <[email protected]>
910 M:      Nehal Shah <[email protected]>
911 M:      Shyam Sundar S K <[email protected]>
912 L:      [email protected]
913 S:      Maintained
914 F:      drivers/i2c/busses/i2c-amd-mp2*
915
916 AMD POWERPLAY
917 M:      Evan Quan <[email protected]>
918 L:      [email protected]
919 S:      Supported
920 T:      git git://people.freedesktop.org/~agd5f/linux
921 F:      drivers/gpu/drm/amd/powerplay/
922
923 AMD SEATTLE DEVICE TREE SUPPORT
924 M:      Brijesh Singh <[email protected]>
925 M:      Suravee Suthikulpanit <[email protected]>
926 M:      Tom Lendacky <[email protected]>
927 S:      Supported
928 F:      arch/arm64/boot/dts/amd/
929
930 AMD XGBE DRIVER
931 M:      Tom Lendacky <[email protected]>
932 L:      [email protected]
933 S:      Supported
934 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
935 F:      drivers/net/ethernet/amd/xgbe/
936
937 ANALOG DEVICES INC AD5686 DRIVER
938 M:      Michael Hennerich <[email protected]>
939 L:      [email protected]
940 S:      Supported
941 W:      http://ez.analog.com/community/linux-device-drivers
942 F:      drivers/iio/dac/ad5686*
943 F:      drivers/iio/dac/ad5696*
944
945 ANALOG DEVICES INC AD5758 DRIVER
946 M:      Michael Hennerich <[email protected]>
947 L:      [email protected]
948 S:      Supported
949 W:      http://ez.analog.com/community/linux-device-drivers
950 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
951 F:      drivers/iio/dac/ad5758.c
952
953 ANALOG DEVICES INC AD7091R5 DRIVER
954 M:      Beniamin Bia <[email protected]>
955 L:      [email protected]
956 S:      Supported
957 W:      http://ez.analog.com/community/linux-device-drivers
958 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7091r5.yaml
959 F:      drivers/iio/adc/ad7091r5.c
960
961 ANALOG DEVICES INC AD7124 DRIVER
962 M:      Michael Hennerich <[email protected]>
963 L:      [email protected]
964 S:      Supported
965 W:      http://ez.analog.com/community/linux-device-drivers
966 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
967 F:      drivers/iio/adc/ad7124.c
968
969 ANALOG DEVICES INC AD7192 DRIVER
970 M:      Alexandru Tachici <[email protected]>
971 L:      [email protected]
972 S:      Supported
973 W:      http://ez.analog.com/community/linux-device-drivers
974 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
975 F:      drivers/iio/adc/ad7192.c
976
977 ANALOG DEVICES INC AD7292 DRIVER
978 M:      Marcelo Schmitt <[email protected]>
979 L:      [email protected]
980 S:      Supported
981 W:      http://ez.analog.com/community/linux-device-drivers
982 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
983 F:      drivers/iio/adc/ad7292.c
984
985 ANALOG DEVICES INC AD7606 DRIVER
986 M:      Michael Hennerich <[email protected]>
987 M:      Beniamin Bia <[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,ad7606.yaml
992 F:      drivers/iio/adc/ad7606.c
993
994 ANALOG DEVICES INC AD7768-1 DRIVER
995 M:      Michael Hennerich <[email protected]>
996 L:      [email protected]
997 S:      Supported
998 W:      http://ez.analog.com/community/linux-device-drivers
999 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
1000 F:      drivers/iio/adc/ad7768-1.c
1001
1002 ANALOG DEVICES INC AD7780 DRIVER
1003 M:      Michael Hennerich <[email protected]>
1004 M:      Renato Lui Geh <[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,ad7780.yaml
1009 F:      drivers/iio/adc/ad7780.c
1010
1011 ANALOG DEVICES INC AD9389B DRIVER
1012 M:      Hans Verkuil <[email protected]>
1013 L:      [email protected]
1014 S:      Maintained
1015 F:      drivers/media/i2c/ad9389b*
1016
1017 ANALOG DEVICES INC ADGS1408 DRIVER
1018 M:      Mircea Caprioru <[email protected]>
1019 S:      Supported
1020 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1021 F:      drivers/mux/adgs1408.c
1022
1023 ANALOG DEVICES INC ADIN DRIVER
1024 M:      Alexandru Ardelean <[email protected]>
1025 L:      [email protected]
1026 S:      Supported
1027 W:      http://ez.analog.com/community/linux-device-drivers
1028 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1029 F:      drivers/net/phy/adin.c
1030
1031 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1032 M:      Alexandru Ardelean <[email protected]>
1033 L:      [email protected]
1034 S:      Supported
1035 F:      drivers/iio/imu/adis.c
1036 F:      include/linux/iio/imu/adis.h
1037
1038 ANALOG DEVICES INC ADIS16460 DRIVER
1039 M:      Dragos Bogdan <[email protected]>
1040 L:      [email protected]
1041 S:      Supported
1042 W:      http://ez.analog.com/community/linux-device-drivers
1043 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1044 F:      drivers/iio/imu/adis16460.c
1045
1046 ANALOG DEVICES INC ADIS16475 DRIVER
1047 M:      Nuno Sa <[email protected]>
1048 L:      [email protected]
1049 W:      http://ez.analog.com/community/linux-device-drivers
1050 S:      Supported
1051 F:      drivers/iio/imu/adis16475.c
1052 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1053
1054 ANALOG DEVICES INC ADM1177 DRIVER
1055 M:      Beniamin Bia <[email protected]>
1056 M:      Michael Hennerich <[email protected]>
1057 L:      [email protected]
1058 S:      Supported
1059 W:      http://ez.analog.com/community/linux-device-drivers
1060 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1061 F:      drivers/hwmon/adm1177.c
1062
1063 ANALOG DEVICES INC ADP5061 DRIVER
1064 M:      Michael Hennerich <[email protected]>
1065 L:      [email protected]
1066 S:      Supported
1067 W:      http://ez.analog.com/community/linux-device-drivers
1068 F:      drivers/power/supply/adp5061.c
1069
1070 ANALOG DEVICES INC ADV7180 DRIVER
1071 M:      Lars-Peter Clausen <[email protected]>
1072 L:      [email protected]
1073 S:      Supported
1074 W:      http://ez.analog.com/community/linux-device-drivers
1075 F:      drivers/media/i2c/adv7180.c
1076
1077 ANALOG DEVICES INC ADV748X DRIVER
1078 M:      Kieran Bingham <[email protected]>
1079 L:      [email protected]
1080 S:      Maintained
1081 F:      drivers/media/i2c/adv748x/*
1082
1083 ANALOG DEVICES INC ADV7511 DRIVER
1084 M:      Hans Verkuil <[email protected]>
1085 L:      [email protected]
1086 S:      Maintained
1087 F:      drivers/media/i2c/adv7511*
1088
1089 ANALOG DEVICES INC ADV7604 DRIVER
1090 M:      Hans Verkuil <[email protected]>
1091 L:      [email protected]
1092 S:      Maintained
1093 F:      drivers/media/i2c/adv7604*
1094
1095 ANALOG DEVICES INC ADV7842 DRIVER
1096 M:      Hans Verkuil <[email protected]>
1097 L:      [email protected]
1098 S:      Maintained
1099 F:      drivers/media/i2c/adv7842*
1100
1101 ANALOG DEVICES INC ASOC CODEC DRIVERS
1102 M:      Lars-Peter Clausen <[email protected]>
1103 M:      Nuno Sá <[email protected]>
1104 L:      [email protected] (moderated for non-subscribers)
1105 S:      Supported
1106 W:      http://wiki.analog.com/
1107 W:      http://ez.analog.com/community/linux-device-drivers
1108 F:      sound/soc/codecs/ad1*
1109 F:      sound/soc/codecs/ad7*
1110 F:      sound/soc/codecs/adau*
1111 F:      sound/soc/codecs/adav*
1112 F:      sound/soc/codecs/sigmadsp.*
1113 F:      sound/soc/codecs/ssm*
1114
1115 ANALOG DEVICES INC DMA DRIVERS
1116 M:      Lars-Peter Clausen <[email protected]>
1117 S:      Supported
1118 W:      http://ez.analog.com/community/linux-device-drivers
1119 F:      drivers/dma/dma-axi-dmac.c
1120
1121 ANALOG DEVICES INC HMC425A DRIVER
1122 M:      Beniamin Bia <[email protected]>
1123 M:      Michael Hennerich <[email protected]>
1124 L:      [email protected]
1125 S:      Supported
1126 W:      http://ez.analog.com/community/linux-device-drivers
1127 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,hmc425a.yaml
1128 F:      drivers/iio/amplifiers/hmc425a.c
1129
1130 ANALOG DEVICES INC IIO DRIVERS
1131 M:      Lars-Peter Clausen <[email protected]>
1132 M:      Michael Hennerich <[email protected]>
1133 S:      Supported
1134 W:      http://wiki.analog.com/
1135 W:      http://ez.analog.com/community/linux-device-drivers
1136 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1137 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1138 F:      drivers/iio/*/ad*
1139 F:      drivers/iio/adc/ltc249*
1140 F:      drivers/staging/iio/*/ad*
1141 X:      drivers/iio/*/adjd*
1142
1143 ANALOGBITS PLL LIBRARIES
1144 M:      Paul Walmsley <[email protected]>
1145 S:      Supported
1146 F:      drivers/clk/analogbits/*
1147 F:      include/linux/clk/analogbits*
1148
1149 ANDES ARCHITECTURE
1150 M:      Nick Hu <[email protected]>
1151 M:      Greentime Hu <[email protected]>
1152 M:      Vincent Chen <[email protected]>
1153 S:      Supported
1154 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1155 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1156 F:      Documentation/devicetree/bindings/nds32/
1157 F:      arch/nds32/
1158 N:      nds32
1159 K:      nds32
1160
1161 ANDROID CONFIG FRAGMENTS
1162 M:      Rob Herring <[email protected]>
1163 S:      Supported
1164 F:      kernel/configs/android*
1165
1166 ANDROID DRIVERS
1167 M:      Greg Kroah-Hartman <[email protected]>
1168 M:      Arve Hjønnevåg <[email protected]>
1169 M:      Todd Kjos <[email protected]>
1170 M:      Martijn Coenen <[email protected]>
1171 M:      Joel Fernandes <[email protected]>
1172 M:      Christian Brauner <[email protected]>
1173 L:      [email protected]
1174 S:      Supported
1175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1176 F:      drivers/android/
1177 F:      drivers/staging/android/
1178
1179 ANDROID GOLDFISH PIC DRIVER
1180 M:      Miodrag Dinic <[email protected]>
1181 S:      Supported
1182 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1183 F:      drivers/irqchip/irq-goldfish-pic.c
1184
1185 ANDROID GOLDFISH RTC DRIVER
1186 M:      Miodrag Dinic <[email protected]>
1187 S:      Supported
1188 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1189 F:      drivers/rtc/rtc-goldfish.c
1190
1191 ANDROID ION DRIVER
1192 M:      Laura Abbott <[email protected]>
1193 M:      Sumit Semwal <[email protected]>
1194 L:      [email protected]
1195 L:      [email protected]
1196 L:      [email protected] (moderated for non-subscribers)
1197 S:      Supported
1198 F:      drivers/staging/android/ion
1199 F:      drivers/staging/android/uapi/ion.h
1200
1201 AOA (Apple Onboard Audio) ALSA DRIVER
1202 M:      Johannes Berg <[email protected]>
1203 L:      [email protected]
1204 L:      [email protected] (moderated for non-subscribers)
1205 S:      Maintained
1206 F:      sound/aoa/
1207
1208 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1209 M:      William Breathitt Gray <[email protected]>
1210 L:      [email protected]
1211 S:      Maintained
1212 F:      drivers/iio/adc/stx104.c
1213
1214 APM DRIVER
1215 M:      Jiri Kosina <[email protected]>
1216 S:      Odd fixes
1217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1218 F:      arch/x86/kernel/apm_32.c
1219 F:      drivers/char/apm-emulation.c
1220 F:      include/linux/apm_bios.h
1221 F:      include/uapi/linux/apm_bios.h
1222
1223 APPARMOR SECURITY MODULE
1224 M:      John Johansen <[email protected]>
1225 L:      [email protected] (subscribers-only, general discussion)
1226 S:      Supported
1227 W:      wiki.apparmor.net
1228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1229 F:      Documentation/admin-guide/LSM/apparmor.rst
1230 F:      security/apparmor/
1231
1232 APPLE BCM5974 MULTITOUCH DRIVER
1233 M:      Henrik Rydberg <[email protected]>
1234 L:      [email protected]
1235 S:      Odd fixes
1236 F:      drivers/input/mouse/bcm5974.c
1237
1238 APPLE SMC DRIVER
1239 M:      Henrik Rydberg <[email protected]>
1240 L:      [email protected]
1241 S:      Odd fixes
1242 F:      drivers/hwmon/applesmc.c
1243
1244 APPLETALK NETWORK LAYER
1245 L:      [email protected]
1246 S:      Odd fixes
1247 F:      drivers/net/appletalk/
1248 F:      include/linux/atalk.h
1249 F:      include/uapi/linux/atalk.h
1250 F:      net/appletalk/
1251
1252 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1253 M:      Khuong Dinh <[email protected]>
1254 S:      Supported
1255 F:      arch/arm64/boot/dts/apm/
1256
1257 APPLIED MICRO (APM) X-GENE SOC EDAC
1258 M:      Khuong Dinh <[email protected]>
1259 S:      Supported
1260 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1261 F:      drivers/edac/xgene_edac.c
1262
1263 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1264 M:      Iyappan Subramanian <[email protected]>
1265 M:      Keyur Chudgar <[email protected]>
1266 S:      Supported
1267 F:      drivers/net/ethernet/apm/xgene-v2/
1268
1269 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1270 M:      Iyappan Subramanian <[email protected]>
1271 M:      Keyur Chudgar <[email protected]>
1272 M:      Quan Nguyen <[email protected]>
1273 S:      Supported
1274 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1275 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1276 F:      drivers/net/ethernet/apm/xgene/
1277 F:      drivers/net/phy/mdio-xgene.c
1278
1279 APPLIED MICRO (APM) X-GENE SOC PMU
1280 M:      Khuong Dinh <[email protected]>
1281 S:      Supported
1282 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1283 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1284 F:      drivers/perf/xgene_pmu.c
1285
1286 APTINA CAMERA SENSOR PLL
1287 M:      Laurent Pinchart <[email protected]>
1288 L:      [email protected]
1289 S:      Maintained
1290 F:      drivers/media/i2c/aptina-pll.*
1291
1292 AQUANTIA ETHERNET DRIVER (atlantic)
1293 M:      Igor Russkikh <[email protected]>
1294 L:      [email protected]
1295 S:      Supported
1296 W:      https://www.marvell.com/
1297 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1298 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1299 F:      drivers/net/ethernet/aquantia/atlantic/
1300
1301 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1302 M:      Egor Pomozov <[email protected]>
1303 L:      [email protected]
1304 S:      Supported
1305 W:      http://www.aquantia.com
1306 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1307
1308 ARASAN NAND CONTROLLER DRIVER
1309 M:      Naga Sureshkumar Relli <[email protected]>
1310 L:      [email protected]
1311 S:      Maintained
1312 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1313 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1314
1315 ARC FRAMEBUFFER DRIVER
1316 M:      Jaya Kumar <[email protected]>
1317 S:      Maintained
1318 F:      drivers/video/fbdev/arcfb.c
1319 F:      drivers/video/fbdev/core/fb_defio.c
1320
1321 ARC PGU DRM DRIVER
1322 M:      Alexey Brodkin <[email protected]>
1323 S:      Supported
1324 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1325 F:      drivers/gpu/drm/arc/
1326
1327 ARCNET NETWORK LAYER
1328 M:      Michael Grzeschik <[email protected]>
1329 L:      [email protected]
1330 S:      Maintained
1331 F:      drivers/net/arcnet/
1332 F:      include/uapi/linux/if_arcnet.h
1333
1334 ARM ARCHITECTED TIMER DRIVER
1335 M:      Mark Rutland <[email protected]>
1336 M:      Marc Zyngier <[email protected]>
1337 L:      [email protected] (moderated for non-subscribers)
1338 S:      Maintained
1339 F:      arch/arm/include/asm/arch_timer.h
1340 F:      arch/arm64/include/asm/arch_timer.h
1341 F:      drivers/clocksource/arm_arch_timer.c
1342
1343 ARM HDLCD DRM DRIVER
1344 M:      Liviu Dudau <[email protected]>
1345 S:      Supported
1346 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1347 F:      drivers/gpu/drm/arm/hdlcd_*
1348
1349 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1350 M:      Linus Walleij <[email protected]>
1351 L:      [email protected] (moderated for non-subscribers)
1352 S:      Maintained
1353 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1354 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1355 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1356 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1357 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1358 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1359 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1360 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1361 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1362 F:      arch/arm/boot/dts/arm-realview-*
1363 F:      arch/arm/boot/dts/integrator*
1364 F:      arch/arm/boot/dts/versatile*
1365 F:      arch/arm/mach-integrator/
1366 F:      arch/arm/mach-realview/
1367 F:      arch/arm/mach-versatile/
1368 F:      arch/arm/plat-versatile/
1369 F:      drivers/bus/arm-integrator-lm.c
1370 F:      drivers/clk/versatile/
1371 F:      drivers/i2c/busses/i2c-versatile.c
1372 F:      drivers/irqchip/irq-versatile-fpga.c
1373 F:      drivers/mtd/maps/physmap-versatile.*
1374 F:      drivers/power/reset/arm-versatile-reboot.c
1375 F:      drivers/soc/versatile/
1376
1377 ARM KOMEDA DRM-KMS DRIVER
1378 M:      James (Qian) Wang <[email protected]>
1379 M:      Liviu Dudau <[email protected]>
1380 M:      Mihail Atanassov <[email protected]>
1381 L:      Mali DP Maintainers <[email protected]>
1382 S:      Supported
1383 T:      git git://anongit.freedesktop.org/drm/drm-misc
1384 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1385 F:      Documentation/gpu/komeda-kms.rst
1386 F:      drivers/gpu/drm/arm/display/include/
1387 F:      drivers/gpu/drm/arm/display/komeda/
1388
1389 ARM MALI PANFROST DRM DRIVER
1390 M:      Rob Herring <[email protected]>
1391 M:      Tomeu Vizoso <[email protected]>
1392 R:      Steven Price <[email protected]>
1393 R:      Alyssa Rosenzweig <[email protected]>
1394 L:      [email protected]
1395 S:      Supported
1396 T:      git git://anongit.freedesktop.org/drm/drm-misc
1397 F:      drivers/gpu/drm/panfrost/
1398 F:      include/uapi/drm/panfrost_drm.h
1399
1400 ARM MALI-DP DRM DRIVER
1401 M:      Liviu Dudau <[email protected]>
1402 M:      Brian Starkey <[email protected]>
1403 L:      Mali DP Maintainers <[email protected]>
1404 S:      Supported
1405 T:      git git://anongit.freedesktop.org/drm/drm-misc
1406 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1407 F:      Documentation/gpu/afbc.rst
1408 F:      drivers/gpu/drm/arm/
1409
1410 ARM MFM AND FLOPPY DRIVERS
1411 M:      Ian Molton <[email protected]>
1412 S:      Maintained
1413 F:      arch/arm/include/asm/floppy.h
1414 F:      arch/arm/mach-rpc/floppydma.S
1415
1416 ARM PMU PROFILING AND DEBUGGING
1417 M:      Will Deacon <[email protected]>
1418 M:      Mark Rutland <[email protected]>
1419 L:      [email protected] (moderated for non-subscribers)
1420 S:      Maintained
1421 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1422 F:      Documentation/devicetree/bindings/perf/
1423 F:      arch/arm*/include/asm/hw_breakpoint.h
1424 F:      arch/arm*/include/asm/perf_event.h
1425 F:      arch/arm*/kernel/hw_breakpoint.c
1426 F:      arch/arm*/kernel/perf_*
1427 F:      arch/arm/oprofile/common.c
1428 F:      drivers/perf/*
1429 F:      include/linux/perf/arm_pmu.h
1430
1431 ARM PORT
1432 M:      Russell King <[email protected]>
1433 L:      [email protected] (moderated for non-subscribers)
1434 S:      Odd Fixes
1435 W:      http://www.armlinux.org.uk/
1436 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1437 F:      arch/arm/
1438 X:      arch/arm/boot/dts/
1439
1440 ARM PRIMECELL AACI PL041 DRIVER
1441 M:      Russell King <[email protected]>
1442 S:      Odd Fixes
1443 F:      sound/arm/aaci.*
1444
1445 ARM PRIMECELL BUS SUPPORT
1446 M:      Russell King <[email protected]>
1447 S:      Odd Fixes
1448 F:      drivers/amba/
1449 F:      include/linux/amba/bus.h
1450
1451 ARM PRIMECELL CLCD PL110 DRIVER
1452 M:      Russell King <[email protected]>
1453 S:      Odd Fixes
1454 F:      drivers/video/fbdev/amba-clcd.*
1455
1456 ARM PRIMECELL KMI PL050 DRIVER
1457 M:      Russell King <[email protected]>
1458 S:      Odd Fixes
1459 F:      drivers/input/serio/ambakmi.*
1460 F:      include/linux/amba/kmi.h
1461
1462 ARM PRIMECELL MMCI PL180/1 DRIVER
1463 M:      Russell King <[email protected]>
1464 S:      Odd Fixes
1465 F:      drivers/mmc/host/mmci.*
1466 F:      include/linux/amba/mmci.h
1467
1468 ARM PRIMECELL SSP PL022 SPI DRIVER
1469 M:      Linus Walleij <[email protected]>
1470 L:      [email protected] (moderated for non-subscribers)
1471 S:      Maintained
1472 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1473 F:      drivers/spi/spi-pl022.c
1474
1475 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1476 M:      Russell King <[email protected]>
1477 S:      Odd Fixes
1478 F:      drivers/tty/serial/amba-pl01*.c
1479 F:      include/linux/amba/serial.h
1480
1481 ARM PRIMECELL VIC PL190/PL192 DRIVER
1482 M:      Linus Walleij <[email protected]>
1483 L:      [email protected] (moderated for non-subscribers)
1484 S:      Maintained
1485 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1486 F:      drivers/irqchip/irq-vic.c
1487
1488 ARM SMC WATCHDOG DRIVER
1489 M:      Julius Werner <[email protected]>
1490 R:      Evan Benn <[email protected]>
1491 S:      Maintained
1492 F:      devicetree/bindings/watchdog/arm-smc-wdt.yaml
1493 F:      drivers/watchdog/arm_smc_wdt.c
1494
1495 ARM SMMU DRIVERS
1496 M:      Will Deacon <[email protected]>
1497 R:      Robin Murphy <[email protected]>
1498 L:      [email protected] (moderated for non-subscribers)
1499 S:      Maintained
1500 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1501 F:      drivers/iommu/arm-smmu*
1502 F:      drivers/iommu/io-pgtable-arm-v7s.c
1503 F:      drivers/iommu/io-pgtable-arm.c
1504
1505 ARM SUB-ARCHITECTURES
1506 L:      [email protected] (moderated for non-subscribers)
1507 S:      Maintained
1508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1509 F:      arch/arm/mach-*/
1510 F:      arch/arm/plat-*/
1511
1512 ARM/ACTIONS SEMI ARCHITECTURE
1513 M:      Andreas Färber <[email protected]>
1514 M:      Manivannan Sadhasivam <[email protected]>
1515 L:      [email protected] (moderated for non-subscribers)
1516 S:      Maintained
1517 F:      Documentation/devicetree/bindings/arm/actions.yaml
1518 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1519 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1520 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1521 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1522 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1523 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1524 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1525 F:      arch/arm/boot/dts/owl-*
1526 F:      arch/arm/mach-actions/
1527 F:      arch/arm64/boot/dts/actions/
1528 F:      drivers/clk/actions/
1529 F:      drivers/clocksource/timer-owl*
1530 F:      drivers/dma/owl-dma.c
1531 F:      drivers/i2c/busses/i2c-owl.c
1532 F:      drivers/mmc/host/owl-mmc.c
1533 F:      drivers/pinctrl/actions/*
1534 F:      drivers/soc/actions/
1535 F:      include/dt-bindings/power/owl-*
1536 F:      include/linux/soc/actions/
1537 N:      owl
1538
1539 ARM/ADS SPHERE MACHINE SUPPORT
1540 M:      Lennert Buytenhek <[email protected]>
1541 L:      [email protected] (moderated for non-subscribers)
1542 S:      Maintained
1543
1544 ARM/AFEB9260 MACHINE SUPPORT
1545 M:      Sergey Lapin <[email protected]>
1546 L:      [email protected] (moderated for non-subscribers)
1547 S:      Maintained
1548
1549 ARM/AJECO 1ARM MACHINE SUPPORT
1550 M:      Lennert Buytenhek <[email protected]>
1551 L:      [email protected] (moderated for non-subscribers)
1552 S:      Maintained
1553
1554 ARM/Allwinner SoC Clock Support
1555 M:      Emilio López <[email protected]>
1556 S:      Maintained
1557 F:      drivers/clk/sunxi/
1558
1559 ARM/Allwinner sunXi SoC support
1560 M:      Maxime Ripard <[email protected]>
1561 M:      Chen-Yu Tsai <[email protected]>
1562 L:      [email protected] (moderated for non-subscribers)
1563 S:      Maintained
1564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1565 F:      arch/arm/mach-sunxi/
1566 F:      arch/arm64/boot/dts/allwinner/
1567 F:      drivers/clk/sunxi-ng/
1568 F:      drivers/pinctrl/sunxi/
1569 F:      drivers/soc/sunxi/
1570 N:      sun[x456789]i
1571 N:      sun50i
1572
1573 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1574 M:      Neil Armstrong <[email protected]>
1575 M:      Jerome Brunet <[email protected]>
1576 L:      [email protected]
1577 S:      Maintained
1578 F:      Documentation/devicetree/bindings/clock/amlogic*
1579 F:      drivers/clk/meson/
1580 F:      include/dt-bindings/clock/gxbb*
1581 F:      include/dt-bindings/clock/meson*
1582
1583 ARM/Amlogic Meson SoC Crypto Drivers
1584 M:      Corentin Labbe <[email protected]>
1585 L:      [email protected]
1586 L:      [email protected]
1587 S:      Maintained
1588 F:      Documentation/devicetree/bindings/crypto/amlogic*
1589 F:      drivers/crypto/amlogic/
1590
1591 ARM/Amlogic Meson SoC Sound Drivers
1592 M:      Jerome Brunet <[email protected]>
1593 L:      [email protected] (moderated for non-subscribers)
1594 S:      Maintained
1595 F:      Documentation/devicetree/bindings/sound/amlogic*
1596 F:      sound/soc/meson/
1597
1598 ARM/Amlogic Meson SoC support
1599 M:      Kevin Hilman <[email protected]>
1600 L:      [email protected] (moderated for non-subscribers)
1601 L:      [email protected]
1602 S:      Maintained
1603 W:      http://linux-meson.com/
1604 F:      arch/arm/boot/dts/meson*
1605 F:      arch/arm/mach-meson/
1606 F:      arch/arm64/boot/dts/amlogic/
1607 F:      drivers/mmc/host/meson*
1608 F:      drivers/pinctrl/meson/
1609 F:      drivers/rtc/rtc-meson*
1610 F:      drivers/soc/amlogic/
1611 N:      meson
1612
1613 ARM/Annapurna Labs ALPINE ARCHITECTURE
1614 M:      Tsahee Zidenberg <[email protected]>
1615 M:      Antoine Tenart <[email protected]>
1616 L:      [email protected] (moderated for non-subscribers)
1617 S:      Maintained
1618 F:      arch/arm/boot/dts/alpine*
1619 F:      arch/arm/mach-alpine/
1620 F:      arch/arm64/boot/dts/al/
1621 F:      drivers/*/*alpine*
1622
1623 ARM/ARTPEC MACHINE SUPPORT
1624 M:      Jesper Nilsson <[email protected]>
1625 M:      Lars Persson <[email protected]>
1626 L:      [email protected]
1627 S:      Maintained
1628 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1629 F:      arch/arm/boot/dts/artpec6*
1630 F:      arch/arm/mach-artpec
1631 F:      drivers/clk/axis
1632 F:      drivers/crypto/axis
1633 F:      drivers/mmc/host/usdhi6rol0.c
1634 F:      drivers/pinctrl/pinctrl-artpec*
1635
1636 ARM/ASPEED I2C DRIVER
1637 M:      Brendan Higgins <[email protected]>
1638 R:      Benjamin Herrenschmidt <[email protected]>
1639 R:      Joel Stanley <[email protected]>
1640 L:      [email protected]
1641 L:      [email protected] (moderated for non-subscribers)
1642 S:      Maintained
1643 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1644 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1645 F:      drivers/i2c/busses/i2c-aspeed.c
1646 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1647
1648 ARM/ASPEED MACHINE SUPPORT
1649 M:      Joel Stanley <[email protected]>
1650 R:      Andrew Jeffery <[email protected]>
1651 L:      [email protected] (moderated for non-subscribers)
1652 L:      [email protected] (moderated for non-subscribers)
1653 S:      Supported
1654 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1656 F:      arch/arm/boot/dts/aspeed-*
1657 F:      arch/arm/mach-aspeed/
1658 N:      aspeed
1659
1660 ARM/BITMAIN ARCHITECTURE
1661 M:      Manivannan Sadhasivam <[email protected]>
1662 L:      [email protected] (moderated for non-subscribers)
1663 S:      Maintained
1664 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1665 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1666 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1667 F:      arch/arm64/boot/dts/bitmain/
1668 F:      drivers/clk/clk-bm1880.c
1669 F:      drivers/pinctrl/pinctrl-bm1880.c
1670
1671 ARM/CALXEDA HIGHBANK ARCHITECTURE
1672 M:      Andre Przywara <[email protected]>
1673 L:      [email protected] (moderated for non-subscribers)
1674 S:      Maintained
1675 F:      arch/arm/boot/dts/ecx-*.dts*
1676 F:      arch/arm/boot/dts/highbank.dts
1677 F:      arch/arm/mach-highbank/
1678
1679 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1680 M:      Krzysztof Halasa <[email protected]>
1681 S:      Maintained
1682 F:      arch/arm/mach-cns3xxx/
1683
1684 ARM/CAVIUM THUNDER NETWORK DRIVER
1685 M:      Sunil Goutham <[email protected]>
1686 M:      Robert Richter <[email protected]>
1687 L:      [email protected] (moderated for non-subscribers)
1688 S:      Supported
1689 F:      drivers/net/ethernet/cavium/thunder/
1690
1691 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1692 M:      Lukasz Majewski <[email protected]>
1693 L:      [email protected] (moderated for non-subscribers)
1694 S:      Maintained
1695 F:      arch/arm/mach-ep93xx/ts72xx.c
1696
1697 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1698 M:      Alexander Shiyan <[email protected]>
1699 L:      [email protected] (moderated for non-subscribers)
1700 S:      Odd Fixes
1701 N:      clps711x
1702
1703 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1704 M:      Lennert Buytenhek <[email protected]>
1705 L:      [email protected] (moderated for non-subscribers)
1706 S:      Maintained
1707
1708 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1709 M:      Hartley Sweeten <[email protected]>
1710 M:      Alexander Sverdlin <[email protected]>
1711 L:      [email protected] (moderated for non-subscribers)
1712 S:      Maintained
1713 F:      arch/arm/mach-ep93xx/
1714 F:      arch/arm/mach-ep93xx/include/mach/
1715
1716 ARM/CLKDEV SUPPORT
1717 M:      Russell King <[email protected]>
1718 L:      [email protected] (moderated for non-subscribers)
1719 S:      Maintained
1720 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1721 F:      drivers/clk/clkdev.c
1722
1723 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1724 M:      Baruch Siach <[email protected]>
1725 L:      [email protected] (moderated for non-subscribers)
1726 S:      Maintained
1727 F:      arch/arm/boot/dts/cx92755*
1728 N:      digicolor
1729
1730 ARM/CONTEC MICRO9 MACHINE SUPPORT
1731 M:      Hubert Feurstein <[email protected]>
1732 S:      Maintained
1733 F:      arch/arm/mach-ep93xx/micro9.c
1734
1735 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1736 M:      Mathieu Poirier <[email protected]>
1737 R:      Suzuki K Poulose <[email protected]>
1738 R:      Mike Leach <[email protected]>
1739 L:      [email protected] (moderated for non-subscribers)
1740 S:      Maintained
1741 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1742 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1743 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1744 F:      Documentation/devicetree/bindings/arm/coresight.txt
1745 F:      Documentation/trace/coresight/*
1746 F:      drivers/hwtracing/coresight/*
1747 F:      include/dt-bindings/arm/coresight-cti-dt.h
1748 F:      tools/perf/arch/arm/util/auxtrace.c
1749 F:      tools/perf/arch/arm/util/cs-etm.c
1750 F:      tools/perf/arch/arm/util/cs-etm.h
1751 F:      tools/perf/arch/arm/util/pmu.c
1752 F:      tools/perf/util/cs-etm-decoder/*
1753 F:      tools/perf/util/cs-etm.*
1754
1755 ARM/CORGI MACHINE SUPPORT
1756 M:      Richard Purdie <[email protected]>
1757 S:      Maintained
1758
1759 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1760 M:      Hans Ulli Kroll <[email protected]>
1761 M:      Linus Walleij <[email protected]>
1762 L:      [email protected] (moderated for non-subscribers)
1763 S:      Maintained
1764 T:      git git://github.com/ulli-kroll/linux.git
1765 F:      Documentation/devicetree/bindings/arm/gemini.txt
1766 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1767 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1768 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1769 F:      arch/arm/mach-gemini/
1770 F:      drivers/net/ethernet/cortina/
1771 F:      drivers/pinctrl/pinctrl-gemini.c
1772 F:      drivers/rtc/rtc-ftrtc010.c
1773
1774 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1775 M:      Barry Song <[email protected]>
1776 L:      [email protected] (moderated for non-subscribers)
1777 S:      Maintained
1778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1779 F:      arch/arm/boot/dts/prima2*
1780 F:      arch/arm/mach-prima2/
1781 F:      drivers/clk/sirf/
1782 F:      drivers/clocksource/timer-atlas7.c
1783 F:      drivers/clocksource/timer-prima2.c
1784 X:      drivers/gnss
1785 N:      [^a-z]sirf
1786
1787 ARM/CZ.NIC TURRIS MOX SUPPORT
1788 M:      Marek Behun <[email protected]>
1789 S:      Maintained
1790 W:      http://mox.turris.cz
1791 F:      Documentation/ABI/testing/debugfs-moxtet
1792 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1793 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1794 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1795 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1796 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1797 F:      drivers/bus/moxtet.c
1798 F:      drivers/firmware/turris-mox-rwtm.c
1799 F:      drivers/gpio/gpio-moxtet.c
1800 F:      include/linux/moxtet.h
1801
1802 ARM/EBSA110 MACHINE SUPPORT
1803 M:      Russell King <[email protected]>
1804 L:      [email protected] (moderated for non-subscribers)
1805 S:      Maintained
1806 W:      http://www.armlinux.org.uk/
1807 F:      arch/arm/mach-ebsa110/
1808 F:      drivers/net/ethernet/amd/am79c961a.*
1809
1810 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1811 M:      Uwe Kleine-König <[email protected]>
1812 R:      Pengutronix Kernel Team <[email protected]>
1813 L:      [email protected] (moderated for non-subscribers)
1814 S:      Maintained
1815 N:      efm32
1816
1817 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1818 M:      Robert Jarzmik <[email protected]>
1819 L:      [email protected] (moderated for non-subscribers)
1820 S:      Maintained
1821 F:      arch/arm/mach-pxa/ezx.c
1822
1823 ARM/FARADAY FA526 PORT
1824 M:      Hans Ulli Kroll <[email protected]>
1825 L:      [email protected] (moderated for non-subscribers)
1826 S:      Maintained
1827 T:      git git://git.berlios.de/gemini-board
1828 F:      arch/arm/mm/*-fa*
1829
1830 ARM/FOOTBRIDGE ARCHITECTURE
1831 M:      Russell King <[email protected]>
1832 L:      [email protected] (moderated for non-subscribers)
1833 S:      Maintained
1834 W:      http://www.armlinux.org.uk/
1835 F:      arch/arm/include/asm/hardware/dec21285.h
1836 F:      arch/arm/mach-footbridge/
1837
1838 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1839 M:      Shawn Guo <[email protected]>
1840 M:      Sascha Hauer <[email protected]>
1841 R:      Pengutronix Kernel Team <[email protected]>
1842 R:      Fabio Estevam <[email protected]>
1843 R:      NXP Linux Team <[email protected]>
1844 L:      [email protected] (moderated for non-subscribers)
1845 S:      Maintained
1846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1847 X:      drivers/media/i2c/
1848 N:      imx
1849 N:      mxs
1850
1851 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1852 M:      Shawn Guo <[email protected]>
1853 M:      Li Yang <[email protected]>
1854 L:      [email protected] (moderated for non-subscribers)
1855 S:      Maintained
1856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1857 F:      arch/arm/boot/dts/ls1021a*
1858 F:      arch/arm64/boot/dts/freescale/fsl-*
1859 F:      arch/arm64/boot/dts/freescale/qoriq-*
1860
1861 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1862 M:      Shawn Guo <[email protected]>
1863 M:      Sascha Hauer <[email protected]>
1864 R:      Pengutronix Kernel Team <[email protected]>
1865 R:      Stefan Agner <[email protected]>
1866 L:      [email protected] (moderated for non-subscribers)
1867 S:      Maintained
1868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1869 F:      arch/arm/boot/dts/vf*
1870 F:      arch/arm/mach-imx/*vf610*
1871
1872 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1873 M:      Lennert Buytenhek <[email protected]>
1874 L:      [email protected] (moderated for non-subscribers)
1875 S:      Maintained
1876
1877 ARM/GUMSTIX MACHINE SUPPORT
1878 M:      Steve Sakoman <[email protected]>
1879 L:      [email protected] (moderated for non-subscribers)
1880 S:      Maintained
1881
1882 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1883 M:      Philipp Zabel <[email protected]>
1884 M:      Paul Parsons <[email protected]>
1885 L:      [email protected] (moderated for non-subscribers)
1886 S:      Maintained
1887 F:      arch/arm/mach-pxa/hx4700.c
1888 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1889 F:      sound/soc/pxa/hx4700.c
1890
1891 ARM/HISILICON SOC SUPPORT
1892 M:      Wei Xu <[email protected]>
1893 L:      [email protected] (moderated for non-subscribers)
1894 S:      Supported
1895 W:      http://www.hisilicon.com
1896 T:      git git://github.com/hisilicon/linux-hisi.git
1897 F:      arch/arm/boot/dts/hi3*
1898 F:      arch/arm/boot/dts/hip*
1899 F:      arch/arm/boot/dts/hisi*
1900 F:      arch/arm/mach-hisi/
1901 F:      arch/arm64/boot/dts/hisilicon/
1902
1903 ARM/HP JORNADA 7XX MACHINE SUPPORT
1904 M:      Kristoffer Ericson <[email protected]>
1905 S:      Maintained
1906 W:      www.jlime.com
1907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1908 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1909 F:      arch/arm/mach-sa1100/jornada720.c
1910
1911 ARM/IGEP MACHINE SUPPORT
1912 M:      Enric Balletbo i Serra <[email protected]>
1913 M:      Javier Martinez Canillas <[email protected]>
1914 L:      [email protected]
1915 L:      [email protected] (moderated for non-subscribers)
1916 S:      Maintained
1917 F:      arch/arm/boot/dts/omap3-igep*
1918
1919 ARM/INCOME PXA270 SUPPORT
1920 M:      Marek Vasut <[email protected]>
1921 L:      [email protected] (moderated for non-subscribers)
1922 S:      Maintained
1923 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1924
1925 ARM/INTEL IOP32X ARM ARCHITECTURE
1926 M:      Lennert Buytenhek <[email protected]>
1927 L:      [email protected] (moderated for non-subscribers)
1928 S:      Maintained
1929
1930 ARM/INTEL IQ81342EX MACHINE SUPPORT
1931 M:      Lennert Buytenhek <[email protected]>
1932 L:      [email protected] (moderated for non-subscribers)
1933 S:      Maintained
1934
1935 ARM/INTEL IXDP2850 MACHINE SUPPORT
1936 M:      Lennert Buytenhek <[email protected]>
1937 L:      [email protected] (moderated for non-subscribers)
1938 S:      Maintained
1939
1940 ARM/INTEL IXP4XX ARM ARCHITECTURE
1941 M:      Linus Walleij <[email protected]>
1942 M:      Imre Kaloz <[email protected]>
1943 M:      Krzysztof Halasa <[email protected]>
1944 L:      [email protected] (moderated for non-subscribers)
1945 S:      Maintained
1946 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1947 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1948 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1949 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1950 F:      arch/arm/mach-ixp4xx/
1951 F:      drivers/clocksource/timer-ixp4xx.c
1952 F:      drivers/gpio/gpio-ixp4xx.c
1953 F:      drivers/irqchip/irq-ixp4xx.c
1954 F:      include/linux/irqchip/irq-ixp4xx.h
1955 F:      include/linux/platform_data/timer-ixp4xx.h
1956
1957 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1958 M:      Jonathan Cameron <[email protected]>
1959 L:      [email protected] (moderated for non-subscribers)
1960 S:      Maintained
1961 F:      arch/arm/mach-pxa/stargate2.c
1962 F:      drivers/pcmcia/pxa2xx_stargate2.c
1963
1964 ARM/INTEL XSC3 (MANZANO) ARM CORE
1965 M:      Lennert Buytenhek <[email protected]>
1966 L:      [email protected] (moderated for non-subscribers)
1967 S:      Maintained
1968
1969 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1970 M:      Lennert Buytenhek <[email protected]>
1971 L:      [email protected] (moderated for non-subscribers)
1972 S:      Maintained
1973
1974 ARM/LG1K ARCHITECTURE
1975 M:      Chanho Min <[email protected]>
1976 L:      [email protected] (moderated for non-subscribers)
1977 S:      Maintained
1978 F:      arch/arm64/boot/dts/lg/
1979
1980 ARM/LOGICPD PXA270 MACHINE SUPPORT
1981 M:      Lennert Buytenhek <[email protected]>
1982 L:      [email protected] (moderated for non-subscribers)
1983 S:      Maintained
1984
1985 ARM/LPC18XX ARCHITECTURE
1986 M:      Vladimir Zapolskiy <[email protected]>
1987 L:      [email protected] (moderated for non-subscribers)
1988 S:      Maintained
1989 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1990 F:      arch/arm/boot/dts/lpc43*
1991 F:      drivers/i2c/busses/i2c-lpc2k.c
1992 F:      drivers/memory/pl172.c
1993 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1994 F:      drivers/rtc/rtc-lpc24xx.c
1995 N:      lpc18xx
1996
1997 ARM/LPC32XX SOC SUPPORT
1998 M:      Vladimir Zapolskiy <[email protected]>
1999 M:      Sylvain Lemieux <[email protected]>
2000 L:      [email protected] (moderated for non-subscribers)
2001 S:      Maintained
2002 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2003 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2004 F:      arch/arm/boot/dts/lpc32*
2005 F:      arch/arm/mach-lpc32xx/
2006 F:      drivers/i2c/busses/i2c-pnx.c
2007 F:      drivers/net/ethernet/nxp/lpc_eth.c
2008 F:      drivers/usb/host/ohci-nxp.c
2009 F:      drivers/watchdog/pnx4008_wdt.c
2010 N:      lpc32xx
2011
2012 ARM/MAGICIAN MACHINE SUPPORT
2013 M:      Philipp Zabel <[email protected]>
2014 S:      Maintained
2015
2016 ARM/Marvell Dove/MV78xx0/Orion SOC support
2017 M:      Jason Cooper <[email protected]>
2018 M:      Andrew Lunn <[email protected]>
2019 M:      Sebastian Hesselbarth <[email protected]>
2020 M:      Gregory Clement <[email protected]>
2021 L:      [email protected] (moderated for non-subscribers)
2022 S:      Maintained
2023 T:      git git://git.infradead.org/linux-mvebu.git
2024 F:      Documentation/devicetree/bindings/soc/dove/
2025 F:      arch/arm/boot/dts/dove*
2026 F:      arch/arm/boot/dts/orion5x*
2027 F:      arch/arm/mach-dove/
2028 F:      arch/arm/mach-mv78xx0/
2029 F:      arch/arm/mach-orion5x/
2030 F:      arch/arm/plat-orion/
2031 F:      drivers/soc/dove/
2032
2033 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2034 M:      Jason Cooper <[email protected]>
2035 M:      Andrew Lunn <[email protected]>
2036 M:      Gregory Clement <[email protected]>
2037 M:      Sebastian Hesselbarth <[email protected]>
2038 L:      [email protected] (moderated for non-subscribers)
2039 S:      Maintained
2040 T:      git git://git.infradead.org/linux-mvebu.git
2041 F:      arch/arm/boot/dts/armada*
2042 F:      arch/arm/boot/dts/kirkwood*
2043 F:      arch/arm/configs/mvebu_*_defconfig
2044 F:      arch/arm/mach-mvebu/
2045 F:      arch/arm64/boot/dts/marvell/armada*
2046 F:      arch/arm64/boot/dts/marvell/cn913*
2047 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2048 F:      drivers/cpufreq/armada-8k-cpufreq.c
2049 F:      drivers/cpufreq/mvebu-cpufreq.c
2050 F:      drivers/irqchip/irq-armada-370-xp.c
2051 F:      drivers/irqchip/irq-mvebu-*
2052 F:      drivers/pinctrl/mvebu/
2053 F:      drivers/rtc/rtc-armada38x.c
2054
2055 ARM/Mediatek RTC DRIVER
2056 M:      Eddie Huang <[email protected]>
2057 M:      Sean Wang <[email protected]>
2058 L:      [email protected] (moderated for non-subscribers)
2059 L:      [email protected] (moderated for non-subscribers)
2060 S:      Maintained
2061 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2062 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2063 F:      drivers/rtc/rtc-mt2712.c
2064 F:      drivers/rtc/rtc-mt6397.c
2065 F:      drivers/rtc/rtc-mt7622.c
2066
2067 ARM/Mediatek SoC support
2068 M:      Matthias Brugger <[email protected]>
2069 L:      [email protected] (moderated for non-subscribers)
2070 L:      [email protected] (moderated for non-subscribers)
2071 S:      Maintained
2072 W:      https://mtk.bcnfs.org/
2073 C:      irc://chat.freenode.net/linux-mediatek
2074 F:      arch/arm/boot/dts/mt6*
2075 F:      arch/arm/boot/dts/mt7*
2076 F:      arch/arm/boot/dts/mt8*
2077 F:      arch/arm/mach-mediatek/
2078 F:      arch/arm64/boot/dts/mediatek/
2079 F:      drivers/soc/mediatek/
2080 N:      mtk
2081 N:      mt[678]
2082 K:      mediatek
2083
2084 ARM/Mediatek USB3 PHY DRIVER
2085 M:      Chunfeng Yun <[email protected]>
2086 L:      [email protected] (moderated for non-subscribers)
2087 L:      [email protected] (moderated for non-subscribers)
2088 S:      Maintained
2089 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2090 F:      drivers/phy/mediatek/
2091
2092 ARM/Microchip (AT91) SoC support
2093 M:      Nicolas Ferre <[email protected]>
2094 M:      Alexandre Belloni <[email protected]>
2095 M:      Ludovic Desroches <[email protected]>
2096 L:      [email protected] (moderated for non-subscribers)
2097 S:      Supported
2098 W:      http://www.linux4sam.org
2099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2100 F:      arch/arm/boot/dts/at91*.dts
2101 F:      arch/arm/boot/dts/at91*.dtsi
2102 F:      arch/arm/boot/dts/sama*.dts
2103 F:      arch/arm/boot/dts/sama*.dtsi
2104 F:      arch/arm/include/debug/at91.S
2105 F:      arch/arm/mach-at91/
2106 F:      drivers/memory/atmel*
2107 F:      drivers/watchdog/sama5d4_wdt.c
2108 F:      include/soc/at91/
2109 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2110 X:      drivers/net/wireless/atmel/
2111 N:      at91
2112 N:      atmel
2113
2114 ARM/MIOA701 MACHINE SUPPORT
2115 M:      Robert Jarzmik <[email protected]>
2116 L:      [email protected] (moderated for non-subscribers)
2117 S:      Maintained
2118 F:      arch/arm/mach-pxa/mioa701.c
2119
2120 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2121 M:      Michael Petchkovsky <[email protected]>
2122 S:      Maintained
2123
2124 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2125 M:      Linus Walleij <[email protected]>
2126 L:      [email protected] (moderated for non-subscribers)
2127 S:      Maintained
2128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2129 F:      Documentation/devicetree/bindings/arm/ste-*
2130 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2131 F:      Documentation/devicetree/bindings/arm/ux500/
2132 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2133 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2134 F:      arch/arm/boot/dts/ste-*
2135 F:      arch/arm/mach-nomadik/
2136 F:      arch/arm/mach-u300/
2137 F:      arch/arm/mach-ux500/
2138 F:      drivers/clk/clk-nomadik.c
2139 F:      drivers/clk/clk-u300.c
2140 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2141 F:      drivers/clocksource/timer-u300.c
2142 F:      drivers/dma/coh901318*
2143 F:      drivers/dma/ste_dma40*
2144 F:      drivers/hwspinlock/u8500_hsem.c
2145 F:      drivers/i2c/busses/i2c-nomadik.c
2146 F:      drivers/i2c/busses/i2c-stu300.c
2147 F:      drivers/iio/adc/ab8500-gpadc.c
2148 F:      drivers/mfd/ab3100*
2149 F:      drivers/mfd/ab8500*
2150 F:      drivers/mfd/abx500*
2151 F:      drivers/mfd/db8500*
2152 F:      drivers/mfd/dbx500*
2153 F:      drivers/pinctrl/nomadik/
2154 F:      drivers/pinctrl/pinctrl-coh901*
2155 F:      drivers/pinctrl/pinctrl-u300.c
2156 F:      drivers/rtc/rtc-ab3100.c
2157 F:      drivers/rtc/rtc-ab8500.c
2158 F:      drivers/rtc/rtc-coh901331.c
2159 F:      drivers/rtc/rtc-pl031.c
2160 F:      drivers/soc/ux500/
2161 F:      drivers/watchdog/coh901327_wdt.c
2162
2163 ARM/NUVOTON NPCM ARCHITECTURE
2164 M:      Avi Fishman <[email protected]>
2165 M:      Tomer Maimon <[email protected]>
2166 M:      Tali Perry <[email protected]>
2167 R:      Patrick Venture <[email protected]>
2168 R:      Nancy Yuen <[email protected]>
2169 R:      Benjamin Fair <[email protected]>
2170 L:      [email protected] (moderated for non-subscribers)
2171 S:      Supported
2172 F:      Documentation/devicetree/bindings/*/*/*npcm*
2173 F:      Documentation/devicetree/bindings/*/*npcm*
2174 F:      arch/arm/boot/dts/nuvoton-npcm*
2175 F:      arch/arm/mach-npcm/
2176 F:      drivers/*/*npcm*
2177 F:      drivers/*/*/*npcm*
2178 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2179
2180 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2181 L:      [email protected] (subscribers-only)
2182 S:      Orphan
2183 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2184 F:      arch/arm/mach-s3c24xx/gta02.h
2185 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2186
2187 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2188 M:      Alexander Clouter <[email protected]>
2189 L:      [email protected] (moderated for non-subscribers)
2190 S:      Maintained
2191 W:      http://www.digriz.org.uk/ts78xx/kernel
2192 F:      arch/arm/mach-orion5x/ts78xx-*
2193
2194 ARM/OXNAS platform support
2195 M:      Neil Armstrong <[email protected]>
2196 L:      [email protected] (moderated for non-subscribers)
2197 L:      [email protected] (moderated for non-subscribers)
2198 S:      Maintained
2199 F:      arch/arm/boot/dts/ox8*.dts*
2200 F:      arch/arm/mach-oxnas/
2201 F:      drivers/power/reset/oxnas-restart.c
2202 N:      oxnas
2203
2204 ARM/PALM TREO SUPPORT
2205 M:      Tomas Cech <[email protected]>
2206 L:      [email protected]
2207 S:      Maintained
2208 W:      http://hackndev.com
2209 F:      arch/arm/mach-pxa/palmtreo.*
2210
2211 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2212 M:      Marek Vasut <[email protected]>
2213 L:      [email protected]
2214 S:      Maintained
2215 W:      http://hackndev.com
2216 F:      arch/arm/mach-pxa/include/mach/palmld.h
2217 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2218 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2219 F:      arch/arm/mach-pxa/palmld.c
2220 F:      arch/arm/mach-pxa/palmt5.*
2221 F:      arch/arm/mach-pxa/palmtc.c
2222 F:      arch/arm/mach-pxa/palmte2.*
2223 F:      arch/arm/mach-pxa/palmtx.c
2224
2225 ARM/PALMZ72 SUPPORT
2226 M:      Sergey Lapin <[email protected]>
2227 L:      [email protected]
2228 S:      Maintained
2229 W:      http://hackndev.com
2230 F:      arch/arm/mach-pxa/palmz72.*
2231
2232 ARM/PLEB SUPPORT
2233 M:      Peter Chubb <[email protected]>
2234 S:      Maintained
2235 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2236
2237 ARM/PT DIGITAL BOARD PORT
2238 M:      Stefan Eletzhofer <[email protected]>
2239 L:      [email protected] (moderated for non-subscribers)
2240 S:      Maintained
2241 W:      http://www.armlinux.org.uk/
2242
2243 ARM/QUALCOMM SUPPORT
2244 M:      Andy Gross <[email protected]>
2245 M:      Bjorn Andersson <[email protected]>
2246 L:      [email protected]
2247 S:      Maintained
2248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2249 F:      Documentation/devicetree/bindings/*/qcom*
2250 F:      Documentation/devicetree/bindings/soc/qcom/
2251 F:      arch/arm/boot/dts/qcom-*.dts
2252 F:      arch/arm/boot/dts/qcom-*.dtsi
2253 F:      arch/arm/mach-qcom/
2254 F:      arch/arm64/boot/dts/qcom/
2255 F:      drivers/*/*/qcom*
2256 F:      drivers/*/*/qcom/
2257 F:      drivers/*/pm8???-*
2258 F:      drivers/*/qcom*
2259 F:      drivers/*/qcom/
2260 F:      drivers/bluetooth/btqcomsmd.c
2261 F:      drivers/clocksource/timer-qcom.c
2262 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2263 F:      drivers/extcon/extcon-qcom*
2264 F:      drivers/i2c/busses/i2c-qcom-geni.c
2265 F:      drivers/i2c/busses/i2c-qup.c
2266 F:      drivers/iommu/msm*
2267 F:      drivers/mfd/ssbi.c
2268 F:      drivers/mmc/host/mmci_qcom*
2269 F:      drivers/mmc/host/sdhci-msm.c
2270 F:      drivers/pci/controller/dwc/pcie-qcom.c
2271 F:      drivers/phy/qualcomm/
2272 F:      drivers/power/*/msm*
2273 F:      drivers/reset/reset-qcom-*
2274 F:      drivers/scsi/ufs/ufs-qcom.*
2275 F:      drivers/spi/spi-geni-qcom.c
2276 F:      drivers/spi/spi-qcom-qspi.c
2277 F:      drivers/spi/spi-qup.c
2278 F:      drivers/tty/serial/msm_serial.c
2279 F:      drivers/usb/dwc3/dwc3-qcom.c
2280 F:      include/dt-bindings/*/qcom*
2281 F:      include/linux/*/qcom*
2282
2283 ARM/RADISYS ENP2611 MACHINE SUPPORT
2284 M:      Lennert Buytenhek <[email protected]>
2285 L:      [email protected] (moderated for non-subscribers)
2286 S:      Maintained
2287
2288 ARM/RDA MICRO ARCHITECTURE
2289 M:      Manivannan Sadhasivam <[email protected]>
2290 L:      [email protected] (moderated for non-subscribers)
2291 L:      [email protected] (moderated for non-subscribers)
2292 S:      Maintained
2293 F:      Documentation/devicetree/bindings/arm/rda.yaml
2294 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2295 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2296 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2297 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2298 F:      arch/arm/boot/dts/rda8810pl-*
2299 F:      drivers/clocksource/timer-rda.c
2300 F:      drivers/gpio/gpio-rda.c
2301 F:      drivers/irqchip/irq-rda-intc.c
2302 F:      drivers/tty/serial/rda-uart.c
2303
2304 ARM/REALTEK ARCHITECTURE
2305 M:      Andreas Färber <[email protected]>
2306 L:      [email protected] (moderated for non-subscribers)
2307 L:      [email protected] (moderated for non-subscribers)
2308 S:      Maintained
2309 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2310 F:      arch/arm/boot/dts/rtd*
2311 F:      arch/arm/mach-realtek/
2312 F:      arch/arm64/boot/dts/realtek/
2313
2314 ARM/RENESAS ARM64 ARCHITECTURE
2315 M:      Geert Uytterhoeven <[email protected]>
2316 M:      Magnus Damm <[email protected]>
2317 L:      [email protected]
2318 S:      Supported
2319 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2321 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2322 F:      arch/arm64/boot/dts/renesas/
2323 F:      drivers/soc/renesas/
2324 F:      include/linux/soc/renesas/
2325
2326 ARM/RISCPC ARCHITECTURE
2327 M:      Russell King <[email protected]>
2328 L:      [email protected] (moderated for non-subscribers)
2329 S:      Maintained
2330 W:      http://www.armlinux.org.uk/
2331 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2332 F:      arch/arm/include/asm/hardware/ioc.h
2333 F:      arch/arm/include/asm/hardware/iomd.h
2334 F:      arch/arm/include/asm/hardware/memc.h
2335 F:      arch/arm/mach-rpc/
2336 F:      drivers/net/ethernet/8390/etherh.c
2337 F:      drivers/net/ethernet/i825xx/ether1*
2338 F:      drivers/net/ethernet/seeq/ether3*
2339 F:      drivers/scsi/arm/
2340
2341 ARM/Rockchip SoC support
2342 M:      Heiko Stuebner <[email protected]>
2343 L:      [email protected] (moderated for non-subscribers)
2344 L:      [email protected]
2345 S:      Maintained
2346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2347 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2348 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2349 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2350 F:      arch/arm/boot/dts/rk3*
2351 F:      arch/arm/boot/dts/rv1108*
2352 F:      arch/arm/mach-rockchip/
2353 F:      drivers/*/*/*rockchip*
2354 F:      drivers/*/*rockchip*
2355 F:      drivers/clk/rockchip/
2356 F:      drivers/i2c/busses/i2c-rk3x.c
2357 F:      sound/soc/rockchip/
2358 N:      rockchip
2359
2360 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2361 M:      Kukjin Kim <[email protected]>
2362 M:      Krzysztof Kozlowski <[email protected]>
2363 L:      [email protected] (moderated for non-subscribers)
2364 L:      [email protected] (moderated for non-subscribers)
2365 S:      Maintained
2366 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2367 F:      Documentation/arm/samsung/
2368 F:      Documentation/devicetree/bindings/arm/samsung/
2369 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2370 F:      arch/arm/boot/dts/exynos*
2371 F:      arch/arm/boot/dts/s3c*
2372 F:      arch/arm/boot/dts/s5p*
2373 F:      arch/arm/mach-exynos*/
2374 F:      arch/arm/mach-s3c24*/
2375 F:      arch/arm/mach-s3c64xx/
2376 F:      arch/arm/mach-s5p*/
2377 F:      arch/arm/plat-samsung/
2378 F:      arch/arm64/boot/dts/exynos/
2379 F:      drivers/*/*/*s3c24*
2380 F:      drivers/*/*s3c24*
2381 F:      drivers/*/*s3c64xx*
2382 F:      drivers/*/*s5pv210*
2383 F:      drivers/memory/samsung/
2384 F:      drivers/soc/samsung/
2385 F:      drivers/tty/serial/samsung*
2386 F:      include/linux/soc/samsung/
2387 N:      exynos
2388
2389 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2390 M:      Kyungmin Park <[email protected]>
2391 L:      [email protected] (moderated for non-subscribers)
2392 S:      Maintained
2393 F:      arch/arm/mach-s5pv210/
2394
2395 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2396 M:      Kyungmin Park <[email protected]>
2397 M:      Kamil Debski <[email protected]>
2398 M:      Andrzej Hajda <[email protected]>
2399 L:      [email protected]
2400 L:      [email protected]
2401 S:      Maintained
2402 F:      drivers/media/platform/s5p-g2d/
2403
2404 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2405 M:      Marek Szyprowski <[email protected]>
2406 L:      [email protected] (moderated for non-subscribers)
2407 L:      [email protected]
2408 S:      Maintained
2409 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2410 F:      drivers/media/platform/s5p-cec/
2411
2412 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2413 M:      Andrzej Pietrasiewicz <[email protected]>
2414 M:      Jacek Anaszewski <[email protected]>
2415 M:      Sylwester Nawrocki <[email protected]>
2416 L:      [email protected]
2417 L:      [email protected]
2418 S:      Maintained
2419 F:      drivers/media/platform/s5p-jpeg/
2420
2421 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2422 M:      Kyungmin Park <[email protected]>
2423 M:      Kamil Debski <[email protected]>
2424 M:      Jeongtae Park <[email protected]>
2425 M:      Andrzej Hajda <[email protected]>
2426 L:      [email protected]
2427 L:      [email protected]
2428 S:      Maintained
2429 F:      drivers/media/platform/s5p-mfc/
2430
2431 ARM/SHMOBILE ARM ARCHITECTURE
2432 M:      Geert Uytterhoeven <[email protected]>
2433 M:      Magnus Damm <[email protected]>
2434 L:      [email protected]
2435 S:      Supported
2436 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2438 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2439 F:      arch/arm/boot/dts/emev2*
2440 F:      arch/arm/boot/dts/gr-peach*
2441 F:      arch/arm/boot/dts/iwg20d-q7*
2442 F:      arch/arm/boot/dts/r7s*
2443 F:      arch/arm/boot/dts/r8a*
2444 F:      arch/arm/boot/dts/r9a*
2445 F:      arch/arm/boot/dts/sh*
2446 F:      arch/arm/configs/shmobile_defconfig
2447 F:      arch/arm/include/debug/renesas-scif.S
2448 F:      arch/arm/mach-shmobile/
2449 F:      drivers/soc/renesas/
2450 F:      include/linux/soc/renesas/
2451
2452 ARM/SOCFPGA ARCHITECTURE
2453 M:      Dinh Nguyen <[email protected]>
2454 S:      Maintained
2455 W:      http://www.rocketboards.org
2456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2457 F:      arch/arm/boot/dts/socfpga*
2458 F:      arch/arm/configs/socfpga_defconfig
2459 F:      arch/arm/mach-socfpga/
2460 F:      arch/arm64/boot/dts/altera/
2461 F:      arch/arm64/boot/dts/intel/
2462
2463 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2464 M:      Dinh Nguyen <[email protected]>
2465 S:      Maintained
2466 F:      drivers/clk/socfpga/
2467
2468 ARM/SOCFPGA EDAC SUPPORT
2469 M:      Thor Thayer <[email protected]>
2470 S:      Maintained
2471 F:      drivers/edac/altera_edac.
2472
2473 ARM/SPREADTRUM SoC SUPPORT
2474 M:      Orson Zhai <[email protected]>
2475 M:      Baolin Wang <[email protected]>
2476 M:      Chunyan Zhang <[email protected]>
2477 S:      Maintained
2478 F:      arch/arm64/boot/dts/sprd
2479 N:      sprd
2480 N:      sc27xx
2481 N:      sc2731
2482
2483 ARM/STI ARCHITECTURE
2484 M:      Patrice Chotard <[email protected]>
2485 L:      [email protected] (moderated for non-subscribers)
2486 S:      Maintained
2487 W:      http://www.stlinux.com
2488 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2489 F:      arch/arm/boot/dts/sti*
2490 F:      arch/arm/mach-sti/
2491 F:      drivers/ata/ahci_st.c
2492 F:      drivers/char/hw_random/st-rng.c
2493 F:      drivers/clocksource/arm_global_timer.c
2494 F:      drivers/clocksource/clksrc_st_lpc.c
2495 F:      drivers/cpufreq/sti-cpufreq.c
2496 F:      drivers/dma/st_fdma*
2497 F:      drivers/i2c/busses/i2c-st.c
2498 F:      drivers/media/platform/sti/c8sectpfe/
2499 F:      drivers/media/rc/st_rc.c
2500 F:      drivers/mmc/host/sdhci-st.c
2501 F:      drivers/phy/st/phy-miphy28lp.c
2502 F:      drivers/phy/st/phy-stih407-usb.c
2503 F:      drivers/pinctrl/pinctrl-st.c
2504 F:      drivers/remoteproc/st_remoteproc.c
2505 F:      drivers/remoteproc/st_slim_rproc.c
2506 F:      drivers/reset/sti/
2507 F:      drivers/rtc/rtc-st-lpc.c
2508 F:      drivers/tty/serial/st-asc.c
2509 F:      drivers/usb/dwc3/dwc3-st.c
2510 F:      drivers/usb/host/ehci-st.c
2511 F:      drivers/usb/host/ohci-st.c
2512 F:      drivers/watchdog/st_lpc_wdt.c
2513 F:      include/linux/remoteproc/st_slim_rproc.h
2514
2515 ARM/STM32 ARCHITECTURE
2516 M:      Maxime Coquelin <[email protected]>
2517 M:      Alexandre Torgue <[email protected]>
2518 L:      [email protected] (moderated for non-subscribers)
2519 L:      [email protected] (moderated for non-subscribers)
2520 S:      Maintained
2521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2522 F:      arch/arm/boot/dts/stm32*
2523 F:      arch/arm/mach-stm32/
2524 F:      drivers/clocksource/armv7m_systick.c
2525 N:      stm32
2526 N:      stm
2527
2528 ARM/Synaptics SoC support
2529 M:      Jisheng Zhang <[email protected]>
2530 M:      Sebastian Hesselbarth <[email protected]>
2531 L:      [email protected] (moderated for non-subscribers)
2532 S:      Maintained
2533 F:      arch/arm/boot/dts/berlin*
2534 F:      arch/arm/mach-berlin/
2535 F:      arch/arm64/boot/dts/synaptics/
2536
2537 ARM/TANGO ARCHITECTURE
2538 M:      Marc Gonzalez <[email protected]>
2539 M:      Mans Rullgard <[email protected]>
2540 L:      [email protected]
2541 S:      Odd Fixes
2542 N:      tango
2543
2544 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2545 M:      Lennert Buytenhek <[email protected]>
2546 L:      [email protected] (moderated for non-subscribers)
2547 S:      Maintained
2548
2549 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2550 M:      Hans Verkuil <[email protected]>
2551 L:      [email protected]
2552 L:      [email protected]
2553 S:      Maintained
2554 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2555 F:      drivers/media/platform/tegra-cec/
2556
2557 ARM/TETON BGA MACHINE SUPPORT
2558 M:      "Mark F. Brown" <[email protected]>
2559 L:      [email protected] (moderated for non-subscribers)
2560 S:      Maintained
2561
2562 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2563 M:      Santosh Shilimkar <[email protected]>
2564 L:      [email protected]
2565 S:      Maintained
2566 F:      drivers/memory/*emif*
2567
2568 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2569 M:      Santosh Shilimkar <[email protected]>
2570 L:      [email protected] (moderated for non-subscribers)
2571 S:      Maintained
2572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2573 F:      arch/arm/boot/dts/keystone-*
2574 F:      arch/arm/mach-keystone/
2575
2576 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2577 M:      Santosh Shilimkar <[email protected]>
2578 L:      [email protected]
2579 S:      Maintained
2580 F:      drivers/clk/keystone/
2581
2582 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2583 M:      Santosh Shilimkar <[email protected]>
2584 L:      [email protected] (moderated for non-subscribers)
2585 L:      [email protected]
2586 S:      Maintained
2587 F:      drivers/clocksource/timer-keystone.c
2588
2589 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2590 M:      Santosh Shilimkar <[email protected]>
2591 L:      [email protected]
2592 S:      Maintained
2593 F:      drivers/power/reset/keystone-reset.c
2594
2595 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2596 M:      Tero Kristo <[email protected]>
2597 M:      Nishanth Menon <[email protected]>
2598 L:      [email protected] (moderated for non-subscribers)
2599 S:      Supported
2600 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2601 F:      arch/arm64/boot/dts/ti/Makefile
2602 F:      arch/arm64/boot/dts/ti/k3-*
2603 F:      include/dt-bindings/pinctrl/k3.h
2604
2605 ARM/THECUS N2100 MACHINE SUPPORT
2606 M:      Lennert Buytenhek <[email protected]>
2607 L:      [email protected] (moderated for non-subscribers)
2608 S:      Maintained
2609
2610 ARM/TOSA MACHINE SUPPORT
2611 M:      Dmitry Eremin-Solenikov <[email protected]>
2612 M:      Dirk Opfer <[email protected]>
2613 S:      Maintained
2614
2615 ARM/UNIPHIER ARCHITECTURE
2616 M:      Masahiro Yamada <[email protected]>
2617 L:      [email protected] (moderated for non-subscribers)
2618 S:      Maintained
2619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2620 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2621 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2622 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2623 F:      arch/arm/boot/dts/uniphier*
2624 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2625 F:      arch/arm/mach-uniphier/
2626 F:      arch/arm/mm/cache-uniphier.c
2627 F:      arch/arm64/boot/dts/socionext/uniphier*
2628 F:      drivers/bus/uniphier-system-bus.c
2629 F:      drivers/clk/uniphier/
2630 F:      drivers/dma/uniphier-mdmac.c
2631 F:      drivers/gpio/gpio-uniphier.c
2632 F:      drivers/i2c/busses/i2c-uniphier*
2633 F:      drivers/irqchip/irq-uniphier-aidet.c
2634 F:      drivers/mmc/host/uniphier-sd.c
2635 F:      drivers/pinctrl/uniphier/
2636 F:      drivers/reset/reset-uniphier.c
2637 F:      drivers/tty/serial/8250/8250_uniphier.c
2638 N:      uniphier
2639
2640 ARM/VERSATILE EXPRESS PLATFORM
2641 M:      Liviu Dudau <[email protected]>
2642 M:      Sudeep Holla <[email protected]>
2643 M:      Lorenzo Pieralisi <[email protected]>
2644 L:      [email protected] (moderated for non-subscribers)
2645 S:      Maintained
2646 F:      */*/*/vexpress*
2647 F:      */*/vexpress*
2648 F:      arch/arm/boot/dts/vexpress*
2649 F:      arch/arm/mach-vexpress/
2650 F:      arch/arm64/boot/dts/arm/
2651 F:      drivers/clk/versatile/clk-vexpress-osc.c
2652 F:      drivers/clocksource/timer-versatile.c
2653 N:      mps2
2654
2655 ARM/VFP SUPPORT
2656 M:      Russell King <[email protected]>
2657 L:      [email protected] (moderated for non-subscribers)
2658 S:      Maintained
2659 W:      http://www.armlinux.org.uk/
2660 F:      arch/arm/vfp/
2661
2662 ARM/VOIPAC PXA270 SUPPORT
2663 M:      Marek Vasut <[email protected]>
2664 L:      [email protected] (moderated for non-subscribers)
2665 S:      Maintained
2666 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2667 F:      arch/arm/mach-pxa/vpac270.c
2668
2669 ARM/VT8500 ARM ARCHITECTURE
2670 M:      Tony Prisk <[email protected]>
2671 L:      [email protected] (moderated for non-subscribers)
2672 S:      Maintained
2673 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2674 F:      arch/arm/mach-vt8500/
2675 F:      drivers/clocksource/timer-vt8500.c
2676 F:      drivers/i2c/busses/i2c-wmt.c
2677 F:      drivers/mmc/host/wmt-sdmmc.c
2678 F:      drivers/pwm/pwm-vt8500.c
2679 F:      drivers/rtc/rtc-vt8500.c
2680 F:      drivers/tty/serial/vt8500_serial.c
2681 F:      drivers/usb/host/ehci-platform.c
2682 F:      drivers/usb/host/uhci-platform.c
2683 F:      drivers/video/fbdev/vt8500lcdfb.*
2684 F:      drivers/video/fbdev/wm8505fb*
2685 F:      drivers/video/fbdev/wmt_ge_rops.*
2686
2687 ARM/ZIPIT Z2 SUPPORT
2688 M:      Marek Vasut <[email protected]>
2689 L:      [email protected] (moderated for non-subscribers)
2690 S:      Maintained
2691 F:      arch/arm/mach-pxa/include/mach/z2.h
2692 F:      arch/arm/mach-pxa/z2.c
2693
2694 ARM/ZTE ARCHITECTURE
2695 M:      Jun Nie <[email protected]>
2696 M:      Shawn Guo <[email protected]>
2697 L:      [email protected] (moderated for non-subscribers)
2698 S:      Maintained
2699 F:      Documentation/devicetree/bindings/arm/zte.yaml
2700 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2701 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2702 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2703 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2704 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2705 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2706 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2707 F:      Documentation/devicetree/bindings/soc/zte/
2708 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2709 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2710 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2711 F:      arch/arm/boot/dts/zx2967*
2712 F:      arch/arm/mach-zx/
2713 F:      arch/arm64/boot/dts/zte/
2714 F:      drivers/clk/zte/
2715 F:      drivers/dma/zx_dma.c
2716 F:      drivers/gpio/gpio-zx.c
2717 F:      drivers/i2c/busses/i2c-zx2967.c
2718 F:      drivers/mmc/host/dw_mmc-zx.*
2719 F:      drivers/pinctrl/zte/
2720 F:      drivers/soc/zte/
2721 F:      drivers/thermal/zx2967_thermal.c
2722 F:      drivers/watchdog/zx2967_wdt.c
2723 F:      include/dt-bindings/clock/zx2967*.h
2724 F:      include/dt-bindings/soc/zte,*.h
2725 F:      sound/soc/codecs/zx_aud96p22.c
2726 F:      sound/soc/zte/
2727
2728 ARM/ZYNQ ARCHITECTURE
2729 M:      Michal Simek <[email protected]>
2730 L:      [email protected] (moderated for non-subscribers)
2731 S:      Supported
2732 W:      http://wiki.xilinx.com
2733 T:      git https://github.com/Xilinx/linux-xlnx.git
2734 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2735 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2736 F:      arch/arm/mach-zynq/
2737 F:      drivers/block/xsysace.c
2738 F:      drivers/clocksource/timer-cadence-ttc.c
2739 F:      drivers/cpuidle/cpuidle-zynq.c
2740 F:      drivers/edac/synopsys_edac.c
2741 F:      drivers/i2c/busses/i2c-cadence.c
2742 F:      drivers/i2c/busses/i2c-xiic.c
2743 F:      drivers/mmc/host/sdhci-of-arasan.c
2744 N:      zynq
2745 N:      xilinx
2746
2747 ARM64 PORT (AARCH64 ARCHITECTURE)
2748 M:      Catalin Marinas <[email protected]>
2749 M:      Will Deacon <[email protected]>
2750 L:      [email protected] (moderated for non-subscribers)
2751 S:      Maintained
2752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2753 F:      Documentation/arm64/
2754 F:      arch/arm64/
2755 F:      tools/testing/selftests/arm64/
2756 X:      arch/arm64/boot/dts/
2757
2758 AS3645A LED FLASH CONTROLLER DRIVER
2759 M:      Sakari Ailus <[email protected]>
2760 L:      [email protected]
2761 S:      Maintained
2762 F:      drivers/leds/leds-as3645a.c
2763
2764 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2765 M:      Tianshu Qiu <[email protected]>
2766 L:      [email protected]
2767 S:      Maintained
2768 T:      git git://linuxtv.org/media_tree.git
2769 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2770 F:      drivers/media/i2c/ak7375.c
2771
2772 ASAHI KASEI AK8974 DRIVER
2773 M:      Linus Walleij <[email protected]>
2774 L:      [email protected]
2775 S:      Supported
2776 W:      http://www.akm.com/
2777 F:      drivers/iio/magnetometer/ak8974.c
2778
2779 ASC7621 HARDWARE MONITOR DRIVER
2780 M:      George Joseph <[email protected]>
2781 L:      [email protected]
2782 S:      Maintained
2783 F:      Documentation/hwmon/asc7621.rst
2784 F:      drivers/hwmon/asc7621.c
2785
2786 ASPEED PINCTRL DRIVERS
2787 M:      Andrew Jeffery <[email protected]>
2788 L:      [email protected] (moderated for non-subscribers)
2789 L:      [email protected] (moderated for non-subscribers)
2790 L:      [email protected]
2791 S:      Maintained
2792 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2793 F:      drivers/pinctrl/aspeed/
2794
2795 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2796 M:      Eddie James <[email protected]>
2797 L:      [email protected] (moderated for non-subscribers)
2798 S:      Maintained
2799 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2800 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2801 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2802
2803 ASPEED VIDEO ENGINE DRIVER
2804 M:      Eddie James <[email protected]>
2805 L:      [email protected]
2806 L:      [email protected] (moderated for non-subscribers)
2807 S:      Maintained
2808 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2809 F:      drivers/media/platform/aspeed-video.c
2810
2811 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2812 M:      Corentin Chary <[email protected]>
2813 L:      [email protected]
2814 L:      [email protected]
2815 S:      Maintained
2816 W:      http://acpi4asus.sf.net
2817 F:      drivers/platform/x86/asus*.c
2818 F:      drivers/platform/x86/eeepc*.c
2819
2820 ASUS WIRELESS RADIO CONTROL DRIVER
2821 M:      João Paulo Rechi Vita <[email protected]>
2822 L:      [email protected]
2823 S:      Maintained
2824 F:      drivers/platform/x86/asus-wireless.c
2825
2826 ASYMMETRIC KEYS
2827 M:      David Howells <[email protected]>
2828 L:      [email protected]
2829 S:      Maintained
2830 F:      Documentation/crypto/asymmetric-keys.txt
2831 F:      crypto/asymmetric_keys/
2832 F:      include/crypto/pkcs7.h
2833 F:      include/crypto/public_key.h
2834 F:      include/linux/verification.h
2835
2836 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2837 R:      Dan Williams <[email protected]>
2838 S:      Odd fixes
2839 W:      http://sourceforge.net/projects/xscaleiop
2840 F:      Documentation/crypto/async-tx-api.txt
2841 F:      crypto/async_tx/
2842 F:      drivers/dma/
2843 F:      include/linux/async_tx.h
2844 F:      include/linux/dmaengine.h
2845
2846 AT24 EEPROM DRIVER
2847 M:      Bartosz Golaszewski <[email protected]>
2848 L:      [email protected]
2849 S:      Maintained
2850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2851 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2852 F:      drivers/misc/eeprom/at24.c
2853
2854 ATA OVER ETHERNET (AOE) DRIVER
2855 M:      "Justin Sanders" <[email protected]>
2856 S:      Supported
2857 W:      http://www.openaoe.org/
2858 F:      Documentation/admin-guide/aoe/
2859 F:      drivers/block/aoe/
2860
2861 ATHEROS 71XX/9XXX GPIO DRIVER
2862 M:      Alban Bedel <[email protected]>
2863 S:      Maintained
2864 W:      https://github.com/AlbanBedel/linux
2865 T:      git git://github.com/AlbanBedel/linux
2866 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2867 F:      drivers/gpio/gpio-ath79.c
2868
2869 ATHEROS 71XX/9XXX USB PHY DRIVER
2870 M:      Alban Bedel <[email protected]>
2871 S:      Maintained
2872 W:      https://github.com/AlbanBedel/linux
2873 T:      git git://github.com/AlbanBedel/linux
2874 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2875 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2876
2877 ATHEROS ATH GENERIC UTILITIES
2878 M:      Kalle Valo <[email protected]>
2879 L:      [email protected]
2880 S:      Supported
2881 F:      drivers/net/wireless/ath/*
2882
2883 ATHEROS ATH5K WIRELESS DRIVER
2884 M:      Jiri Slaby <[email protected]>
2885 M:      Nick Kossifidis <[email protected]>
2886 M:      Luis Chamberlain <[email protected]>
2887 L:      [email protected]
2888 S:      Maintained
2889 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2890 F:      drivers/net/wireless/ath/ath5k/
2891
2892 ATHEROS ATH6KL WIRELESS DRIVER
2893 M:      Kalle Valo <[email protected]>
2894 L:      [email protected]
2895 S:      Supported
2896 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2898 F:      drivers/net/wireless/ath/ath6kl/
2899
2900 ATI_REMOTE2 DRIVER
2901 M:      Ville Syrjala <[email protected]>
2902 S:      Maintained
2903 F:      drivers/input/misc/ati_remote2.c
2904
2905 ATK0110 HWMON DRIVER
2906 M:      Luca Tettamanti <[email protected]>
2907 L:      [email protected]
2908 S:      Maintained
2909 F:      drivers/hwmon/asus_atk0110.c
2910
2911 ATLX ETHERNET DRIVERS
2912 M:      Jay Cliburn <[email protected]>
2913 M:      Chris Snook <[email protected]>
2914 L:      [email protected]
2915 S:      Maintained
2916 W:      http://sourceforge.net/projects/atl1
2917 W:      http://atl1.sourceforge.net
2918 F:      drivers/net/ethernet/atheros/
2919
2920 ATM
2921 M:      Chas Williams <[email protected]>
2922 L:      [email protected] (moderated for non-subscribers)
2923 L:      [email protected]
2924 S:      Maintained
2925 W:      http://linux-atm.sourceforge.net
2926 F:      drivers/atm/
2927 F:      include/linux/atm*
2928 F:      include/uapi/linux/atm*
2929
2930 ATMEL MACB ETHERNET DRIVER
2931 M:      Nicolas Ferre <[email protected]>
2932 M:      Claudiu Beznea <[email protected]>
2933 S:      Supported
2934 F:      drivers/net/ethernet/cadence/
2935
2936 ATMEL MAXTOUCH DRIVER
2937 M:      Nick Dyer <[email protected]>
2938 S:      Maintained
2939 T:      git git://github.com/ndyer/linux.git
2940 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2941 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2942
2943 ATMEL WIRELESS DRIVER
2944 M:      Simon Kelley <[email protected]>
2945 L:      [email protected]
2946 S:      Maintained
2947 W:      http://www.thekelleys.org.uk/atmel
2948 W:      http://atmelwlandriver.sourceforge.net/
2949 F:      drivers/net/wireless/atmel/atmel*
2950
2951 ATOMIC INFRASTRUCTURE
2952 M:      Will Deacon <[email protected]>
2953 M:      Peter Zijlstra <[email protected]>
2954 R:      Boqun Feng <[email protected]>
2955 L:      [email protected]
2956 S:      Maintained
2957 F:      arch/*/include/asm/atomic*.h
2958 F:      include/*/atomic*.h
2959 F:      scripts/atomic/
2960
2961 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2962 M:      Bradley Grove <[email protected]>
2963 L:      [email protected]
2964 S:      Supported
2965 W:      http://www.attotech.com
2966 F:      drivers/scsi/esas2r
2967
2968 ATUSB IEEE 802.15.4 RADIO DRIVER
2969 M:      Stefan Schmidt <[email protected]>
2970 L:      [email protected]
2971 S:      Maintained
2972 F:      drivers/net/ieee802154/at86rf230.h
2973 F:      drivers/net/ieee802154/atusb.c
2974 F:      drivers/net/ieee802154/atusb.h
2975
2976 AUDIT SUBSYSTEM
2977 M:      Paul Moore <[email protected]>
2978 M:      Eric Paris <[email protected]>
2979 L:      [email protected] (moderated for non-subscribers)
2980 S:      Supported
2981 W:      https://github.com/linux-audit
2982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2983 F:      include/linux/audit.h
2984 F:      include/uapi/linux/audit.h
2985 F:      kernel/audit*
2986
2987 AUXILIARY DISPLAY DRIVERS
2988 M:      Miguel Ojeda Sandonis <[email protected]>
2989 S:      Maintained
2990 F:      drivers/auxdisplay/
2991 F:      include/linux/cfag12864b.h
2992
2993 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2994 M:      Andreas Klinger <[email protected]>
2995 L:      [email protected]
2996 S:      Maintained
2997 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2998 F:      drivers/iio/adc/hx711.c
2999
3000 AX.25 NETWORK LAYER
3001 M:      Ralf Baechle <[email protected]>
3002 L:      [email protected]
3003 S:      Maintained
3004 W:      http://www.linux-ax25.org/
3005 F:      include/net/ax25.h
3006 F:      include/uapi/linux/ax25.h
3007 F:      net/ax25/
3008
3009 AXENTIA ARM DEVICES
3010 M:      Peter Rosin <[email protected]>
3011 L:      [email protected] (moderated for non-subscribers)
3012 S:      Maintained
3013 F:      arch/arm/boot/dts/at91-linea.dtsi
3014 F:      arch/arm/boot/dts/at91-natte.dtsi
3015 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3016 F:      arch/arm/boot/dts/at91-tse850-3.dts
3017
3018 AXENTIA ASOC DRIVERS
3019 M:      Peter Rosin <[email protected]>
3020 L:      [email protected] (moderated for non-subscribers)
3021 S:      Maintained
3022 F:      Documentation/devicetree/bindings/sound/axentia,*
3023 F:      sound/soc/atmel/tse850-pcm5142.c
3024
3025 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3026 M:      Nuno Sá <[email protected]>
3027 L:      [email protected]
3028 S:      Supported
3029 W:      http://ez.analog.com/community/linux-device-drivers
3030 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3031 F:      drivers/hwmon/axi-fan-control.c
3032
3033 AXXIA I2C CONTROLLER
3034 M:      Krzysztof Adamski <[email protected]>
3035 L:      [email protected]
3036 S:      Maintained
3037 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3038 F:      drivers/i2c/busses/i2c-axxia.c
3039
3040 AZ6007 DVB DRIVER
3041 M:      Mauro Carvalho Chehab <[email protected]>
3042 L:      [email protected]
3043 S:      Maintained
3044 W:      https://linuxtv.org
3045 T:      git git://linuxtv.org/media_tree.git
3046 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3047
3048 AZTECH FM RADIO RECEIVER DRIVER
3049 M:      Hans Verkuil <[email protected]>
3050 L:      [email protected]
3051 S:      Maintained
3052 W:      https://linuxtv.org
3053 T:      git git://linuxtv.org/media_tree.git
3054 F:      drivers/media/radio/radio-aztech*
3055
3056 B43 WIRELESS DRIVER
3057 L:      [email protected]
3058 L:      [email protected]
3059 S:      Odd Fixes
3060 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3061 F:      drivers/net/wireless/broadcom/b43/
3062
3063 B43LEGACY WIRELESS DRIVER
3064 M:      Larry Finger <[email protected]>
3065 L:      [email protected]
3066 L:      [email protected]
3067 S:      Maintained
3068 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3069 F:      drivers/net/wireless/broadcom/b43legacy/
3070
3071 BACKLIGHT CLASS/SUBSYSTEM
3072 M:      Lee Jones <[email protected]>
3073 M:      Daniel Thompson <[email protected]>
3074 M:      Jingoo Han <[email protected]>
3075 L:      [email protected]
3076 S:      Maintained
3077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3078 F:      Documentation/ABI/stable/sysfs-class-backlight
3079 F:      Documentation/ABI/testing/sysfs-class-backlight
3080 F:      Documentation/devicetree/bindings/leds/backlight
3081 F:      drivers/video/backlight/
3082 F:      include/linux/backlight.h
3083 F:      include/linux/pwm_backlight.h
3084
3085 BATMAN ADVANCED
3086 M:      Marek Lindner <[email protected]>
3087 M:      Simon Wunderlich <[email protected]>
3088 M:      Antonio Quartulli <[email protected]>
3089 M:      Sven Eckelmann <[email protected]>
3090 L:      [email protected] (moderated for non-subscribers)
3091 S:      Maintained
3092 W:      https://www.open-mesh.org/
3093 Q:      https://patchwork.open-mesh.org/project/batman/list/
3094 B:      https://www.open-mesh.org/projects/batman-adv/issues
3095 C:      irc://chat.freenode.net/batman
3096 T:      git https://git.open-mesh.org/linux-merge.git
3097 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3098 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3099 F:      Documentation/networking/batman-adv.rst
3100 F:      include/uapi/linux/batadv_packet.h
3101 F:      include/uapi/linux/batman_adv.h
3102 F:      net/batman-adv/
3103
3104 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3105 M:      Thomas Sailer <[email protected]>
3106 L:      [email protected]
3107 S:      Maintained
3108 W:      http://www.baycom.org/~tom/ham/ham.html
3109 F:      drivers/net/hamradio/baycom*
3110
3111 BCACHE (BLOCK LAYER CACHE)
3112 M:      Coly Li <[email protected]>
3113 M:      Kent Overstreet <[email protected]>
3114 L:      [email protected]
3115 S:      Maintained
3116 W:      http://bcache.evilpiepirate.org
3117 C:      irc://irc.oftc.net/bcache
3118 F:      drivers/md/bcache/
3119
3120 BDISP ST MEDIA DRIVER
3121 M:      Fabien Dessenne <[email protected]>
3122 L:      [email protected]
3123 S:      Supported
3124 W:      https://linuxtv.org
3125 T:      git git://linuxtv.org/media_tree.git
3126 F:      drivers/media/platform/sti/bdisp
3127
3128 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3129 M:      Dariusz Marcinkiewicz <[email protected]>
3130 L:      [email protected]
3131 S:      Maintained
3132 F:      drivers/net/ethernet/ec_bhf.c
3133
3134 BEFS FILE SYSTEM
3135 M:      Luis de Bethencourt <[email protected]>
3136 M:      Salah Triki <[email protected]>
3137 S:      Maintained
3138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3139 F:      Documentation/filesystems/befs.rst
3140 F:      fs/befs/
3141
3142 BFQ I/O SCHEDULER
3143 M:      Paolo Valente <[email protected]>
3144 M:      Jens Axboe <[email protected]>
3145 L:      [email protected]
3146 S:      Maintained
3147 F:      Documentation/block/bfq-iosched.rst
3148 F:      block/bfq-*
3149
3150 BFS FILE SYSTEM
3151 M:      "Tigran A. Aivazian" <[email protected]>
3152 S:      Maintained
3153 F:      Documentation/filesystems/bfs.rst
3154 F:      fs/bfs/
3155 F:      include/uapi/linux/bfs_fs.h
3156
3157 BLINKM RGB LED DRIVER
3158 M:      Jan-Simon Moeller <[email protected]>
3159 S:      Maintained
3160 F:      drivers/leds/leds-blinkm.c
3161
3162 BLOCK LAYER
3163 M:      Jens Axboe <[email protected]>
3164 L:      [email protected]
3165 S:      Maintained
3166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3167 F:      block/
3168 F:      drivers/block/
3169 F:      kernel/trace/blktrace.c
3170 F:      lib/sbitmap.c
3171
3172 BLOCK2MTD DRIVER
3173 M:      Joern Engel <[email protected]>
3174 L:      [email protected]
3175 S:      Maintained
3176 F:      drivers/mtd/devices/block2mtd.c
3177
3178 BLUETOOTH DRIVERS
3179 M:      Marcel Holtmann <[email protected]>
3180 M:      Johan Hedberg <[email protected]>
3181 L:      [email protected]
3182 S:      Maintained
3183 W:      http://www.bluez.org/
3184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3186 F:      drivers/bluetooth/
3187
3188 BLUETOOTH SUBSYSTEM
3189 M:      Marcel Holtmann <[email protected]>
3190 M:      Johan Hedberg <[email protected]>
3191 L:      [email protected]
3192 S:      Maintained
3193 W:      http://www.bluez.org/
3194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3196 F:      include/net/bluetooth/
3197 F:      net/bluetooth/
3198
3199 BONDING DRIVER
3200 M:      Jay Vosburgh <[email protected]>
3201 M:      Veaceslav Falico <[email protected]>
3202 M:      Andy Gospodarek <[email protected]>
3203 L:      [email protected]
3204 S:      Supported
3205 W:      http://sourceforge.net/projects/bonding/
3206 F:      drivers/net/bonding/
3207 F:      include/uapi/linux/if_bonding.h
3208
3209 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3210 M:      Dan Robertson <[email protected]>
3211 L:      [email protected]
3212 S:      Maintained
3213 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3214 F:      drivers/iio/accel/bma400*
3215
3216 BPF (Safe dynamic programs and tools)
3217 M:      Alexei Starovoitov <[email protected]>
3218 M:      Daniel Borkmann <[email protected]>
3219 R:      Martin KaFai Lau <[email protected]>
3220 R:      Song Liu <[email protected]>
3221 R:      Yonghong Song <[email protected]>
3222 R:      Andrii Nakryiko <[email protected]>
3223 R:      John Fastabend <[email protected]>
3224 R:      KP Singh <[email protected]>
3225 L:      [email protected]
3226 L:      [email protected]
3227 S:      Supported
3228 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3231 F:      Documentation/bpf/
3232 F:      Documentation/networking/filter.rst
3233 F:      arch/*/net/*
3234 F:      include/linux/bpf*
3235 F:      include/linux/filter.h
3236 F:      include/trace/events/xdp.h
3237 F:      include/uapi/linux/bpf*
3238 F:      include/uapi/linux/filter.h
3239 F:      kernel/bpf/
3240 F:      kernel/trace/bpf_trace.c
3241 F:      lib/test_bpf.c
3242 F:      net/bpf/
3243 F:      net/core/filter.c
3244 F:      net/sched/act_bpf.c
3245 F:      net/sched/cls_bpf.c
3246 F:      samples/bpf/
3247 F:      tools/bpf/
3248 F:      tools/lib/bpf/
3249 F:      tools/testing/selftests/bpf/
3250 N:      bpf
3251 K:      bpf
3252
3253 BPF JIT for ARM
3254 M:      Shubham Bansal <[email protected]>
3255 L:      [email protected]
3256 L:      [email protected]
3257 S:      Maintained
3258 F:      arch/arm/net/
3259
3260 BPF JIT for ARM64
3261 M:      Daniel Borkmann <[email protected]>
3262 M:      Alexei Starovoitov <[email protected]>
3263 M:      Zi Shen Lim <[email protected]>
3264 L:      [email protected]
3265 L:      [email protected]
3266 S:      Supported
3267 F:      arch/arm64/net/
3268
3269 BPF JIT for MIPS (32-BIT AND 64-BIT)
3270 M:      Paul Burton <[email protected]>
3271 L:      [email protected]
3272 L:      [email protected]
3273 S:      Maintained
3274 F:      arch/mips/net/
3275
3276 BPF JIT for NFP NICs
3277 M:      Jakub Kicinski <[email protected]>
3278 L:      [email protected]
3279 L:      [email protected]
3280 S:      Supported
3281 F:      drivers/net/ethernet/netronome/nfp/bpf/
3282
3283 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3284 M:      Naveen N. Rao <[email protected]>
3285 M:      Sandipan Das <[email protected]>
3286 L:      [email protected]
3287 L:      [email protected]
3288 S:      Maintained
3289 F:      arch/powerpc/net/
3290
3291 BPF JIT for RISC-V (32-bit)
3292 M:      Luke Nelson <[email protected]>
3293 M:      Xi Wang <[email protected]>
3294 L:      [email protected]
3295 L:      [email protected]
3296 S:      Maintained
3297 F:      arch/riscv/net/
3298 X:      arch/riscv/net/bpf_jit_comp64.c
3299
3300 BPF JIT for RISC-V (64-bit)
3301 M:      Björn Töpel <[email protected]>
3302 L:      [email protected]
3303 L:      [email protected]
3304 S:      Maintained
3305 F:      arch/riscv/net/
3306 X:      arch/riscv/net/bpf_jit_comp32.c
3307
3308 BPF JIT for S390
3309 M:      Ilya Leoshkevich <[email protected]>
3310 M:      Heiko Carstens <[email protected]>
3311 M:      Vasily Gorbik <[email protected]>
3312 L:      [email protected]
3313 L:      [email protected]
3314 S:      Maintained
3315 F:      arch/s390/net/
3316 X:      arch/s390/net/pnet.c
3317
3318 BPF JIT for SPARC (32-BIT AND 64-BIT)
3319 M:      David S. Miller <[email protected]>
3320 L:      [email protected]
3321 L:      [email protected]
3322 S:      Maintained
3323 F:      arch/sparc/net/
3324
3325 BPF JIT for X86 32-BIT
3326 M:      Wang YanQing <[email protected]>
3327 L:      [email protected]
3328 L:      [email protected]
3329 S:      Maintained
3330 F:      arch/x86/net/bpf_jit_comp32.c
3331
3332 BPF JIT for X86 64-BIT
3333 M:      Alexei Starovoitov <[email protected]>
3334 M:      Daniel Borkmann <[email protected]>
3335 L:      [email protected]
3336 L:      [email protected]
3337 S:      Supported
3338 F:      arch/x86/net/
3339 X:      arch/x86/net/bpf_jit_comp32.c
3340
3341 BROADCOM B44 10/100 ETHERNET DRIVER
3342 M:      Michael Chan <[email protected]>
3343 L:      [email protected]
3344 S:      Supported
3345 F:      drivers/net/ethernet/broadcom/b44.*
3346
3347 BROADCOM B53 ETHERNET SWITCH DRIVER
3348 M:      Florian Fainelli <[email protected]>
3349 L:      [email protected]
3350 L:      [email protected] (subscribers-only)
3351 S:      Supported
3352 F:      drivers/net/dsa/b53/*
3353 F:      include/linux/platform_data/b53.h
3354
3355 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3356 M:      Nicolas Saenz Julienne <[email protected]>
3357 L:      [email protected]
3358 L:      [email protected] (moderated for non-subscribers)
3359 L:      [email protected] (moderated for non-subscribers)
3360 S:      Maintained
3361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3362 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3363 F:      drivers/pci/controller/pcie-brcmstb.c
3364 F:      drivers/staging/vc04_services
3365 N:      bcm2711
3366 N:      bcm2835
3367
3368 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3369 M:      Florian Fainelli <[email protected]>
3370 M:      Ray Jui <[email protected]>
3371 M:      Scott Branden <[email protected]>
3372 M:      [email protected]
3373 S:      Maintained
3374 T:      git git://github.com/broadcom/mach-bcm
3375 F:      arch/arm/mach-bcm/
3376 N:      bcm281*
3377 N:      bcm113*
3378 N:      bcm216*
3379 N:      kona
3380
3381 BROADCOM BCM47XX MIPS ARCHITECTURE
3382 M:      Hauke Mehrtens <[email protected]>
3383 M:      Rafał Miłecki <[email protected]>
3384 L:      [email protected]
3385 S:      Maintained
3386 F:      Documentation/devicetree/bindings/mips/brcm/
3387 F:      arch/mips/bcm47xx/*
3388 F:      arch/mips/include/asm/mach-bcm47xx/*
3389
3390 BROADCOM BCM5301X ARM ARCHITECTURE
3391 M:      Hauke Mehrtens <[email protected]>
3392 M:      Rafał Miłecki <[email protected]>
3393 M:      [email protected]
3394 L:      [email protected]
3395 S:      Maintained
3396 F:      arch/arm/boot/dts/bcm470*
3397 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3398 F:      arch/arm/boot/dts/bcm953012*
3399 F:      arch/arm/mach-bcm/bcm_5301x.c
3400
3401 BROADCOM BCM53573 ARM ARCHITECTURE
3402 M:      Rafał Miłecki <[email protected]>
3403 L:      [email protected]
3404 L:      [email protected]
3405 S:      Maintained
3406 F:      arch/arm/boot/dts/bcm47189*
3407 F:      arch/arm/boot/dts/bcm53573*
3408
3409 BROADCOM BCM63XX ARM ARCHITECTURE
3410 M:      Florian Fainelli <[email protected]>
3411 M:      [email protected]
3412 L:      [email protected] (moderated for non-subscribers)
3413 S:      Maintained
3414 T:      git git://github.com/broadcom/stblinux.git
3415 N:      bcm63xx
3416
3417 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3418 M:      Kevin Cernekee <[email protected]>
3419 L:      [email protected]
3420 S:      Maintained
3421 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3422
3423 BROADCOM BCM7XXX ARM ARCHITECTURE
3424 M:      Florian Fainelli <[email protected]>
3425 M:      [email protected]
3426 L:      [email protected] (moderated for non-subscribers)
3427 S:      Maintained
3428 T:      git git://github.com/broadcom/stblinux.git
3429 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3430 F:      arch/arm/boot/dts/bcm7*.dts*
3431 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3432 F:      arch/arm/mach-bcm/*brcmstb*
3433 F:      arch/arm/mm/cache-b15-rac.c
3434 F:      drivers/bus/brcmstb_gisb.c
3435 F:      drivers/pci/controller/pcie-brcmstb.c
3436 N:      brcmstb
3437
3438 BROADCOM BMIPS CPUFREQ DRIVER
3439 M:      Markus Mayer <[email protected]>
3440 M:      [email protected]
3441 L:      [email protected]
3442 S:      Maintained
3443 F:      drivers/cpufreq/bmips-cpufreq.c
3444
3445 BROADCOM BMIPS MIPS ARCHITECTURE
3446 M:      Florian Fainelli <[email protected]>
3447 L:      [email protected]
3448 L:      [email protected]
3449 S:      Maintained
3450 T:      git git://github.com/broadcom/stblinux.git
3451 F:      arch/mips/bmips/*
3452 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3453 F:      arch/mips/include/asm/mach-bmips/*
3454 F:      arch/mips/kernel/*bmips*
3455 F:      drivers/irqchip/irq-bcm63*
3456 F:      drivers/irqchip/irq-bcm7*
3457 F:      drivers/irqchip/irq-brcmstb*
3458 F:      include/linux/bcm963xx_nvram.h
3459 F:      include/linux/bcm963xx_tag.h
3460
3461 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3462 M:      Rasesh Mody <[email protected]>
3463 M:      [email protected]
3464 L:      [email protected]
3465 S:      Supported
3466 F:      drivers/net/ethernet/broadcom/bnx2.*
3467 F:      drivers/net/ethernet/broadcom/bnx2_*
3468
3469 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3470 M:      [email protected]
3471 L:      [email protected]
3472 S:      Supported
3473 F:      drivers/scsi/bnx2fc/
3474
3475 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3476 M:      [email protected]
3477 L:      [email protected]
3478 S:      Supported
3479 F:      drivers/scsi/bnx2i/
3480
3481 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3482 M:      Ariel Elior <[email protected]>
3483 M:      Sudarsana Kalluru <[email protected]>
3484 M:      [email protected]
3485 L:      [email protected]
3486 S:      Supported
3487 F:      drivers/net/ethernet/broadcom/bnx2x/
3488
3489 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3490 M:      Michael Chan <[email protected]>
3491 L:      [email protected]
3492 S:      Supported
3493 F:      drivers/net/ethernet/broadcom/bnxt/
3494
3495 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3496 M:      Arend van Spriel <[email protected]>
3497 M:      Franky Lin <[email protected]>
3498 M:      Hante Meuleman <[email protected]>
3499 M:      Chi-Hsien Lin <[email protected]>
3500 M:      Wright Feng <[email protected]>
3501 L:      [email protected]
3502 L:      [email protected]
3503 L:      [email protected]
3504 S:      Supported
3505 F:      drivers/net/wireless/broadcom/brcm80211/
3506
3507 BROADCOM BRCMSTB GPIO DRIVER
3508 M:      Gregory Fong <[email protected]>
3509 L:      [email protected]
3510 S:      Supported
3511 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3512 F:      drivers/gpio/gpio-brcmstb.c
3513
3514 BROADCOM BRCMSTB I2C DRIVER
3515 M:      Kamal Dasu <[email protected]>
3516 L:      [email protected]
3517 L:      [email protected]
3518 S:      Supported
3519 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3520 F:      drivers/i2c/busses/i2c-brcmstb.c
3521
3522 BROADCOM BRCMSTB USB EHCI DRIVER
3523 M:      Al Cooper <[email protected]>
3524 L:      [email protected]
3525 L:      [email protected]
3526 S:      Maintained
3527 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3528 F:      drivers/usb/host/ehci-brcm.*
3529
3530 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3531 M:      Al Cooper <[email protected]>
3532 L:      [email protected]
3533 L:      [email protected]
3534 S:      Maintained
3535 F:      drivers/phy/broadcom/phy-brcm-usb*
3536
3537 BROADCOM GENET ETHERNET DRIVER
3538 M:      Doug Berger <[email protected]>
3539 M:      Florian Fainelli <[email protected]>
3540 L:      [email protected]
3541 L:      [email protected]
3542 S:      Supported
3543 F:      drivers/net/ethernet/broadcom/genet/
3544
3545 BROADCOM IPROC ARM ARCHITECTURE
3546 M:      Ray Jui <[email protected]>
3547 M:      Scott Branden <[email protected]>
3548 M:      [email protected]
3549 L:      [email protected] (moderated for non-subscribers)
3550 S:      Maintained
3551 T:      git git://github.com/broadcom/cygnus-linux.git
3552 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3553 F:      arch/arm64/boot/dts/broadcom/stingray/*
3554 F:      drivers/clk/bcm/clk-ns*
3555 F:      drivers/clk/bcm/clk-sr*
3556 F:      drivers/pinctrl/bcm/pinctrl-ns*
3557 F:      include/dt-bindings/clock/bcm-sr*
3558 N:      iproc
3559 N:      cygnus
3560 N:      bcm[-_]nsp
3561 N:      bcm9113*
3562 N:      bcm9583*
3563 N:      bcm9585*
3564 N:      bcm9586*
3565 N:      bcm988312
3566 N:      bcm113*
3567 N:      bcm583*
3568 N:      bcm585*
3569 N:      bcm586*
3570 N:      bcm88312
3571 N:      hr2
3572 N:      stingray
3573
3574 BROADCOM KONA GPIO DRIVER
3575 M:      Ray Jui <[email protected]>
3576 L:      [email protected]
3577 S:      Supported
3578 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3579 F:      drivers/gpio/gpio-bcm-kona.c
3580
3581 BROADCOM NETXTREME-E ROCE DRIVER
3582 M:      Selvin Xavier <[email protected]>
3583 M:      Devesh Sharma <[email protected]>
3584 M:      Somnath Kotur <[email protected]>
3585 M:      Sriharsha Basavapatna <[email protected]>
3586 L:      [email protected]
3587 S:      Supported
3588 W:      http://www.broadcom.com
3589 F:      drivers/infiniband/hw/bnxt_re/
3590 F:      include/uapi/rdma/bnxt_re-abi.h
3591
3592 BROADCOM NVRAM DRIVER
3593 M:      Rafał Miłecki <[email protected]>
3594 L:      [email protected]
3595 S:      Maintained
3596 F:      drivers/firmware/broadcom/*
3597
3598 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3599 M:      Rafał Miłecki <[email protected]>
3600 L:      [email protected]
3601 S:      Maintained
3602 F:      drivers/bcma/
3603 F:      include/linux/bcma/
3604
3605 BROADCOM SPI DRIVER
3606 M:      Kamal Dasu <[email protected]>
3607 M:      [email protected]
3608 S:      Maintained
3609 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3610 F:      drivers/spi/spi-bcm-qspi.*
3611 F:      drivers/spi/spi-brcmstb-qspi.c
3612 F:      drivers/spi/spi-iproc-qspi.c
3613
3614 BROADCOM STB AVS CPUFREQ DRIVER
3615 M:      Markus Mayer <[email protected]>
3616 M:      [email protected]
3617 L:      [email protected]
3618 S:      Maintained
3619 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3620 F:      drivers/cpufreq/brcmstb*
3621
3622 BROADCOM STB AVS TMON DRIVER
3623 M:      Markus Mayer <[email protected]>
3624 M:      [email protected]
3625 L:      [email protected]
3626 S:      Maintained
3627 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3628 F:      drivers/thermal/broadcom/brcmstb*
3629
3630 BROADCOM STB DPFE DRIVER
3631 M:      Markus Mayer <[email protected]>
3632 M:      [email protected]
3633 L:      [email protected] (moderated for non-subscribers)
3634 S:      Maintained
3635 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3636 F:      drivers/memory/brcmstb_dpfe.c
3637
3638 BROADCOM STB NAND FLASH DRIVER
3639 M:      Brian Norris <[email protected]>
3640 M:      Kamal Dasu <[email protected]>
3641 L:      [email protected]
3642 L:      [email protected]
3643 S:      Maintained
3644 F:      drivers/mtd/nand/raw/brcmnand/
3645
3646 BROADCOM SYSTEMPORT ETHERNET DRIVER
3647 M:      Florian Fainelli <[email protected]>
3648 L:      [email protected]
3649 L:      [email protected]
3650 S:      Supported
3651 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3652
3653 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3654 M:      Siva Reddy Kallam <[email protected]>
3655 M:      Prashant Sreedharan <[email protected]>
3656 M:      Michael Chan <[email protected]>
3657 L:      [email protected]
3658 S:      Supported
3659 F:      drivers/net/ethernet/broadcom/tg3.*
3660
3661 BROCADE BFA FC SCSI DRIVER
3662 M:      Anil Gurumurthy <[email protected]>
3663 M:      Sudarsana Kalluru <[email protected]>
3664 L:      [email protected]
3665 S:      Supported
3666 F:      drivers/scsi/bfa/
3667
3668 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3669 M:      Rasesh Mody <[email protected]>
3670 M:      Sudarsana Kalluru <[email protected]>
3671 M:      [email protected]
3672 L:      [email protected]
3673 S:      Supported
3674 F:      drivers/net/ethernet/brocade/bna/
3675
3676 BSG (block layer generic sg v4 driver)
3677 M:      FUJITA Tomonori <[email protected]>
3678 L:      [email protected]
3679 S:      Supported
3680 F:      block/bsg.c
3681 F:      include/linux/bsg.h
3682 F:      include/uapi/linux/bsg.h
3683
3684 BT87X AUDIO DRIVER
3685 M:      Clemens Ladisch <[email protected]>
3686 L:      [email protected] (moderated for non-subscribers)
3687 S:      Maintained
3688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3689 F:      Documentation/sound/cards/bt87x.rst
3690 F:      sound/pci/bt87x.c
3691
3692 BT8XXGPIO DRIVER
3693 M:      Michael Buesch <[email protected]>
3694 S:      Maintained
3695 W:      http://bu3sch.de/btgpio.php
3696 F:      drivers/gpio/gpio-bt8xx.c
3697
3698 BTRFS FILE SYSTEM
3699 M:      Chris Mason <[email protected]>
3700 M:      Josef Bacik <[email protected]>
3701 M:      David Sterba <[email protected]>
3702 L:      [email protected]
3703 S:      Maintained
3704 W:      http://btrfs.wiki.kernel.org/
3705 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3707 F:      Documentation/filesystems/btrfs.rst
3708 F:      fs/btrfs/
3709 F:      include/linux/btrfs*
3710 F:      include/uapi/linux/btrfs*
3711
3712 BTTV VIDEO4LINUX DRIVER
3713 M:      Mauro Carvalho Chehab <[email protected]>
3714 L:      [email protected]
3715 S:      Odd fixes
3716 W:      https://linuxtv.org
3717 T:      git git://linuxtv.org/media_tree.git
3718 F:      Documentation/driver-api/media/drivers/bttv*
3719 F:      drivers/media/pci/bt8xx/bttv*
3720
3721 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3722 M:      Chanwoo Choi <[email protected]>
3723 L:      [email protected]
3724 L:      [email protected]
3725 S:      Maintained
3726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3727 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3728 F:      drivers/devfreq/exynos-bus.c
3729
3730 BUSLOGIC SCSI DRIVER
3731 M:      Khalid Aziz <[email protected]>
3732 L:      [email protected]
3733 S:      Maintained
3734 F:      drivers/scsi/BusLogic.*
3735 F:      drivers/scsi/FlashPoint.*
3736
3737 C-MEDIA CMI8788 DRIVER
3738 M:      Clemens Ladisch <[email protected]>
3739 L:      [email protected] (moderated for non-subscribers)
3740 S:      Maintained
3741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3742 F:      sound/pci/oxygen/
3743
3744 C-SKY ARCHITECTURE
3745 M:      Guo Ren <[email protected]>
3746 L:      [email protected]
3747 S:      Supported
3748 T:      git https://github.com/c-sky/csky-linux.git
3749 F:      Documentation/devicetree/bindings/csky/
3750 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3751 F:      Documentation/devicetree/bindings/timer/csky,*
3752 F:      arch/csky/
3753 F:      drivers/clocksource/timer-gx6605s.c
3754 F:      drivers/clocksource/timer-mp-csky.c
3755 F:      drivers/irqchip/irq-csky-*
3756 N:      csky
3757 K:      csky
3758
3759 C6X ARCHITECTURE
3760 M:      Mark Salter <[email protected]>
3761 M:      Aurelien Jacquiot <[email protected]>
3762 L:      [email protected]
3763 S:      Maintained
3764 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3765 F:      arch/c6x/
3766
3767 CA8210 IEEE-802.15.4 RADIO DRIVER
3768 M:      Harry Morris <[email protected]>
3769 L:      [email protected]
3770 S:      Maintained
3771 W:      https://github.com/Cascoda/ca8210-linux.git
3772 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3773 F:      drivers/net/ieee802154/ca8210.c
3774
3775 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3776 M:      David Howells <[email protected]>
3777 L:      [email protected] (moderated for non-subscribers)
3778 S:      Supported
3779 F:      Documentation/filesystems/caching/cachefiles.rst
3780 F:      fs/cachefiles/
3781
3782 CADENCE MIPI-CSI2 BRIDGES
3783 M:      Maxime Ripard <[email protected]>
3784 L:      [email protected]
3785 S:      Maintained
3786 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3787 F:      drivers/media/platform/cadence/cdns-csi2*
3788
3789 CADENCE NAND DRIVER
3790 L:      [email protected]
3791 S:      Orphan
3792 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3793 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3794
3795 CADET FM/AM RADIO RECEIVER DRIVER
3796 M:      Hans Verkuil <[email protected]>
3797 L:      [email protected]
3798 S:      Maintained
3799 W:      https://linuxtv.org
3800 T:      git git://linuxtv.org/media_tree.git
3801 F:      drivers/media/radio/radio-cadet*
3802
3803 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3804 M:      Jonathan Corbet <[email protected]>
3805 L:      [email protected]
3806 S:      Maintained
3807 T:      git git://linuxtv.org/media_tree.git
3808 F:      Documentation/admin-guide/media/cafe_ccic*
3809 F:      drivers/media/platform/marvell-ccic/
3810
3811 CAIF NETWORK LAYER
3812 L:      [email protected]
3813 S:      Orphan
3814 F:      Documentation/networking/caif/
3815 F:      drivers/net/caif/
3816 F:      include/net/caif/
3817 F:      include/uapi/linux/caif/
3818 F:      net/caif/
3819
3820 CAKE QDISC
3821 M:      Toke Høiland-Jørgensen <[email protected]>
3822 L:      [email protected] (moderated for non-subscribers)
3823 S:      Maintained
3824 F:      net/sched/sch_cake.c
3825
3826 CAN NETWORK DRIVERS
3827 M:      Wolfgang Grandegger <[email protected]>
3828 M:      Marc Kleine-Budde <[email protected]>
3829 L:      [email protected]
3830 S:      Maintained
3831 W:      https://github.com/linux-can
3832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3834 F:      Documentation/devicetree/bindings/net/can/
3835 F:      drivers/net/can/
3836 F:      include/linux/can/dev.h
3837 F:      include/linux/can/led.h
3838 F:      include/linux/can/platform/
3839 F:      include/linux/can/rx-offload.h
3840 F:      include/uapi/linux/can/error.h
3841 F:      include/uapi/linux/can/netlink.h
3842 F:      include/uapi/linux/can/vxcan.h
3843
3844 CAN NETWORK LAYER
3845 M:      Oliver Hartkopp <[email protected]>
3846 M:      Marc Kleine-Budde <[email protected]>
3847 L:      [email protected]
3848 S:      Maintained
3849 W:      https://github.com/linux-can
3850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3852 F:      Documentation/networking/can.rst
3853 F:      include/linux/can/core.h
3854 F:      include/linux/can/skb.h
3855 F:      include/net/netns/can.h
3856 F:      include/uapi/linux/can.h
3857 F:      include/uapi/linux/can/bcm.h
3858 F:      include/uapi/linux/can/gw.h
3859 F:      include/uapi/linux/can/raw.h
3860 F:      net/can/
3861
3862 CAN-J1939 NETWORK LAYER
3863 M:      Robin van der Gracht <[email protected]>
3864 M:      Oleksij Rempel <[email protected]>
3865 R:      Pengutronix Kernel Team <[email protected]>
3866 L:      [email protected]
3867 S:      Maintained
3868 F:      Documentation/networking/j1939.rst
3869 F:      include/uapi/linux/can/j1939.h
3870 F:      net/can/j1939/
3871
3872 CAPABILITIES
3873 M:      Serge Hallyn <[email protected]>
3874 L:      [email protected]
3875 S:      Supported
3876 F:      include/linux/capability.h
3877 F:      include/uapi/linux/capability.h
3878 F:      kernel/capability.c
3879 F:      security/commoncap.c
3880
3881 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3882 M:      Kevin Tsai <[email protected]>
3883 S:      Maintained
3884 F:      drivers/iio/light/cm*
3885
3886 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3887 M:      Christian Lamparter <[email protected]>
3888 L:      [email protected]
3889 S:      Maintained
3890 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3891 F:      drivers/net/wireless/ath/carl9170/
3892
3893 CAVIUM I2C DRIVER
3894 M:      Robert Richter <[email protected]>
3895 S:      Supported
3896 W:      http://www.marvell.com
3897 F:      drivers/i2c/busses/i2c-octeon*
3898 F:      drivers/i2c/busses/i2c-thunderx*
3899
3900 CAVIUM LIQUIDIO NETWORK DRIVER
3901 M:      Derek Chickles <[email protected]>
3902 M:      Satanand Burla <[email protected]>
3903 M:      Felix Manlunas <[email protected]>
3904 L:      [email protected]
3905 S:      Supported
3906 W:      http://www.marvell.com
3907 F:      drivers/net/ethernet/cavium/liquidio/
3908
3909 CAVIUM MMC DRIVER
3910 M:      Robert Richter <[email protected]>
3911 S:      Supported
3912 W:      http://www.marvell.com
3913 F:      drivers/mmc/host/cavium*
3914
3915 CAVIUM OCTEON-TX CRYPTO DRIVER
3916 M:      George Cherian <[email protected]>
3917 L:      [email protected]
3918 S:      Supported
3919 W:      http://www.marvell.com
3920 F:      drivers/crypto/cavium/cpt/
3921
3922 CAVIUM THUNDERX2 ARM64 SOC
3923 M:      Robert Richter <[email protected]>
3924 L:      [email protected] (moderated for non-subscribers)
3925 S:      Maintained
3926 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3927 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3928
3929 CC2520 IEEE-802.15.4 RADIO DRIVER
3930 M:      Varka Bhadram <[email protected]>
3931 L:      [email protected]
3932 S:      Maintained
3933 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3934 F:      drivers/net/ieee802154/cc2520.c
3935 F:      include/linux/spi/cc2520.h
3936
3937 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3938 M:      Gilad Ben-Yossef <[email protected]>
3939 L:      [email protected]
3940 S:      Supported
3941 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3942 F:      drivers/crypto/ccree/
3943
3944 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
3945 M:      Hadar Gat <[email protected]>
3946 L:      [email protected]
3947 S:      Supported
3948 F:      drivers/char/hw_random/cctrng.c
3949 F:      drivers/char/hw_random/cctrng.h
3950 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
3951 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3952
3953 CEC FRAMEWORK
3954 M:      Hans Verkuil <[email protected]>
3955 L:      [email protected]
3956 S:      Supported
3957 W:      http://linuxtv.org
3958 T:      git git://linuxtv.org/media_tree.git
3959 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3960 F:      Documentation/devicetree/bindings/media/cec.txt
3961 F:      Documentation/driver-api/media/cec-core.rst
3962 F:      Documentation/userspace-api/media/cec
3963 F:      drivers/media/cec/
3964 F:      drivers/media/rc/keymaps/rc-cec.c
3965 F:      include/media/cec-notifier.h
3966 F:      include/media/cec.h
3967 F:      include/uapi/linux/cec-funcs.h
3968 F:      include/uapi/linux/cec.h
3969
3970 CEC GPIO DRIVER
3971 M:      Hans Verkuil <[email protected]>
3972 L:      [email protected]
3973 S:      Supported
3974 W:      http://linuxtv.org
3975 T:      git git://linuxtv.org/media_tree.git
3976 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3977 F:      drivers/media/platform/cec-gpio/
3978
3979 CELL BROADBAND ENGINE ARCHITECTURE
3980 M:      Arnd Bergmann <[email protected]>
3981 L:      [email protected]
3982 S:      Supported
3983 W:      http://www.ibm.com/developerworks/power/cell/
3984 F:      arch/powerpc/include/asm/cell*.h
3985 F:      arch/powerpc/include/asm/spu*.h
3986 F:      arch/powerpc/include/uapi/asm/spu*.h
3987 F:      arch/powerpc/oprofile/*cell*
3988 F:      arch/powerpc/platforms/cell/
3989
3990 CELLWISE CW2015 BATTERY DRIVER
3991 M:      Tobias Schrammm <[email protected]>
3992 S:      Maintained
3993 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
3994 F:      drivers/power/supply/cw2015_battery.c
3995
3996 CEPH COMMON CODE (LIBCEPH)
3997 M:      Ilya Dryomov <[email protected]>
3998 M:      Jeff Layton <[email protected]>
3999 L:      [email protected]
4000 S:      Supported
4001 W:      http://ceph.com/
4002 T:      git git://github.com/ceph/ceph-client.git
4003 F:      include/linux/ceph/
4004 F:      include/linux/crush/
4005 F:      net/ceph/
4006
4007 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4008 M:      Jeff Layton <[email protected]>
4009 M:      Ilya Dryomov <[email protected]>
4010 L:      [email protected]
4011 S:      Supported
4012 W:      http://ceph.com/
4013 T:      git git://github.com/ceph/ceph-client.git
4014 F:      Documentation/filesystems/ceph.rst
4015 F:      fs/ceph/
4016
4017 CERTIFICATE HANDLING
4018 M:      David Howells <[email protected]>
4019 M:      David Woodhouse <[email protected]>
4020 L:      [email protected]
4021 S:      Maintained
4022 F:      Documentation/admin-guide/module-signing.rst
4023 F:      certs/
4024 F:      scripts/extract-cert.c
4025 F:      scripts/sign-file.c
4026
4027 CFAG12864B LCD DRIVER
4028 M:      Miguel Ojeda Sandonis <[email protected]>
4029 S:      Maintained
4030 F:      drivers/auxdisplay/cfag12864b.c
4031 F:      include/linux/cfag12864b.h
4032
4033 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4034 M:      Miguel Ojeda Sandonis <[email protected]>
4035 S:      Maintained
4036 F:      drivers/auxdisplay/cfag12864bfb.c
4037 F:      include/linux/cfag12864b.h
4038
4039 CHAR and MISC DRIVERS
4040 M:      Arnd Bergmann <[email protected]>
4041 M:      Greg Kroah-Hartman <[email protected]>
4042 S:      Supported
4043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4044 F:      drivers/char/
4045 F:      drivers/misc/
4046 F:      include/linux/miscdevice.h
4047
4048 CHECKPATCH
4049 M:      Andy Whitcroft <[email protected]>
4050 M:      Joe Perches <[email protected]>
4051 S:      Maintained
4052 F:      scripts/checkpatch.pl
4053
4054 CHINESE DOCUMENTATION
4055 M:      Harry Wei <[email protected]>
4056 M:      Alex Shi <[email protected]>
4057 L:      [email protected] (subscribers-only)
4058 S:      Maintained
4059 F:      Documentation/translations/zh_CN/
4060
4061 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4062 M:      Peter Chen <[email protected]>
4063 L:      [email protected]
4064 S:      Maintained
4065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4066 F:      drivers/usb/chipidea/
4067
4068 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4069 M:      Hans de Goede <[email protected]>
4070 L:      [email protected]
4071 S:      Maintained
4072 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4073 F:      drivers/input/touchscreen/chipone_icn8318.c
4074
4075 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4076 M:      Hans de Goede <[email protected]>
4077 L:      [email protected]
4078 S:      Maintained
4079 F:      drivers/input/touchscreen/chipone_icn8505.c
4080
4081 CHROME HARDWARE PLATFORM SUPPORT
4082 M:      Benson Leung <[email protected]>
4083 M:      Enric Balletbo i Serra <[email protected]>
4084 S:      Maintained
4085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4086 F:      drivers/platform/chrome/
4087
4088 CHROMEOS EC CODEC DRIVER
4089 M:      Cheng-Yi Chiang <[email protected]>
4090 R:      Enric Balletbo i Serra <[email protected]>
4091 R:      Guenter Roeck <[email protected]>
4092 S:      Maintained
4093 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4094 F:      sound/soc/codecs/cros_ec_codec.*
4095
4096 CHROMEOS EC SUBDRIVERS
4097 M:      Benson Leung <[email protected]>
4098 M:      Enric Balletbo i Serra <[email protected]>
4099 R:      Guenter Roeck <[email protected]>
4100 S:      Maintained
4101 F:      drivers/power/supply/cros_usbpd-charger.c
4102 N:      cros_ec
4103 N:      cros-ec
4104
4105 CIRRUS LOGIC AUDIO CODEC DRIVERS
4106 M:      James Schulman <[email protected]>
4107 M:      David Rhodes <[email protected]>
4108 L:      [email protected] (moderated for non-subscribers)
4109 S:      Maintained
4110 F:      sound/soc/codecs/cs*
4111
4112 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4113 M:      Hartley Sweeten <[email protected]>
4114 L:      [email protected]
4115 S:      Maintained
4116 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4117
4118 CIRRUS LOGIC LOCHNAGAR DRIVER
4119 M:      Charles Keepax <[email protected]>
4120 M:      Richard Fitzgerald <[email protected]>
4121 L:      [email protected]
4122 S:      Supported
4123 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4124 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4125 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4126 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4127 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4128 F:      Documentation/hwmon/lochnagar.rst
4129 F:      drivers/clk/clk-lochnagar.c
4130 F:      drivers/hwmon/lochnagar-hwmon.c
4131 F:      drivers/mfd/lochnagar-i2c.c
4132 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4133 F:      drivers/regulator/lochnagar-regulator.c
4134 F:      include/dt-bindings/clk/lochnagar.h
4135 F:      include/dt-bindings/pinctrl/lochnagar.h
4136 F:      include/linux/mfd/lochnagar*
4137 F:      sound/soc/codecs/lochnagar-sc.c
4138
4139 CIRRUS LOGIC MADERA CODEC DRIVERS
4140 M:      Charles Keepax <[email protected]>
4141 M:      Richard Fitzgerald <[email protected]>
4142 L:      [email protected] (moderated for non-subscribers)
4143 L:      [email protected]
4144 S:      Supported
4145 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4146 T:      git https://github.com/CirrusLogic/linux-drivers.git
4147 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4148 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4149 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4150 F:      drivers/gpio/gpio-madera*
4151 F:      drivers/irqchip/irq-madera*
4152 F:      drivers/mfd/cs47l*
4153 F:      drivers/mfd/madera*
4154 F:      drivers/pinctrl/cirrus/*
4155 F:      include/dt-bindings/sound/madera*
4156 F:      include/linux/irqchip/irq-madera*
4157 F:      include/linux/mfd/madera/*
4158 F:      include/sound/madera*
4159 F:      sound/soc/codecs/cs47l*
4160 F:      sound/soc/codecs/madera*
4161
4162 CISCO FCOE HBA DRIVER
4163 M:      Satish Kharat <[email protected]>
4164 M:      Sesidhar Baddela <[email protected]>
4165 M:      Karan Tilak Kumar <[email protected]>
4166 L:      [email protected]
4167 S:      Supported
4168 F:      drivers/scsi/fnic/
4169
4170 CISCO SCSI HBA DRIVER
4171 M:      Karan Tilak Kumar <[email protected]>
4172 M:      Sesidhar Baddela <[email protected]>
4173 L:      [email protected]
4174 S:      Supported
4175 F:      drivers/scsi/snic/
4176
4177 CISCO VIC ETHERNET NIC DRIVER
4178 M:      Christian Benvenuti <[email protected]>
4179 M:      Govindarajulu Varadarajan <[email protected]>
4180 S:      Supported
4181 F:      drivers/net/ethernet/cisco/enic/
4182
4183 CISCO VIC LOW LATENCY NIC DRIVER
4184 M:      Christian Benvenuti <[email protected]>
4185 M:      Nelson Escobar <[email protected]>
4186 M:      Parvi Kaustubhi <[email protected]>
4187 S:      Supported
4188 F:      drivers/infiniband/hw/usnic/
4189
4190 CLANG-FORMAT FILE
4191 M:      Miguel Ojeda <[email protected]>
4192 S:      Maintained
4193 F:      .clang-format
4194
4195 CLANG/LLVM BUILD SUPPORT
4196 L:      [email protected]
4197 S:      Supported
4198 W:      https://clangbuiltlinux.github.io/
4199 B:      https://github.com/ClangBuiltLinux/linux/issues
4200 C:      irc://chat.freenode.net/clangbuiltlinux
4201 F:      Documentation/kbuild/llvm.rst
4202 K:      \b(?i:clang|llvm)\b
4203
4204 CLEANCACHE API
4205 M:      Konrad Rzeszutek Wilk <[email protected]>
4206 L:      [email protected]
4207 S:      Maintained
4208 F:      include/linux/cleancache.h
4209 F:      mm/cleancache.c
4210
4211 CLK API
4212 M:      Russell King <[email protected]>
4213 L:      [email protected]
4214 S:      Maintained
4215 F:      include/linux/clk.h
4216
4217 CLOCKSOURCE, CLOCKEVENT DRIVERS
4218 M:      Daniel Lezcano <[email protected]>
4219 M:      Thomas Gleixner <[email protected]>
4220 L:      [email protected]
4221 S:      Supported
4222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4223 F:      Documentation/devicetree/bindings/timer/
4224 F:      drivers/clocksource/
4225
4226 CMPC ACPI DRIVER
4227 M:      Thadeu Lima de Souza Cascardo <[email protected]>
4228 M:      Daniel Oliveira Nascimento <[email protected]>
4229 L:      [email protected]
4230 S:      Supported
4231 F:      drivers/platform/x86/classmate-laptop.c
4232
4233 COBALT MEDIA DRIVER
4234 M:      Hans Verkuil <[email protected]>
4235 L:      [email protected]
4236 S:      Supported
4237 W:      https://linuxtv.org
4238 T:      git git://linuxtv.org/media_tree.git
4239 F:      drivers/media/pci/cobalt/
4240
4241 COCCINELLE/Semantic Patches (SmPL)
4242 M:      Julia Lawall <[email protected]>
4243 M:      Gilles Muller <[email protected]>
4244 M:      Nicolas Palix <[email protected]>
4245 M:      Michal Marek <[email protected]>
4246 L:      [email protected] (moderated for non-subscribers)
4247 S:      Supported
4248 W:      http://coccinelle.lip6.fr/
4249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4250 F:      Documentation/dev-tools/coccinelle.rst
4251 F:      scripts/coccicheck
4252 F:      scripts/coccinelle/
4253
4254 CODA FILE SYSTEM
4255 M:      Jan Harkes <[email protected]>
4256 M:      [email protected]
4257 L:      [email protected]
4258 S:      Maintained
4259 W:      http://www.coda.cs.cmu.edu/
4260 F:      Documentation/filesystems/coda.rst
4261 F:      fs/coda/
4262 F:      include/linux/coda*.h
4263 F:      include/uapi/linux/coda*.h
4264
4265 CODA V4L2 MEM2MEM DRIVER
4266 M:      Philipp Zabel <[email protected]>
4267 L:      [email protected]
4268 S:      Maintained
4269 F:      Documentation/devicetree/bindings/media/coda.txt
4270 F:      drivers/media/platform/coda/
4271
4272 CODE OF CONDUCT
4273 M:      Greg Kroah-Hartman <[email protected]>
4274 S:      Supported
4275 F:      Documentation/process/code-of-conduct-interpretation.rst
4276 F:      Documentation/process/code-of-conduct.rst
4277
4278 COMMON CLK FRAMEWORK
4279 M:      Michael Turquette <[email protected]>
4280 M:      Stephen Boyd <[email protected]>
4281 L:      [email protected]
4282 S:      Maintained
4283 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4285 F:      Documentation/devicetree/bindings/clock/
4286 F:      drivers/clk/
4287 F:      include/linux/clk-pr*
4288 F:      include/linux/clk/
4289 F:      include/linux/of_clk.h
4290 X:      drivers/clk/clkdev.c
4291
4292 COMMON INTERNET FILE SYSTEM (CIFS)
4293 M:      Steve French <[email protected]>
4294 L:      [email protected]
4295 L:      [email protected] (moderated for non-subscribers)
4296 S:      Supported
4297 W:      http://linux-cifs.samba.org/
4298 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4299 F:      Documentation/admin-guide/cifs/
4300 F:      fs/cifs/
4301
4302 COMPACTPCI HOTPLUG CORE
4303 M:      Scott Murray <[email protected]>
4304 L:      [email protected]
4305 S:      Maintained
4306 F:      drivers/pci/hotplug/cpci_hotplug*
4307
4308 COMPACTPCI HOTPLUG GENERIC DRIVER
4309 M:      Scott Murray <[email protected]>
4310 L:      [email protected]
4311 S:      Maintained
4312 F:      drivers/pci/hotplug/cpcihp_generic.c
4313
4314 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4315 M:      Scott Murray <[email protected]>
4316 L:      [email protected]
4317 S:      Maintained
4318 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4319
4320 COMPAL LAPTOP SUPPORT
4321 M:      Cezary Jackiewicz <[email protected]>
4322 L:      [email protected]
4323 S:      Maintained
4324 F:      drivers/platform/x86/compal-laptop.c
4325
4326 COMPILER ATTRIBUTES
4327 M:      Miguel Ojeda <[email protected]>
4328 S:      Maintained
4329 F:      include/linux/compiler_attributes.h
4330
4331 CONEXANT ACCESSRUNNER USB DRIVER
4332 L:      [email protected]
4333 S:      Orphan
4334 W:      http://accessrunner.sourceforge.net/
4335 F:      drivers/usb/atm/cxacru.c
4336
4337 CONFIGFS
4338 M:      Joel Becker <[email protected]>
4339 M:      Christoph Hellwig <[email protected]>
4340 S:      Supported
4341 T:      git git://git.infradead.org/users/hch/configfs.git
4342 F:      fs/configfs/
4343 F:      include/linux/configfs.h
4344
4345 CONNECTOR
4346 M:      Evgeniy Polyakov <[email protected]>
4347 L:      [email protected]
4348 S:      Maintained
4349 F:      drivers/connector/
4350
4351 CONTROL GROUP (CGROUP)
4352 M:      Tejun Heo <[email protected]>
4353 M:      Li Zefan <[email protected]>
4354 M:      Johannes Weiner <[email protected]>
4355 L:      [email protected]
4356 S:      Maintained
4357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4358 F:      Documentation/admin-guide/cgroup-v1/
4359 F:      Documentation/admin-guide/cgroup-v2.rst
4360 F:      include/linux/cgroup*
4361 F:      kernel/cgroup/
4362
4363 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4364 M:      Tejun Heo <[email protected]>
4365 M:      Jens Axboe <[email protected]>
4366 L:      [email protected]
4367 L:      [email protected]
4368 T:      git git://git.kernel.dk/linux-block
4369 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4370 F:      block/bfq-cgroup.c
4371 F:      block/blk-cgroup.c
4372 F:      block/blk-iolatency.c
4373 F:      block/blk-throttle.c
4374 F:      include/linux/blk-cgroup.h
4375
4376 CONTROL GROUP - CPUSET
4377 M:      Li Zefan <[email protected]>
4378 L:      [email protected]
4379 S:      Maintained
4380 W:      http://www.bullopensource.org/cpuset/
4381 W:      http://oss.sgi.com/projects/cpusets/
4382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4383 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4384 F:      include/linux/cpuset.h
4385 F:      kernel/cgroup/cpuset.c
4386
4387 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4388 M:      Johannes Weiner <[email protected]>
4389 M:      Michal Hocko <[email protected]>
4390 M:      Vladimir Davydov <[email protected]>
4391 L:      [email protected]
4392 L:      [email protected]
4393 S:      Maintained
4394 F:      mm/memcontrol.c
4395 F:      mm/swap_cgroup.c
4396
4397 CORETEMP HARDWARE MONITORING DRIVER
4398 M:      Fenghua Yu <[email protected]>
4399 L:      [email protected]
4400 S:      Maintained
4401 F:      Documentation/hwmon/coretemp.rst
4402 F:      drivers/hwmon/coretemp.c
4403
4404 COSA/SRP SYNC SERIAL DRIVER
4405 M:      Jan "Yenya" Kasprzak <[email protected]>
4406 S:      Maintained
4407 W:      http://www.fi.muni.cz/~kas/cosa/
4408 F:      drivers/net/wan/cosa*
4409
4410 COUNTER SUBSYSTEM
4411 M:      William Breathitt Gray <[email protected]>
4412 L:      [email protected]
4413 S:      Maintained
4414 F:      Documentation/ABI/testing/sysfs-bus-counter*
4415 F:      Documentation/driver-api/generic-counter.rst
4416 F:      drivers/counter/
4417 F:      include/linux/counter.h
4418 F:      include/linux/counter_enum.h
4419
4420 CPMAC ETHERNET DRIVER
4421 M:      Florian Fainelli <[email protected]>
4422 L:      [email protected]
4423 S:      Maintained
4424 F:      drivers/net/ethernet/ti/cpmac.c
4425
4426 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4427 M:      Viresh Kumar <[email protected]>
4428 M:      Sudeep Holla <[email protected]>
4429 L:      [email protected]
4430 S:      Maintained
4431 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4432 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4433
4434 CPU FREQUENCY SCALING FRAMEWORK
4435 M:      "Rafael J. Wysocki" <[email protected]>
4436 M:      Viresh Kumar <[email protected]>
4437 L:      [email protected]
4438 S:      Maintained
4439 B:      https://bugzilla.kernel.org
4440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4442 F:      Documentation/admin-guide/pm/cpufreq.rst
4443 F:      Documentation/admin-guide/pm/intel_pstate.rst
4444 F:      Documentation/cpu-freq/
4445 F:      Documentation/devicetree/bindings/cpufreq/
4446 F:      drivers/cpufreq/
4447 F:      include/linux/cpufreq.h
4448 F:      include/linux/sched/cpufreq.h
4449 F:      kernel/sched/cpufreq*.c
4450 F:      tools/testing/selftests/cpufreq/
4451
4452 CPU IDLE TIME MANAGEMENT FRAMEWORK
4453 M:      "Rafael J. Wysocki" <[email protected]>
4454 M:      Daniel Lezcano <[email protected]>
4455 L:      [email protected]
4456 S:      Maintained
4457 B:      https://bugzilla.kernel.org
4458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4459 F:      Documentation/admin-guide/pm/cpuidle.rst
4460 F:      Documentation/driver-api/pm/cpuidle.rst
4461 F:      drivers/cpuidle/*
4462 F:      include/linux/cpuidle.h
4463
4464 CPU POWER MONITORING SUBSYSTEM
4465 M:      Thomas Renninger <[email protected]>
4466 M:      Shuah Khan <[email protected]>
4467 M:      Shuah Khan <[email protected]>
4468 L:      [email protected]
4469 S:      Maintained
4470 F:      tools/power/cpupower/
4471
4472 CPUID/MSR DRIVER
4473 M:      "H. Peter Anvin" <[email protected]>
4474 S:      Maintained
4475 F:      arch/x86/kernel/cpuid.c
4476 F:      arch/x86/kernel/msr.c
4477
4478 CPUIDLE DRIVER - ARM BIG LITTLE
4479 M:      Lorenzo Pieralisi <[email protected]>
4480 M:      Daniel Lezcano <[email protected]>
4481 L:      [email protected]
4482 L:      [email protected]
4483 S:      Maintained
4484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4485 F:      drivers/cpuidle/cpuidle-big_little.c
4486
4487 CPUIDLE DRIVER - ARM EXYNOS
4488 M:      Bartlomiej Zolnierkiewicz <[email protected]>
4489 M:      Daniel Lezcano <[email protected]>
4490 M:      Kukjin Kim <[email protected]>
4491 L:      [email protected]
4492 L:      [email protected]
4493 S:      Supported
4494 F:      arch/arm/mach-exynos/pm.c
4495 F:      drivers/cpuidle/cpuidle-exynos.c
4496
4497 CPUIDLE DRIVER - ARM PSCI
4498 M:      Lorenzo Pieralisi <[email protected]>
4499 M:      Sudeep Holla <[email protected]>
4500 L:      [email protected]
4501 L:      [email protected]
4502 S:      Supported
4503 F:      drivers/cpuidle/cpuidle-psci.c
4504
4505 CRAMFS FILESYSTEM
4506 M:      Nicolas Pitre <[email protected]>
4507 S:      Maintained
4508 F:      Documentation/filesystems/cramfs.rst
4509 F:      fs/cramfs/
4510
4511 CREATIVE SB0540
4512 M:      Bastien Nocera <[email protected]>
4513 L:      [email protected]
4514 S:      Maintained
4515 F:      drivers/hid/hid-creative-sb0540.c
4516
4517 CRYPTO API
4518 M:      Herbert Xu <[email protected]>
4519 M:      "David S. Miller" <[email protected]>
4520 L:      [email protected]
4521 S:      Maintained
4522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4524 F:      Documentation/crypto/
4525 F:      Documentation/devicetree/bindings/crypto/
4526 F:      arch/*/crypto/
4527 F:      crypto/
4528 F:      drivers/crypto/
4529 F:      include/crypto/
4530 F:      include/linux/crypto*
4531 F:      lib/crypto/
4532
4533 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4534 M:      Neil Horman <[email protected]>
4535 L:      [email protected]
4536 S:      Maintained
4537 F:      crypto/ansi_cprng.c
4538 F:      crypto/rng.c
4539
4540 CS3308 MEDIA DRIVER
4541 M:      Hans Verkuil <[email protected]>
4542 L:      [email protected]
4543 S:      Odd Fixes
4544 W:      http://linuxtv.org
4545 T:      git git://linuxtv.org/media_tree.git
4546 F:      drivers/media/i2c/cs3308.c
4547
4548 CS5535 Audio ALSA driver
4549 M:      Jaya Kumar <[email protected]>
4550 S:      Maintained
4551 F:      sound/pci/cs5535audio/
4552
4553 CSI DRIVERS FOR ALLWINNER V3s
4554 M:      Yong Deng <[email protected]>
4555 L:      [email protected]
4556 S:      Maintained
4557 T:      git git://linuxtv.org/media_tree.git
4558 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4559 F:      drivers/media/platform/sunxi/sun6i-csi/
4560
4561 CW1200 WLAN driver
4562 M:      Solomon Peachy <[email protected]>
4563 S:      Maintained
4564 F:      drivers/net/wireless/st/cw1200/
4565
4566 CX18 VIDEO4LINUX DRIVER
4567 M:      Andy Walls <[email protected]>
4568 L:      [email protected]
4569 S:      Maintained
4570 W:      https://linuxtv.org
4571 T:      git git://linuxtv.org/media_tree.git
4572 F:      drivers/media/pci/cx18/
4573 F:      include/uapi/linux/ivtv*
4574
4575 CX2341X MPEG ENCODER HELPER MODULE
4576 M:      Hans Verkuil <[email protected]>
4577 L:      [email protected]
4578 S:      Maintained
4579 W:      https://linuxtv.org
4580 T:      git git://linuxtv.org/media_tree.git
4581 F:      drivers/media/common/cx2341x*
4582 F:      include/media/drv-intf/cx2341x.h
4583
4584 CX24120 MEDIA DRIVER
4585 M:      Jemma Denson <[email protected]>
4586 M:      Patrick Boettcher <[email protected]>
4587 L:      [email protected]
4588 S:      Maintained
4589 W:      https://linuxtv.org
4590 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4591 F:      drivers/media/dvb-frontends/cx24120*
4592
4593 CX88 VIDEO4LINUX DRIVER
4594 M:      Mauro Carvalho Chehab <[email protected]>
4595 L:      [email protected]
4596 S:      Odd fixes
4597 W:      https://linuxtv.org
4598 T:      git git://linuxtv.org/media_tree.git
4599 F:      Documentation/driver-api/media/drivers/cx88*
4600 F:      drivers/media/pci/cx88/
4601
4602 CXD2820R MEDIA DRIVER
4603 M:      Antti Palosaari <[email protected]>
4604 L:      [email protected]
4605 S:      Maintained
4606 W:      https://linuxtv.org
4607 W:      http://palosaari.fi/linux/
4608 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4609 T:      git git://linuxtv.org/anttip/media_tree.git
4610 F:      drivers/media/dvb-frontends/cxd2820r*
4611
4612 CXGB3 ETHERNET DRIVER (CXGB3)
4613 M:      Vishal Kulkarni <[email protected]>
4614 L:      [email protected]
4615 S:      Supported
4616 W:      http://www.chelsio.com
4617 F:      drivers/net/ethernet/chelsio/cxgb3/
4618
4619 CXGB3 ISCSI DRIVER (CXGB3I)
4620 M:      Karen Xie <[email protected]>
4621 L:      [email protected]
4622 S:      Supported
4623 W:      http://www.chelsio.com
4624 F:      drivers/scsi/cxgbi/cxgb3i
4625
4626 CXGB4 CRYPTO DRIVER (chcr)
4627 M:      Ayush Sawal <[email protected]>
4628 M:      Vinay Kumar Yadav <[email protected]>
4629 M:      Rohit Maheshwari <[email protected]>
4630 L:      [email protected]
4631 S:      Supported
4632 W:      http://www.chelsio.com
4633 F:      drivers/crypto/chelsio
4634
4635 CXGB4 ETHERNET DRIVER (CXGB4)
4636 M:      Vishal Kulkarni <[email protected]>
4637 L:      [email protected]
4638 S:      Supported
4639 W:      http://www.chelsio.com
4640 F:      drivers/net/ethernet/chelsio/cxgb4/
4641
4642 CXGB4 ISCSI DRIVER (CXGB4I)
4643 M:      Karen Xie <[email protected]>
4644 L:      [email protected]
4645 S:      Supported
4646 W:      http://www.chelsio.com
4647 F:      drivers/scsi/cxgbi/cxgb4i
4648
4649 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4650 M:      Potnuri Bharat Teja <[email protected]>
4651 L:      [email protected]
4652 S:      Supported
4653 W:      http://www.openfabrics.org
4654 F:      drivers/infiniband/hw/cxgb4/
4655 F:      include/uapi/rdma/cxgb4-abi.h
4656
4657 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4658 M:      Vishal Kulkarni <[email protected]>
4659 L:      [email protected]
4660 S:      Supported
4661 W:      http://www.chelsio.com
4662 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4663
4664 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4665 M:      Frederic Barrat <[email protected]>
4666 M:      Andrew Donnellan <[email protected]>
4667 L:      [email protected]
4668 S:      Supported
4669 F:      Documentation/ABI/testing/sysfs-class-cxl
4670 F:      Documentation/powerpc/cxl.rst
4671 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4672 F:      drivers/misc/cxl/
4673 F:      include/misc/cxl*
4674 F:      include/uapi/misc/cxl.h
4675
4676 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4677 M:      Manoj N. Kumar <[email protected]>
4678 M:      Matthew R. Ochs <[email protected]>
4679 M:      Uma Krishnan <[email protected]>
4680 L:      [email protected]
4681 S:      Supported
4682 F:      Documentation/powerpc/cxlflash.rst
4683 F:      drivers/scsi/cxlflash/
4684 F:      include/uapi/scsi/cxlflash_ioctl.h
4685
4686 CYBERPRO FB DRIVER
4687 M:      Russell King <[email protected]>
4688 L:      [email protected] (moderated for non-subscribers)
4689 S:      Maintained
4690 W:      http://www.armlinux.org.uk/
4691 F:      drivers/video/fbdev/cyber2000fb.*
4692
4693 CYCLADES ASYNC MUX DRIVER
4694 S:      Orphan
4695 W:      http://www.cyclades.com/
4696 F:      drivers/tty/cyclades.c
4697 F:      include/linux/cyclades.h
4698 F:      include/uapi/linux/cyclades.h
4699
4700 CYCLADES PC300 DRIVER
4701 S:      Orphan
4702 W:      http://www.cyclades.com/
4703 F:      drivers/net/wan/pc300*
4704
4705 CYPRESS_FIRMWARE MEDIA DRIVER
4706 M:      Antti Palosaari <[email protected]>
4707 L:      [email protected]
4708 S:      Maintained
4709 W:      https://linuxtv.org
4710 W:      http://palosaari.fi/linux/
4711 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4712 T:      git git://linuxtv.org/anttip/media_tree.git
4713 F:      drivers/media/common/cypress_firmware*
4714
4715 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4716 M:      Linus Walleij <[email protected]>
4717 L:      [email protected]
4718 S:      Maintained
4719 F:      drivers/input/touchscreen/cy8ctma140.c
4720
4721 CYTTSP TOUCHSCREEN DRIVER
4722 M:      Ferruh Yigit <[email protected]>
4723 L:      [email protected]
4724 S:      Supported
4725 F:      drivers/input/touchscreen/cyttsp*
4726 F:      include/linux/input/cyttsp.h
4727
4728 D-LINK DIR-685 TOUCHKEYS DRIVER
4729 M:      Linus Walleij <[email protected]>
4730 L:      [email protected]
4731 S:      Supported
4732 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4733
4734 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4735 M:      Joshua Kinard <[email protected]>
4736 S:      Maintained
4737 F:      drivers/rtc/rtc-ds1685.c
4738 F:      include/linux/rtc/ds1685.h
4739
4740 DAMA SLAVE for AX.25
4741 M:      Joerg Reuter <[email protected]>
4742 L:      [email protected]
4743 S:      Maintained
4744 W:      http://yaina.de/jreuter/
4745 W:      http://www.qsl.net/dl1bke/
4746 F:      net/ax25/af_ax25.c
4747 F:      net/ax25/ax25_dev.c
4748 F:      net/ax25/ax25_ds_*
4749 F:      net/ax25/ax25_in.c
4750 F:      net/ax25/ax25_out.c
4751 F:      net/ax25/ax25_timer.c
4752 F:      net/ax25/sysctl_net_ax25.c
4753
4754 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4755 L:      [email protected]
4756 S:      Orphan
4757 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
4758 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4759
4760 DC390/AM53C974 SCSI driver
4761 M:      Hannes Reinecke <[email protected]>
4762 L:      [email protected]
4763 S:      Maintained
4764 F:      drivers/scsi/am53c974.c
4765
4766 DC395x SCSI driver
4767 M:      Oliver Neukum <[email protected]>
4768 M:      Ali Akcaagac <[email protected]>
4769 M:      Jamie Lenehan <[email protected]>
4770 L:      [email protected]
4771 S:      Maintained
4772 W:      http://twibble.org/dist/dc395x/
4773 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4774 F:      Documentation/scsi/dc395x.rst
4775 F:      drivers/scsi/dc395x.*
4776
4777 DCCP PROTOCOL
4778 M:      Gerrit Renker <[email protected]>
4779 L:      [email protected]
4780 S:      Maintained
4781 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4782 F:      include/linux/dccp.h
4783 F:      include/linux/tfrc.h
4784 F:      include/uapi/linux/dccp.h
4785 F:      net/dccp/
4786
4787 DECnet NETWORK LAYER
4788 L:      [email protected]
4789 S:      Orphan
4790 W:      http://linux-decnet.sourceforge.net
4791 F:      Documentation/networking/decnet.rst
4792 F:      net/decnet/
4793
4794 DECSTATION PLATFORM SUPPORT
4795 M:      "Maciej W. Rozycki" <[email protected]>
4796 L:      [email protected]
4797 S:      Maintained
4798 W:      http://www.linux-mips.org/wiki/DECstation
4799 F:      arch/mips/dec/
4800 F:      arch/mips/include/asm/dec/
4801 F:      arch/mips/include/asm/mach-dec/
4802
4803 DEFXX FDDI NETWORK DRIVER
4804 M:      "Maciej W. Rozycki" <[email protected]>
4805 S:      Maintained
4806 F:      drivers/net/fddi/defxx.*
4807
4808 DEFZA FDDI NETWORK DRIVER
4809 M:      "Maciej W. Rozycki" <[email protected]>
4810 S:      Maintained
4811 F:      drivers/net/fddi/defza.*
4812
4813 DEINTERLACE DRIVERS FOR ALLWINNER H3
4814 M:      Jernej Skrabec <[email protected]>
4815 L:      [email protected]
4816 S:      Maintained
4817 T:      git git://linuxtv.org/media_tree.git
4818 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4819 F:      drivers/media/platform/sunxi/sun8i-di/
4820
4821 DELL LAPTOP DRIVER
4822 M:      Matthew Garrett <[email protected]>
4823 M:      Pali Rohár <[email protected]>
4824 L:      [email protected]
4825 S:      Maintained
4826 F:      drivers/platform/x86/dell-laptop.c
4827
4828 DELL LAPTOP FREEFALL DRIVER
4829 M:      Pali Rohár <[email protected]>
4830 S:      Maintained
4831 F:      drivers/platform/x86/dell-smo8800.c
4832
4833 DELL LAPTOP RBTN DRIVER
4834 M:      Pali Rohár <[email protected]>
4835 S:      Maintained
4836 F:      drivers/platform/x86/dell-rbtn.*
4837
4838 DELL LAPTOP SMM DRIVER
4839 M:      Pali Rohár <[email protected]>
4840 S:      Maintained
4841 F:      drivers/hwmon/dell-smm-hwmon.c
4842 F:      include/uapi/linux/i8k.h
4843
4844 DELL REMOTE BIOS UPDATE DRIVER
4845 M:      Stuart Hayes <[email protected]>
4846 L:      [email protected]
4847 S:      Maintained
4848 F:      drivers/platform/x86/dell_rbu.c
4849
4850 DELL SMBIOS DRIVER
4851 M:      Pali Rohár <[email protected]>
4852 M:      Mario Limonciello <[email protected]>
4853 L:      [email protected]
4854 S:      Maintained
4855 F:      drivers/platform/x86/dell-smbios.*
4856
4857 DELL SMBIOS SMM DRIVER
4858 M:      Mario Limonciello <[email protected]>
4859 L:      [email protected]
4860 S:      Maintained
4861 F:      drivers/platform/x86/dell-smbios-smm.c
4862
4863 DELL SMBIOS WMI DRIVER
4864 M:      Mario Limonciello <[email protected]>
4865 L:      [email protected]
4866 S:      Maintained
4867 F:      drivers/platform/x86/dell-smbios-wmi.c
4868 F:      tools/wmi/dell-smbios-example.c
4869
4870 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4871 M:      Stuart Hayes <[email protected]>
4872 L:      [email protected]
4873 S:      Maintained
4874 F:      Documentation/driver-api/dcdbas.rst
4875 F:      drivers/platform/x86/dcdbas.*
4876
4877 DELL WMI DESCRIPTOR DRIVER
4878 M:      Mario Limonciello <[email protected]>
4879 S:      Maintained
4880 F:      drivers/platform/x86/dell-wmi-descriptor.c
4881
4882 DELL WMI NOTIFICATIONS DRIVER
4883 M:      Matthew Garrett <[email protected]>
4884 M:      Pali Rohár <[email protected]>
4885 S:      Maintained
4886 F:      drivers/platform/x86/dell-wmi.c
4887
4888 DELTA ST MEDIA DRIVER
4889 M:      Hugues Fruchet <[email protected]>
4890 L:      [email protected]
4891 S:      Supported
4892 W:      https://linuxtv.org
4893 T:      git git://linuxtv.org/media_tree.git
4894 F:      drivers/media/platform/sti/delta
4895
4896 DENALI NAND DRIVER
4897 M:      Masahiro Yamada <[email protected]>
4898 L:      [email protected]
4899 S:      Supported
4900 F:      drivers/mtd/nand/raw/denali*
4901
4902 DESIGNWARE EDMA CORE IP DRIVER
4903 M:      Gustavo Pimentel <[email protected]>
4904 L:      [email protected]
4905 S:      Maintained
4906 F:      drivers/dma/dw-edma/
4907 F:      include/linux/dma/edma.h
4908
4909 DESIGNWARE USB2 DRD IP DRIVER
4910 M:      Minas Harutyunyan <[email protected]>
4911 L:      [email protected]
4912 S:      Maintained
4913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4914 F:      drivers/usb/dwc2/
4915
4916 DESIGNWARE USB3 DRD IP DRIVER
4917 M:      Felipe Balbi <[email protected]>
4918 L:      [email protected]
4919 S:      Maintained
4920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4921 F:      drivers/usb/dwc3/
4922
4923 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4924 M:      Andreas Klinger <[email protected]>
4925 L:      [email protected]
4926 S:      Maintained
4927 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4928 F:      drivers/iio/proximity/srf*.c
4929
4930 DEVICE COREDUMP (DEV_COREDUMP)
4931 M:      Johannes Berg <[email protected]>
4932 L:      [email protected]
4933 S:      Maintained
4934 F:      drivers/base/devcoredump.c
4935 F:      include/linux/devcoredump.h
4936
4937 DEVICE DIRECT ACCESS (DAX)
4938 M:      Dan Williams <[email protected]>
4939 M:      Vishal Verma <[email protected]>
4940 M:      Dave Jiang <[email protected]>
4941 L:      [email protected]
4942 S:      Supported
4943 F:      drivers/dax/
4944
4945 DEVICE FREQUENCY (DEVFREQ)
4946 M:      MyungJoo Ham <[email protected]>
4947 M:      Kyungmin Park <[email protected]>
4948 M:      Chanwoo Choi <[email protected]>
4949 L:      [email protected]
4950 S:      Maintained
4951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4952 F:      Documentation/devicetree/bindings/devfreq/
4953 F:      drivers/devfreq/
4954 F:      include/linux/devfreq.h
4955 F:      include/trace/events/devfreq.h
4956
4957 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4958 M:      Chanwoo Choi <[email protected]>
4959 L:      [email protected]
4960 S:      Supported
4961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4962 F:      Documentation/devicetree/bindings/devfreq/event/
4963 F:      drivers/devfreq/devfreq-event.c
4964 F:      drivers/devfreq/event/
4965 F:      include/dt-bindings/pmu/exynos_ppmu.h
4966 F:      include/linux/devfreq-event.h
4967
4968 DEVICE NUMBER REGISTRY
4969 M:      Torben Mathiasen <[email protected]>
4970 S:      Maintained
4971 W:      http://lanana.org/docs/device-list/index.html
4972
4973 DEVICE-MAPPER  (LVM)
4974 M:      Alasdair Kergon <[email protected]>
4975 M:      Mike Snitzer <[email protected]>
4976 M:      [email protected]
4977 L:      [email protected]
4978 S:      Maintained
4979 W:      http://sources.redhat.com/dm
4980 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4982 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4983 F:      Documentation/admin-guide/device-mapper/
4984 F:      drivers/md/Kconfig
4985 F:      drivers/md/Makefile
4986 F:      drivers/md/dm*
4987 F:      drivers/md/persistent-data/
4988 F:      include/linux/device-mapper.h
4989 F:      include/linux/dm-*.h
4990 F:      include/uapi/linux/dm-*.h
4991
4992 DEVLINK
4993 M:      Jiri Pirko <[email protected]>
4994 L:      [email protected]
4995 S:      Supported
4996 F:      Documentation/networking/devlink
4997 F:      include/net/devlink.h
4998 F:      include/uapi/linux/devlink.h
4999 F:      net/core/devlink.c
5000
5001 DIALOG SEMICONDUCTOR DRIVERS
5002 M:      Support Opensource <[email protected]>
5003 S:      Supported
5004 W:      http://www.dialog-semiconductor.com/products
5005 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5006 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5007 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5008 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5009 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5010 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5011 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5012 F:      Documentation/hwmon/da90??.rst
5013 F:      drivers/gpio/gpio-da90??.c
5014 F:      drivers/hwmon/da90??-hwmon.c
5015 F:      drivers/iio/adc/da91??-*.c
5016 F:      drivers/input/misc/da90??_onkey.c
5017 F:      drivers/input/touchscreen/da9052_tsi.c
5018 F:      drivers/leds/leds-da90??.c
5019 F:      drivers/mfd/da903x.c
5020 F:      drivers/mfd/da90??-*.c
5021 F:      drivers/mfd/da91??-*.c
5022 F:      drivers/pinctrl/pinctrl-da90??.c
5023 F:      drivers/power/supply/da9052-battery.c
5024 F:      drivers/power/supply/da91??-*.c
5025 F:      drivers/regulator/da903x.c
5026 F:      drivers/regulator/da9???-regulator.[ch]
5027 F:      drivers/regulator/slg51000-regulator.[ch]
5028 F:      drivers/rtc/rtc-da90??.c
5029 F:      drivers/thermal/da90??-thermal.c
5030 F:      drivers/video/backlight/da90??_bl.c
5031 F:      drivers/watchdog/da90??_wdt.c
5032 F:      include/linux/mfd/da903x.h
5033 F:      include/linux/mfd/da9052/
5034 F:      include/linux/mfd/da9055/
5035 F:      include/linux/mfd/da9062/
5036 F:      include/linux/mfd/da9063/
5037 F:      include/linux/mfd/da9150/
5038 F:      include/linux/regulator/da9211.h
5039 F:      include/sound/da[79]*.h
5040 F:      sound/soc/codecs/da[79]*.[ch]
5041
5042 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5043 M:      William Breathitt Gray <[email protected]>
5044 L:      [email protected]
5045 S:      Maintained
5046 F:      drivers/gpio/gpio-gpio-mm.c
5047
5048 DIOLAN U2C-12 I2C DRIVER
5049 M:      Guenter Roeck <[email protected]>
5050 L:      [email protected]
5051 S:      Maintained
5052 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5053
5054 DIRECTORY NOTIFICATION (DNOTIFY)
5055 M:      Jan Kara <[email protected]>
5056 R:      Amir Goldstein <[email protected]>
5057 L:      [email protected]
5058 S:      Maintained
5059 F:      Documentation/filesystems/dnotify.rst
5060 F:      fs/notify/dnotify/
5061 F:      include/linux/dnotify.h
5062
5063 DISK GEOMETRY AND PARTITION HANDLING
5064 M:      Andries Brouwer <[email protected]>
5065 S:      Maintained
5066 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5067 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5068 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5069
5070 DISKQUOTA
5071 M:      Jan Kara <[email protected]>
5072 S:      Maintained
5073 F:      Documentation/filesystems/quota.rst
5074 F:      fs/quota/
5075 F:      include/linux/quota*.h
5076 F:      include/uapi/linux/quota*.h
5077
5078 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5079 M:      Bernie Thompson <[email protected]>
5080 L:      [email protected]
5081 S:      Maintained
5082 W:      http://plugable.com/category/projects/udlfb/
5083 F:      Documentation/fb/udlfb.rst
5084 F:      drivers/video/fbdev/udlfb.c
5085 F:      include/video/udlfb.h
5086
5087 DISTRIBUTED LOCK MANAGER (DLM)
5088 M:      Christine Caulfield <[email protected]>
5089 M:      David Teigland <[email protected]>
5090 L:      [email protected]
5091 S:      Supported
5092 W:      http://sources.redhat.com/cluster/
5093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5094 F:      fs/dlm/
5095
5096 DMA BUFFER SHARING FRAMEWORK
5097 M:      Sumit Semwal <[email protected]>
5098 L:      [email protected]
5099 L:      [email protected]
5100 L:      [email protected] (moderated for non-subscribers)
5101 S:      Maintained
5102 T:      git git://anongit.freedesktop.org/drm/drm-misc
5103 F:      Documentation/driver-api/dma-buf.rst
5104 F:      drivers/dma-buf/
5105 F:      include/linux/*fence.h
5106 F:      include/linux/dma-buf*
5107 F:      include/linux/dma-resv.h
5108 K:      \bdma_(?:buf|fence|resv)\b
5109
5110 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5111 M:      Vinod Koul <[email protected]>
5112 L:      [email protected]
5113 S:      Maintained
5114 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5115 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
5116 F:      Documentation/devicetree/bindings/dma/
5117 F:      Documentation/driver-api/dmaengine/
5118 F:      drivers/dma/
5119 F:      include/linux/dmaengine.h
5120 F:      include/linux/of_dma.h
5121
5122 DMA MAPPING HELPERS
5123 M:      Christoph Hellwig <[email protected]>
5124 M:      Marek Szyprowski <[email protected]>
5125 R:      Robin Murphy <[email protected]>
5126 L:      [email protected]
5127 S:      Supported
5128 W:      http://git.infradead.org/users/hch/dma-mapping.git
5129 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5130 F:      include/asm-generic/dma-mapping.h
5131 F:      include/linux/dma-direct.h
5132 F:      include/linux/dma-mapping.h
5133 F:      include/linux/dma-noncoherent.h
5134 F:      kernel/dma/
5135
5136 DMA-BUF HEAPS FRAMEWORK
5137 M:      Sumit Semwal <[email protected]>
5138 R:      Andrew F. Davis <[email protected]>
5139 R:      Benjamin Gaignard <[email protected]>
5140 R:      Liam Mark <[email protected]>
5141 R:      Laura Abbott <[email protected]>
5142 R:      Brian Starkey <[email protected]>
5143 R:      John Stultz <[email protected]>
5144 L:      [email protected]
5145 L:      [email protected]
5146 L:      [email protected] (moderated for non-subscribers)
5147 S:      Maintained
5148 T:      git git://anongit.freedesktop.org/drm/drm-misc
5149 F:      drivers/dma-buf/dma-heap.c
5150 F:      drivers/dma-buf/heaps/*
5151 F:      include/linux/dma-heap.h
5152 F:      include/uapi/linux/dma-heap.h
5153
5154 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5155 M:      Lukasz Luba <[email protected]>
5156 L:      [email protected]
5157 L:      [email protected]
5158 S:      Maintained
5159 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5160 F:      drivers/memory/samsung/exynos5422-dmc.c
5161
5162 DME1737 HARDWARE MONITOR DRIVER
5163 M:      Juerg Haefliger <[email protected]>
5164 L:      [email protected]
5165 S:      Maintained
5166 F:      Documentation/hwmon/dme1737.rst
5167 F:      drivers/hwmon/dme1737.c
5168
5169 DMI/SMBIOS SUPPORT
5170 M:      Jean Delvare <[email protected]>
5171 S:      Maintained
5172 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5173 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5174 F:      drivers/firmware/dmi-id.c
5175 F:      drivers/firmware/dmi_scan.c
5176 F:      include/linux/dmi.h
5177
5178 DOCUMENTATION
5179 M:      Jonathan Corbet <[email protected]>
5180 L:      [email protected]
5181 S:      Maintained
5182 T:      git git://git.lwn.net/linux.git docs-next
5183 F:      Documentation/
5184 F:      scripts/documentation-file-ref-check
5185 F:      scripts/kernel-doc
5186 F:      scripts/sphinx-pre-install
5187 X:      Documentation/ABI/
5188 X:      Documentation/admin-guide/media/
5189 X:      Documentation/devicetree/
5190 X:      Documentation/driver-api/media/
5191 X:      Documentation/firmware-guide/acpi/
5192 X:      Documentation/i2c/
5193 X:      Documentation/power/
5194 X:      Documentation/spi/
5195 X:      Documentation/userspace-api/media/
5196
5197 DOCUMENTATION SCRIPTS
5198 M:      Mauro Carvalho Chehab <[email protected]>
5199 L:      [email protected]
5200 S:      Maintained
5201 F:      Documentation/sphinx/parse-headers.pl
5202 F:      scripts/documentation-file-ref-check
5203 F:      scripts/sphinx-pre-install
5204
5205 DOCUMENTATION/ITALIAN
5206 M:      Federico Vaga <[email protected]>
5207 L:      [email protected]
5208 S:      Maintained
5209 F:      Documentation/translations/it_IT
5210
5211 DONGWOON DW9714 LENS VOICE COIL DRIVER
5212 M:      Sakari Ailus <[email protected]>
5213 L:      [email protected]
5214 S:      Maintained
5215 T:      git git://linuxtv.org/media_tree.git
5216 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5217 F:      drivers/media/i2c/dw9714.c
5218
5219 DONGWOON DW9807 LENS VOICE COIL DRIVER
5220 M:      Sakari Ailus <[email protected]>
5221 L:      [email protected]
5222 S:      Maintained
5223 T:      git git://linuxtv.org/media_tree.git
5224 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5225 F:      drivers/media/i2c/dw9807-vcm.c
5226
5227 DOUBLETALK DRIVER
5228 M:      "James R. Van Zandt" <[email protected]>
5229 L:      [email protected]
5230 S:      Maintained
5231 F:      drivers/char/dtlk.c
5232 F:      include/linux/dtlk.h
5233
5234 DPAA2 DATAPATH I/O (DPIO) DRIVER
5235 M:      Roy Pledge <[email protected]>
5236 L:      [email protected]
5237 S:      Maintained
5238 F:      drivers/soc/fsl/dpio
5239
5240 DPAA2 ETHERNET DRIVER
5241 M:      Ioana Ciornei <[email protected]>
5242 M:      Ioana Radulescu <[email protected]>
5243 L:      [email protected]
5244 S:      Maintained
5245 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5246 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5247 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5248 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5249 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5250 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5251 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5252 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5253 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5254
5255 DPAA2 ETHERNET SWITCH DRIVER
5256 M:      Ioana Radulescu <[email protected]>
5257 M:      Ioana Ciornei <[email protected]>
5258 L:      [email protected]
5259 S:      Maintained
5260 F:      drivers/staging/fsl-dpaa2/ethsw
5261
5262 DPT_I2O SCSI RAID DRIVER
5263 M:      Adaptec OEM Raid Solutions <[email protected]>
5264 L:      [email protected]
5265 S:      Maintained
5266 W:      http://www.adaptec.com/
5267 F:      drivers/scsi/dpt*
5268 F:      drivers/scsi/dpt/
5269
5270 DRBD DRIVER
5271 M:      Philipp Reisner <[email protected]>
5272 M:      Lars Ellenberg <[email protected]>
5273 L:      [email protected]
5274 S:      Supported
5275 W:      http://www.drbd.org
5276 T:      git git://git.linbit.com/linux-drbd.git
5277 T:      git git://git.linbit.com/drbd-8.4.git
5278 F:      Documentation/admin-guide/blockdev/
5279 F:      drivers/block/drbd/
5280 F:      lib/lru_cache.c
5281
5282 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5283 M:      Greg Kroah-Hartman <[email protected]>
5284 R:      "Rafael J. Wysocki" <[email protected]>
5285 S:      Supported
5286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5287 F:      Documentation/core-api/kobject.rst
5288 F:      drivers/base/
5289 F:      fs/debugfs/
5290 F:      fs/sysfs/
5291 F:      include/linux/debugfs.h
5292 F:      include/linux/kobj*
5293 F:      lib/kobj*
5294
5295 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5296 M:      Kevin Hilman <[email protected]>
5297 M:      Nishanth Menon <[email protected]>
5298 L:      [email protected]
5299 S:      Maintained
5300 F:      drivers/power/avs/
5301 F:      include/linux/power/smartreflex.h
5302
5303 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5304 M:      Maxime Ripard <[email protected]>
5305 M:      Chen-Yu Tsai <[email protected]>
5306 R:      Jernej Skrabec <[email protected]>
5307 L:      [email protected]
5308 S:      Supported
5309 T:      git git://anongit.freedesktop.org/drm/drm-misc
5310 F:      drivers/gpu/drm/sun4i/sun8i*
5311
5312 DRM DRIVER FOR ARM PL111 CLCD
5313 M:      Eric Anholt <[email protected]>
5314 S:      Supported
5315 T:      git git://anongit.freedesktop.org/drm/drm-misc
5316 F:      drivers/gpu/drm/pl111/
5317
5318 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5319 M:      Linus Walleij <[email protected]>
5320 S:      Maintained
5321 T:      git git://anongit.freedesktop.org/drm/drm-misc
5322 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5323 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5324
5325 DRM DRIVER FOR ASPEED BMC GFX
5326 M:      Joel Stanley <[email protected]>
5327 L:      [email protected]
5328 S:      Supported
5329 T:      git git://anongit.freedesktop.org/drm/drm-misc
5330 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5331 F:      drivers/gpu/drm/aspeed/
5332
5333 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5334 M:      Dave Airlie <[email protected]>
5335 S:      Odd Fixes
5336 F:      drivers/gpu/drm/ast/
5337
5338 DRM DRIVER FOR BOCHS VIRTUAL GPU
5339 M:      Gerd Hoffmann <[email protected]>
5340 L:      [email protected]
5341 S:      Maintained
5342 T:      git git://anongit.freedesktop.org/drm/drm-misc
5343 F:      drivers/gpu/drm/bochs/
5344
5345 DRM DRIVER FOR BOE HIMAX8279D PANELS
5346 M:      Jerry Han <[email protected]>
5347 S:      Maintained
5348 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5349 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5350
5351 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5352 M:      Linus Walleij <[email protected]>
5353 S:      Maintained
5354 T:      git git://anongit.freedesktop.org/drm/drm-misc
5355 F:      drivers/gpu/drm/tve200/
5356
5357 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5358 M:      Icenowy Zheng <[email protected]>
5359 S:      Maintained
5360 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5361 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5362
5363 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5364 M:      Jagan Teki <[email protected]>
5365 S:      Maintained
5366 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5367 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5368
5369 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5370 M:      Hans de Goede <[email protected]>
5371 S:      Maintained
5372 T:      git git://anongit.freedesktop.org/drm/drm-misc
5373 F:      drivers/gpu/drm/tiny/gm12u320.c
5374
5375 DRM DRIVER FOR HX8357D PANELS
5376 M:      Eric Anholt <[email protected]>
5377 S:      Maintained
5378 T:      git git://anongit.freedesktop.org/drm/drm-misc
5379 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5380 F:      drivers/gpu/drm/tiny/hx8357d.c
5381
5382 DRM DRIVER FOR ILITEK ILI9225 PANELS
5383 M:      David Lechner <[email protected]>
5384 S:      Maintained
5385 T:      git git://anongit.freedesktop.org/drm/drm-misc
5386 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5387 F:      drivers/gpu/drm/tiny/ili9225.c
5388
5389 DRM DRIVER FOR ILITEK ILI9486 PANELS
5390 M:      Kamlesh Gurudasani <[email protected]>
5391 S:      Maintained
5392 T:      git git://anongit.freedesktop.org/drm/drm-misc
5393 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5394 F:      drivers/gpu/drm/tiny/ili9486.c
5395
5396 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5397 S:      Orphan / Obsolete
5398 F:      drivers/gpu/drm/i810/
5399 F:      include/uapi/drm/i810_drm.h
5400
5401 DRM DRIVER FOR LVDS PANELS
5402 M:      Laurent Pinchart <[email protected]>
5403 L:      [email protected]
5404 T:      git git://anongit.freedesktop.org/drm/drm-misc
5405 S:      Maintained
5406 F:      drivers/gpu/drm/panel/panel-lvds.c
5407 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5408
5409 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5410 S:      Orphan / Obsolete
5411 F:      drivers/gpu/drm/mga/
5412 F:      include/uapi/drm/mga_drm.h
5413
5414 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5415 M:      Dave Airlie <[email protected]>
5416 S:      Odd Fixes
5417 F:      drivers/gpu/drm/mgag200/
5418
5419 DRM DRIVER FOR MI0283QT
5420 M:      Noralf Trønnes <[email protected]>
5421 S:      Maintained
5422 T:      git git://anongit.freedesktop.org/drm/drm-misc
5423 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5424 F:      drivers/gpu/drm/tiny/mi0283qt.c
5425
5426 DRM DRIVER FOR MSM ADRENO GPU
5427 M:      Rob Clark <[email protected]>
5428 M:      Sean Paul <[email protected]>
5429 L:      [email protected]
5430 L:      [email protected]
5431 L:      [email protected]
5432 S:      Maintained
5433 T:      git https://gitlab.freedesktop.org/drm/msm.git
5434 F:      Documentation/devicetree/bindings/display/msm/
5435 F:      drivers/gpu/drm/msm/
5436 F:      include/uapi/drm/msm_drm.h
5437
5438 DRM DRIVER FOR NOVATEK NT35510 PANELS
5439 M:      Linus Walleij <[email protected]>
5440 S:      Maintained
5441 T:      git git://anongit.freedesktop.org/drm/drm-misc
5442 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5443 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5444
5445 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5446 M:      Ben Skeggs <[email protected]>
5447 L:      [email protected]
5448 L:      [email protected]
5449 S:      Supported
5450 T:      git git://github.com/skeggsb/linux
5451 F:      drivers/gpu/drm/nouveau/
5452 F:      include/uapi/drm/nouveau_drm.h
5453
5454 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5455 M:      Stefan Mavrodiev <[email protected]>
5456 S:      Maintained
5457 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5458 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5459
5460 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5461 M:      Noralf Trønnes <[email protected]>
5462 S:      Maintained
5463 T:      git git://anongit.freedesktop.org/drm/drm-misc
5464 F:      Documentation/devicetree/bindings/display/repaper.txt
5465 F:      drivers/gpu/drm/tiny/repaper.c
5466
5467 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5468 M:      Dave Airlie <[email protected]>
5469 M:      Gerd Hoffmann <[email protected]>
5470 L:      [email protected]
5471 S:      Obsolete
5472 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5473 T:      git git://anongit.freedesktop.org/drm/drm-misc
5474 F:      drivers/gpu/drm/tiny/cirrus.c
5475
5476 DRM DRIVER FOR QXL VIRTUAL GPU
5477 M:      Dave Airlie <[email protected]>
5478 M:      Gerd Hoffmann <[email protected]>
5479 L:      [email protected]
5480 L:      [email protected]
5481 S:      Maintained
5482 T:      git git://anongit.freedesktop.org/drm/drm-misc
5483 F:      drivers/gpu/drm/qxl/
5484 F:      include/uapi/drm/qxl_drm.h
5485
5486 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5487 S:      Orphan / Obsolete
5488 F:      drivers/gpu/drm/r128/
5489 F:      include/uapi/drm/r128_drm.h
5490
5491 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5492 M:      Robert Chiras <[email protected]>
5493 S:      Maintained
5494 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5495 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5496
5497 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5498 M:      Guido Günther <[email protected]>
5499 R:      Purism Kernel Team <[email protected]>
5500 S:      Maintained
5501 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5502 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5503
5504 DRM DRIVER FOR SAVAGE VIDEO CARDS
5505 S:      Orphan / Obsolete
5506 F:      drivers/gpu/drm/savage/
5507 F:      include/uapi/drm/savage_drm.h
5508
5509 DRM DRIVER FOR SIS VIDEO CARDS
5510 S:      Orphan / Obsolete
5511 F:      drivers/gpu/drm/sis/
5512 F:      include/uapi/drm/sis_drm.h
5513
5514 DRM DRIVER FOR SITRONIX ST7586 PANELS
5515 M:      David Lechner <[email protected]>
5516 S:      Maintained
5517 T:      git git://anongit.freedesktop.org/drm/drm-misc
5518 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5519 F:      drivers/gpu/drm/tiny/st7586.c
5520
5521 DRM DRIVER FOR SITRONIX ST7701 PANELS
5522 M:      Jagan Teki <[email protected]>
5523 S:      Maintained
5524 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5525 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5526
5527 DRM DRIVER FOR SITRONIX ST7735R PANELS
5528 M:      David Lechner <[email protected]>
5529 S:      Maintained
5530 T:      git git://anongit.freedesktop.org/drm/drm-misc
5531 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5532 F:      drivers/gpu/drm/tiny/st7735r.c
5533
5534 DRM DRIVER FOR SONY ACX424AKP PANELS
5535 M:      Linus Walleij <[email protected]>
5536 S:      Maintained
5537 T:      git git://anongit.freedesktop.org/drm/drm-misc
5538 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5539
5540 DRM DRIVER FOR ST-ERICSSON MCDE
5541 M:      Linus Walleij <[email protected]>
5542 S:      Maintained
5543 T:      git git://anongit.freedesktop.org/drm/drm-misc
5544 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5545 F:      drivers/gpu/drm/mcde/
5546
5547 DRM DRIVER FOR TDFX VIDEO CARDS
5548 S:      Orphan / Obsolete
5549 F:      drivers/gpu/drm/tdfx/
5550
5551 DRM DRIVER FOR TPO TPG110 PANELS
5552 M:      Linus Walleij <[email protected]>
5553 S:      Maintained
5554 T:      git git://anongit.freedesktop.org/drm/drm-misc
5555 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5556 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5557
5558 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5559 M:      Dave Airlie <[email protected]>
5560 R:      Sean Paul <[email protected]>
5561 L:      [email protected]
5562 S:      Odd Fixes
5563 T:      git git://anongit.freedesktop.org/drm/drm-misc
5564 F:      drivers/gpu/drm/udl/
5565
5566 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5567 M:      Rodrigo Siqueira <[email protected]>
5568 R:      Haneen Mohammed <[email protected]>
5569 R:      Daniel Vetter <[email protected]>
5570 L:      [email protected]
5571 S:      Maintained
5572 T:      git git://anongit.freedesktop.org/drm/drm-misc
5573 F:      Documentation/gpu/vkms.rst
5574 F:      drivers/gpu/drm/vkms/
5575
5576 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5577 M:      Hans de Goede <[email protected]>
5578 L:      [email protected]
5579 S:      Maintained
5580 T:      git git://anongit.freedesktop.org/drm/drm-misc
5581 F:      drivers/gpu/drm/vboxvideo/
5582
5583 DRM DRIVER FOR VMWARE VIRTUAL GPU
5584 M:      "VMware Graphics" <[email protected]>
5585 M:      Roland Scheidegger <[email protected]>
5586 L:      [email protected]
5587 S:      Supported
5588 T:      git git://people.freedesktop.org/~sroland/linux
5589 F:      drivers/gpu/drm/vmwgfx/
5590 F:      include/uapi/drm/vmwgfx_drm.h
5591
5592 DRM DRIVERS
5593 M:      David Airlie <[email protected]>
5594 M:      Daniel Vetter <[email protected]>
5595 L:      [email protected]
5596 S:      Maintained
5597 B:      https://bugs.freedesktop.org/
5598 C:      irc://chat.freenode.net/dri-devel
5599 T:      git git://anongit.freedesktop.org/drm/drm
5600 F:      Documentation/devicetree/bindings/display/
5601 F:      Documentation/devicetree/bindings/gpu/
5602 F:      Documentation/gpu/
5603 F:      drivers/gpu/drm/
5604 F:      drivers/gpu/vga/
5605 F:      include/drm/
5606 F:      include/linux/vga*
5607 F:      include/uapi/drm/
5608
5609 DRM DRIVERS AND MISC GPU PATCHES
5610 M:      Maarten Lankhorst <[email protected]>
5611 M:      Maxime Ripard <[email protected]>
5612 M:      Thomas Zimmermann <[email protected]>
5613 S:      Maintained
5614 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5615 T:      git git://anongit.freedesktop.org/drm/drm-misc
5616 F:      Documentation/gpu/
5617 F:      drivers/gpu/drm/*
5618 F:      drivers/gpu/vga/
5619 F:      include/drm/drm*
5620 F:      include/linux/vga*
5621 F:      include/uapi/drm/drm*
5622
5623 DRM DRIVERS FOR ALLWINNER A10
5624 M:      Maxime Ripard <[email protected]>
5625 M:      Chen-Yu Tsai <[email protected]>
5626 L:      [email protected]
5627 S:      Supported
5628 T:      git git://anongit.freedesktop.org/drm/drm-misc
5629 F:      Documentation/devicetree/bindings/display/allwinner*
5630 F:      drivers/gpu/drm/sun4i/
5631
5632 DRM DRIVERS FOR AMLOGIC SOCS
5633 M:      Neil Armstrong <[email protected]>
5634 L:      [email protected]
5635 L:      [email protected]
5636 S:      Supported
5637 W:      http://linux-meson.com/
5638 T:      git git://anongit.freedesktop.org/drm/drm-misc
5639 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5640 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5641 F:      Documentation/gpu/meson.rst
5642 F:      drivers/gpu/drm/meson/
5643
5644 DRM DRIVERS FOR ATMEL HLCDC
5645 M:      Sam Ravnborg <[email protected]>
5646 M:      Boris Brezillon <[email protected]>
5647 L:      [email protected]
5648 S:      Supported
5649 T:      git git://anongit.freedesktop.org/drm/drm-misc
5650 F:      Documentation/devicetree/bindings/display/atmel/
5651 F:      drivers/gpu/drm/atmel-hlcdc/
5652
5653 DRM DRIVERS FOR BRIDGE CHIPS
5654 M:      Andrzej Hajda <[email protected]>
5655 M:      Neil Armstrong <[email protected]>
5656 R:      Laurent Pinchart <[email protected]>
5657 R:      Jonas Karlman <[email protected]>
5658 R:      Jernej Skrabec <[email protected]>
5659 S:      Maintained
5660 T:      git git://anongit.freedesktop.org/drm/drm-misc
5661 F:      drivers/gpu/drm/bridge/
5662
5663 DRM DRIVERS FOR EXYNOS
5664 M:      Inki Dae <[email protected]>
5665 M:      Joonyoung Shim <[email protected]>
5666 M:      Seung-Woo Kim <[email protected]>
5667 M:      Kyungmin Park <[email protected]>
5668 L:      [email protected]
5669 S:      Supported
5670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5671 F:      Documentation/devicetree/bindings/display/exynos/
5672 F:      drivers/gpu/drm/exynos/
5673 F:      include/uapi/drm/exynos_drm.h
5674
5675 DRM DRIVERS FOR FREESCALE DCU
5676 M:      Stefan Agner <[email protected]>
5677 M:      Alison Wang <[email protected]>
5678 L:      [email protected]
5679 S:      Supported
5680 T:      git git://anongit.freedesktop.org/drm/drm-misc
5681 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5682 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5683 F:      drivers/gpu/drm/fsl-dcu/
5684
5685 DRM DRIVERS FOR FREESCALE IMX
5686 M:      Philipp Zabel <[email protected]>
5687 L:      [email protected]
5688 S:      Maintained
5689 F:      Documentation/devicetree/bindings/display/imx/
5690 F:      drivers/gpu/drm/imx/
5691 F:      drivers/gpu/ipu-v3/
5692
5693 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5694 M:      Patrik Jakobsson <[email protected]>
5695 L:      [email protected]
5696 S:      Maintained
5697 T:      git git://github.com/patjak/drm-gma500
5698 F:      drivers/gpu/drm/gma500/
5699
5700 DRM DRIVERS FOR HISILICON
5701 M:      Xinliang Liu <[email protected]>
5702 M:      Rongrong Zou <[email protected]>
5703 R:      John Stultz <[email protected]>
5704 R:      Xinwei Kong <[email protected]>
5705 R:      Chen Feng <[email protected]>
5706 L:      [email protected]
5707 S:      Maintained
5708 T:      git git://anongit.freedesktop.org/drm/drm-misc
5709 F:      Documentation/devicetree/bindings/display/hisilicon/
5710 F:      drivers/gpu/drm/hisilicon/
5711
5712 DRM DRIVERS FOR LIMA
5713 M:      Qiang Yu <[email protected]>
5714 L:      [email protected]
5715 L:      [email protected] (moderated for non-subscribers)
5716 S:      Maintained
5717 T:      git git://anongit.freedesktop.org/drm/drm-misc
5718 F:      drivers/gpu/drm/lima/
5719 F:      include/uapi/drm/lima_drm.h
5720
5721 DRM DRIVERS FOR MEDIATEK
5722 M:      Chun-Kuang Hu <[email protected]>
5723 M:      Philipp Zabel <[email protected]>
5724 L:      [email protected]
5725 S:      Supported
5726 F:      Documentation/devicetree/bindings/display/mediatek/
5727 F:      drivers/gpu/drm/mediatek/
5728
5729 DRM DRIVERS FOR NVIDIA TEGRA
5730 M:      Thierry Reding <[email protected]>
5731 L:      [email protected]
5732 L:      [email protected]
5733 S:      Supported
5734 T:      git git://anongit.freedesktop.org/tegra/linux.git
5735 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5736 F:      drivers/gpu/drm/tegra/
5737 F:      drivers/gpu/host1x/
5738 F:      include/linux/host1x.h
5739 F:      include/uapi/drm/tegra_drm.h
5740
5741 DRM DRIVERS FOR RENESAS
5742 M:      Laurent Pinchart <[email protected]>
5743 M:      Kieran Bingham <[email protected]>
5744 L:      [email protected]
5745 L:      [email protected]
5746 S:      Supported
5747 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5748 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5749 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5750 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5751 F:      drivers/gpu/drm/rcar-du/
5752 F:      drivers/gpu/drm/shmobile/
5753 F:      include/linux/platform_data/shmob_drm.h
5754
5755 DRM DRIVERS FOR ROCKCHIP
5756 M:      Sandy Huang <[email protected]>
5757 M:      Heiko Stübner <[email protected]>
5758 L:      [email protected]
5759 S:      Maintained
5760 T:      git git://anongit.freedesktop.org/drm/drm-misc
5761 F:      Documentation/devicetree/bindings/display/rockchip/
5762 F:      drivers/gpu/drm/rockchip/
5763
5764 DRM DRIVERS FOR STI
5765 M:      Benjamin Gaignard <[email protected]>
5766 M:      Vincent Abriou <[email protected]>
5767 L:      [email protected]
5768 S:      Maintained
5769 T:      git git://anongit.freedesktop.org/drm/drm-misc
5770 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5771 F:      drivers/gpu/drm/sti
5772
5773 DRM DRIVERS FOR STM
5774 M:      Yannick Fertre <[email protected]>
5775 M:      Philippe Cornu <[email protected]>
5776 M:      Benjamin Gaignard <[email protected]>
5777 M:      Vincent Abriou <[email protected]>
5778 L:      [email protected]
5779 S:      Maintained
5780 T:      git git://anongit.freedesktop.org/drm/drm-misc
5781 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5782 F:      drivers/gpu/drm/stm
5783
5784 DRM DRIVERS FOR TI KEYSTONE
5785 M:      Jyri Sarha <[email protected]>
5786 M:      Tomi Valkeinen <[email protected]>
5787 L:      [email protected]
5788 S:      Maintained
5789 T:      git git://anongit.freedesktop.org/drm/drm-misc
5790 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5791 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5792 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5793 F:      drivers/gpu/drm/tidss/
5794
5795 DRM DRIVERS FOR TI LCDC
5796 M:      Jyri Sarha <[email protected]>
5797 R:      Tomi Valkeinen <[email protected]>
5798 L:      [email protected]
5799 S:      Maintained
5800 F:      Documentation/devicetree/bindings/display/tilcdc/
5801 F:      drivers/gpu/drm/tilcdc/
5802
5803 DRM DRIVERS FOR TI OMAP
5804 M:      Tomi Valkeinen <[email protected]>
5805 L:      [email protected]
5806 S:      Maintained
5807 F:      Documentation/devicetree/bindings/display/ti/
5808 F:      drivers/gpu/drm/omapdrm/
5809
5810 DRM DRIVERS FOR V3D
5811 M:      Eric Anholt <[email protected]>
5812 S:      Supported
5813 T:      git git://anongit.freedesktop.org/drm/drm-misc
5814 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5815 F:      drivers/gpu/drm/v3d/
5816 F:      include/uapi/drm/v3d_drm.h
5817
5818 DRM DRIVERS FOR VC4
5819 M:      Eric Anholt <[email protected]>
5820 S:      Supported
5821 T:      git git://github.com/anholt/linux
5822 T:      git git://anongit.freedesktop.org/drm/drm-misc
5823 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5824 F:      drivers/gpu/drm/vc4/
5825 F:      include/uapi/drm/vc4_drm.h
5826
5827 DRM DRIVERS FOR VIVANTE GPU IP
5828 M:      Lucas Stach <[email protected]>
5829 R:      Russell King <[email protected]>
5830 R:      Christian Gmeiner <[email protected]>
5831 L:      [email protected] (moderated for non-subscribers)
5832 L:      [email protected]
5833 S:      Maintained
5834 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5835 F:      drivers/gpu/drm/etnaviv/
5836 F:      include/uapi/drm/etnaviv_drm.h
5837
5838 DRM DRIVERS FOR XEN
5839 M:      Oleksandr Andrushchenko <[email protected]>
5840 L:      [email protected]
5841 L:      [email protected] (moderated for non-subscribers)
5842 S:      Supported
5843 T:      git git://anongit.freedesktop.org/drm/drm-misc
5844 F:      Documentation/gpu/xen-front.rst
5845 F:      drivers/gpu/drm/xen/
5846
5847 DRM DRIVERS FOR ZTE ZX
5848 M:      Shawn Guo <[email protected]>
5849 L:      [email protected]
5850 S:      Maintained
5851 T:      git git://anongit.freedesktop.org/drm/drm-misc
5852 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5853 F:      drivers/gpu/drm/zte/
5854
5855 DRM PANEL DRIVERS
5856 M:      Thierry Reding <[email protected]>
5857 R:      Sam Ravnborg <[email protected]>
5858 L:      [email protected]
5859 S:      Maintained
5860 T:      git git://anongit.freedesktop.org/drm/drm-misc
5861 F:      Documentation/devicetree/bindings/display/panel/
5862 F:      drivers/gpu/drm/drm_panel.c
5863 F:      drivers/gpu/drm/panel/
5864 F:      include/drm/drm_panel.h
5865
5866 DRM TTM SUBSYSTEM
5867 M:      Christian Koenig <[email protected]>
5868 M:      Huang Rui <[email protected]>
5869 L:      [email protected]
5870 S:      Maintained
5871 T:      git git://people.freedesktop.org/~agd5f/linux
5872 F:      drivers/gpu/drm/ttm/
5873 F:      include/drm/ttm/
5874
5875 DSBR100 USB FM RADIO DRIVER
5876 M:      Alexey Klimov <[email protected]>
5877 L:      [email protected]
5878 S:      Maintained
5879 T:      git git://linuxtv.org/media_tree.git
5880 F:      drivers/media/radio/dsbr100.c
5881
5882 DT3155 MEDIA DRIVER
5883 M:      Hans Verkuil <[email protected]>
5884 L:      [email protected]
5885 S:      Odd Fixes
5886 W:      https://linuxtv.org
5887 T:      git git://linuxtv.org/media_tree.git
5888 F:      drivers/media/pci/dt3155/
5889
5890 DVB_USB_AF9015 MEDIA DRIVER
5891 M:      Antti Palosaari <[email protected]>
5892 L:      [email protected]
5893 S:      Maintained
5894 W:      https://linuxtv.org
5895 W:      http://palosaari.fi/linux/
5896 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5897 T:      git git://linuxtv.org/anttip/media_tree.git
5898 F:      drivers/media/usb/dvb-usb-v2/af9015*
5899
5900 DVB_USB_AF9035 MEDIA DRIVER
5901 M:      Antti Palosaari <[email protected]>
5902 L:      [email protected]
5903 S:      Maintained
5904 W:      https://linuxtv.org
5905 W:      http://palosaari.fi/linux/
5906 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5907 T:      git git://linuxtv.org/anttip/media_tree.git
5908 F:      drivers/media/usb/dvb-usb-v2/af9035*
5909
5910 DVB_USB_ANYSEE MEDIA DRIVER
5911 M:      Antti Palosaari <[email protected]>
5912 L:      [email protected]
5913 S:      Maintained
5914 W:      https://linuxtv.org
5915 W:      http://palosaari.fi/linux/
5916 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5917 T:      git git://linuxtv.org/anttip/media_tree.git
5918 F:      drivers/media/usb/dvb-usb-v2/anysee*
5919
5920 DVB_USB_AU6610 MEDIA DRIVER
5921 M:      Antti Palosaari <[email protected]>
5922 L:      [email protected]
5923 S:      Maintained
5924 W:      https://linuxtv.org
5925 W:      http://palosaari.fi/linux/
5926 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5927 T:      git git://linuxtv.org/anttip/media_tree.git
5928 F:      drivers/media/usb/dvb-usb-v2/au6610*
5929
5930 DVB_USB_CE6230 MEDIA DRIVER
5931 M:      Antti Palosaari <[email protected]>
5932 L:      [email protected]
5933 S:      Maintained
5934 W:      https://linuxtv.org
5935 W:      http://palosaari.fi/linux/
5936 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5937 T:      git git://linuxtv.org/anttip/media_tree.git
5938 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5939
5940 DVB_USB_CXUSB MEDIA DRIVER
5941 M:      Michael Krufky <[email protected]>
5942 L:      [email protected]
5943 S:      Maintained
5944 W:      https://linuxtv.org
5945 W:      http://github.com/mkrufky
5946 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5947 T:      git git://linuxtv.org/media_tree.git
5948 F:      drivers/media/usb/dvb-usb/cxusb*
5949
5950 DVB_USB_EC168 MEDIA DRIVER
5951 M:      Antti Palosaari <[email protected]>
5952 L:      [email protected]
5953 S:      Maintained
5954 W:      https://linuxtv.org
5955 W:      http://palosaari.fi/linux/
5956 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5957 T:      git git://linuxtv.org/anttip/media_tree.git
5958 F:      drivers/media/usb/dvb-usb-v2/ec168*
5959
5960 DVB_USB_GL861 MEDIA DRIVER
5961 M:      Antti Palosaari <[email protected]>
5962 L:      [email protected]
5963 S:      Maintained
5964 W:      https://linuxtv.org
5965 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5966 T:      git git://linuxtv.org/anttip/media_tree.git
5967 F:      drivers/media/usb/dvb-usb-v2/gl861*
5968
5969 DVB_USB_MXL111SF MEDIA DRIVER
5970 M:      Michael Krufky <[email protected]>
5971 L:      [email protected]
5972 S:      Maintained
5973 W:      https://linuxtv.org
5974 W:      http://github.com/mkrufky
5975 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5976 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5977 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5978
5979 DVB_USB_RTL28XXU MEDIA DRIVER
5980 M:      Antti Palosaari <[email protected]>
5981 L:      [email protected]
5982 S:      Maintained
5983 W:      https://linuxtv.org
5984 W:      http://palosaari.fi/linux/
5985 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5986 T:      git git://linuxtv.org/anttip/media_tree.git
5987 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5988
5989 DVB_USB_V2 MEDIA DRIVER
5990 M:      Antti Palosaari <[email protected]>
5991 L:      [email protected]
5992 S:      Maintained
5993 W:      https://linuxtv.org
5994 W:      http://palosaari.fi/linux/
5995 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5996 T:      git git://linuxtv.org/anttip/media_tree.git
5997 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5998 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5999
6000 DYNAMIC DEBUG
6001 M:      Jason Baron <[email protected]>
6002 S:      Maintained
6003 F:      include/linux/dynamic_debug.h
6004 F:      lib/dynamic_debug.c
6005
6006 DYNAMIC INTERRUPT MODERATION
6007 M:      Tal Gilboa <[email protected]>
6008 S:      Maintained
6009 F:      Documentation/networking/net_dim.rst
6010 F:      include/linux/dim.h
6011 F:      lib/dim/
6012
6013 DZ DECSTATION DZ11 SERIAL DRIVER
6014 M:      "Maciej W. Rozycki" <[email protected]>
6015 S:      Maintained
6016 F:      drivers/tty/serial/dz.*
6017
6018 E3X0 POWER BUTTON DRIVER
6019 M:      Moritz Fischer <[email protected]>
6020 L:      [email protected]
6021 S:      Supported
6022 W:      http://www.ettus.com
6023 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6024 F:      drivers/input/misc/e3x0-button.c
6025
6026 E4000 MEDIA DRIVER
6027 M:      Antti Palosaari <[email protected]>
6028 L:      [email protected]
6029 S:      Maintained
6030 W:      https://linuxtv.org
6031 W:      http://palosaari.fi/linux/
6032 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6033 T:      git git://linuxtv.org/anttip/media_tree.git
6034 F:      drivers/media/tuners/e4000*
6035
6036 EARTH_PT1 MEDIA DRIVER
6037 M:      Akihiro Tsukada <[email protected]>
6038 L:      [email protected]
6039 S:      Odd Fixes
6040 F:      drivers/media/pci/pt1/
6041
6042 EARTH_PT3 MEDIA DRIVER
6043 M:      Akihiro Tsukada <[email protected]>
6044 L:      [email protected]
6045 S:      Odd Fixes
6046 F:      drivers/media/pci/pt3/
6047
6048 EC100 MEDIA DRIVER
6049 M:      Antti Palosaari <[email protected]>
6050 L:      [email protected]
6051 S:      Maintained
6052 W:      https://linuxtv.org
6053 W:      http://palosaari.fi/linux/
6054 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6055 T:      git git://linuxtv.org/anttip/media_tree.git
6056 F:      drivers/media/dvb-frontends/ec100*
6057
6058 ECRYPT FILE SYSTEM
6059 M:      Tyler Hicks <[email protected]>
6060 L:      [email protected]
6061 S:      Odd Fixes
6062 W:      http://ecryptfs.org
6063 W:      https://launchpad.net/ecryptfs
6064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6065 F:      Documentation/filesystems/ecryptfs.rst
6066 F:      fs/ecryptfs/
6067
6068 EDAC-AMD64
6069 M:      Borislav Petkov <[email protected]>
6070 L:      [email protected]
6071 S:      Maintained
6072 F:      drivers/edac/amd64_edac*
6073
6074 EDAC-ARMADA
6075 M:      Jan Luebbe <[email protected]>
6076 L:      [email protected]
6077 S:      Maintained
6078 F:      drivers/edac/armada_xp_*
6079
6080 EDAC-AST2500
6081 M:      Stefan Schaeckeler <[email protected]>
6082 S:      Supported
6083 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6084 F:      drivers/edac/aspeed_edac.c
6085
6086 EDAC-BLUEFIELD
6087 M:      Shravan Kumar Ramani <[email protected]>
6088 S:      Supported
6089 F:      drivers/edac/bluefield_edac.c
6090
6091 EDAC-CALXEDA
6092 M:      Robert Richter <[email protected]>
6093 L:      [email protected]
6094 S:      Maintained
6095 F:      drivers/edac/highbank*
6096
6097 EDAC-CAVIUM OCTEON
6098 M:      Ralf Baechle <[email protected]>
6099 M:      Robert Richter <[email protected]>
6100 L:      [email protected]
6101 L:      [email protected]
6102 S:      Supported
6103 F:      drivers/edac/octeon_edac*
6104
6105 EDAC-CAVIUM THUNDERX
6106 M:      Robert Richter <[email protected]>
6107 L:      [email protected]
6108 S:      Supported
6109 F:      drivers/edac/thunderx_edac*
6110
6111 EDAC-CORE
6112 M:      Borislav Petkov <[email protected]>
6113 M:      Mauro Carvalho Chehab <[email protected]>
6114 M:      Tony Luck <[email protected]>
6115 R:      James Morse <[email protected]>
6116 R:      Robert Richter <[email protected]>
6117 L:      [email protected]
6118 S:      Supported
6119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6120 F:      Documentation/admin-guide/ras.rst
6121 F:      Documentation/driver-api/edac.rst
6122 F:      drivers/edac/
6123 F:      include/linux/edac.h
6124
6125 EDAC-DMC520
6126 M:      Lei Wang <[email protected]>
6127 L:      [email protected]
6128 S:      Supported
6129 F:      drivers/edac/dmc520_edac.c
6130
6131 EDAC-E752X
6132 M:      Mark Gross <[email protected]>
6133 L:      [email protected]
6134 S:      Maintained
6135 F:      drivers/edac/e752x_edac.c
6136
6137 EDAC-E7XXX
6138 L:      [email protected]
6139 S:      Maintained
6140 F:      drivers/edac/e7xxx_edac.c
6141
6142 EDAC-FSL_DDR
6143 M:      York Sun <[email protected]>
6144 L:      [email protected]
6145 S:      Maintained
6146 F:      drivers/edac/fsl_ddr_edac.*
6147
6148 EDAC-GHES
6149 M:      Mauro Carvalho Chehab <[email protected]>
6150 L:      [email protected]
6151 S:      Maintained
6152 F:      drivers/edac/ghes_edac.c
6153
6154 EDAC-I10NM
6155 M:      Tony Luck <[email protected]>
6156 L:      [email protected]
6157 S:      Maintained
6158 F:      drivers/edac/i10nm_base.c
6159
6160 EDAC-I3000
6161 L:      [email protected]
6162 S:      Orphan
6163 F:      drivers/edac/i3000_edac.c
6164
6165 EDAC-I5000
6166 L:      [email protected]
6167 S:      Maintained
6168 F:      drivers/edac/i5000_edac.c
6169
6170 EDAC-I5400
6171 M:      Mauro Carvalho Chehab <[email protected]>
6172 L:      [email protected]
6173 S:      Maintained
6174 F:      drivers/edac/i5400_edac.c
6175
6176 EDAC-I7300
6177 M:      Mauro Carvalho Chehab <[email protected]>
6178 L:      [email protected]
6179 S:      Maintained
6180 F:      drivers/edac/i7300_edac.c
6181
6182 EDAC-I7CORE
6183 M:      Mauro Carvalho Chehab <[email protected]>
6184 L:      [email protected]
6185 S:      Maintained
6186 F:      drivers/edac/i7core_edac.c
6187
6188 EDAC-I82443BXGX
6189 M:      Tim Small <[email protected]>
6190 L:      [email protected]
6191 S:      Maintained
6192 F:      drivers/edac/i82443bxgx_edac.c
6193
6194 EDAC-I82975X
6195 M:      "Arvind R." <[email protected]>
6196 L:      [email protected]
6197 S:      Maintained
6198 F:      drivers/edac/i82975x_edac.c
6199
6200 EDAC-IE31200
6201 M:      Jason Baron <[email protected]>
6202 L:      [email protected]
6203 S:      Maintained
6204 F:      drivers/edac/ie31200_edac.c
6205
6206 EDAC-MPC85XX
6207 M:      Johannes Thumshirn <[email protected]>
6208 L:      [email protected]
6209 S:      Maintained
6210 F:      drivers/edac/mpc85xx_edac.[ch]
6211
6212 EDAC-PASEMI
6213 M:      Egor Martovetsky <[email protected]>
6214 L:      [email protected]
6215 S:      Maintained
6216 F:      drivers/edac/pasemi_edac.c
6217
6218 EDAC-PND2
6219 M:      Tony Luck <[email protected]>
6220 L:      [email protected]
6221 S:      Maintained
6222 F:      drivers/edac/pnd2_edac.[ch]
6223
6224 EDAC-QCOM
6225 M:      Channagoud Kadabi <[email protected]>
6226 M:      Venkata Narendra Kumar Gutta <[email protected]>
6227 L:      [email protected]
6228 L:      [email protected]
6229 S:      Maintained
6230 F:      drivers/edac/qcom_edac.c
6231
6232 EDAC-R82600
6233 M:      Tim Small <[email protected]>
6234 L:      [email protected]
6235 S:      Maintained
6236 F:      drivers/edac/r82600_edac.c
6237
6238 EDAC-SBRIDGE
6239 M:      Tony Luck <[email protected]>
6240 R:      Qiuxu Zhuo <[email protected]>
6241 L:      [email protected]
6242 S:      Maintained
6243 F:      drivers/edac/sb_edac.c
6244
6245 EDAC-SIFIVE
6246 M:      Yash Shah <[email protected]>
6247 L:      [email protected]
6248 S:      Supported
6249 F:      drivers/edac/sifive_edac.c
6250
6251 EDAC-SKYLAKE
6252 M:      Tony Luck <[email protected]>
6253 L:      [email protected]
6254 S:      Maintained
6255 F:      drivers/edac/skx_*.c
6256
6257 EDAC-TI
6258 M:      Tero Kristo <[email protected]>
6259 L:      [email protected]
6260 S:      Maintained
6261 F:      drivers/edac/ti_edac.c
6262
6263 EDIROL UA-101/UA-1000 DRIVER
6264 M:      Clemens Ladisch <[email protected]>
6265 L:      [email protected] (moderated for non-subscribers)
6266 S:      Maintained
6267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6268 F:      sound/usb/misc/ua101.c
6269
6270 EFI TEST DRIVER
6271 M:      Ivan Hu <[email protected]>
6272 M:      Ard Biesheuvel <[email protected]>
6273 L:      [email protected]
6274 S:      Maintained
6275 F:      drivers/firmware/efi/test/
6276
6277 EFI VARIABLE FILESYSTEM
6278 M:      Matthew Garrett <[email protected]>
6279 M:      Jeremy Kerr <[email protected]>
6280 M:      Ard Biesheuvel <[email protected]>
6281 L:      [email protected]
6282 S:      Maintained
6283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6284 F:      fs/efivarfs/
6285
6286 EFIFB FRAMEBUFFER DRIVER
6287 M:      Peter Jones <[email protected]>
6288 L:      [email protected]
6289 S:      Maintained
6290 F:      drivers/video/fbdev/efifb.c
6291
6292 EFS FILESYSTEM
6293 S:      Orphan
6294 W:      http://aeschi.ch.eu.org/efs/
6295 F:      fs/efs/
6296
6297 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6298 M:      Douglas Miller <[email protected]>
6299 L:      [email protected]
6300 S:      Maintained
6301 F:      drivers/net/ethernet/ibm/ehea/
6302
6303 EM28XX VIDEO4LINUX DRIVER
6304 M:      Mauro Carvalho Chehab <[email protected]>
6305 L:      [email protected]
6306 S:      Maintained
6307 W:      https://linuxtv.org
6308 T:      git git://linuxtv.org/media_tree.git
6309 F:      Documentation/admin-guide/media/em28xx*
6310 F:      drivers/media/usb/em28xx/
6311
6312 EMBEDDED LINUX
6313 M:      Paul Gortmaker <[email protected]>
6314 M:      Matt Mackall <[email protected]>
6315 M:      David Woodhouse <[email protected]>
6316 L:      [email protected]
6317 S:      Maintained
6318
6319 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6320 M:      Adrian Hunter <[email protected]>
6321 M:      Ritesh Harjani <[email protected]>
6322 M:      Asutosh Das <[email protected]>
6323 L:      [email protected]
6324 S:      Maintained
6325 F:      drivers/mmc/host/cqhci*
6326
6327 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6328 M:      Subbu Seetharaman <[email protected]>
6329 M:      Ketan Mukadam <[email protected]>
6330 M:      Jitendra Bhivare <[email protected]>
6331 L:      [email protected]
6332 S:      Supported
6333 W:      http://www.broadcom.com
6334 F:      drivers/scsi/be2iscsi/
6335
6336 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6337 M:      Ajit Khaparde <[email protected]>
6338 M:      Sriharsha Basavapatna <[email protected]>
6339 M:      Somnath Kotur <[email protected]>
6340 L:      [email protected]
6341 S:      Supported
6342 W:      http://www.emulex.com
6343 F:      drivers/net/ethernet/emulex/benet/
6344
6345 EMULEX ONECONNECT ROCE DRIVER
6346 M:      Selvin Xavier <[email protected]>
6347 M:      Devesh Sharma <[email protected]>
6348 L:      [email protected]
6349 S:      Odd Fixes
6350 W:      http://www.broadcom.com
6351 F:      drivers/infiniband/hw/ocrdma/
6352 F:      include/uapi/rdma/ocrdma-abi.h
6353
6354 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6355 M:      James Smart <[email protected]>
6356 M:      Dick Kennedy <[email protected]>
6357 L:      [email protected]
6358 S:      Supported
6359 W:      http://www.broadcom.com
6360 F:      drivers/scsi/lpfc/
6361
6362 ENE CB710 FLASH CARD READER DRIVER
6363 M:      Michał Mirosław <[email protected]>
6364 S:      Maintained
6365 F:      drivers/misc/cb710/
6366 F:      drivers/mmc/host/cb710-mmc.*
6367 F:      include/linux/cb710.h
6368
6369 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6370 M:      Maxim Levitsky <[email protected]>
6371 S:      Maintained
6372 F:      drivers/media/rc/ene_ir.*
6373
6374 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6375 M:      Laurentiu Tudor <[email protected]>
6376 L:      [email protected]
6377 S:      Maintained
6378 F:      drivers/tty/ehv_bytechan.c
6379
6380 EPSON S1D13XXX FRAMEBUFFER DRIVER
6381 M:      Kristoffer Ericson <[email protected]>
6382 S:      Maintained
6383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6384 F:      drivers/video/fbdev/s1d13xxxfb.c
6385 F:      include/video/s1d13xxxfb.h
6386
6387 EROFS FILE SYSTEM
6388 M:      Gao Xiang <[email protected]>
6389 M:      Chao Yu <[email protected]>
6390 L:      [email protected]
6391 S:      Maintained
6392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6393 F:      Documentation/filesystems/erofs.rst
6394 F:      fs/erofs/
6395 F:      include/trace/events/erofs.h
6396
6397 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6398 M:      Jeff Layton <[email protected]>
6399 S:      Maintained
6400 F:      include/linux/errseq.h
6401 F:      lib/errseq.c
6402
6403 ET131X NETWORK DRIVER
6404 M:      Mark Einon <[email protected]>
6405 S:      Odd Fixes
6406 F:      drivers/net/ethernet/agere/
6407
6408 ETHERNET BRIDGE
6409 M:      Roopa Prabhu <[email protected]>
6410 M:      Nikolay Aleksandrov <[email protected]>
6411 L:      [email protected] (moderated for non-subscribers)
6412 L:      [email protected]
6413 S:      Maintained
6414 W:      http://www.linuxfoundation.org/en/Net:Bridge
6415 F:      include/linux/netfilter_bridge/
6416 F:      net/bridge/
6417
6418 ETHERNET PHY LIBRARY
6419 M:      Andrew Lunn <[email protected]>
6420 M:      Florian Fainelli <[email protected]>
6421 M:      Heiner Kallweit <[email protected]>
6422 R:      Russell King <[email protected]>
6423 L:      [email protected]
6424 S:      Maintained
6425 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6426 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6427 F:      Documentation/devicetree/bindings/net/mdio*
6428 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6429 F:      Documentation/networking/phy.rst
6430 F:      drivers/net/phy/
6431 F:      drivers/of/of_mdio.c
6432 F:      drivers/of/of_net.c
6433 F:      include/dt-bindings/net/qca-ar803x.h
6434 F:      include/linux/*mdio*.h
6435 F:      include/linux/of_net.h
6436 F:      include/linux/phy.h
6437 F:      include/linux/phy_fixed.h
6438 F:      include/linux/platform_data/mdio-bcm-unimac.h
6439 F:      include/linux/platform_data/mdio-gpio.h
6440 F:      include/trace/events/mdio.h
6441 F:      include/uapi/linux/mdio.h
6442 F:      include/uapi/linux/mii.h
6443
6444 EXFAT FILE SYSTEM
6445 M:      Namjae Jeon <[email protected]>
6446 M:      Sungjong Seo <[email protected]>
6447 L:      [email protected]
6448 S:      Maintained
6449 F:      fs/exfat/
6450
6451 EXT2 FILE SYSTEM
6452 M:      Jan Kara <[email protected]>
6453 L:      [email protected]
6454 S:      Maintained
6455 F:      Documentation/filesystems/ext2.rst
6456 F:      fs/ext2/
6457 F:      include/linux/ext2*
6458
6459 EXT4 FILE SYSTEM
6460 M:      "Theodore Ts'o" <[email protected]>
6461 M:      Andreas Dilger <[email protected]>
6462 L:      [email protected]
6463 S:      Maintained
6464 W:      http://ext4.wiki.kernel.org
6465 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6467 F:      Documentation/filesystems/ext4/
6468 F:      fs/ext4/
6469
6470 Extended Verification Module (EVM)
6471 M:      Mimi Zohar <[email protected]>
6472 L:      [email protected]
6473 S:      Supported
6474 F:      security/integrity/evm/
6475
6476 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6477 M:      Ard Biesheuvel <[email protected]>
6478 L:      [email protected]
6479 S:      Maintained
6480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6481 F:      Documentation/admin-guide/efi-stub.rst
6482 F:      arch/*/include/asm/efi.h
6483 F:      arch/*/kernel/efi.c
6484 F:      arch/arm/boot/compressed/efi-header.S
6485 F:      arch/arm64/kernel/efi-entry.S
6486 F:      arch/x86/platform/efi/
6487 F:      drivers/firmware/efi/
6488 F:      include/linux/efi*.h
6489
6490 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6491 M:      MyungJoo Ham <[email protected]>
6492 M:      Chanwoo Choi <[email protected]>
6493 L:      [email protected]
6494 S:      Maintained
6495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6496 F:      Documentation/devicetree/bindings/extcon/
6497 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6498 F:      drivers/extcon/
6499 F:      include/linux/extcon.h
6500 F:      include/linux/extcon/
6501
6502 EXTRA BOOT CONFIG
6503 M:      Masami Hiramatsu <[email protected]>
6504 S:      Maintained
6505 F:      Documentation/admin-guide/bootconfig.rst
6506 F:      fs/proc/bootconfig.c
6507 F:      include/linux/bootconfig.h
6508 F:      lib/bootconfig.c
6509 F:      tools/bootconfig/*
6510
6511 EXYNOS DP DRIVER
6512 M:      Jingoo Han <[email protected]>
6513 L:      [email protected]
6514 S:      Maintained
6515 F:      drivers/gpu/drm/exynos/exynos_dp*
6516
6517 EXYNOS SYSMMU (IOMMU) driver
6518 M:      Marek Szyprowski <[email protected]>
6519 L:      [email protected]
6520 S:      Maintained
6521 F:      drivers/iommu/exynos-iommu.c
6522
6523 EZchip NPS platform support
6524 M:      Vineet Gupta <[email protected]>
6525 M:      Ofer Levi <[email protected]>
6526 S:      Supported
6527 F:      arch/arc/boot/dts/eznps.dts
6528 F:      arch/arc/plat-eznps
6529
6530 F2FS FILE SYSTEM
6531 M:      Jaegeuk Kim <[email protected]>
6532 M:      Chao Yu <[email protected]>
6533 L:      [email protected]
6534 S:      Maintained
6535 W:      https://f2fs.wiki.kernel.org/
6536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6537 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6538 F:      Documentation/filesystems/f2fs.rst
6539 F:      fs/f2fs/
6540 F:      include/linux/f2fs_fs.h
6541 F:      include/trace/events/f2fs.h
6542
6543 F71805F HARDWARE MONITORING DRIVER
6544 M:      Jean Delvare <[email protected]>
6545 L:      [email protected]
6546 S:      Maintained
6547 F:      Documentation/hwmon/f71805f.rst
6548 F:      drivers/hwmon/f71805f.c
6549
6550 FADDR2LINE
6551 M:      Josh Poimboeuf <[email protected]>
6552 S:      Maintained
6553 F:      scripts/faddr2line
6554
6555 FAILOVER MODULE
6556 M:      Sridhar Samudrala <[email protected]>
6557 L:      [email protected]
6558 S:      Supported
6559 F:      Documentation/networking/failover.rst
6560 F:      include/net/failover.h
6561 F:      net/core/failover.c
6562
6563 FANOTIFY
6564 M:      Jan Kara <[email protected]>
6565 R:      Amir Goldstein <[email protected]>
6566 L:      [email protected]
6567 S:      Maintained
6568 F:      fs/notify/fanotify/
6569 F:      include/linux/fanotify.h
6570 F:      include/uapi/linux/fanotify.h
6571
6572 FARSYNC SYNCHRONOUS DRIVER
6573 M:      Kevin Curtis <[email protected]>
6574 S:      Supported
6575 W:      http://www.farsite.co.uk/
6576 F:      drivers/net/wan/farsync.*
6577
6578 FAULT INJECTION SUPPORT
6579 M:      Akinobu Mita <[email protected]>
6580 S:      Supported
6581 F:      Documentation/fault-injection/
6582 F:      lib/fault-inject.c
6583
6584 FBTFT Framebuffer drivers
6585 L:      [email protected]
6586 L:      [email protected]
6587 S:      Orphan
6588 F:      drivers/staging/fbtft/
6589
6590 FC0011 TUNER DRIVER
6591 M:      Michael Buesch <[email protected]>
6592 L:      [email protected]
6593 S:      Maintained
6594 F:      drivers/media/tuners/fc0011.c
6595 F:      drivers/media/tuners/fc0011.h
6596
6597 FC2580 MEDIA DRIVER
6598 M:      Antti Palosaari <[email protected]>
6599 L:      [email protected]
6600 S:      Maintained
6601 W:      https://linuxtv.org
6602 W:      http://palosaari.fi/linux/
6603 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6604 T:      git git://linuxtv.org/anttip/media_tree.git
6605 F:      drivers/media/tuners/fc2580*
6606
6607 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6608 M:      Hannes Reinecke <[email protected]>
6609 L:      [email protected]
6610 S:      Supported
6611 W:      www.Open-FCoE.org
6612 F:      drivers/scsi/fcoe/
6613 F:      drivers/scsi/libfc/
6614 F:      include/scsi/fc/
6615 F:      include/scsi/libfc.h
6616 F:      include/scsi/libfcoe.h
6617 F:      include/uapi/scsi/fc/
6618
6619 FILE LOCKING (flock() and fcntl()/lockf())
6620 M:      Jeff Layton <[email protected]>
6621 M:      "J. Bruce Fields" <[email protected]>
6622 L:      [email protected]
6623 S:      Maintained
6624 F:      fs/fcntl.c
6625 F:      fs/locks.c
6626 F:      include/linux/fcntl.h
6627 F:      include/uapi/linux/fcntl.h
6628
6629 FILESYSTEM DIRECT ACCESS (DAX)
6630 M:      Dan Williams <[email protected]>
6631 R:      Matthew Wilcox <[email protected]>
6632 R:      Jan Kara <[email protected]>
6633 L:      [email protected]
6634 L:      [email protected]
6635 S:      Supported
6636 F:      fs/dax.c
6637 F:      include/linux/dax.h
6638 F:      include/trace/events/fs_dax.h
6639
6640 FILESYSTEMS (VFS and infrastructure)
6641 M:      Alexander Viro <[email protected]>
6642 L:      [email protected]
6643 S:      Maintained
6644 F:      fs/*
6645 F:      include/linux/fs.h
6646 F:      include/linux/fs_types.h
6647 F:      include/uapi/linux/fs.h
6648 F:      include/uapi/linux/openat2.h
6649
6650 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6651 M:      Riku Voipio <[email protected]>
6652 L:      [email protected]
6653 S:      Maintained
6654 F:      drivers/hwmon/f75375s.c
6655 F:      include/linux/f75375s.h
6656
6657 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6658 M:      Clemens Ladisch <[email protected]>
6659 M:      Takashi Sakamoto <[email protected]>
6660 L:      [email protected] (moderated for non-subscribers)
6661 S:      Maintained
6662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6663 F:      include/uapi/sound/firewire.h
6664 F:      sound/firewire/
6665
6666 FIREWIRE MEDIA DRIVERS (firedtv)
6667 M:      Stefan Richter <[email protected]>
6668 L:      [email protected]
6669 L:      [email protected]
6670 S:      Maintained
6671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6672 F:      drivers/media/firewire/
6673
6674 FIREWIRE SBP-2 TARGET
6675 M:      Chris Boot <[email protected]>
6676 L:      [email protected]
6677 L:      [email protected]
6678 L:      [email protected]
6679 S:      Maintained
6680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6681 F:      drivers/target/sbp/
6682
6683 FIREWIRE SUBSYSTEM
6684 M:      Stefan Richter <[email protected]>
6685 L:      [email protected]
6686 S:      Maintained
6687 W:      http://ieee1394.wiki.kernel.org/
6688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6689 F:      drivers/firewire/
6690 F:      include/linux/firewire.h
6691 F:      include/uapi/linux/firewire*.h
6692 F:      tools/firewire/
6693
6694 FIRMWARE LOADER (request_firmware)
6695 M:      Luis Chamberlain <[email protected]>
6696 L:      [email protected]
6697 S:      Maintained
6698 F:      Documentation/firmware_class/
6699 F:      drivers/base/firmware_loader/
6700 F:      include/linux/firmware.h
6701
6702 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6703 M:      Joshua Morris <[email protected]>
6704 M:      Philip Kelleher <[email protected]>
6705 S:      Maintained
6706 F:      drivers/block/rsxx/
6707
6708 FLEXTIMER FTM-QUADDEC DRIVER
6709 M:      Patrick Havelange <[email protected]>
6710 L:      [email protected]
6711 S:      Maintained
6712 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6713 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6714 F:      drivers/counter/ftm-quaddec.c
6715
6716 FLOPPY DRIVER
6717 M:      Denis Efremov <[email protected]>
6718 L:      [email protected]
6719 S:      Odd Fixes
6720 F:      drivers/block/floppy.c
6721
6722 FLYSKY FSIA6B RC RECEIVER
6723 M:      Markus Koch <[email protected]>
6724 L:      [email protected]
6725 S:      Maintained
6726 F:      drivers/input/joystick/fsia6b.c
6727
6728 FORCEDETH GIGABIT ETHERNET DRIVER
6729 M:      Rain River <[email protected]>
6730 M:      Zhu Yanjun <[email protected]>
6731 L:      [email protected]
6732 S:      Maintained
6733 F:      drivers/net/ethernet/nvidia/*
6734
6735 FPGA DFL DRIVERS
6736 M:      Wu Hao <[email protected]>
6737 L:      [email protected]
6738 S:      Maintained
6739 F:      Documentation/fpga/dfl.rst
6740 F:      drivers/fpga/dfl*
6741 F:      include/uapi/linux/fpga-dfl.h
6742
6743 FPGA MANAGER FRAMEWORK
6744 M:      Moritz Fischer <[email protected]>
6745 L:      [email protected]
6746 S:      Maintained
6747 W:      http://www.rocketboards.org
6748 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6750 F:      Documentation/devicetree/bindings/fpga/
6751 F:      Documentation/driver-api/fpga/
6752 F:      Documentation/fpga/
6753 F:      drivers/fpga/
6754 F:      include/linux/fpga/
6755
6756 FPU EMULATOR
6757 M:      Bill Metzenthen <[email protected]>
6758 S:      Maintained
6759 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6760 F:      arch/x86/math-emu/
6761
6762 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6763 L:      [email protected]
6764 S:      Orphan
6765 F:      drivers/net/wan/dlci.c
6766 F:      drivers/net/wan/sdla.c
6767
6768 FRAMEBUFFER LAYER
6769 M:      Bartlomiej Zolnierkiewicz <[email protected]>
6770 L:      [email protected]
6771 L:      [email protected]
6772 S:      Maintained
6773 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6774 T:      git git://anongit.freedesktop.org/drm/drm-misc
6775 F:      Documentation/fb/
6776 F:      drivers/video/
6777 F:      include/linux/fb.h
6778 F:      include/uapi/linux/fb.h
6779 F:      include/uapi/video/
6780 F:      include/video/
6781
6782 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6783 M:      Horia Geantă <[email protected]>
6784 M:      Aymen Sghaier <[email protected]>
6785 L:      [email protected]
6786 S:      Maintained
6787 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6788 F:      drivers/crypto/caam/
6789
6790 FREESCALE COLDFIRE M5441X MMC DRIVER
6791 M:      Angelo Dureghello <[email protected]>
6792 L:      [email protected]
6793 S:      Maintained
6794 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6795 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6796
6797 FREESCALE DIU FRAMEBUFFER DRIVER
6798 M:      Timur Tabi <[email protected]>
6799 L:      [email protected]
6800 S:      Maintained
6801 F:      drivers/video/fbdev/fsl-diu-fb.*
6802
6803 FREESCALE DMA DRIVER
6804 M:      Li Yang <[email protected]>
6805 M:      Zhang Wei <[email protected]>
6806 L:      [email protected]
6807 S:      Maintained
6808 F:      drivers/dma/fsldma.*
6809
6810 FREESCALE ENETC ETHERNET DRIVERS
6811 M:      Claudiu Manoil <[email protected]>
6812 L:      [email protected]
6813 S:      Maintained
6814 F:      drivers/net/ethernet/freescale/enetc/
6815
6816 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6817 M:      Claudiu Manoil <[email protected]>
6818 L:      [email protected]
6819 S:      Maintained
6820 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6821 F:      drivers/net/ethernet/freescale/gianfar*
6822
6823 FREESCALE GPMI NAND DRIVER
6824 M:      Han Xu <[email protected]>
6825 L:      [email protected]
6826 S:      Maintained
6827 F:      drivers/mtd/nand/raw/gpmi-nand/*
6828
6829 FREESCALE I2C CPM DRIVER
6830 M:      Jochen Friedrich <[email protected]>
6831 L:      [email protected]
6832 L:      [email protected]
6833 S:      Maintained
6834 F:      drivers/i2c/busses/i2c-cpm.c
6835
6836 FREESCALE IMX / MXC FEC DRIVER
6837 M:      Fugang Duan <[email protected]>
6838 L:      [email protected]
6839 S:      Maintained
6840 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6841 F:      drivers/net/ethernet/freescale/fec.h
6842 F:      drivers/net/ethernet/freescale/fec_main.c
6843 F:      drivers/net/ethernet/freescale/fec_ptp.c
6844
6845 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6846 M:      Sascha Hauer <[email protected]>
6847 R:      Pengutronix Kernel Team <[email protected]>
6848 L:      [email protected]
6849 L:      [email protected] (moderated for non-subscribers)
6850 S:      Maintained
6851 F:      drivers/video/fbdev/imxfb.c
6852 F:      include/linux/platform_data/video-imxfb.h
6853
6854 FREESCALE IMX DDR PMU DRIVER
6855 M:      Frank Li <[email protected]>
6856 L:      [email protected]
6857 S:      Maintained
6858 F:      Documentation/admin-guide/perf/imx-ddr.rst
6859 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6860 F:      drivers/perf/fsl_imx8_ddr_perf.c
6861
6862 FREESCALE IMX I2C DRIVER
6863 M:      Oleksij Rempel <[email protected]>
6864 R:      Pengutronix Kernel Team <[email protected]>
6865 L:      [email protected]
6866 S:      Maintained
6867 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6868 F:      drivers/i2c/busses/i2c-imx.c
6869
6870 FREESCALE IMX LPI2C DRIVER
6871 M:      Dong Aisheng <[email protected]>
6872 L:      [email protected]
6873 L:      [email protected]
6874 S:      Maintained
6875 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6876 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6877
6878 FREESCALE QORIQ DPAA ETHERNET DRIVER
6879 M:      Madalin Bucur <[email protected]>
6880 L:      [email protected]
6881 S:      Maintained
6882 F:      drivers/net/ethernet/freescale/dpaa
6883
6884 FREESCALE QORIQ DPAA FMAN DRIVER
6885 M:      Madalin Bucur <[email protected]>
6886 L:      [email protected]
6887 S:      Maintained
6888 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6889 F:      drivers/net/ethernet/freescale/fman
6890
6891 FREESCALE QORIQ PTP CLOCK DRIVER
6892 M:      Yangbo Lu <[email protected]>
6893 L:      [email protected]
6894 S:      Maintained
6895 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6896 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6897 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6898 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6899 F:      drivers/ptp/ptp_qoriq.c
6900 F:      drivers/ptp/ptp_qoriq_debugfs.c
6901 F:      include/linux/fsl/ptp_qoriq.h
6902
6903 FREESCALE QUAD SPI DRIVER
6904 M:      Han Xu <[email protected]>
6905 L:      [email protected]
6906 S:      Maintained
6907 F:      drivers/spi/spi-fsl-qspi.c
6908
6909 FREESCALE QUICC ENGINE LIBRARY
6910 M:      Qiang Zhao <[email protected]>
6911 L:      [email protected]
6912 S:      Maintained
6913 F:      drivers/soc/fsl/qe/
6914 F:      include/soc/fsl/*qe*.h
6915 F:      include/soc/fsl/*ucc*.h
6916
6917 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6918 M:      Li Yang <[email protected]>
6919 L:      [email protected]
6920 L:      [email protected]
6921 S:      Maintained
6922 F:      drivers/net/ethernet/freescale/ucc_geth*
6923
6924 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6925 M:      Zhao Qiang <[email protected]>
6926 L:      [email protected]
6927 L:      [email protected]
6928 S:      Maintained
6929 F:      drivers/net/wan/fsl_ucc_hdlc*
6930
6931 FREESCALE QUICC ENGINE UCC UART DRIVER
6932 M:      Timur Tabi <[email protected]>
6933 L:      [email protected]
6934 S:      Maintained
6935 F:      drivers/tty/serial/ucc_uart.c
6936
6937 FREESCALE SOC DRIVERS
6938 M:      Li Yang <[email protected]>
6939 L:      [email protected]
6940 L:      [email protected]
6941 S:      Maintained
6942 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6943 F:      Documentation/devicetree/bindings/soc/fsl/
6944 F:      drivers/soc/fsl/
6945 F:      include/linux/fsl/
6946
6947 FREESCALE SOC FS_ENET DRIVER
6948 M:      Pantelis Antoniou <[email protected]>
6949 L:      [email protected]
6950 L:      [email protected]
6951 S:      Maintained
6952 F:      drivers/net/ethernet/freescale/fs_enet/
6953 F:      include/linux/fs_enet_pd.h
6954
6955 FREESCALE SOC SOUND DRIVERS
6956 M:      Timur Tabi <[email protected]>
6957 M:      Nicolin Chen <[email protected]>
6958 M:      Xiubo Li <[email protected]>
6959 R:      Fabio Estevam <[email protected]>
6960 L:      [email protected] (moderated for non-subscribers)
6961 L:      [email protected]
6962 S:      Maintained
6963 F:      sound/soc/fsl/fsl*
6964 F:      sound/soc/fsl/imx*
6965 F:      sound/soc/fsl/mpc8610_hpcd.c
6966
6967 FREESCALE USB PERIPHERAL DRIVERS
6968 M:      Li Yang <[email protected]>
6969 L:      [email protected]
6970 L:      [email protected]
6971 S:      Maintained
6972 F:      drivers/usb/gadget/udc/fsl*
6973
6974 FREEVXFS FILESYSTEM
6975 M:      Christoph Hellwig <[email protected]>
6976 S:      Maintained
6977 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6978 F:      fs/freevxfs/
6979
6980 FREEZER
6981 M:      "Rafael J. Wysocki" <[email protected]>
6982 M:      Pavel Machek <[email protected]>
6983 L:      [email protected]
6984 S:      Supported
6985 F:      Documentation/power/freezing-of-tasks.rst
6986 F:      include/linux/freezer.h
6987 F:      kernel/freezer.c
6988
6989 FRONTSWAP API
6990 M:      Konrad Rzeszutek Wilk <[email protected]>
6991 L:      [email protected]
6992 S:      Maintained
6993 F:      include/linux/frontswap.h
6994 F:      mm/frontswap.c
6995
6996 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6997 M:      David Howells <[email protected]>
6998 L:      [email protected] (moderated for non-subscribers)
6999 S:      Supported
7000 F:      Documentation/filesystems/caching/
7001 F:      fs/fscache/
7002 F:      include/linux/fscache*.h
7003
7004 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7005 M:      Theodore Y. Ts'o <[email protected]>
7006 M:      Jaegeuk Kim <[email protected]>
7007 M:      Eric Biggers <[email protected]>
7008 L:      [email protected]
7009 S:      Supported
7010 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7011 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7012 F:      Documentation/filesystems/fscrypt.rst
7013 F:      fs/crypto/
7014 F:      include/linux/fscrypt*.h
7015 F:      include/uapi/linux/fscrypt.h
7016
7017 FSI SUBSYSTEM
7018 M:      Jeremy Kerr <[email protected]>
7019 M:      Joel Stanley <[email protected]>
7020 R:      Alistar Popple <[email protected]>
7021 R:      Eddie James <[email protected]>
7022 L:      [email protected]
7023 S:      Supported
7024 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7026 F:      drivers/fsi/
7027 F:      include/linux/fsi*.h
7028 F:      include/trace/events/fsi*.h
7029
7030 FSI-ATTACHED I2C DRIVER
7031 M:      Eddie James <[email protected]>
7032 L:      [email protected]
7033 L:      [email protected] (moderated for non-subscribers)
7034 S:      Maintained
7035 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7036 F:      drivers/i2c/busses/i2c-fsi.c
7037
7038 FSI-ATTACHED SPI DRIVER
7039 M:      Eddie James <[email protected]>
7040 L:      [email protected]
7041 S:      Maintained
7042 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7043 F:      drivers/spi/spi-fsi.c
7044
7045 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7046 M:      Jan Kara <[email protected]>
7047 R:      Amir Goldstein <[email protected]>
7048 L:      [email protected]
7049 S:      Maintained
7050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7051 F:      fs/notify/
7052 F:      include/linux/fsnotify*.h
7053
7054 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7055 M:      Eric Biggers <[email protected]>
7056 M:      Theodore Y. Ts'o <[email protected]>
7057 L:      [email protected]
7058 S:      Supported
7059 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7060 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7061 F:      Documentation/filesystems/fsverity.rst
7062 F:      fs/verity/
7063 F:      include/linux/fsverity.h
7064 F:      include/uapi/linux/fsverity.h
7065
7066 FUJITSU LAPTOP EXTRAS
7067 M:      Jonathan Woithe <[email protected]>
7068 L:      [email protected]
7069 S:      Maintained
7070 F:      drivers/platform/x86/fujitsu-laptop.c
7071
7072 FUJITSU M-5MO LS CAMERA ISP DRIVER
7073 M:      Kyungmin Park <[email protected]>
7074 M:      Heungjun Kim <[email protected]>
7075 L:      [email protected]
7076 S:      Maintained
7077 F:      drivers/media/i2c/m5mols/
7078 F:      include/media/i2c/m5mols.h
7079
7080 FUJITSU TABLET EXTRAS
7081 M:      Robert Gerlach <[email protected]>
7082 L:      [email protected]
7083 S:      Maintained
7084 F:      drivers/platform/x86/fujitsu-tablet.c
7085
7086 FUSE: FILESYSTEM IN USERSPACE
7087 M:      Miklos Szeredi <[email protected]>
7088 L:      [email protected]
7089 S:      Maintained
7090 W:      http://fuse.sourceforge.net/
7091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7092 F:      Documentation/filesystems/fuse.rst
7093 F:      fs/fuse/
7094 F:      include/uapi/linux/fuse.h
7095
7096 FUTEX SUBSYSTEM
7097 M:      Thomas Gleixner <[email protected]>
7098 M:      Ingo Molnar <[email protected]>
7099 R:      Peter Zijlstra <[email protected]>
7100 R:      Darren Hart <[email protected]>
7101 L:      [email protected]
7102 S:      Maintained
7103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7104 F:      Documentation/locking/*futex*
7105 F:      include/asm-generic/futex.h
7106 F:      include/linux/futex.h
7107 F:      include/uapi/linux/futex.h
7108 F:      kernel/futex.c
7109 F:      tools/perf/bench/futex*
7110 F:      Documentation/locking/*futex*
7111
7112 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7113 M:      Tim Harvey <[email protected]>
7114 M:      Robert Jones <[email protected]>
7115 S:      Maintained
7116 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7117 F:      drivers/mfd/gateworks-gsc.c
7118 F:      include/linux/mfd/gsc.h
7119 F:      Documentation/hwmon/gsc-hwmon.rst
7120 F:      drivers/hwmon/gsc-hwmon.c
7121 F:      include/linux/platform_data/gsc_hwmon.h
7122
7123 GASKET DRIVER FRAMEWORK
7124 M:      Rob Springer <[email protected]>
7125 M:      Todd Poynor <[email protected]>
7126 M:      Ben Chan <[email protected]>
7127 M:      Richard Yeh <[email protected]>
7128 S:      Maintained
7129 F:      drivers/staging/gasket/
7130
7131 GCC PLUGINS
7132 M:      Kees Cook <[email protected]>
7133 R:      Emese Revfy <[email protected]>
7134 L:      [email protected]
7135 S:      Maintained
7136 F:      Documentation/kbuild/gcc-plugins.rst
7137 F:      scripts/Makefile.gcc-plugins
7138 F:      scripts/gcc-plugin.sh
7139 F:      scripts/gcc-plugins/
7140
7141 GCOV BASED KERNEL PROFILING
7142 M:      Peter Oberparleiter <[email protected]>
7143 S:      Maintained
7144 F:      Documentation/dev-tools/gcov.rst
7145 F:      kernel/gcov/
7146
7147 GDB KERNEL DEBUGGING HELPER SCRIPTS
7148 M:      Jan Kiszka <[email protected]>
7149 M:      Kieran Bingham <[email protected]>
7150 S:      Supported
7151 F:      scripts/gdb/
7152
7153 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7154 M:      Achim Leubner <[email protected]>
7155 L:      [email protected]
7156 S:      Supported
7157 W:      http://www.icp-vortex.com/
7158 F:      drivers/scsi/gdt*
7159
7160 GEMTEK FM RADIO RECEIVER DRIVER
7161 M:      Hans Verkuil <[email protected]>
7162 L:      [email protected]
7163 S:      Maintained
7164 W:      https://linuxtv.org
7165 T:      git git://linuxtv.org/media_tree.git
7166 F:      drivers/media/radio/radio-gemtek*
7167
7168 GENERIC ARCHITECTURE TOPOLOGY
7169 M:      Sudeep Holla <[email protected]>
7170 L:      [email protected]
7171 S:      Maintained
7172 F:      drivers/base/arch_topology.c
7173 F:      include/linux/arch_topology.h
7174
7175 GENERIC GPIO I2C DRIVER
7176 M:      Wolfram Sang <[email protected]>
7177 S:      Supported
7178 F:      drivers/i2c/busses/i2c-gpio.c
7179 F:      include/linux/platform_data/i2c-gpio.h
7180
7181 GENERIC GPIO I2C MULTIPLEXER DRIVER
7182 M:      Peter Korsgaard <[email protected]>
7183 L:      [email protected]
7184 S:      Supported
7185 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7186 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7187 F:      include/linux/platform_data/i2c-mux-gpio.h
7188
7189 GENERIC HDLC (WAN) DRIVERS
7190 M:      Krzysztof Halasa <[email protected]>
7191 S:      Maintained
7192 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7193 F:      drivers/net/wan/c101.c
7194 F:      drivers/net/wan/hd6457*
7195 F:      drivers/net/wan/hdlc*
7196 F:      drivers/net/wan/n2.c
7197 F:      drivers/net/wan/pc300too.c
7198 F:      drivers/net/wan/pci200syn.c
7199 F:      drivers/net/wan/wanxl*
7200
7201 GENERIC INCLUDE/ASM HEADER FILES
7202 M:      Arnd Bergmann <[email protected]>
7203 L:      [email protected]
7204 S:      Maintained
7205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7206 F:      include/asm-generic/
7207 F:      include/uapi/asm-generic/
7208
7209 GENERIC PHY FRAMEWORK
7210 M:      Kishon Vijay Abraham I <[email protected]>
7211 M:      Vinod Koul <[email protected]>
7212 L:      [email protected]
7213 S:      Supported
7214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7215 F:      Documentation/devicetree/bindings/phy/
7216 F:      drivers/phy/
7217 F:      include/linux/phy/
7218
7219 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7220 M:      Wolfram Sang <[email protected]>
7221 S:      Supported
7222 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7223
7224 GENERIC PM DOMAINS
7225 M:      "Rafael J. Wysocki" <[email protected]>
7226 M:      Kevin Hilman <[email protected]>
7227 M:      Ulf Hansson <[email protected]>
7228 L:      [email protected]
7229 S:      Supported
7230 F:      Documentation/devicetree/bindings/power/power?domain*
7231 F:      drivers/base/power/domain*.c
7232 F:      include/linux/pm_domain.h
7233
7234 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7235 M:      Eugen Hristev <[email protected]>
7236 L:      [email protected]
7237 S:      Maintained
7238 F:      drivers/input/touchscreen/resistive-adc-touch.c
7239
7240 GENERIC UIO DRIVER FOR PCI DEVICES
7241 M:      "Michael S. Tsirkin" <[email protected]>
7242 L:      [email protected]
7243 S:      Supported
7244 F:      drivers/uio/uio_pci_generic.c
7245
7246 GENERIC VDSO LIBRARY
7247 M:      Andy Lutomirski <[email protected]>
7248 M:      Thomas Gleixner <[email protected]>
7249 M:      Vincenzo Frascino <[email protected]>
7250 L:      [email protected]
7251 S:      Maintained
7252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7253 F:      include/asm-generic/vdso/vsyscall.h
7254 F:      include/vdso/
7255 F:      kernel/time/vsyscall.c
7256 F:      lib/vdso/
7257
7258 GENWQE (IBM Generic Workqueue Card)
7259 M:      Frank Haverkamp <[email protected]>
7260 S:      Supported
7261 F:      drivers/misc/genwqe/
7262
7263 GET_MAINTAINER SCRIPT
7264 M:      Joe Perches <[email protected]>
7265 S:      Maintained
7266 F:      scripts/get_maintainer.pl
7267
7268 GFS2 FILE SYSTEM
7269 M:      Bob Peterson <[email protected]>
7270 M:      Andreas Gruenbacher <[email protected]>
7271 L:      [email protected]
7272 S:      Supported
7273 W:      http://sources.redhat.com/cluster/
7274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7275 F:      Documentation/filesystems/gfs2*
7276 F:      fs/gfs2/
7277 F:      include/uapi/linux/gfs2_ondisk.h
7278
7279 GNSS SUBSYSTEM
7280 M:      Johan Hovold <[email protected]>
7281 S:      Maintained
7282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7283 F:      Documentation/ABI/testing/sysfs-class-gnss
7284 F:      Documentation/devicetree/bindings/gnss/
7285 F:      drivers/gnss/
7286 F:      include/linux/gnss.h
7287
7288 GO7007 MPEG CODEC
7289 M:      Hans Verkuil <[email protected]>
7290 L:      [email protected]
7291 S:      Maintained
7292 F:      drivers/media/usb/go7007/
7293
7294 GOODIX TOUCHSCREEN
7295 M:      Bastien Nocera <[email protected]>
7296 L:      [email protected]
7297 S:      Maintained
7298 F:      drivers/input/touchscreen/goodix.c
7299
7300 GOOGLE ETHERNET DRIVERS
7301 M:      Catherine Sullivan <[email protected]>
7302 R:      Sagi Shahar <[email protected]>
7303 R:      Jon Olson <[email protected]>
7304 L:      [email protected]
7305 S:      Supported
7306 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7307 F:      drivers/net/ethernet/google
7308
7309 GPD POCKET FAN DRIVER
7310 M:      Hans de Goede <[email protected]>
7311 L:      [email protected]
7312 S:      Maintained
7313 F:      drivers/platform/x86/gpd-pocket-fan.c
7314
7315 GPIO ACPI SUPPORT
7316 M:      Mika Westerberg <[email protected]>
7317 M:      Andy Shevchenko <[email protected]>
7318 L:      [email protected]
7319 L:      [email protected]
7320 S:      Maintained
7321 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7322 F:      drivers/gpio/gpiolib-acpi.c
7323 F:      drivers/gpio/gpiolib-acpi.h
7324
7325 GPIO AGGREGATOR
7326 M:      Geert Uytterhoeven <[email protected]>
7327 L:      [email protected]
7328 S:      Supported
7329 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7330 F:      drivers/gpio/gpio-aggregator.c
7331
7332 GPIO IR Transmitter
7333 M:      Sean Young <[email protected]>
7334 L:      [email protected]
7335 S:      Maintained
7336 F:      drivers/media/rc/gpio-ir-tx.c
7337
7338 GPIO MOCKUP DRIVER
7339 M:      Bamvor Jian Zhang <[email protected]>
7340 L:      [email protected]
7341 S:      Maintained
7342 F:      drivers/gpio/gpio-mockup.c
7343 F:      tools/testing/selftests/gpio/
7344
7345 GPIO REGMAP
7346 R:      Michael Walle <[email protected]>
7347 S:      Maintained
7348 F:      drivers/gpio/gpio-regmap.c
7349 F:      include/linux/gpio/regmap.h
7350
7351 GPIO SUBSYSTEM
7352 M:      Linus Walleij <[email protected]>
7353 M:      Bartosz Golaszewski <[email protected]>
7354 L:      [email protected]
7355 S:      Maintained
7356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7357 F:      Documentation/ABI/obsolete/sysfs-gpio
7358 F:      Documentation/ABI/testing/gpio-cdev
7359 F:      Documentation/admin-guide/gpio/
7360 F:      Documentation/devicetree/bindings/gpio/
7361 F:      Documentation/driver-api/gpio/
7362 F:      drivers/gpio/
7363 F:      include/asm-generic/gpio.h
7364 F:      include/linux/gpio.h
7365 F:      include/linux/gpio/
7366 F:      include/linux/of_gpio.h
7367 F:      include/uapi/linux/gpio.h
7368 F:      tools/gpio/
7369
7370 GRE DEMULTIPLEXER DRIVER
7371 M:      Dmitry Kozlov <[email protected]>
7372 L:      [email protected]
7373 S:      Maintained
7374 F:      include/net/gre.h
7375 F:      net/ipv4/gre_demux.c
7376 F:      net/ipv4/gre_offload.c
7377
7378 GRETH 10/100/1G Ethernet MAC device driver
7379 M:      Andreas Larsson <[email protected]>
7380 L:      [email protected]
7381 S:      Maintained
7382 F:      drivers/net/ethernet/aeroflex/
7383
7384 GREYBUS AUDIO PROTOCOLS DRIVERS
7385 M:      Vaibhav Agarwal <[email protected]>
7386 M:      Mark Greer <[email protected]>
7387 S:      Maintained
7388 F:      drivers/staging/greybus/audio_apbridgea.c
7389 F:      drivers/staging/greybus/audio_apbridgea.h
7390 F:      drivers/staging/greybus/audio_codec.c
7391 F:      drivers/staging/greybus/audio_codec.h
7392 F:      drivers/staging/greybus/audio_gb.c
7393 F:      drivers/staging/greybus/audio_manager.c
7394 F:      drivers/staging/greybus/audio_manager.h
7395 F:      drivers/staging/greybus/audio_manager_module.c
7396 F:      drivers/staging/greybus/audio_manager_private.h
7397 F:      drivers/staging/greybus/audio_manager_sysfs.c
7398 F:      drivers/staging/greybus/audio_module.c
7399 F:      drivers/staging/greybus/audio_topology.c
7400
7401 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7402 M:      Viresh Kumar <[email protected]>
7403 S:      Maintained
7404 F:      drivers/staging/greybus/authentication.c
7405 F:      drivers/staging/greybus/bootrom.c
7406 F:      drivers/staging/greybus/firmware.h
7407 F:      drivers/staging/greybus/fw-core.c
7408 F:      drivers/staging/greybus/fw-download.c
7409 F:      drivers/staging/greybus/fw-management.c
7410 F:      drivers/staging/greybus/greybus_authentication.h
7411 F:      drivers/staging/greybus/greybus_firmware.h
7412 F:      drivers/staging/greybus/hid.c
7413 F:      drivers/staging/greybus/i2c.c
7414 F:      drivers/staging/greybus/spi.c
7415 F:      drivers/staging/greybus/spilib.c
7416 F:      drivers/staging/greybus/spilib.h
7417
7418 GREYBUS LOOPBACK DRIVER
7419 M:      Bryan O'Donoghue <[email protected]>
7420 S:      Maintained
7421 F:      drivers/staging/greybus/loopback.c
7422
7423 GREYBUS PLATFORM DRIVERS
7424 M:      Vaibhav Hiremath <[email protected]>
7425 S:      Maintained
7426 F:      drivers/staging/greybus/arche-apb-ctrl.c
7427 F:      drivers/staging/greybus/arche-platform.c
7428 F:      drivers/staging/greybus/arche_platform.h
7429
7430 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7431 M:      Rui Miguel Silva <[email protected]>
7432 S:      Maintained
7433 F:      drivers/staging/greybus/gpio.c
7434 F:      drivers/staging/greybus/light.c
7435 F:      drivers/staging/greybus/power_supply.c
7436 F:      drivers/staging/greybus/sdio.c
7437 F:      drivers/staging/greybus/spi.c
7438 F:      drivers/staging/greybus/spilib.c
7439
7440 GREYBUS SUBSYSTEM
7441 M:      Johan Hovold <[email protected]>
7442 M:      Alex Elder <[email protected]>
7443 M:      Greg Kroah-Hartman <[email protected]>
7444 L:      [email protected] (moderated for non-subscribers)
7445 S:      Maintained
7446 F:      drivers/greybus/
7447 F:      drivers/staging/greybus/
7448 F:      include/linux/greybus.h
7449 F:      include/linux/greybus/
7450
7451 GREYBUS UART PROTOCOLS DRIVERS
7452 M:      David Lin <[email protected]>
7453 S:      Maintained
7454 F:      drivers/staging/greybus/log.c
7455 F:      drivers/staging/greybus/uart.c
7456
7457 GS1662 VIDEO SERIALIZER
7458 M:      Charles-Antoine Couret <[email protected]>
7459 L:      [email protected]
7460 S:      Maintained
7461 T:      git git://linuxtv.org/media_tree.git
7462 F:      drivers/media/spi/gs1662.c
7463
7464 GSPCA FINEPIX SUBDRIVER
7465 M:      Frank Zago <[email protected]>
7466 L:      [email protected]
7467 S:      Maintained
7468 T:      git git://linuxtv.org/media_tree.git
7469 F:      drivers/media/usb/gspca/finepix.c
7470
7471 GSPCA GL860 SUBDRIVER
7472 M:      Olivier Lorin <[email protected]>
7473 L:      [email protected]
7474 S:      Maintained
7475 T:      git git://linuxtv.org/media_tree.git
7476 F:      drivers/media/usb/gspca/gl860/
7477
7478 GSPCA M5602 SUBDRIVER
7479 M:      Erik Andren <[email protected]>
7480 L:      [email protected]
7481 S:      Maintained
7482 T:      git git://linuxtv.org/media_tree.git
7483 F:      drivers/media/usb/gspca/m5602/
7484
7485 GSPCA PAC207 SONIXB SUBDRIVER
7486 M:      Hans Verkuil <[email protected]>
7487 L:      [email protected]
7488 S:      Odd Fixes
7489 T:      git git://linuxtv.org/media_tree.git
7490 F:      drivers/media/usb/gspca/pac207.c
7491
7492 GSPCA SN9C20X SUBDRIVER
7493 M:      Brian Johnson <[email protected]>
7494 L:      [email protected]
7495 S:      Maintained
7496 T:      git git://linuxtv.org/media_tree.git
7497 F:      drivers/media/usb/gspca/sn9c20x.c
7498
7499 GSPCA T613 SUBDRIVER
7500 M:      Leandro Costantino <[email protected]>
7501 L:      [email protected]
7502 S:      Maintained
7503 T:      git git://linuxtv.org/media_tree.git
7504 F:      drivers/media/usb/gspca/t613.c
7505
7506 GSPCA USB WEBCAM DRIVER
7507 M:      Hans Verkuil <[email protected]>
7508 L:      [email protected]
7509 S:      Odd Fixes
7510 T:      git git://linuxtv.org/media_tree.git
7511 F:      drivers/media/usb/gspca/
7512
7513 GTP (GPRS Tunneling Protocol)
7514 M:      Pablo Neira Ayuso <[email protected]>
7515 M:      Harald Welte <[email protected]>
7516 L:      [email protected]
7517 S:      Maintained
7518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7519 F:      drivers/net/gtp.c
7520
7521 GUID PARTITION TABLE (GPT)
7522 M:      Davidlohr Bueso <[email protected]>
7523 L:      [email protected]
7524 S:      Maintained
7525 F:      block/partitions/efi.*
7526
7527 H8/300 ARCHITECTURE
7528 M:      Yoshinori Sato <[email protected]>
7529 L:      [email protected] (moderated for non-subscribers)
7530 S:      Maintained
7531 W:      http://uclinux-h8.sourceforge.jp
7532 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7533 F:      arch/h8300/
7534 F:      drivers/clk/h8300/
7535 F:      drivers/clocksource/h8300_*.c
7536 F:      drivers/irqchip/irq-renesas-h8*.c
7537
7538 HABANALABS PCI DRIVER
7539 M:      Oded Gabbay <[email protected]>
7540 S:      Supported
7541 T:      git https://github.com/HabanaAI/linux.git
7542 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7543 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7544 F:      drivers/misc/habanalabs/
7545 F:      include/uapi/misc/habanalabs.h
7546
7547 HACKRF MEDIA DRIVER
7548 M:      Antti Palosaari <[email protected]>
7549 L:      [email protected]
7550 S:      Maintained
7551 W:      https://linuxtv.org
7552 W:      http://palosaari.fi/linux/
7553 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7554 T:      git git://linuxtv.org/anttip/media_tree.git
7555 F:      drivers/media/usb/hackrf/
7556
7557 HANTRO VPU CODEC DRIVER
7558 M:      Ezequiel Garcia <[email protected]>
7559 M:      Philipp Zabel <[email protected]>
7560 L:      [email protected]
7561 L:      [email protected]
7562 S:      Maintained
7563 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7564 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7565 F:      drivers/staging/media/hantro/
7566
7567 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7568 M:      Frank Seidel <[email protected]>
7569 L:      [email protected]
7570 S:      Maintained
7571 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7572 F:      drivers/platform/x86/hdaps.c
7573
7574 HARDWARE MONITORING
7575 M:      Jean Delvare <[email protected]>
7576 M:      Guenter Roeck <[email protected]>
7577 L:      [email protected]
7578 S:      Maintained
7579 W:      http://hwmon.wiki.kernel.org/
7580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7581 F:      Documentation/devicetree/bindings/hwmon/
7582 F:      Documentation/hwmon/
7583 F:      drivers/hwmon/
7584 F:      include/linux/hwmon*.h
7585 F:      include/trace/events/hwmon*.h
7586
7587 HARDWARE RANDOM NUMBER GENERATOR CORE
7588 M:      Matt Mackall <[email protected]>
7589 M:      Herbert Xu <[email protected]>
7590 L:      [email protected]
7591 S:      Odd fixes
7592 F:      Documentation/admin-guide/hw_random.rst
7593 F:      Documentation/devicetree/bindings/rng/
7594 F:      drivers/char/hw_random/
7595 F:      include/linux/hw_random.h
7596
7597 HARDWARE SPINLOCK CORE
7598 M:      Ohad Ben-Cohen <[email protected]>
7599 M:      Bjorn Andersson <[email protected]>
7600 R:      Baolin Wang <[email protected]>
7601 L:      [email protected]
7602 S:      Maintained
7603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7604 F:      Documentation/devicetree/bindings/hwlock/
7605 F:      Documentation/locking/hwspinlock.rst
7606 F:      drivers/hwspinlock/
7607 F:      include/linux/hwspinlock.h
7608
7609 HARDWARE TRACING FACILITIES
7610 M:      Alexander Shishkin <[email protected]>
7611 S:      Maintained
7612 F:      drivers/hwtracing/
7613
7614 HARMONY SOUND DRIVER
7615 L:      [email protected]
7616 S:      Maintained
7617 F:      sound/parisc/harmony.*
7618
7619 HDPVR USB VIDEO ENCODER DRIVER
7620 M:      Hans Verkuil <[email protected]>
7621 L:      [email protected]
7622 S:      Odd Fixes
7623 W:      https://linuxtv.org
7624 T:      git git://linuxtv.org/media_tree.git
7625 F:      drivers/media/usb/hdpvr/
7626
7627 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7628 M:      Jerry Hoemann <[email protected]>
7629 S:      Supported
7630 F:      Documentation/watchdog/hpwdt.rst
7631 F:      drivers/watchdog/hpwdt.c
7632
7633 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7634 M:      Don Brace <[email protected]>
7635 L:      [email protected]
7636 L:      [email protected]
7637 S:      Supported
7638 F:      Documentation/scsi/hpsa.rst
7639 F:      drivers/scsi/hpsa*.[ch]
7640 F:      include/linux/cciss*.h
7641 F:      include/uapi/linux/cciss*.h
7642
7643 HFI1 DRIVER
7644 M:      Mike Marciniszyn <[email protected]>
7645 M:      Dennis Dalessandro <[email protected]>
7646 L:      [email protected]
7647 S:      Supported
7648 F:      drivers/infiniband/hw/hfi1
7649
7650 HFS FILESYSTEM
7651 L:      [email protected]
7652 S:      Orphan
7653 F:      Documentation/filesystems/hfs.rst
7654 F:      fs/hfs/
7655
7656 HFSPLUS FILESYSTEM
7657 L:      [email protected]
7658 S:      Orphan
7659 F:      Documentation/filesystems/hfsplus.rst
7660 F:      fs/hfsplus/
7661
7662 HGA FRAMEBUFFER DRIVER
7663 M:      Ferenc Bakonyi <[email protected]>
7664 L:      [email protected]
7665 S:      Maintained
7666 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7667 F:      drivers/video/fbdev/hgafb.c
7668
7669 HIBERNATION (aka Software Suspend, aka swsusp)
7670 M:      "Rafael J. Wysocki" <[email protected]>
7671 M:      Pavel Machek <[email protected]>
7672 L:      [email protected]
7673 S:      Supported
7674 B:      https://bugzilla.kernel.org
7675 F:      arch/*/include/asm/suspend*.h
7676 F:      arch/x86/power/
7677 F:      drivers/base/power/
7678 F:      include/linux/freezer.h
7679 F:      include/linux/pm.h
7680 F:      include/linux/suspend.h
7681 F:      kernel/power/
7682
7683 HID CORE LAYER
7684 M:      Jiri Kosina <[email protected]>
7685 M:      Benjamin Tissoires <[email protected]>
7686 L:      [email protected]
7687 S:      Maintained
7688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7689 F:      drivers/hid/
7690 F:      include/linux/hid*
7691 F:      include/uapi/linux/hid*
7692
7693 HID SENSOR HUB DRIVERS
7694 M:      Jiri Kosina <[email protected]>
7695 M:      Jonathan Cameron <[email protected]>
7696 M:      Srinivas Pandruvada <[email protected]>
7697 L:      [email protected]
7698 L:      [email protected]
7699 S:      Maintained
7700 F:      Documentation/hid/hid-sensor*
7701 F:      drivers/hid/hid-sensor-*
7702 F:      drivers/iio/*/hid-*
7703 F:      include/linux/hid-sensor-*
7704
7705 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7706 M:      Thomas Gleixner <[email protected]>
7707 L:      [email protected]
7708 S:      Maintained
7709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7710 F:      Documentation/timers/
7711 F:      include/linux/clockchips.h
7712 F:      include/linux/hrtimer.h
7713 F:      kernel/time/clockevents.c
7714 F:      kernel/time/hrtimer.c
7715 F:      kernel/time/timer_*.c
7716
7717 HIGH-SPEED SCC DRIVER FOR AX.25
7718 L:      [email protected]
7719 S:      Orphan
7720 F:      drivers/net/hamradio/dmascc.c
7721 F:      drivers/net/hamradio/scc.c
7722
7723 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7724 M:      HighPoint Linux Team <[email protected]>
7725 S:      Supported
7726 W:      http://www.highpoint-tech.com
7727 F:      Documentation/scsi/hptiop.rst
7728 F:      drivers/scsi/hptiop.c
7729
7730 HIPPI
7731 M:      Jes Sorensen <[email protected]>
7732 L:      [email protected]
7733 S:      Maintained
7734 F:      drivers/net/hippi/
7735 F:      include/linux/hippidevice.h
7736 F:      include/uapi/linux/if_hippi.h
7737 F:      net/802/hippi.c
7738
7739 HISILICON DMA DRIVER
7740 M:      Zhou Wang <[email protected]>
7741 L:      [email protected]
7742 S:      Maintained
7743 F:      drivers/dma/hisi_dma.c
7744
7745 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7746 M:      Zaibo Xu <[email protected]>
7747 L:      [email protected]
7748 S:      Maintained
7749 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7750 F:      drivers/crypto/hisilicon/hpre/hpre.h
7751 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7752 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7753
7754 HISILICON LPC BUS DRIVER
7755 M:      [email protected]
7756 S:      Maintained
7757 W:      http://www.hisilicon.com
7758 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7759 F:      drivers/bus/hisi_lpc.c
7760
7761 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7762 M:      Yisen Zhuang <[email protected]>
7763 M:      Salil Mehta <[email protected]>
7764 L:      [email protected]
7765 S:      Maintained
7766 W:      http://www.hisilicon.com
7767 F:      drivers/net/ethernet/hisilicon/hns3/
7768
7769 HISILICON NETWORK SUBSYSTEM DRIVER
7770 M:      Yisen Zhuang <[email protected]>
7771 M:      Salil Mehta <[email protected]>
7772 L:      [email protected]
7773 S:      Maintained
7774 W:      http://www.hisilicon.com
7775 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7776 F:      drivers/net/ethernet/hisilicon/
7777
7778 HISILICON PMU DRIVER
7779 M:      Shaokun Zhang <[email protected]>
7780 S:      Supported
7781 W:      http://www.hisilicon.com
7782 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7783 F:      drivers/perf/hisilicon
7784
7785 HISILICON QM AND ZIP Controller DRIVER
7786 M:      Zhou Wang <[email protected]>
7787 L:      [email protected]
7788 S:      Maintained
7789 F:      Documentation/ABI/testing/debugfs-hisi-zip
7790 F:      drivers/crypto/hisilicon/qm.c
7791 F:      drivers/crypto/hisilicon/qm.h
7792 F:      drivers/crypto/hisilicon/sgl.c
7793 F:      drivers/crypto/hisilicon/zip/
7794
7795 HISILICON ROCE DRIVER
7796 M:      Lijun Ou <[email protected]>
7797 M:      Wei Hu(Xavier) <[email protected]>
7798 M:      Weihang Li <[email protected]>
7799 L:      [email protected]
7800 S:      Maintained
7801 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7802 F:      drivers/infiniband/hw/hns/
7803
7804 HISILICON SAS Controller
7805 M:      John Garry <[email protected]>
7806 S:      Supported
7807 W:      http://www.hisilicon.com
7808 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7809 F:      drivers/scsi/hisi_sas/
7810
7811 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7812 M:      Zaibo Xu <[email protected]>
7813 L:      [email protected]
7814 S:      Maintained
7815 F:      Documentation/ABI/testing/debugfs-hisi-sec
7816 F:      drivers/crypto/hisilicon/sec2/sec.h
7817 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7818 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7819 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7820
7821 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7822 M:      Zaibo Xu <[email protected]>
7823 S:      Maintained
7824 F:      drivers/char/hw_random/hisi-trng-v2.c
7825
7826 HISILICON V3XX SPI NOR FLASH Controller Driver
7827 M:      John Garry <[email protected]>
7828 S:      Maintained
7829 W:      http://www.hisilicon.com
7830 F:      drivers/spi/spi-hisi-sfc-v3xx.c
7831
7832 HMM - Heterogeneous Memory Management
7833 M:      Jérôme Glisse <[email protected]>
7834 L:      [email protected]
7835 S:      Maintained
7836 F:      Documentation/vm/hmm.rst
7837 F:      include/linux/hmm*
7838 F:      lib/test_hmm*
7839 F:      mm/hmm*
7840 F:      tools/testing/selftests/vm/*hmm*
7841
7842 HOST AP DRIVER
7843 M:      Jouni Malinen <[email protected]>
7844 L:      [email protected]
7845 S:      Obsolete
7846 W:      http://w1.fi/hostap-driver.html
7847 F:      drivers/net/wireless/intersil/hostap/
7848
7849 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7850 L:      [email protected]
7851 S:      Orphan
7852 F:      drivers/platform/x86/tc1100-wmi.c
7853
7854 HPET:   High Precision Event Timers driver
7855 M:      Clemens Ladisch <[email protected]>
7856 S:      Maintained
7857 F:      Documentation/timers/hpet.rst
7858 F:      drivers/char/hpet.c
7859 F:      include/linux/hpet.h
7860 F:      include/uapi/linux/hpet.h
7861
7862 HPET:   x86
7863 S:      Orphan
7864 F:      arch/x86/include/asm/hpet.h
7865 F:      arch/x86/kernel/hpet.c
7866
7867 HPFS FILESYSTEM
7868 M:      Mikulas Patocka <[email protected]>
7869 S:      Maintained
7870 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7871 F:      fs/hpfs/
7872
7873 HSI SUBSYSTEM
7874 M:      Sebastian Reichel <[email protected]>
7875 S:      Maintained
7876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7877 F:      Documentation/ABI/testing/sysfs-bus-hsi
7878 F:      Documentation/driver-api/hsi.rst
7879 F:      drivers/hsi/
7880 F:      include/linux/hsi/
7881 F:      include/uapi/linux/hsi/
7882
7883 HSO 3G MODEM DRIVER
7884 L:      [email protected]
7885 S:      Orphan
7886 F:      drivers/net/usb/hso.c
7887
7888 HSR NETWORK PROTOCOL
7889 L:      [email protected]
7890 S:      Orphan
7891 F:      net/hsr/
7892
7893 HT16K33 LED CONTROLLER DRIVER
7894 M:      Robin van der Gracht <[email protected]>
7895 S:      Maintained
7896 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7897 F:      drivers/auxdisplay/ht16k33.c
7898
7899 HTCPEN TOUCHSCREEN DRIVER
7900 M:      Pau Oliva Fora <[email protected]>
7901 L:      [email protected]
7902 S:      Maintained
7903 F:      drivers/input/touchscreen/htcpen.c
7904
7905 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7906 M:      Lorenzo Bianconi <[email protected]>
7907 L:      [email protected]
7908 S:      Maintained
7909 W:      http://www.st.com/
7910 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7911 F:      drivers/iio/humidity/hts221*
7912
7913 HUAWEI ETHERNET DRIVER
7914 M:      Bin Luo <[email protected]>
7915 L:      [email protected]
7916 S:      Supported
7917 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
7918 F:      drivers/net/ethernet/huawei/hinic/
7919
7920 HUGETLB FILESYSTEM
7921 M:      Mike Kravetz <[email protected]>
7922 L:      [email protected]
7923 S:      Maintained
7924 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7925 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7926 F:      Documentation/vm/hugetlbfs_reserv.rst
7927 F:      fs/hugetlbfs/
7928 F:      include/linux/hugetlb.h
7929 F:      mm/hugetlb.c
7930
7931 HVA ST MEDIA DRIVER
7932 M:      Jean-Christophe Trotin <[email protected]>
7933 L:      [email protected]
7934 S:      Supported
7935 W:      https://linuxtv.org
7936 T:      git git://linuxtv.org/media_tree.git
7937 F:      drivers/media/platform/sti/hva
7938
7939 HWPOISON MEMORY FAILURE HANDLING
7940 M:      Naoya Horiguchi <[email protected]>
7941 L:      [email protected]
7942 S:      Maintained
7943 F:      mm/hwpoison-inject.c
7944 F:      mm/memory-failure.c
7945
7946 HYGON PROCESSOR SUPPORT
7947 M:      Pu Wen <[email protected]>
7948 L:      [email protected]
7949 S:      Maintained
7950 F:      arch/x86/kernel/cpu/hygon.c
7951
7952 HYNIX HI556 SENSOR DRIVER
7953 M:      Shawn Tu <[email protected]>
7954 L:      [email protected]
7955 S:      Maintained
7956 T:      git git://linuxtv.org/media_tree.git
7957 F:      drivers/media/i2c/hi556.c
7958
7959 Hyper-V CORE AND DRIVERS
7960 M:      "K. Y. Srinivasan" <[email protected]>
7961 M:      Haiyang Zhang <[email protected]>
7962 M:      Stephen Hemminger <[email protected]>
7963 M:      Wei Liu <[email protected]>
7964 L:      [email protected]
7965 S:      Supported
7966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7967 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7968 F:      Documentation/ABI/testing/debugfs-hyperv
7969 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
7970 F:      arch/x86/hyperv
7971 F:      arch/x86/include/asm/hyperv-tlfs.h
7972 F:      arch/x86/include/asm/mshyperv.h
7973 F:      arch/x86/include/asm/trace/hyperv.h
7974 F:      arch/x86/kernel/cpu/mshyperv.c
7975 F:      drivers/clocksource/hyperv_timer.c
7976 F:      drivers/hid/hid-hyperv.c
7977 F:      drivers/hv/
7978 F:      drivers/input/serio/hyperv-keyboard.c
7979 F:      drivers/iommu/hyperv-iommu.c
7980 F:      drivers/net/hyperv/
7981 F:      drivers/pci/controller/pci-hyperv-intf.c
7982 F:      drivers/pci/controller/pci-hyperv.c
7983 F:      drivers/scsi/storvsc_drv.c
7984 F:      drivers/uio/uio_hv_generic.c
7985 F:      drivers/video/fbdev/hyperv_fb.c
7986 F:      include/asm-generic/hyperv-tlfs.h
7987 F:      include/asm-generic/mshyperv.h
7988 F:      include/clocksource/hyperv_timer.h
7989 F:      include/linux/hyperv.h
7990 F:      include/uapi/linux/hyperv.h
7991 F:      net/vmw_vsock/hyperv_transport.c
7992 F:      tools/hv/
7993
7994 HYPERBUS SUPPORT
7995 M:      Vignesh Raghavendra <[email protected]>
7996 L:      [email protected]
7997 S:      Supported
7998 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7999 C:      irc://irc.oftc.net/mtd
8000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8001 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8002 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8003 F:      drivers/mtd/hyperbus/
8004 F:      include/linux/mtd/hyperbus.h
8005
8006 HYPERVISOR VIRTUAL CONSOLE DRIVER
8007 L:      [email protected]
8008 S:      Odd Fixes
8009 F:      drivers/tty/hvc/
8010
8011 I2C ACPI SUPPORT
8012 M:      Mika Westerberg <[email protected]>
8013 L:      [email protected]
8014 L:      [email protected]
8015 S:      Maintained
8016 F:      drivers/i2c/i2c-core-acpi.c
8017
8018 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8019 M:      Ajay Gupta <[email protected]>
8020 L:      [email protected]
8021 S:      Maintained
8022 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8023 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8024
8025 I2C MUXES
8026 M:      Peter Rosin <[email protected]>
8027 L:      [email protected]
8028 S:      Maintained
8029 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8030 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8031 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8032 F:      Documentation/i2c/i2c-topology.rst
8033 F:      Documentation/i2c/muxes/
8034 F:      drivers/i2c/i2c-mux.c
8035 F:      drivers/i2c/muxes/
8036 F:      include/linux/i2c-mux.h
8037
8038 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8039 M:      Gregory CLEMENT <[email protected]>
8040 L:      [email protected]
8041 S:      Maintained
8042 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8043 F:      drivers/i2c/busses/i2c-mv64xxx.c
8044
8045 I2C OVER PARALLEL PORT
8046 M:      Jean Delvare <[email protected]>
8047 L:      [email protected]
8048 S:      Maintained
8049 F:      Documentation/i2c/busses/i2c-parport.rst
8050 F:      drivers/i2c/busses/i2c-parport.c
8051
8052 I2C SUBSYSTEM
8053 M:      Wolfram Sang <[email protected]>
8054 L:      [email protected]
8055 S:      Maintained
8056 W:      https://i2c.wiki.kernel.org/
8057 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8059 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8060 F:      Documentation/i2c/
8061 F:      drivers/i2c/*
8062 F:      include/linux/i2c-dev.h
8063 F:      include/linux/i2c-smbus.h
8064 F:      include/linux/i2c.h
8065 F:      include/uapi/linux/i2c-*.h
8066 F:      include/uapi/linux/i2c.h
8067
8068 I2C SUBSYSTEM HOST DRIVERS
8069 L:      [email protected]
8070 S:      Odd Fixes
8071 W:      https://i2c.wiki.kernel.org/
8072 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8074 F:      Documentation/devicetree/bindings/i2c/
8075 F:      drivers/i2c/algos/
8076 F:      drivers/i2c/busses/
8077
8078 I2C-TAOS-EVM DRIVER
8079 M:      Jean Delvare <[email protected]>
8080 L:      [email protected]
8081 S:      Maintained
8082 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8083 F:      drivers/i2c/busses/i2c-taos-evm.c
8084
8085 I2C-TINY-USB DRIVER
8086 M:      Till Harbaum <[email protected]>
8087 L:      [email protected]
8088 S:      Maintained
8089 W:      http://www.harbaum.org/till/i2c_tiny_usb
8090 F:      drivers/i2c/busses/i2c-tiny-usb.c
8091
8092 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8093 M:      Jean Delvare <[email protected]>
8094 L:      [email protected]
8095 S:      Maintained
8096 F:      Documentation/i2c/busses/i2c-ali1535.rst
8097 F:      Documentation/i2c/busses/i2c-ali1563.rst
8098 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8099 F:      Documentation/i2c/busses/i2c-amd756.rst
8100 F:      Documentation/i2c/busses/i2c-amd8111.rst
8101 F:      Documentation/i2c/busses/i2c-i801.rst
8102 F:      Documentation/i2c/busses/i2c-nforce2.rst
8103 F:      Documentation/i2c/busses/i2c-piix4.rst
8104 F:      Documentation/i2c/busses/i2c-sis5595.rst
8105 F:      Documentation/i2c/busses/i2c-sis630.rst
8106 F:      Documentation/i2c/busses/i2c-sis96x.rst
8107 F:      Documentation/i2c/busses/i2c-via.rst
8108 F:      Documentation/i2c/busses/i2c-viapro.rst
8109 F:      drivers/i2c/busses/i2c-ali1535.c
8110 F:      drivers/i2c/busses/i2c-ali1563.c
8111 F:      drivers/i2c/busses/i2c-ali15x3.c
8112 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8113 F:      drivers/i2c/busses/i2c-amd756.c
8114 F:      drivers/i2c/busses/i2c-amd8111.c
8115 F:      drivers/i2c/busses/i2c-i801.c
8116 F:      drivers/i2c/busses/i2c-isch.c
8117 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8118 F:      drivers/i2c/busses/i2c-nforce2.c
8119 F:      drivers/i2c/busses/i2c-piix4.c
8120 F:      drivers/i2c/busses/i2c-sis5595.c
8121 F:      drivers/i2c/busses/i2c-sis630.c
8122 F:      drivers/i2c/busses/i2c-sis96x.c
8123 F:      drivers/i2c/busses/i2c-via.c
8124 F:      drivers/i2c/busses/i2c-viapro.c
8125
8126 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8127 M:      Hans de Goede <[email protected]>
8128 L:      [email protected]
8129 S:      Maintained
8130 F:      drivers/i2c/busses/i2c-cht-wc.c
8131
8132 I2C/SMBUS ISMT DRIVER
8133 M:      Seth Heasley <[email protected]>
8134 M:      Neil Horman <[email protected]>
8135 L:      [email protected]
8136 F:      Documentation/i2c/busses/i2c-ismt.rst
8137 F:      drivers/i2c/busses/i2c-ismt.c
8138
8139 I2C/SMBUS STUB DRIVER
8140 M:      Jean Delvare <[email protected]>
8141 L:      [email protected]
8142 S:      Maintained
8143 F:      drivers/i2c/i2c-stub.c
8144
8145 I3C DRIVER FOR CADENCE I3C MASTER IP
8146 M:      Przemysław Gaj <[email protected]>
8147 S:      Maintained
8148 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8149 F:      drivers/i3c/master/i3c-master-cdns.c
8150
8151 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8152 M:      Vitor Soares <[email protected]>
8153 S:      Maintained
8154 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8155 F:      drivers/i3c/master/dw*
8156
8157 I3C SUBSYSTEM
8158 M:      Boris Brezillon <[email protected]>
8159 L:      [email protected] (moderated for non-subscribers)
8160 S:      Maintained
8161 C:      irc://chat.freenode.net/linux-i3c
8162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8163 F:      Documentation/ABI/testing/sysfs-bus-i3c
8164 F:      Documentation/devicetree/bindings/i3c/
8165 F:      Documentation/driver-api/i3c
8166 F:      drivers/i3c/
8167 F:      include/linux/i3c/
8168
8169 IA64 (Itanium) PLATFORM
8170 M:      Tony Luck <[email protected]>
8171 M:      Fenghua Yu <[email protected]>
8172 L:      [email protected]
8173 S:      Maintained
8174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8175 F:      Documentation/ia64/
8176 F:      arch/ia64/
8177
8178 IBM Power 842 compression accelerator
8179 M:      Haren Myneni <[email protected]>
8180 S:      Supported
8181 F:      crypto/842.c
8182 F:      drivers/crypto/nx/Kconfig
8183 F:      drivers/crypto/nx/Makefile
8184 F:      drivers/crypto/nx/nx-842*
8185 F:      include/linux/sw842.h
8186 F:      lib/842/
8187
8188 IBM Power in-Nest Crypto Acceleration
8189 M:      Breno Leitão <[email protected]>
8190 M:      Nayna Jain <[email protected]>
8191 M:      Paulo Flabiano Smorigo <[email protected]>
8192 L:      [email protected]
8193 S:      Supported
8194 F:      drivers/crypto/nx/Kconfig
8195 F:      drivers/crypto/nx/Makefile
8196 F:      drivers/crypto/nx/nx-aes*
8197 F:      drivers/crypto/nx/nx-sha*
8198 F:      drivers/crypto/nx/nx.*
8199 F:      drivers/crypto/nx/nx_csbcpb.h
8200 F:      drivers/crypto/nx/nx_debugfs.c
8201
8202 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8203 M:      Tyrel Datwyler <[email protected]>
8204 L:      [email protected]
8205 L:      [email protected]
8206 S:      Supported
8207 F:      drivers/pci/hotplug/rpadlpar*
8208
8209 IBM Power Linux RAID adapter
8210 M:      Brian King <[email protected]>
8211 S:      Supported
8212 F:      drivers/scsi/ipr.*
8213
8214 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8215 M:      Tyrel Datwyler <[email protected]>
8216 L:      [email protected]
8217 L:      [email protected]
8218 S:      Supported
8219 F:      drivers/pci/hotplug/rpaphp*
8220
8221 IBM Power SRIOV Virtual NIC Device Driver
8222 M:      Thomas Falcon <[email protected]>
8223 M:      John Allen <[email protected]>
8224 L:      [email protected]
8225 S:      Supported
8226 F:      drivers/net/ethernet/ibm/ibmvnic.*
8227
8228 IBM Power Virtual Accelerator Switchboard
8229 M:      Sukadev Bhattiprolu <[email protected]>
8230 L:      [email protected]
8231 S:      Supported
8232 F:      arch/powerpc/include/asm/vas.h
8233 F:      arch/powerpc/platforms/powernv/copy-paste.h
8234 F:      arch/powerpc/platforms/powernv/vas*
8235
8236 IBM Power Virtual Ethernet Device Driver
8237 M:      Thomas Falcon <[email protected]>
8238 L:      [email protected]
8239 S:      Supported
8240 F:      drivers/net/ethernet/ibm/ibmveth.*
8241
8242 IBM Power Virtual FC Device Drivers
8243 M:      Tyrel Datwyler <[email protected]>
8244 L:      [email protected]
8245 S:      Supported
8246 F:      drivers/scsi/ibmvscsi/ibmvfc*
8247
8248 IBM Power Virtual Management Channel Driver
8249 M:      Steven Royer <[email protected]>
8250 S:      Supported
8251 F:      drivers/misc/ibmvmc.*
8252
8253 IBM Power Virtual SCSI Device Drivers
8254 M:      Tyrel Datwyler <[email protected]>
8255 L:      [email protected]
8256 S:      Supported
8257 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8258 F:      include/scsi/viosrp.h
8259
8260 IBM Power Virtual SCSI Device Target Driver
8261 M:      Michael Cyr <[email protected]>
8262 L:      [email protected]
8263 L:      [email protected]
8264 S:      Supported
8265 F:      drivers/scsi/ibmvscsi_tgt/
8266
8267 IBM Power VMX Cryptographic instructions
8268 M:      Breno Leitão <[email protected]>
8269 M:      Nayna Jain <[email protected]>
8270 M:      Paulo Flabiano Smorigo <[email protected]>
8271 L:      [email protected]
8272 S:      Supported
8273 F:      drivers/crypto/vmx/Kconfig
8274 F:      drivers/crypto/vmx/Makefile
8275 F:      drivers/crypto/vmx/aes*
8276 F:      drivers/crypto/vmx/ghash*
8277 F:      drivers/crypto/vmx/ppc-xlate.pl
8278 F:      drivers/crypto/vmx/vmx.c
8279
8280 IBM ServeRAID RAID DRIVER
8281 S:      Orphan
8282 F:      drivers/scsi/ips.*
8283
8284 ICH LPC AND GPIO DRIVER
8285 M:      Peter Tyser <[email protected]>
8286 S:      Maintained
8287 F:      drivers/gpio/gpio-ich.c
8288 F:      drivers/mfd/lpc_ich.c
8289
8290 ICY I2C DRIVER
8291 M:      Max Staudt <[email protected]>
8292 L:      [email protected]
8293 S:      Maintained
8294 F:      drivers/i2c/busses/i2c-icy.c
8295
8296 IDE SUBSYSTEM
8297 M:      "David S. Miller" <[email protected]>
8298 L:      [email protected]
8299 S:      Maintained
8300 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8302 F:      Documentation/ide/
8303 F:      drivers/ide/
8304 F:      include/linux/ide.h
8305
8306 IDE/ATAPI DRIVERS
8307 M:      Borislav Petkov <[email protected]>
8308 L:      [email protected]
8309 S:      Maintained
8310 F:      Documentation/cdrom/ide-cd.rst
8311 F:      drivers/ide/ide-cd*
8312
8313 IDEAPAD LAPTOP EXTRAS DRIVER
8314 M:      Ike Panhc <[email protected]>
8315 L:      [email protected]
8316 S:      Maintained
8317 W:      http://launchpad.net/ideapad-laptop
8318 F:      drivers/platform/x86/ideapad-laptop.c
8319
8320 IDEAPAD LAPTOP SLIDEBAR DRIVER
8321 M:      Andrey Moiseev <[email protected]>
8322 L:      [email protected]
8323 S:      Maintained
8324 W:      https://github.com/o2genum/ideapad-slidebar
8325 F:      drivers/input/misc/ideapad_slidebar.c
8326
8327 IDT VersaClock 5 CLOCK DRIVER
8328 M:      Marek Vasut <[email protected]>
8329 S:      Maintained
8330 F:      drivers/clk/clk-versaclock5.c
8331
8332 IEEE 802.15.4 SUBSYSTEM
8333 M:      Alexander Aring <[email protected]>
8334 M:      Stefan Schmidt <[email protected]>
8335 L:      [email protected]
8336 S:      Maintained
8337 W:      https://linux-wpan.org/
8338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8340 F:      Documentation/networking/ieee802154.rst
8341 F:      drivers/net/ieee802154/
8342 F:      include/linux/ieee802154.h
8343 F:      include/linux/nl802154.h
8344 F:      include/net/af_ieee802154.h
8345 F:      include/net/cfg802154.h
8346 F:      include/net/ieee802154_netdev.h
8347 F:      include/net/mac802154.h
8348 F:      include/net/nl802154.h
8349 F:      net/ieee802154/
8350 F:      net/mac802154/
8351
8352 IFE PROTOCOL
8353 M:      Yotam Gigi <[email protected]>
8354 M:      Jamal Hadi Salim <[email protected]>
8355 F:      include/net/ife.h
8356 F:      include/uapi/linux/ife.h
8357 F:      net/ife
8358
8359 IGORPLUG-USB IR RECEIVER
8360 M:      Sean Young <[email protected]>
8361 L:      [email protected]
8362 S:      Maintained
8363 F:      drivers/media/rc/igorplugusb.c
8364
8365 IGUANAWORKS USB IR TRANSCEIVER
8366 M:      Sean Young <[email protected]>
8367 L:      [email protected]
8368 S:      Maintained
8369 F:      drivers/media/rc/iguanair.c
8370
8371 IIO DIGITAL POTENTIOMETER DAC
8372 M:      Peter Rosin <[email protected]>
8373 L:      [email protected]
8374 S:      Maintained
8375 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8376 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8377 F:      drivers/iio/dac/dpot-dac.c
8378
8379 IIO ENVELOPE DETECTOR
8380 M:      Peter Rosin <[email protected]>
8381 L:      [email protected]
8382 S:      Maintained
8383 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8384 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8385 F:      drivers/iio/adc/envelope-detector.c
8386
8387 IIO MULTIPLEXER
8388 M:      Peter Rosin <[email protected]>
8389 L:      [email protected]
8390 S:      Maintained
8391 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8392 F:      drivers/iio/multiplexer/iio-mux.c
8393
8394 IIO SUBSYSTEM AND DRIVERS
8395 M:      Jonathan Cameron <[email protected]>
8396 R:      Hartmut Knaack <[email protected]>
8397 R:      Lars-Peter Clausen <[email protected]>
8398 R:      Peter Meerwald-Stadler <[email protected]>
8399 L:      [email protected]
8400 S:      Maintained
8401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8402 F:      Documentation/ABI/testing/configfs-iio*
8403 F:      Documentation/ABI/testing/sysfs-bus-iio*
8404 F:      Documentation/devicetree/bindings/iio/
8405 F:      drivers/iio/
8406 F:      drivers/staging/iio/
8407 F:      include/linux/iio/
8408 F:      tools/iio/
8409
8410 IIO UNIT CONVERTER
8411 M:      Peter Rosin <[email protected]>
8412 L:      [email protected]
8413 S:      Maintained
8414 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8415 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8416 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8417 F:      drivers/iio/afe/iio-rescale.c
8418
8419 IKANOS/ADI EAGLE ADSL USB DRIVER
8420 M:      Matthieu Castet <[email protected]>
8421 M:      Stanislaw Gruszka <[email protected]>
8422 S:      Maintained
8423 F:      drivers/usb/atm/ueagle-atm.c
8424
8425 IMGTEC ASCII LCD DRIVER
8426 M:      Paul Burton <[email protected]>
8427 S:      Maintained
8428 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8429 F:      drivers/auxdisplay/img-ascii-lcd.c
8430
8431 IMGTEC IR DECODER DRIVER
8432 S:      Orphan
8433 F:      drivers/media/rc/img-ir/
8434
8435 IMON SOUNDGRAPH USB IR RECEIVER
8436 M:      Sean Young <[email protected]>
8437 L:      [email protected]
8438 S:      Maintained
8439 F:      drivers/media/rc/imon.c
8440 F:      drivers/media/rc/imon_raw.c
8441
8442 IMS TWINTURBO FRAMEBUFFER DRIVER
8443 L:      [email protected]
8444 S:      Orphan
8445 F:      drivers/video/fbdev/imsttfb.c
8446
8447 INA209 HARDWARE MONITOR DRIVER
8448 M:      Guenter Roeck <[email protected]>
8449 L:      [email protected]
8450 S:      Maintained
8451 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8452 F:      Documentation/hwmon/ina209.rst
8453 F:      drivers/hwmon/ina209.c
8454
8455 INA2XX HARDWARE MONITOR DRIVER
8456 M:      Guenter Roeck <[email protected]>
8457 L:      [email protected]
8458 S:      Maintained
8459 F:      Documentation/hwmon/ina2xx.rst
8460 F:      drivers/hwmon/ina2xx.c
8461 F:      include/linux/platform_data/ina2xx.h
8462
8463 INDUSTRY PACK SUBSYSTEM (IPACK)
8464 M:      Samuel Iglesias Gonsalvez <[email protected]>
8465 M:      Jens Taprogge <[email protected]>
8466 M:      Greg Kroah-Hartman <[email protected]>
8467 L:      [email protected]
8468 S:      Maintained
8469 W:      http://industrypack.sourceforge.net
8470 F:      drivers/ipack/
8471
8472 INFINEON DPS310 Driver
8473 M:      Eddie James <[email protected]>
8474 L:      [email protected]
8475 S:      Maintained
8476 F:      drivers/iio/pressure/dps310.c
8477
8478 INFINIBAND SUBSYSTEM
8479 M:      Doug Ledford <[email protected]>
8480 M:      Jason Gunthorpe <[email protected]>
8481 L:      [email protected]
8482 S:      Supported
8483 W:      https://github.com/linux-rdma/rdma-core
8484 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8486 F:      Documentation/devicetree/bindings/infiniband/
8487 F:      Documentation/infiniband/
8488 F:      drivers/infiniband/
8489 F:      include/rdma/
8490 F:      include/trace/events/ib_mad.h
8491 F:      include/trace/events/ib_umad.h
8492 F:      include/uapi/linux/if_infiniband.h
8493 F:      include/uapi/rdma/
8494 F:      samples/bpf/ibumad_kern.c
8495 F:      samples/bpf/ibumad_user.c
8496
8497 INGENIC JZ4780 DMA Driver
8498 M:      Zubair Lutfullah Kakakhel <[email protected]>
8499 S:      Maintained
8500 F:      drivers/dma/dma-jz4780.c
8501
8502 INGENIC JZ4780 NAND DRIVER
8503 M:      Harvey Hunt <[email protected]>
8504 L:      [email protected]
8505 S:      Maintained
8506 F:      drivers/mtd/nand/raw/ingenic/
8507
8508 INGENIC JZ47xx SoCs
8509 M:      Paul Cercueil <[email protected]>
8510 S:      Maintained
8511 F:      arch/mips/boot/dts/ingenic/
8512 F:      arch/mips/include/asm/mach-jz4740/
8513 F:      arch/mips/jz4740/
8514 F:      drivers/clk/ingenic/
8515 F:      drivers/dma/dma-jz4780.c
8516 F:      drivers/gpu/drm/ingenic/
8517 F:      drivers/i2c/busses/i2c-jz4780.c
8518 F:      drivers/iio/adc/ingenic-adc.c
8519 F:      drivers/irqchip/irq-ingenic.c
8520 F:      drivers/memory/jz4780-nemc.c
8521 F:      drivers/mmc/host/jz4740_mmc.c
8522 F:      drivers/mtd/nand/raw/ingenic/
8523 F:      drivers/pinctrl/pinctrl-ingenic.c
8524 F:      drivers/power/supply/ingenic-battery.c
8525 F:      drivers/pwm/pwm-jz4740.c
8526 F:      drivers/remoteproc/ingenic_rproc.c
8527 F:      drivers/rtc/rtc-jz4740.c
8528 F:      drivers/tty/serial/8250/8250_ingenic.c
8529 F:      drivers/usb/musb/jz4740.c
8530 F:      drivers/watchdog/jz4740_wdt.c
8531 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8532 F:      include/linux/mfd/ingenic-tcu.h
8533 F:      sound/soc/codecs/jz47*
8534 F:      sound/soc/jz4740/
8535
8536 INOTIFY
8537 M:      Jan Kara <[email protected]>
8538 R:      Amir Goldstein <[email protected]>
8539 L:      [email protected]
8540 S:      Maintained
8541 F:      Documentation/filesystems/inotify.rst
8542 F:      fs/notify/inotify/
8543 F:      include/linux/inotify.h
8544 F:      include/uapi/linux/inotify.h
8545
8546 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8547 M:      Dmitry Torokhov <[email protected]>
8548 L:      [email protected]
8549 S:      Maintained
8550 Q:      http://patchwork.kernel.org/project/linux-input/list/
8551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8552 F:      Documentation/devicetree/bindings/input/
8553 F:      Documentation/devicetree/bindings/serio/
8554 F:      Documentation/input/
8555 F:      drivers/input/
8556 F:      include/linux/input.h
8557 F:      include/linux/input/
8558 F:      include/uapi/linux/input-event-codes.h
8559 F:      include/uapi/linux/input.h
8560
8561 INPUT MULTITOUCH (MT) PROTOCOL
8562 M:      Henrik Rydberg <[email protected]>
8563 L:      [email protected]
8564 S:      Odd fixes
8565 F:      Documentation/input/multi-touch-protocol.rst
8566 F:      drivers/input/input-mt.c
8567 K:      \b(ABS|SYN)_MT_
8568
8569 INSIDE SECURE CRYPTO DRIVER
8570 M:      Antoine Tenart <[email protected]>
8571 L:      [email protected]
8572 S:      Maintained
8573 F:      drivers/crypto/inside-secure/
8574
8575 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8576 M:      Mimi Zohar <[email protected]>
8577 M:      Dmitry Kasatkin <[email protected]>
8578 L:      [email protected]
8579 S:      Supported
8580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8581 F:      security/integrity/ima/
8582
8583 INTEL 810/815 FRAMEBUFFER DRIVER
8584 M:      Antonino Daplas <[email protected]>
8585 L:      [email protected]
8586 S:      Maintained
8587 F:      drivers/video/fbdev/i810/
8588
8589 INTEL ASoC DRIVERS
8590 M:      Cezary Rojewski <[email protected]>
8591 M:      Pierre-Louis Bossart <[email protected]>
8592 M:      Liam Girdwood <[email protected]>
8593 M:      Jie Yang <[email protected]>
8594 L:      [email protected] (moderated for non-subscribers)
8595 S:      Supported
8596 F:      sound/soc/intel/
8597
8598 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8599 M:      Hans de Goede <[email protected]>
8600 L:      [email protected]
8601 S:      Maintained
8602 F:      drivers/platform/x86/intel_atomisp2_pm.c
8603
8604 INTEL BROXTON PMC DRIVER
8605 M:      Mika Westerberg <[email protected]>
8606 M:      Zha Qipeng <[email protected]>
8607 S:      Maintained
8608 F:      drivers/mfd/intel_pmc_bxt.c
8609 F:      include/linux/mfd/intel_pmc_bxt.h
8610
8611 INTEL C600 SERIES SAS CONTROLLER DRIVER
8612 M:      Intel SCU Linux support <[email protected]>
8613 M:      Artur Paszkiewicz <[email protected]>
8614 L:      [email protected]
8615 S:      Supported
8616 T:      git git://git.code.sf.net/p/intel-sas/isci
8617 F:      drivers/scsi/isci/
8618
8619 INTEL CPU family model numbers
8620 M:      Tony Luck <[email protected]>
8621 M:      [email protected]
8622 L:      [email protected]
8623 S:      Supported
8624 F:      arch/x86/include/asm/intel-family.h
8625
8626 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8627 M:      Jani Nikula <[email protected]>
8628 M:      Joonas Lahtinen <[email protected]>
8629 M:      Rodrigo Vivi <[email protected]>
8630 L:      [email protected]
8631 S:      Supported
8632 W:      https://01.org/linuxgraphics/
8633 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8634 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8635 C:      irc://chat.freenode.net/intel-gfx
8636 T:      git git://anongit.freedesktop.org/drm-intel
8637 F:      Documentation/gpu/i915.rst
8638 F:      drivers/gpu/drm/i915/
8639 F:      include/drm/i915*
8640 F:      include/uapi/drm/i915_drm.h
8641
8642 INTEL ETHERNET DRIVERS
8643 M:      Jeff Kirsher <[email protected]>
8644 L:      [email protected] (moderated for non-subscribers)
8645 S:      Supported
8646 W:      http://www.intel.com/support/feedback.htm
8647 W:      http://e1000.sourceforge.net/
8648 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8651 F:      Documentation/networking/device_drivers/ethernet/intel/
8652 F:      drivers/net/ethernet/intel/
8653 F:      drivers/net/ethernet/intel/*/
8654 F:      include/linux/avf/virtchnl.h
8655
8656 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8657 M:      Maik Broemme <[email protected]>
8658 L:      [email protected]
8659 S:      Maintained
8660 F:      Documentation/fb/intelfb.rst
8661 F:      drivers/video/fbdev/intelfb/
8662
8663 INTEL GPIO DRIVERS
8664 M:      Andy Shevchenko <[email protected]>
8665 L:      [email protected]
8666 S:      Maintained
8667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8668 F:      drivers/gpio/gpio-ich.c
8669 F:      drivers/gpio/gpio-intel-mid.c
8670 F:      drivers/gpio/gpio-merrifield.c
8671 F:      drivers/gpio/gpio-ml-ioh.c
8672 F:      drivers/gpio/gpio-pch.c
8673 F:      drivers/gpio/gpio-sch.c
8674 F:      drivers/gpio/gpio-sodaville.c
8675
8676 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8677 M:      Zhenyu Wang <[email protected]>
8678 M:      Zhi Wang <[email protected]>
8679 L:      [email protected]
8680 L:      [email protected]
8681 S:      Supported
8682 W:      https://01.org/igvt-g
8683 T:      git https://github.com/intel/gvt-linux.git
8684 F:      drivers/gpu/drm/i915/gvt/
8685
8686 INTEL HID EVENT DRIVER
8687 M:      Alex Hung <[email protected]>
8688 L:      [email protected]
8689 S:      Maintained
8690 F:      drivers/platform/x86/intel-hid.c
8691
8692 INTEL I/OAT DMA DRIVER
8693 M:      Dave Jiang <[email protected]>
8694 R:      Dan Williams <[email protected]>
8695 L:      [email protected]
8696 S:      Supported
8697 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8698 F:      drivers/dma/ioat*
8699
8700 INTEL IADX DRIVER
8701 M:      Dave Jiang <[email protected]>
8702 L:      [email protected]
8703 S:      Supported
8704 F:      drivers/dma/idxd/*
8705 F:      include/uapi/linux/idxd.h
8706
8707 INTEL IDLE DRIVER
8708 M:      Jacob Pan <[email protected]>
8709 M:      Len Brown <[email protected]>
8710 L:      [email protected]
8711 S:      Supported
8712 B:      https://bugzilla.kernel.org
8713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8714 F:      drivers/idle/intel_idle.c
8715
8716 INTEL INTEGRATED SENSOR HUB DRIVER
8717 M:      Srinivas Pandruvada <[email protected]>
8718 M:      Jiri Kosina <[email protected]>
8719 L:      [email protected]
8720 S:      Maintained
8721 F:      drivers/hid/intel-ish-hid/
8722
8723 INTEL IOMMU (VT-d)
8724 M:      David Woodhouse <[email protected]>
8725 M:      Lu Baolu <[email protected]>
8726 L:      [email protected]
8727 S:      Supported
8728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8729 F:      drivers/iommu/intel/
8730 F:      include/linux/intel-iommu.h
8731 F:      include/linux/intel-svm.h
8732
8733 INTEL IOP-ADMA DMA DRIVER
8734 R:      Dan Williams <[email protected]>
8735 S:      Odd fixes
8736 F:      drivers/dma/iop-adma.c
8737
8738 INTEL IPU3 CSI-2 CIO2 DRIVER
8739 M:      Yong Zhi <[email protected]>
8740 M:      Sakari Ailus <[email protected]>
8741 M:      Bingbu Cao <[email protected]>
8742 R:      Tian Shu Qiu <[email protected]>
8743 L:      [email protected]
8744 S:      Maintained
8745 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8746 F:      drivers/media/pci/intel/ipu3/
8747
8748 INTEL IPU3 CSI-2 IMGU DRIVER
8749 M:      Sakari Ailus <[email protected]>
8750 R:      Bingbu Cao <[email protected]>
8751 R:      Tian Shu Qiu <[email protected]>
8752 L:      [email protected]
8753 S:      Maintained
8754 F:      Documentation/admin-guide/media/ipu3.rst
8755 F:      Documentation/admin-guide/media/ipu3_rcb.svg
8756 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
8757 F:      drivers/staging/media/ipu3/
8758
8759 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8760 M:      Krzysztof Halasa <[email protected]>
8761 S:      Maintained
8762 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8763 F:      drivers/net/wan/ixp4xx_hss.c
8764 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8765 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8766 F:      include/linux/soc/ixp4xx/npe.h
8767 F:      include/linux/soc/ixp4xx/qmgr.h
8768
8769 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8770 M:      Deepak Saxena <[email protected]>
8771 S:      Maintained
8772 F:      drivers/char/hw_random/ixp4xx-rng.c
8773
8774 INTEL MANAGEMENT ENGINE (mei)
8775 M:      Tomas Winkler <[email protected]>
8776 L:      [email protected]
8777 S:      Supported
8778 F:      Documentation/driver-api/mei/*
8779 F:      drivers/misc/mei/*
8780 F:      drivers/watchdog/mei_wdt.c
8781 F:      include/linux/mei_cl_bus.h
8782 F:      include/uapi/linux/mei.h
8783 F:      samples/mei/*
8784
8785 INTEL MENLOW THERMAL DRIVER
8786 M:      Sujith Thomas <[email protected]>
8787 L:      [email protected]
8788 S:      Supported
8789 W:      https://01.org/linux-acpi
8790 F:      drivers/platform/x86/intel_menlow.c
8791
8792 INTEL MIC DRIVERS (mic)
8793 M:      Sudeep Dutt <[email protected]>
8794 M:      Ashutosh Dixit <[email protected]>
8795 S:      Supported
8796 W:      https://github.com/sudeepdutt/mic
8797 W:      http://software.intel.com/en-us/mic-developer
8798 F:      Documentation/misc-devices/mic/
8799 F:      drivers/dma/mic_x100_dma.c
8800 F:      drivers/dma/mic_x100_dma.h
8801 F:      drivers/misc/mic/
8802 F:      include/linux/mic_bus.h
8803 F:      include/linux/scif.h
8804 F:      include/uapi/linux/mic_common.h
8805 F:      include/uapi/linux/mic_ioctl.h
8806 F:      include/uapi/linux/scif_ioctl.h
8807
8808 INTEL P-Unit IPC DRIVER
8809 M:      Zha Qipeng <[email protected]>
8810 L:      [email protected]
8811 S:      Maintained
8812 F:      arch/x86/include/asm/intel_punit_ipc.h
8813 F:      drivers/platform/x86/intel_punit_ipc.c
8814
8815 INTEL PMC CORE DRIVER
8816 M:      Rajneesh Bhardwaj <[email protected]>
8817 M:      Vishwanath Somayaji <[email protected]>
8818 L:      [email protected]
8819 S:      Maintained
8820 F:      drivers/platform/x86/intel_pmc_core*
8821
8822 INTEL PMIC GPIO DRIVERS
8823 M:      Andy Shevchenko <[email protected]>
8824 S:      Maintained
8825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8826 F:      drivers/gpio/gpio-*cove.c
8827 F:      drivers/gpio/gpio-msic.c
8828
8829 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8830 R:      Andy Shevchenko <[email protected]>
8831 S:      Maintained
8832 F:      drivers/mfd/intel_msic.c
8833 F:      drivers/mfd/intel_soc_pmic*
8834 F:      include/linux/mfd/intel_msic.h
8835 F:      include/linux/mfd/intel_soc_pmic*
8836
8837 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8838 M:      Stanislav Yakovlev <[email protected]>
8839 L:      [email protected]
8840 S:      Maintained
8841 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
8842 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
8843 F:      drivers/net/wireless/intel/ipw2x00/
8844
8845 INTEL PSTATE DRIVER
8846 M:      Srinivas Pandruvada <[email protected]>
8847 M:      Len Brown <[email protected]>
8848 L:      [email protected]
8849 S:      Supported
8850 F:      drivers/cpufreq/intel_pstate.c
8851
8852 INTEL RDMA RNIC DRIVER
8853 M:      Faisal Latif <[email protected]>
8854 M:      Shiraz Saleem <[email protected]>
8855 L:      [email protected]
8856 S:      Supported
8857 F:      drivers/infiniband/hw/i40iw/
8858 F:      include/uapi/rdma/i40iw-abi.h
8859
8860 INTEL SCU DRIVERS
8861 M:      Mika Westerberg <[email protected]>
8862 S:      Maintained
8863 F:      arch/x86/include/asm/intel_scu_ipc.h
8864 F:      drivers/platform/x86/intel_scu_*
8865
8866 INTEL SPEED SELECT TECHNOLOGY
8867 M:      Srinivas Pandruvada <[email protected]>
8868 L:      [email protected]
8869 S:      Maintained
8870 F:      drivers/platform/x86/intel_speed_select_if/
8871 F:      include/uapi/linux/isst_if.h
8872 F:      tools/power/x86/intel-speed-select/
8873
8874 INTEL STRATIX10 FIRMWARE DRIVERS
8875 M:      Richard Gong <[email protected]>
8876 L:      [email protected]
8877 S:      Maintained
8878 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8879 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8880 F:      drivers/firmware/stratix10-rsu.c
8881 F:      drivers/firmware/stratix10-svc.c
8882 F:      include/linux/firmware/intel/stratix10-smc.h
8883 F:      include/linux/firmware/intel/stratix10-svc-client.h
8884
8885 INTEL TELEMETRY DRIVER
8886 M:      Rajneesh Bhardwaj <[email protected]>
8887 M:      "David E. Box" <[email protected]>
8888 L:      [email protected]
8889 S:      Maintained
8890 F:      arch/x86/include/asm/intel_telemetry.h
8891 F:      drivers/platform/x86/intel_telemetry*
8892
8893 INTEL UNCORE FREQUENCY CONTROL
8894 M:      Srinivas Pandruvada <[email protected]>
8895 L:      [email protected]
8896 S:      Maintained
8897 F:      drivers/platform/x86/intel-uncore-frequency.c
8898
8899 INTEL VIRTUAL BUTTON DRIVER
8900 M:      AceLan Kao <[email protected]>
8901 L:      [email protected]
8902 S:      Maintained
8903 F:      drivers/platform/x86/intel-vbtn.c
8904
8905 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8906 M:      Stanislaw Gruszka <[email protected]>
8907 L:      [email protected]
8908 S:      Supported
8909 F:      drivers/net/wireless/intel/iwlegacy/
8910
8911 INTEL WIRELESS WIFI LINK (iwlwifi)
8912 M:      Johannes Berg <[email protected]>
8913 M:      Emmanuel Grumbach <[email protected]>
8914 M:      Luca Coelho <[email protected]>
8915 M:      Intel Linux Wireless <[email protected]>
8916 L:      [email protected]
8917 S:      Supported
8918 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
8919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8920 F:      drivers/net/wireless/intel/iwlwifi/
8921
8922 INTEL WIRELESS WIMAX CONNECTION 2400
8923 M:      Inaky Perez-Gonzalez <[email protected]>
8924 M:      [email protected]
8925 L:      [email protected] (subscribers-only)
8926 S:      Supported
8927 W:      http://linuxwimax.org
8928 F:      Documentation/admin-guide/wimax/i2400m.rst
8929 F:      drivers/net/wimax/i2400m/
8930 F:      include/uapi/linux/wimax/i2400m.h
8931
8932 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
8933 M:      Jithu Joseph <[email protected]>
8934 R:      Maurice Ma <[email protected]>
8935 S:      Maintained
8936 W:      https://slimbootloader.github.io/security/firmware-update.html
8937 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
8938
8939 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8940 M:      Mario Limonciello <[email protected]>
8941 S:      Maintained
8942 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8943
8944 INTEL(R) TRACE HUB
8945 M:      Alexander Shishkin <[email protected]>
8946 S:      Supported
8947 F:      Documentation/trace/intel_th.rst
8948 F:      drivers/hwtracing/intel_th/
8949 F:      include/linux/intel_th.h
8950
8951 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8952 M:      Ning Sun <[email protected]>
8953 L:      [email protected]
8954 S:      Supported
8955 W:      http://tboot.sourceforge.net
8956 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8957 F:      Documentation/x86/intel_txt.rst
8958 F:      arch/x86/kernel/tboot.c
8959 F:      include/linux/tboot.h
8960
8961 INTERCONNECT API
8962 M:      Georgi Djakov <[email protected]>
8963 L:      [email protected]
8964 S:      Maintained
8965 F:      Documentation/devicetree/bindings/interconnect/
8966 F:      Documentation/driver-api/interconnect.rst
8967 F:      drivers/interconnect/
8968 F:      include/dt-bindings/interconnect/
8969 F:      include/linux/interconnect-provider.h
8970 F:      include/linux/interconnect.h
8971
8972 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8973 M:      Linus Walleij <[email protected]>
8974 L:      [email protected]
8975 S:      Maintained
8976 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8977 F:      drivers/iio/gyro/mpu3050*
8978
8979 IOC3 ETHERNET DRIVER
8980 M:      Ralf Baechle <[email protected]>
8981 L:      [email protected]
8982 S:      Maintained
8983 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8984
8985 IOMAP FILESYSTEM LIBRARY
8986 M:      Christoph Hellwig <[email protected]>
8987 M:      Darrick J. Wong <[email protected]>
8988 M:      [email protected]
8989 M:      [email protected]
8990 L:      [email protected]
8991 L:      [email protected]
8992 S:      Supported
8993 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8994 F:      fs/iomap/
8995 F:      include/linux/iomap.h
8996
8997 IOMMU DRIVERS
8998 M:      Joerg Roedel <[email protected]>
8999 L:      [email protected]
9000 S:      Maintained
9001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9002 F:      Documentation/devicetree/bindings/iommu/
9003 F:      drivers/iommu/
9004 F:      include/linux/iommu.h
9005 F:      include/linux/iova.h
9006 F:      include/linux/of_iommu.h
9007
9008 IO_URING
9009 M:      Jens Axboe <[email protected]>
9010 L:      [email protected]
9011 S:      Maintained
9012 T:      git git://git.kernel.dk/linux-block
9013 T:      git git://git.kernel.dk/liburing
9014 F:      fs/io-wq.c
9015 F:      fs/io-wq.h
9016 F:      fs/io_uring.c
9017 F:      include/uapi/linux/io_uring.h
9018
9019 IPMI SUBSYSTEM
9020 M:      Corey Minyard <[email protected]>
9021 L:      [email protected] (moderated for non-subscribers)
9022 S:      Supported
9023 W:      http://openipmi.sourceforge.net/
9024 F:      Documentation/driver-api/ipmi.rst
9025 F:      Documentation/devicetree/bindings/ipmi/
9026 F:      drivers/char/ipmi/
9027 F:      include/linux/ipmi*
9028 F:      include/uapi/linux/ipmi*
9029
9030 IPS SCSI RAID DRIVER
9031 M:      Adaptec OEM Raid Solutions <[email protected]>
9032 L:      [email protected]
9033 S:      Maintained
9034 W:      http://www.adaptec.com/
9035 F:      drivers/scsi/ips*
9036
9037 IPVS
9038 M:      Wensong Zhang <[email protected]>
9039 M:      Simon Horman <[email protected]>
9040 M:      Julian Anastasov <[email protected]>
9041 L:      [email protected]
9042 L:      [email protected]
9043 S:      Maintained
9044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9046 F:      Documentation/networking/ipvs-sysctl.rst
9047 F:      include/net/ip_vs.h
9048 F:      include/uapi/linux/ip_vs.h
9049 F:      net/netfilter/ipvs/
9050
9051 IPWIRELESS DRIVER
9052 M:      Jiri Kosina <[email protected]>
9053 M:      David Sterba <[email protected]>
9054 S:      Odd Fixes
9055 F:      drivers/tty/ipwireless/
9056
9057 IPX NETWORK LAYER
9058 L:      [email protected]
9059 S:      Obsolete
9060 F:      include/uapi/linux/ipx.h
9061
9062 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9063 M:      Marc Zyngier <[email protected]>
9064 S:      Maintained
9065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9066 F:      Documentation/core-api/irq/irq-domain.rst
9067 F:      include/linux/irqdomain.h
9068 F:      kernel/irq/irqdomain.c
9069 F:      kernel/irq/msi.c
9070
9071 IRQ SUBSYSTEM
9072 M:      Thomas Gleixner <[email protected]>
9073 L:      [email protected]
9074 S:      Maintained
9075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9076 F:      kernel/irq/
9077
9078 IRQCHIP DRIVERS
9079 M:      Thomas Gleixner <[email protected]>
9080 M:      Jason Cooper <[email protected]>
9081 M:      Marc Zyngier <[email protected]>
9082 L:      [email protected]
9083 S:      Maintained
9084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9085 F:      Documentation/devicetree/bindings/interrupt-controller/
9086 F:      drivers/irqchip/
9087
9088 ISA
9089 M:      William Breathitt Gray <[email protected]>
9090 S:      Maintained
9091 F:      Documentation/driver-api/isa.rst
9092 F:      drivers/base/isa.c
9093 F:      include/linux/isa.h
9094
9095 ISA RADIO MODULE
9096 M:      Hans Verkuil <[email protected]>
9097 L:      [email protected]
9098 S:      Maintained
9099 W:      https://linuxtv.org
9100 T:      git git://linuxtv.org/media_tree.git
9101 F:      drivers/media/radio/radio-isa*
9102
9103 ISAPNP
9104 M:      Jaroslav Kysela <[email protected]>
9105 S:      Maintained
9106 F:      Documentation/driver-api/isapnp.rst
9107 F:      drivers/pnp/isapnp/
9108 F:      include/linux/isapnp.h
9109
9110 ISCSI
9111 M:      Lee Duncan <[email protected]>
9112 M:      Chris Leech <[email protected]>
9113 L:      [email protected]
9114 L:      [email protected]
9115 S:      Maintained
9116 W:      www.open-iscsi.com
9117 F:      drivers/scsi/*iscsi*
9118 F:      include/scsi/*iscsi*
9119
9120 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9121 M:      Peter Jones <[email protected]>
9122 M:      Konrad Rzeszutek Wilk <[email protected]>
9123 S:      Maintained
9124 F:      drivers/firmware/iscsi_ibft*
9125
9126 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9127 M:      Sagi Grimberg <[email protected]>
9128 M:      Max Gurtovoy <[email protected]>
9129 L:      [email protected]
9130 S:      Supported
9131 W:      http://www.openfabrics.org
9132 W:      www.open-iscsi.org
9133 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9134 F:      drivers/infiniband/ulp/iser/
9135
9136 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9137 M:      Sagi Grimberg <[email protected]>
9138 L:      [email protected]
9139 L:      [email protected]
9140 S:      Supported
9141 W:      http://www.linux-iscsi.org
9142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9143 F:      drivers/infiniband/ulp/isert
9144
9145 ISDN/CMTP OVER BLUETOOTH
9146 M:      Karsten Keil <[email protected]>
9147 L:      [email protected] (subscribers-only)
9148 L:      [email protected]
9149 S:      Odd Fixes
9150 W:      http://www.isdn4linux.de
9151 F:      Documentation/isdn/
9152 F:      drivers/isdn/capi/
9153 F:      include/linux/isdn/
9154 F:      include/uapi/linux/isdn/
9155 F:      net/bluetooth/cmtp/
9156
9157 ISDN/mISDN SUBSYSTEM
9158 M:      Karsten Keil <[email protected]>
9159 L:      [email protected] (subscribers-only)
9160 L:      [email protected]
9161 S:      Maintained
9162 W:      http://www.isdn4linux.de
9163 F:      drivers/isdn/Kconfig
9164 F:      drivers/isdn/Makefile
9165 F:      drivers/isdn/hardware/
9166 F:      drivers/isdn/mISDN/
9167
9168 IT87 HARDWARE MONITORING DRIVER
9169 M:      Jean Delvare <[email protected]>
9170 L:      [email protected]
9171 S:      Maintained
9172 F:      Documentation/hwmon/it87.rst
9173 F:      drivers/hwmon/it87.c
9174
9175 IT913X MEDIA DRIVER
9176 M:      Antti Palosaari <[email protected]>
9177 L:      [email protected]
9178 S:      Maintained
9179 W:      https://linuxtv.org
9180 W:      http://palosaari.fi/linux/
9181 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9182 T:      git git://linuxtv.org/anttip/media_tree.git
9183 F:      drivers/media/tuners/it913x*
9184
9185 IVTV VIDEO4LINUX DRIVER
9186 M:      Andy Walls <[email protected]>
9187 L:      [email protected]
9188 S:      Maintained
9189 W:      https://linuxtv.org
9190 T:      git git://linuxtv.org/media_tree.git
9191 F:      Documentation/admin-guide/media/ivtv*
9192 F:      drivers/media/pci/ivtv/
9193 F:      include/uapi/linux/ivtv*
9194
9195 IX2505V MEDIA DRIVER
9196 M:      Malcolm Priestley <[email protected]>
9197 L:      [email protected]
9198 S:      Maintained
9199 W:      https://linuxtv.org
9200 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9201 F:      drivers/media/dvb-frontends/ix2505v*
9202
9203 JAILHOUSE HYPERVISOR INTERFACE
9204 M:      Jan Kiszka <[email protected]>
9205 L:      [email protected]
9206 S:      Maintained
9207 F:      arch/x86/include/asm/jailhouse_para.h
9208 F:      arch/x86/kernel/jailhouse.c
9209
9210 JC42.4 TEMPERATURE SENSOR DRIVER
9211 M:      Guenter Roeck <[email protected]>
9212 L:      [email protected]
9213 S:      Maintained
9214 F:      Documentation/hwmon/jc42.rst
9215 F:      drivers/hwmon/jc42.c
9216
9217 JFS FILESYSTEM
9218 M:      Dave Kleikamp <[email protected]>
9219 L:      [email protected]
9220 S:      Maintained
9221 W:      http://jfs.sourceforge.net/
9222 T:      git git://github.com/kleikamp/linux-shaggy.git
9223 F:      Documentation/admin-guide/jfs.rst
9224 F:      fs/jfs/
9225
9226 JME NETWORK DRIVER
9227 M:      Guo-Fu Tseng <[email protected]>
9228 L:      [email protected]
9229 S:      Maintained
9230 F:      drivers/net/ethernet/jme.*
9231
9232 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9233 M:      David Woodhouse <[email protected]>
9234 M:      Richard Weinberger <[email protected]>
9235 L:      [email protected]
9236 S:      Odd Fixes
9237 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9238 T:      git git://git.infradead.org/ubifs-2.6.git
9239 F:      fs/jffs2/
9240 F:      include/uapi/linux/jffs2.h
9241
9242 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9243 M:      "Theodore Ts'o" <[email protected]>
9244 M:      Jan Kara <[email protected]>
9245 L:      [email protected]
9246 S:      Maintained
9247 F:      fs/jbd2/
9248 F:      include/linux/jbd2.h
9249
9250 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9251 M:      Mikhail Ulyanov <[email protected]>
9252 L:      [email protected]
9253 S:      Maintained
9254 F:      drivers/media/platform/rcar_jpu.c
9255
9256 JSM Neo PCI based serial card
9257 L:      [email protected]
9258 S:      Orphan
9259 F:      drivers/tty/serial/jsm/
9260
9261 K10TEMP HARDWARE MONITORING DRIVER
9262 M:      Clemens Ladisch <[email protected]>
9263 L:      [email protected]
9264 S:      Maintained
9265 F:      Documentation/hwmon/k10temp.rst
9266 F:      drivers/hwmon/k10temp.c
9267
9268 K8TEMP HARDWARE MONITORING DRIVER
9269 M:      Rudolf Marek <[email protected]>
9270 L:      [email protected]
9271 S:      Maintained
9272 F:      Documentation/hwmon/k8temp.rst
9273 F:      drivers/hwmon/k8temp.c
9274
9275 KASAN
9276 M:      Andrey Ryabinin <[email protected]>
9277 R:      Alexander Potapenko <[email protected]>
9278 R:      Dmitry Vyukov <[email protected]>
9279 L:      [email protected]
9280 S:      Maintained
9281 F:      Documentation/dev-tools/kasan.rst
9282 F:      arch/*/include/asm/kasan.h
9283 F:      arch/*/mm/kasan_init*
9284 F:      include/linux/kasan*.h
9285 F:      lib/test_kasan.c
9286 F:      mm/kasan/
9287 F:      scripts/Makefile.kasan
9288
9289 KCONFIG
9290 M:      Masahiro Yamada <[email protected]>
9291 L:      [email protected]
9292 S:      Maintained
9293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9294 F:      Documentation/kbuild/kconfig*
9295 F:      scripts/Kconfig.include
9296 F:      scripts/kconfig/
9297
9298 KCSAN
9299 M:      Marco Elver <[email protected]>
9300 R:      Dmitry Vyukov <[email protected]>
9301 L:      [email protected]
9302 S:      Maintained
9303 F:      Documentation/dev-tools/kcsan.rst
9304 F:      include/linux/kcsan*.h
9305 F:      kernel/kcsan/
9306 F:      lib/Kconfig.kcsan
9307 F:      scripts/Makefile.kcsan
9308
9309 KDUMP
9310 M:      Dave Young <[email protected]>
9311 M:      Baoquan He <[email protected]>
9312 R:      Vivek Goyal <[email protected]>
9313 L:      [email protected]
9314 S:      Maintained
9315 W:      http://lse.sourceforge.net/kdump/
9316 F:      Documentation/admin-guide/kdump/
9317 F:      fs/proc/vmcore.c
9318 F:      include/linux/crash_core.h
9319 F:      include/linux/crash_dump.h
9320 F:      include/uapi/linux/vmcore.h
9321 F:      kernel/crash_*.c
9322
9323 KEENE FM RADIO TRANSMITTER DRIVER
9324 M:      Hans Verkuil <[email protected]>
9325 L:      [email protected]
9326 S:      Maintained
9327 W:      https://linuxtv.org
9328 T:      git git://linuxtv.org/media_tree.git
9329 F:      drivers/media/radio/radio-keene*
9330
9331 KERNEL AUTOMOUNTER
9332 M:      Ian Kent <[email protected]>
9333 L:      [email protected]
9334 S:      Maintained
9335 F:      fs/autofs/
9336
9337 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9338 M:      Masahiro Yamada <[email protected]>
9339 M:      Michal Marek <[email protected]>
9340 L:      [email protected]
9341 S:      Maintained
9342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9343 F:      Documentation/kbuild/
9344 F:      Makefile
9345 F:      scripts/*vmlinux*
9346 F:      scripts/Kbuild*
9347 F:      scripts/Makefile*
9348 F:      scripts/basic/
9349 F:      scripts/mk*
9350 F:      scripts/mod/
9351 F:      scripts/package/
9352
9353 KERNEL JANITORS
9354 L:      [email protected]
9355 S:      Odd Fixes
9356 W:      http://kernelnewbies.org/KernelJanitors
9357
9358 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9359 M:      "J. Bruce Fields" <[email protected]>
9360 M:      Chuck Lever <[email protected]>
9361 L:      [email protected]
9362 S:      Supported
9363 W:      http://nfs.sourceforge.net/
9364 T:      git git://linux-nfs.org/~bfields/linux.git
9365 F:      fs/lockd/
9366 F:      fs/nfs_common/
9367 F:      fs/nfsd/
9368 F:      include/linux/lockd/
9369 F:      include/linux/sunrpc/
9370 F:      include/uapi/linux/nfsd/
9371 F:      include/uapi/linux/sunrpc/
9372 F:      net/sunrpc/
9373
9374 KERNEL SELFTEST FRAMEWORK
9375 M:      Shuah Khan <[email protected]>
9376 M:      Shuah Khan <[email protected]>
9377 L:      [email protected]
9378 S:      Maintained
9379 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9381 F:      Documentation/dev-tools/kselftest*
9382 F:      tools/testing/selftests/
9383
9384 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9385 M:      Brendan Higgins <[email protected]>
9386 L:      [email protected]
9387 L:      [email protected]
9388 S:      Maintained
9389 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9390 F:      Documentation/dev-tools/kunit/
9391 F:      include/kunit/
9392 F:      lib/kunit/
9393 F:      tools/testing/kunit/
9394
9395 KERNEL USERMODE HELPER
9396 M:      Luis Chamberlain <[email protected]>
9397 L:      [email protected]
9398 S:      Maintained
9399 F:      include/linux/umh.h
9400 F:      kernel/umh.c
9401
9402 KERNEL VIRTUAL MACHINE (KVM)
9403 M:      Paolo Bonzini <[email protected]>
9404 L:      [email protected]
9405 S:      Supported
9406 W:      http://www.linux-kvm.org
9407 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9408 F:      Documentation/virt/kvm/
9409 F:      include/asm-generic/kvm*
9410 F:      include/kvm/iodev.h
9411 F:      include/linux/kvm*
9412 F:      include/trace/events/kvm.h
9413 F:      include/uapi/asm-generic/kvm*
9414 F:      include/uapi/linux/kvm*
9415 F:      tools/kvm/
9416 F:      tools/testing/selftests/kvm/
9417 F:      virt/kvm/*
9418
9419 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9420 M:      Marc Zyngier <[email protected]>
9421 R:      James Morse <[email protected]>
9422 R:      Julien Thierry <[email protected]>
9423 R:      Suzuki K Poulose <[email protected]>
9424 L:      [email protected] (moderated for non-subscribers)
9425 L:      [email protected]
9426 S:      Maintained
9427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9428 F:      arch/arm64/include/asm/kvm*
9429 F:      arch/arm64/include/uapi/asm/kvm*
9430 F:      arch/arm64/kvm/
9431 F:      include/kvm/arm_*
9432
9433 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9434 L:      [email protected]
9435 L:      [email protected]
9436 S:      Orphan
9437 F:      arch/mips/include/asm/kvm*
9438 F:      arch/mips/include/uapi/asm/kvm*
9439 F:      arch/mips/kvm/
9440
9441 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9442 M:      Paul Mackerras <[email protected]>
9443 L:      [email protected]
9444 S:      Supported
9445 W:      http://www.linux-kvm.org/
9446 T:      git git://github.com/agraf/linux-2.6.git
9447 F:      arch/powerpc/include/asm/kvm*
9448 F:      arch/powerpc/include/uapi/asm/kvm*
9449 F:      arch/powerpc/kernel/kvm*
9450 F:      arch/powerpc/kvm/
9451
9452 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9453 M:      Christian Borntraeger <[email protected]>
9454 M:      Janosch Frank <[email protected]>
9455 R:      David Hildenbrand <[email protected]>
9456 R:      Cornelia Huck <[email protected]>
9457 R:      Claudio Imbrenda <[email protected]>
9458 L:      [email protected]
9459 S:      Supported
9460 W:      http://www.ibm.com/developerworks/linux/linux390/
9461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9462 F:      Documentation/virt/kvm/s390*
9463 F:      arch/s390/include/asm/gmap.h
9464 F:      arch/s390/include/asm/kvm*
9465 F:      arch/s390/include/uapi/asm/kvm*
9466 F:      arch/s390/kvm/
9467 F:      arch/s390/mm/gmap.c
9468 F:      tools/testing/selftests/kvm/*/s390x/
9469 F:      tools/testing/selftests/kvm/s390x/
9470
9471 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9472 M:      Paolo Bonzini <[email protected]>
9473 R:      Sean Christopherson <[email protected]>
9474 R:      Vitaly Kuznetsov <[email protected]>
9475 R:      Wanpeng Li <[email protected]>
9476 R:      Jim Mattson <[email protected]>
9477 R:      Joerg Roedel <[email protected]>
9478 L:      [email protected]
9479 S:      Supported
9480 W:      http://www.linux-kvm.org
9481 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9482 F:      arch/x86/include/asm/kvm*
9483 F:      arch/x86/include/asm/pvclock-abi.h
9484 F:      arch/x86/include/asm/svm.h
9485 F:      arch/x86/include/asm/vmx*.h
9486 F:      arch/x86/include/uapi/asm/kvm*
9487 F:      arch/x86/include/uapi/asm/svm.h
9488 F:      arch/x86/include/uapi/asm/vmx.h
9489 F:      arch/x86/kernel/kvm.c
9490 F:      arch/x86/kernel/kvmclock.c
9491 F:      arch/x86/kvm/
9492 F:      arch/x86/kvm/*/
9493
9494 KERNFS
9495 M:      Greg Kroah-Hartman <[email protected]>
9496 M:      Tejun Heo <[email protected]>
9497 S:      Supported
9498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9499 F:      fs/kernfs/
9500 F:      include/linux/kernfs.h
9501
9502 KEXEC
9503 M:      Eric Biederman <[email protected]>
9504 L:      [email protected]
9505 S:      Maintained
9506 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9507 F:      include/linux/kexec.h
9508 F:      include/uapi/linux/kexec.h
9509 F:      kernel/kexec*
9510
9511 KEYS-ENCRYPTED
9512 M:      Mimi Zohar <[email protected]>
9513 L:      [email protected]
9514 L:      [email protected]
9515 S:      Supported
9516 F:      Documentation/security/keys/trusted-encrypted.rst
9517 F:      include/keys/encrypted-type.h
9518 F:      security/keys/encrypted-keys/
9519
9520 KEYS-TRUSTED
9521 M:      James Bottomley <[email protected]>
9522 M:      Jarkko Sakkinen <[email protected]>
9523 M:      Mimi Zohar <[email protected]>
9524 L:      [email protected]
9525 L:      [email protected]
9526 S:      Supported
9527 F:      Documentation/security/keys/trusted-encrypted.rst
9528 F:      include/keys/trusted-type.h
9529 F:      include/keys/trusted_tpm.h
9530 F:      security/keys/trusted-keys/
9531
9532 KEYS/KEYRINGS
9533 M:      David Howells <[email protected]>
9534 M:      Jarkko Sakkinen <[email protected]>
9535 L:      [email protected]
9536 S:      Maintained
9537 F:      Documentation/security/keys/core.rst
9538 F:      include/keys/
9539 F:      include/linux/key-type.h
9540 F:      include/linux/key.h
9541 F:      include/linux/keyctl.h
9542 F:      include/uapi/linux/keyctl.h
9543 F:      security/keys/
9544
9545 KFIFO
9546 M:      Stefani Seibold <[email protected]>
9547 S:      Maintained
9548 F:      include/linux/kfifo.h
9549 F:      lib/kfifo.c
9550 F:      samples/kfifo/
9551
9552 KGDB / KDB /debug_core
9553 M:      Jason Wessel <[email protected]>
9554 M:      Daniel Thompson <[email protected]>
9555 R:      Douglas Anderson <[email protected]>
9556 L:      [email protected]
9557 S:      Maintained
9558 W:      http://kgdb.wiki.kernel.org/
9559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9560 F:      Documentation/dev-tools/kgdb.rst
9561 F:      drivers/misc/kgdbts.c
9562 F:      drivers/tty/serial/kgdboc.c
9563 F:      include/linux/kdb.h
9564 F:      include/linux/kgdb.h
9565 F:      kernel/debug/
9566
9567 KMEMLEAK
9568 M:      Catalin Marinas <[email protected]>
9569 S:      Maintained
9570 F:      Documentation/dev-tools/kmemleak.rst
9571 F:      include/linux/kmemleak.h
9572 F:      mm/kmemleak-test.c
9573 F:      mm/kmemleak.c
9574
9575 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9576 M:      Luis Chamberlain <[email protected]>
9577 L:      [email protected]
9578 S:      Maintained
9579 F:      include/linux/kmod.h
9580 F:      kernel/kmod.c
9581 F:      lib/test_kmod.c
9582 F:      tools/testing/selftests/kmod/
9583
9584 KPROBES
9585 M:      Naveen N. Rao <[email protected]>
9586 M:      Anil S Keshavamurthy <[email protected]>
9587 M:      "David S. Miller" <[email protected]>
9588 M:      Masami Hiramatsu <[email protected]>
9589 S:      Maintained
9590 F:      Documentation/kprobes.txt
9591 F:      include/asm-generic/kprobes.h
9592 F:      include/linux/kprobes.h
9593 F:      kernel/kprobes.c
9594
9595 KS0108 LCD CONTROLLER DRIVER
9596 M:      Miguel Ojeda Sandonis <[email protected]>
9597 S:      Maintained
9598 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9599 F:      drivers/auxdisplay/ks0108.c
9600 F:      include/linux/ks0108.h
9601
9602 L3MDEV
9603 M:      David Ahern <[email protected]>
9604 L:      [email protected]
9605 S:      Maintained
9606 F:      include/net/l3mdev.h
9607 F:      net/l3mdev
9608
9609 L7 BPF FRAMEWORK
9610 M:      John Fastabend <[email protected]>
9611 M:      Daniel Borkmann <[email protected]>
9612 M:      Jakub Sitnicki <[email protected]>
9613 M:      Lorenz Bauer <[email protected]>
9614 L:      [email protected]
9615 L:      [email protected]
9616 S:      Maintained
9617 F:      include/linux/skmsg.h
9618 F:      net/core/skmsg.c
9619 F:      net/core/sock_map.c
9620 F:      net/ipv4/tcp_bpf.c
9621 F:      net/ipv4/udp_bpf.c
9622
9623 LANTIQ / INTEL Ethernet drivers
9624 M:      Hauke Mehrtens <[email protected]>
9625 L:      [email protected]
9626 S:      Maintained
9627 F:      drivers/net/dsa/lantiq_gswip.c
9628 F:      drivers/net/dsa/lantiq_pce.h
9629 F:      drivers/net/ethernet/lantiq_xrx200.c
9630 F:      net/dsa/tag_gswip.c
9631
9632 LANTIQ MIPS ARCHITECTURE
9633 M:      John Crispin <[email protected]>
9634 L:      [email protected]
9635 S:      Maintained
9636 F:      arch/mips/lantiq
9637 F:      drivers/soc/lantiq
9638
9639 LAPB module
9640 L:      [email protected]
9641 S:      Orphan
9642 F:      Documentation/networking/lapb-module.rst
9643 F:      include/*/lapb.h
9644 F:      net/lapb/
9645
9646 LASI 53c700 driver for PARISC
9647 M:      "James E.J. Bottomley" <[email protected]>
9648 L:      [email protected]
9649 S:      Maintained
9650 F:      Documentation/scsi/53c700.rst
9651 F:      drivers/scsi/53c700*
9652
9653 LEAKING_ADDRESSES
9654 M:      Tobin C. Harding <[email protected]>
9655 M:      Tycho Andersen <[email protected]>
9656 L:      [email protected]
9657 S:      Maintained
9658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9659 F:      scripts/leaking_addresses.pl
9660
9661 LED SUBSYSTEM
9662 M:      Jacek Anaszewski <[email protected]>
9663 M:      Pavel Machek <[email protected]>
9664 R:      Dan Murphy <[email protected]>
9665 L:      [email protected]
9666 S:      Maintained
9667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9669 F:      Documentation/devicetree/bindings/leds/
9670 F:      drivers/leds/
9671 F:      include/linux/leds.h
9672
9673 LEGACY EEPROM DRIVER
9674 M:      Jean Delvare <[email protected]>
9675 S:      Maintained
9676 F:      Documentation/misc-devices/eeprom.rst
9677 F:      drivers/misc/eeprom/eeprom.c
9678
9679 LEGO MINDSTORMS EV3
9680 R:      David Lechner <[email protected]>
9681 S:      Maintained
9682 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9683 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9684 F:      drivers/power/supply/lego_ev3_battery.c
9685
9686 LEGO USB Tower driver
9687 M:      Juergen Stuber <[email protected]>
9688 L:      [email protected]
9689 S:      Maintained
9690 W:      http://legousb.sourceforge.net/
9691 F:      drivers/usb/misc/legousbtower.c
9692
9693 LG LAPTOP EXTRAS
9694 M:      Matan Ziv-Av <[email protected]>
9695 L:      [email protected]
9696 S:      Maintained
9697 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9698 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9699 F:      drivers/platform/x86/lg-laptop.c
9700
9701 LG2160 MEDIA DRIVER
9702 M:      Michael Krufky <[email protected]>
9703 L:      [email protected]
9704 S:      Maintained
9705 W:      https://linuxtv.org
9706 W:      http://github.com/mkrufky
9707 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9708 T:      git git://linuxtv.org/mkrufky/tuners.git
9709 F:      drivers/media/dvb-frontends/lg2160.*
9710
9711 LGDT3305 MEDIA DRIVER
9712 M:      Michael Krufky <[email protected]>
9713 L:      [email protected]
9714 S:      Maintained
9715 W:      https://linuxtv.org
9716 W:      http://github.com/mkrufky
9717 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9718 T:      git git://linuxtv.org/mkrufky/tuners.git
9719 F:      drivers/media/dvb-frontends/lgdt3305.*
9720
9721 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9722 M:      Viresh Kumar <[email protected]>
9723 L:      [email protected]
9724 S:      Maintained
9725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9726 F:      drivers/ata/pata_arasan_cf.c
9727 F:      include/linux/pata_arasan_cf_data.h
9728
9729 LIBATA PATA DRIVERS
9730 M:      Bartlomiej Zolnierkiewicz <[email protected]>
9731 M:      Jens Axboe <[email protected]>
9732 L:      [email protected]
9733 S:      Maintained
9734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9735 F:      drivers/ata/ata_generic.c
9736 F:      drivers/ata/pata_*.c
9737
9738 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9739 M:      Linus Walleij <[email protected]>
9740 L:      [email protected]
9741 S:      Maintained
9742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9743 F:      drivers/ata/pata_ftide010.c
9744 F:      drivers/ata/sata_gemini.c
9745 F:      drivers/ata/sata_gemini.h
9746
9747 LIBATA SATA AHCI PLATFORM devices support
9748 M:      Hans de Goede <[email protected]>
9749 M:      Jens Axboe <[email protected]>
9750 L:      [email protected]
9751 S:      Maintained
9752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9753 F:      drivers/ata/ahci_platform.c
9754 F:      drivers/ata/libahci_platform.c
9755 F:      include/linux/ahci_platform.h
9756
9757 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9758 M:      Mikael Pettersson <[email protected]>
9759 L:      [email protected]
9760 S:      Maintained
9761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9762 F:      drivers/ata/sata_promise.*
9763
9764 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9765 M:      Jens Axboe <[email protected]>
9766 L:      [email protected]
9767 S:      Maintained
9768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9769 F:      Documentation/devicetree/bindings/ata/
9770 F:      drivers/ata/
9771 F:      include/linux/ata.h
9772 F:      include/linux/libata.h
9773
9774 LIBLOCKDEP
9775 M:      Sasha Levin <[email protected]>
9776 S:      Maintained
9777 F:      tools/lib/lockdep/
9778
9779 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9780 M:      Dan Williams <[email protected]>
9781 M:      Vishal Verma <[email protected]>
9782 M:      Dave Jiang <[email protected]>
9783 L:      [email protected]
9784 S:      Supported
9785 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9786 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9787 F:      drivers/nvdimm/blk.c
9788 F:      drivers/nvdimm/region_devs.c
9789
9790 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9791 M:      Vishal Verma <[email protected]>
9792 M:      Dan Williams <[email protected]>
9793 M:      Dave Jiang <[email protected]>
9794 L:      [email protected]
9795 S:      Supported
9796 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9797 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9798 F:      drivers/nvdimm/btt*
9799
9800 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9801 M:      Dan Williams <[email protected]>
9802 M:      Vishal Verma <[email protected]>
9803 M:      Dave Jiang <[email protected]>
9804 L:      [email protected]
9805 S:      Supported
9806 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9807 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9808 F:      drivers/nvdimm/pmem*
9809
9810 LIBNVDIMM: DEVICETREE BINDINGS
9811 M:      Oliver O'Halloran <[email protected]>
9812 L:      [email protected]
9813 S:      Supported
9814 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9815 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9816 F:      drivers/nvdimm/of_pmem.c
9817
9818 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9819 M:      Dan Williams <[email protected]>
9820 M:      Vishal Verma <[email protected]>
9821 M:      Dave Jiang <[email protected]>
9822 M:      Ira Weiny <[email protected]>
9823 L:      [email protected]
9824 S:      Supported
9825 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9826 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9828 F:      drivers/acpi/nfit/*
9829 F:      drivers/nvdimm/*
9830 F:      include/linux/libnvdimm.h
9831 F:      include/linux/nd.h
9832 F:      include/uapi/linux/ndctl.h
9833 F:      tools/testing/nvdimm/
9834
9835 LICENSES and SPDX stuff
9836 M:      Thomas Gleixner <[email protected]>
9837 M:      Greg Kroah-Hartman <[email protected]>
9838 L:      [email protected]
9839 S:      Maintained
9840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9841 F:      COPYING
9842 F:      Documentation/process/license-rules.rst
9843 F:      LICENSES/
9844 F:      scripts/spdxcheck-test.sh
9845 F:      scripts/spdxcheck.py
9846
9847 LIGHTNVM PLATFORM SUPPORT
9848 M:      Matias Bjorling <[email protected]>
9849 L:      [email protected]
9850 S:      Maintained
9851 W:      http://github/OpenChannelSSD
9852 F:      drivers/lightnvm/
9853 F:      include/linux/lightnvm.h
9854 F:      include/uapi/linux/lightnvm.h
9855
9856 LINEAR RANGES HELPERS
9857 M:      Mark Brown <[email protected]>
9858 R:      Matti Vaittinen <[email protected]>
9859 F:      lib/linear_ranges.c
9860 F:      lib/test_linear_ranges.c
9861 F:      include/linux/linear_range.h
9862
9863 LINUX FOR POWER MACINTOSH
9864 M:      Benjamin Herrenschmidt <[email protected]>
9865 L:      [email protected]
9866 S:      Odd Fixes
9867 F:      arch/powerpc/platforms/powermac/
9868 F:      drivers/macintosh/
9869
9870 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9871 M:      Michael Ellerman <[email protected]>
9872 R:      Benjamin Herrenschmidt <[email protected]>
9873 R:      Paul Mackerras <[email protected]>
9874 L:      [email protected]
9875 S:      Supported
9876 W:      https://github.com/linuxppc/wiki/wiki
9877 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9879 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9880 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9881 F:      Documentation/devicetree/bindings/powerpc/
9882 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9883 F:      Documentation/powerpc/
9884 F:      arch/powerpc/
9885 F:      drivers/*/*/*pasemi*
9886 F:      drivers/*/*pasemi*
9887 F:      drivers/char/tpm/tpm_ibmvtpm*
9888 F:      drivers/crypto/nx/
9889 F:      drivers/crypto/vmx/
9890 F:      drivers/i2c/busses/i2c-opal.c
9891 F:      drivers/net/ethernet/ibm/ibmveth.*
9892 F:      drivers/net/ethernet/ibm/ibmvnic.*
9893 F:      drivers/pci/hotplug/pnv_php.c
9894 F:      drivers/pci/hotplug/rpa*
9895 F:      drivers/rtc/rtc-opal.c
9896 F:      drivers/scsi/ibmvscsi/
9897 F:      drivers/tty/hvc/hvc_opal.c
9898 F:      drivers/watchdog/wdrtas.c
9899 F:      tools/testing/selftests/powerpc
9900 N:      /pmac
9901 N:      powermac
9902 N:      powernv
9903 N:      [^a-z0-9]ps3
9904 N:      pseries
9905
9906 LINUX FOR POWERPC EMBEDDED MPC5XXX
9907 M:      Anatolij Gustschin <[email protected]>
9908 L:      [email protected]
9909 S:      Odd Fixes
9910 F:      arch/powerpc/platforms/512x/
9911 F:      arch/powerpc/platforms/52xx/
9912
9913 LINUX FOR POWERPC EMBEDDED PPC4XX
9914 L:      [email protected]
9915 S:      Orphan
9916 F:      arch/powerpc/platforms/40x/
9917 F:      arch/powerpc/platforms/44x/
9918
9919 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9920 M:      Scott Wood <[email protected]>
9921 L:      [email protected]
9922 S:      Odd fixes
9923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9924 F:      Documentation/devicetree/bindings/powerpc/fsl/
9925 F:      arch/powerpc/platforms/83xx/
9926 F:      arch/powerpc/platforms/85xx/
9927
9928 LINUX FOR POWERPC EMBEDDED PPC8XX
9929 M:      Christophe Leroy <[email protected]>
9930 L:      [email protected]
9931 S:      Maintained
9932 F:      arch/powerpc/platforms/8xx/
9933
9934 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9935 M:      Kees Cook <[email protected]>
9936 S:      Maintained
9937 F:      drivers/misc/lkdtm/*
9938 F:      tools/testing/selftests/lkdtm/*
9939
9940 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9941 M:      Alan Stern <[email protected]>
9942 M:      Andrea Parri <[email protected]>
9943 M:      Will Deacon <[email protected]>
9944 M:      Peter Zijlstra <[email protected]>
9945 M:      Boqun Feng <[email protected]>
9946 M:      Nicholas Piggin <[email protected]>
9947 M:      David Howells <[email protected]>
9948 M:      Jade Alglave <[email protected]>
9949 M:      Luc Maranget <[email protected]>
9950 M:      "Paul E. McKenney" <[email protected]>
9951 R:      Akira Yokosawa <[email protected]>
9952 R:      Daniel Lustig <[email protected]>
9953 L:      [email protected]
9954 L:      [email protected]
9955 S:      Supported
9956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9957 F:      Documentation/atomic_bitops.txt
9958 F:      Documentation/atomic_t.txt
9959 F:      Documentation/core-api/atomic_ops.rst
9960 F:      Documentation/core-api/refcount-vs-atomic.rst
9961 F:      Documentation/memory-barriers.txt
9962 F:      tools/memory-model/
9963
9964 LIS3LV02D ACCELEROMETER DRIVER
9965 M:      Eric Piel <[email protected]>
9966 S:      Maintained
9967 F:      Documentation/misc-devices/lis3lv02d.rst
9968 F:      drivers/misc/lis3lv02d/
9969 F:      drivers/platform/x86/hp_accel.c
9970
9971 LIST KUNIT TEST
9972 M:      David Gow <[email protected]>
9973 L:      [email protected]
9974 L:      [email protected]
9975 S:      Maintained
9976 F:      lib/list-test.c
9977
9978 LIVE PATCHING
9979 M:      Josh Poimboeuf <[email protected]>
9980 M:      Jiri Kosina <[email protected]>
9981 M:      Miroslav Benes <[email protected]>
9982 M:      Petr Mladek <[email protected]>
9983 R:      Joe Lawrence <[email protected]>
9984 L:      [email protected]
9985 S:      Maintained
9986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9987 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9988 F:      Documentation/livepatch/
9989 F:      arch/powerpc/include/asm/livepatch.h
9990 F:      arch/s390/include/asm/livepatch.h
9991 F:      arch/x86/include/asm/livepatch.h
9992 F:      include/linux/livepatch.h
9993 F:      kernel/livepatch/
9994 F:      lib/livepatch/
9995 F:      samples/livepatch/
9996 F:      tools/testing/selftests/livepatch/
9997
9998 LLC (802.2)
9999 L:      [email protected]
10000 S:      Odd fixes
10001 F:      include/linux/llc.h
10002 F:      include/net/llc*
10003 F:      include/uapi/linux/llc.h
10004 F:      net/llc/
10005
10006 LM73 HARDWARE MONITOR DRIVER
10007 M:      Guillaume Ligneul <[email protected]>
10008 L:      [email protected]
10009 S:      Maintained
10010 F:      drivers/hwmon/lm73.c
10011
10012 LM78 HARDWARE MONITOR DRIVER
10013 M:      Jean Delvare <[email protected]>
10014 L:      [email protected]
10015 S:      Maintained
10016 F:      Documentation/hwmon/lm78.rst
10017 F:      drivers/hwmon/lm78.c
10018
10019 LM83 HARDWARE MONITOR DRIVER
10020 M:      Jean Delvare <[email protected]>
10021 L:      [email protected]
10022 S:      Maintained
10023 F:      Documentation/hwmon/lm83.rst
10024 F:      drivers/hwmon/lm83.c
10025
10026 LM90 HARDWARE MONITOR DRIVER
10027 M:      Jean Delvare <[email protected]>
10028 L:      [email protected]
10029 S:      Maintained
10030 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10031 F:      Documentation/hwmon/lm90.rst
10032 F:      drivers/hwmon/lm90.c
10033 F:      include/dt-bindings/thermal/lm90.h
10034
10035 LM95234 HARDWARE MONITOR DRIVER
10036 M:      Guenter Roeck <[email protected]>
10037 L:      [email protected]
10038 S:      Maintained
10039 F:      Documentation/hwmon/lm95234.rst
10040 F:      drivers/hwmon/lm95234.c
10041
10042 LME2510 MEDIA DRIVER
10043 M:      Malcolm Priestley <[email protected]>
10044 L:      [email protected]
10045 S:      Maintained
10046 W:      https://linuxtv.org
10047 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10048 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10049
10050 LOADPIN SECURITY MODULE
10051 M:      Kees Cook <[email protected]>
10052 S:      Supported
10053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10054 F:      Documentation/admin-guide/LSM/LoadPin.rst
10055 F:      security/loadpin/
10056
10057 LOCKING PRIMITIVES
10058 M:      Peter Zijlstra <[email protected]>
10059 M:      Ingo Molnar <[email protected]>
10060 M:      Will Deacon <[email protected]>
10061 L:      [email protected]
10062 S:      Maintained
10063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10064 F:      Documentation/locking/
10065 F:      arch/*/include/asm/spinlock*.h
10066 F:      include/linux/lockdep.h
10067 F:      include/linux/mutex*.h
10068 F:      include/linux/rwlock*.h
10069 F:      include/linux/rwsem*.h
10070 F:      include/linux/seqlock.h
10071 F:      include/linux/spinlock*.h
10072 F:      kernel/locking/
10073 F:      lib/locking*.[ch]
10074 X:      kernel/locking/locktorture.c
10075
10076 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10077 M:      "Richard Russon (FlatCap)" <[email protected]>
10078 L:      [email protected]
10079 S:      Maintained
10080 W:      http://www.linux-ntfs.org/content/view/19/37/
10081 F:      Documentation/admin-guide/ldm.rst
10082 F:      block/partitions/ldm.*
10083
10084 LOGITECH HID GAMING KEYBOARDS
10085 M:      Hans de Goede <[email protected]>
10086 L:      [email protected]
10087 S:      Maintained
10088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10089 F:      drivers/hid/hid-lg-g15.c
10090
10091 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10092 M:      Sathya Prakash <[email protected]>
10093 M:      Sreekanth Reddy <[email protected]>
10094 M:      Suganath Prabu Subramani <[email protected]>
10095 L:      [email protected]
10096 L:      [email protected]
10097 S:      Supported
10098 W:      http://www.avagotech.com/support/
10099 F:      drivers/message/fusion/
10100 F:      drivers/scsi/mpt3sas/
10101
10102 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10103 M:      Matthew Wilcox <[email protected]>
10104 L:      [email protected]
10105 S:      Maintained
10106 F:      drivers/scsi/sym53c8xx_2/
10107
10108 LTC1660 DAC DRIVER
10109 M:      Marcus Folkesson <[email protected]>
10110 L:      [email protected]
10111 S:      Maintained
10112 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10113 F:      drivers/iio/dac/ltc1660.c
10114
10115 LTC2947 HARDWARE MONITOR DRIVER
10116 M:      Nuno Sá <[email protected]>
10117 L:      [email protected]
10118 S:      Supported
10119 W:      http://ez.analog.com/community/linux-device-drivers
10120 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10121 F:      drivers/hwmon/ltc2947-core.c
10122 F:      drivers/hwmon/ltc2947-i2c.c
10123 F:      drivers/hwmon/ltc2947-spi.c
10124 F:      drivers/hwmon/ltc2947.h
10125
10126 LTC2983 IIO TEMPERATURE DRIVER
10127 M:      Nuno Sá <[email protected]>
10128 L:      [email protected]
10129 S:      Supported
10130 W:      http://ez.analog.com/community/linux-device-drivers
10131 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10132 F:      drivers/iio/temperature/ltc2983.c
10133
10134 LTC4261 HARDWARE MONITOR DRIVER
10135 M:      Guenter Roeck <[email protected]>
10136 L:      [email protected]
10137 S:      Maintained
10138 F:      Documentation/hwmon/ltc4261.rst
10139 F:      drivers/hwmon/ltc4261.c
10140
10141 LTC4306 I2C MULTIPLEXER DRIVER
10142 M:      Michael Hennerich <[email protected]>
10143 L:      [email protected]
10144 S:      Supported
10145 W:      http://ez.analog.com/community/linux-device-drivers
10146 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10147 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10148
10149 LTP (Linux Test Project)
10150 M:      Mike Frysinger <[email protected]>
10151 M:      Cyril Hrubis <[email protected]>
10152 M:      Wanlong Gao <[email protected]>
10153 M:      Jan Stancek <[email protected]>
10154 M:      Stanislav Kholmanskikh <[email protected]>
10155 M:      Alexey Kodanev <[email protected]>
10156 L:      [email protected] (subscribers-only)
10157 S:      Maintained
10158 W:      http://linux-test-project.github.io/
10159 T:      git git://github.com/linux-test-project/ltp.git
10160
10161 M68K ARCHITECTURE
10162 M:      Geert Uytterhoeven <[email protected]>
10163 L:      [email protected]
10164 S:      Maintained
10165 W:      http://www.linux-m68k.org/
10166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10167 F:      arch/m68k/
10168 F:      drivers/zorro/
10169
10170 M68K ON APPLE MACINTOSH
10171 M:      Joshua Thompson <[email protected]>
10172 L:      [email protected]
10173 S:      Maintained
10174 W:      http://www.mac.linux-m68k.org/
10175 F:      arch/m68k/mac/
10176
10177 M68K ON HP9000/300
10178 M:      Philip Blundell <[email protected]>
10179 S:      Maintained
10180 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10181 F:      arch/m68k/hp300/
10182
10183 M88DS3103 MEDIA DRIVER
10184 M:      Antti Palosaari <[email protected]>
10185 L:      [email protected]
10186 S:      Maintained
10187 W:      https://linuxtv.org
10188 W:      http://palosaari.fi/linux/
10189 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10190 T:      git git://linuxtv.org/anttip/media_tree.git
10191 F:      drivers/media/dvb-frontends/m88ds3103*
10192
10193 M88RS2000 MEDIA DRIVER
10194 M:      Malcolm Priestley <[email protected]>
10195 L:      [email protected]
10196 S:      Maintained
10197 W:      https://linuxtv.org
10198 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10199 F:      drivers/media/dvb-frontends/m88rs2000*
10200
10201 MA901 MASTERKIT USB FM RADIO DRIVER
10202 M:      Alexey Klimov <[email protected]>
10203 L:      [email protected]
10204 S:      Maintained
10205 T:      git git://linuxtv.org/media_tree.git
10206 F:      drivers/media/radio/radio-ma901.c
10207
10208 MAC80211
10209 M:      Johannes Berg <[email protected]>
10210 L:      [email protected]
10211 S:      Maintained
10212 W:      https://wireless.wiki.kernel.org/
10213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10215 F:      Documentation/networking/mac80211-injection.rst
10216 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10217 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10218 F:      include/net/mac80211.h
10219 F:      net/mac80211/
10220
10221 MAILBOX API
10222 M:      Jassi Brar <[email protected]>
10223 L:      [email protected]
10224 S:      Maintained
10225 F:      drivers/mailbox/
10226 F:      include/linux/mailbox_client.h
10227 F:      include/linux/mailbox_controller.h
10228
10229 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10230 M:      Michael Kerrisk <[email protected]>
10231 L:      [email protected]
10232 S:      Maintained
10233 W:      http://www.kernel.org/doc/man-pages
10234
10235 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10236 M:      Rahul Bedarkar <[email protected]>
10237 L:      [email protected]
10238 S:      Maintained
10239 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10240
10241 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10242 M:      Andrew Lunn <[email protected]>
10243 M:      Vivien Didelot <[email protected]>
10244 L:      [email protected]
10245 S:      Maintained
10246 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10247 F:      Documentation/networking/devlink/mv88e6xxx.rst
10248 F:      drivers/net/dsa/mv88e6xxx/
10249 F:      include/linux/platform_data/mv88e6xxx.h
10250
10251 MARVELL ARMADA 3700 PHY DRIVERS
10252 M:      Miquel Raynal <[email protected]>
10253 S:      Maintained
10254 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10255 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10256 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10257 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10258
10259 MARVELL ARMADA DRM SUPPORT
10260 M:      Russell King <[email protected]>
10261 S:      Maintained
10262 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10263 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10264 F:      Documentation/devicetree/bindings/display/armada/
10265 F:      drivers/gpu/drm/armada/
10266 F:      include/uapi/drm/armada_drm.h
10267
10268 MARVELL CRYPTO DRIVER
10269 M:      Boris Brezillon <[email protected]>
10270 M:      Arnaud Ebalard <[email protected]>
10271 M:      Srujana Challa <[email protected]>
10272 L:      [email protected]
10273 S:      Maintained
10274 F:      drivers/crypto/marvell/
10275
10276 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10277 M:      Mirko Lindner <[email protected]>
10278 M:      Stephen Hemminger <[email protected]>
10279 L:      [email protected]
10280 S:      Maintained
10281 F:      drivers/net/ethernet/marvell/sk*
10282
10283 MARVELL LIBERTAS WIRELESS DRIVER
10284 L:      [email protected]
10285 S:      Orphan
10286 F:      drivers/net/wireless/marvell/libertas/
10287
10288 MARVELL MACCHIATOBIN SUPPORT
10289 M:      Russell King <[email protected]>
10290 L:      [email protected]
10291 S:      Maintained
10292 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10293
10294 MARVELL MV643XX ETHERNET DRIVER
10295 M:      Sebastian Hesselbarth <[email protected]>
10296 L:      [email protected]
10297 S:      Maintained
10298 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10299 F:      include/linux/mv643xx.h
10300
10301 MARVELL MV88X3310 PHY DRIVER
10302 M:      Russell King <[email protected]>
10303 L:      [email protected]
10304 S:      Maintained
10305 F:      drivers/net/phy/marvell10g.c
10306
10307 MARVELL MVEBU THERMAL DRIVER
10308 M:      Miquel Raynal <[email protected]>
10309 S:      Maintained
10310 F:      drivers/thermal/armada_thermal.c
10311
10312 MARVELL MVNETA ETHERNET DRIVER
10313 M:      Thomas Petazzoni <[email protected]>
10314 L:      [email protected]
10315 S:      Maintained
10316 F:      drivers/net/ethernet/marvell/mvneta.*
10317
10318 MARVELL MWIFIEX WIRELESS DRIVER
10319 M:      Amitkumar Karwar <[email protected]>
10320 M:      Ganapathi Bhat <[email protected]>
10321 M:      Xinming Hu <[email protected]>
10322 L:      [email protected]
10323 S:      Maintained
10324 F:      drivers/net/wireless/marvell/mwifiex/
10325
10326 MARVELL MWL8K WIRELESS DRIVER
10327 M:      Lennert Buytenhek <[email protected]>
10328 L:      [email protected]
10329 S:      Odd Fixes
10330 F:      drivers/net/wireless/marvell/mwl8k.c
10331
10332 MARVELL NAND CONTROLLER DRIVER
10333 M:      Miquel Raynal <[email protected]>
10334 L:      [email protected]
10335 S:      Maintained
10336 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10337 F:      drivers/mtd/nand/raw/marvell_nand.c
10338
10339 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10340 M:      Sunil Goutham <[email protected]>
10341 M:      Geetha sowjanya <[email protected]>
10342 M:      Subbaraya Sundeep <[email protected]>
10343 M:      hariprasad <[email protected]>
10344 L:      [email protected]
10345 S:      Supported
10346 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10347
10348 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10349 M:      Sunil Goutham <[email protected]>
10350 M:      Linu Cherian <[email protected]>
10351 M:      Geetha sowjanya <[email protected]>
10352 M:      Jerin Jacob <[email protected]>
10353 L:      [email protected]
10354 S:      Supported
10355 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10356 F:      drivers/net/ethernet/marvell/octeontx2/af/
10357
10358 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10359 M:      Nicolas Pitre <[email protected]>
10360 S:      Odd Fixes
10361 F:      drivers/mmc/host/mvsdio.*
10362
10363 MARVELL USB MDIO CONTROLLER DRIVER
10364 M:      Tobias Waldekranz <[email protected]>
10365 L:      [email protected]
10366 S:      Maintained
10367 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10368 F:      drivers/net/phy/mdio-mvusb.c
10369
10370 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10371 M:      Hu Ziji <[email protected]>
10372 L:      [email protected]
10373 S:      Supported
10374 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10375 F:      drivers/mmc/host/sdhci-xenon*
10376
10377 MATROX FRAMEBUFFER DRIVER
10378 L:      [email protected]
10379 S:      Orphan
10380 F:      drivers/video/fbdev/matrox/matroxfb_*
10381 F:      include/uapi/linux/matroxfb.h
10382
10383 MAX16065 HARDWARE MONITOR DRIVER
10384 M:      Guenter Roeck <[email protected]>
10385 L:      [email protected]
10386 S:      Maintained
10387 F:      Documentation/hwmon/max16065.rst
10388 F:      drivers/hwmon/max16065.c
10389
10390 MAX2175 SDR TUNER DRIVER
10391 M:      Ramesh Shanmugasundaram <[email protected]>
10392 L:      [email protected]
10393 S:      Maintained
10394 T:      git git://linuxtv.org/media_tree.git
10395 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10396 F:      Documentation/userspace-api/media/drivers/max2175.rst
10397 F:      drivers/media/i2c/max2175*
10398 F:      include/uapi/linux/max2175.h
10399
10400 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10401 L:      [email protected]
10402 S:      Orphan
10403 F:      Documentation/hwmon/max6650.rst
10404 F:      drivers/hwmon/max6650.c
10405
10406 MAX6697 HARDWARE MONITOR DRIVER
10407 M:      Guenter Roeck <[email protected]>
10408 L:      [email protected]
10409 S:      Maintained
10410 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10411 F:      Documentation/hwmon/max6697.rst
10412 F:      drivers/hwmon/max6697.c
10413 F:      include/linux/platform_data/max6697.h
10414
10415 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10416 M:      Peter Rosin <[email protected]>
10417 L:      [email protected] (moderated for non-subscribers)
10418 S:      Maintained
10419 F:      Documentation/devicetree/bindings/sound/max9860.txt
10420 F:      sound/soc/codecs/max9860.*
10421
10422 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10423 M:      Andreas Klinger <[email protected]>
10424 L:      [email protected]
10425 S:      Maintained
10426 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10427 F:      drivers/iio/proximity/mb1232.c
10428
10429 MAXIM MAX77650 PMIC MFD DRIVER
10430 M:      Bartosz Golaszewski <[email protected]>
10431 L:      [email protected]
10432 S:      Maintained
10433 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10434 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10435 F:      drivers/gpio/gpio-max77650.c
10436 F:      drivers/input/misc/max77650-onkey.c
10437 F:      drivers/leds/leds-max77650.c
10438 F:      drivers/mfd/max77650.c
10439 F:      drivers/power/supply/max77650-charger.c
10440 F:      drivers/regulator/max77650-regulator.c
10441 F:      include/linux/mfd/max77650.h
10442
10443 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10444 M:      Javier Martinez Canillas <[email protected]>
10445 L:      [email protected]
10446 S:      Supported
10447 F:      Documentation/devicetree/bindings/*/*max77802.txt
10448 F:      drivers/regulator/max77802-regulator.c
10449 F:      include/dt-bindings/*/*max77802.h
10450
10451 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10452 M:      Krzysztof Kozlowski <[email protected]>
10453 M:      Bartlomiej Zolnierkiewicz <[email protected]>
10454 L:      [email protected]
10455 S:      Supported
10456 F:      drivers/power/supply/max14577_charger.c
10457 F:      drivers/power/supply/max77693_charger.c
10458
10459 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10460 M:      Chanwoo Choi <[email protected]>
10461 M:      Krzysztof Kozlowski <[email protected]>
10462 M:      Bartlomiej Zolnierkiewicz <[email protected]>
10463 L:      [email protected]
10464 S:      Supported
10465 F:      Documentation/devicetree/bindings/*/max77686.txt
10466 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10467 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10468 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10469 F:      drivers/*/max14577*.c
10470 F:      drivers/*/max77686*.c
10471 F:      drivers/*/max77693*.c
10472 F:      drivers/clk/clk-max77686.c
10473 F:      drivers/extcon/extcon-max14577.c
10474 F:      drivers/extcon/extcon-max77693.c
10475 F:      drivers/rtc/rtc-max77686.c
10476 F:      include/linux/mfd/max14577*.h
10477 F:      include/linux/mfd/max77686*.h
10478 F:      include/linux/mfd/max77693*.h
10479
10480 MAXIRADIO FM RADIO RECEIVER DRIVER
10481 M:      Hans Verkuil <[email protected]>
10482 L:      [email protected]
10483 S:      Maintained
10484 W:      https://linuxtv.org
10485 T:      git git://linuxtv.org/media_tree.git
10486 F:      drivers/media/radio/radio-maxiradio*
10487
10488 MCAN MMIO DEVICE DRIVER
10489 M:      Dan Murphy <[email protected]>
10490 M:      Sriram Dash <[email protected]>
10491 L:      [email protected]
10492 S:      Maintained
10493 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10494 F:      drivers/net/can/m_can/m_can.c
10495 F:      drivers/net/can/m_can/m_can.h
10496 F:      drivers/net/can/m_can/m_can_platform.c
10497
10498 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10499 M:      Rishi Gupta <[email protected]>
10500 L:      [email protected]
10501 L:      [email protected]
10502 S:      Maintained
10503 F:      drivers/hid/hid-mcp2221.c
10504
10505 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10506 M:      Peter Rosin <[email protected]>
10507 L:      [email protected]
10508 S:      Maintained
10509 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10510 F:      drivers/iio/potentiometer/mcp4018.c
10511 F:      drivers/iio/potentiometer/mcp4531.c
10512
10513 MCR20A IEEE-802.15.4 RADIO DRIVER
10514 M:      Xue Liu <[email protected]>
10515 L:      [email protected]
10516 S:      Maintained
10517 W:      https://github.com/xueliu/mcr20a-linux
10518 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10519 F:      drivers/net/ieee802154/mcr20a.c
10520 F:      drivers/net/ieee802154/mcr20a.h
10521
10522 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10523 M:      William Breathitt Gray <[email protected]>
10524 L:      [email protected]
10525 S:      Maintained
10526 F:      drivers/iio/dac/cio-dac.c
10527
10528 MEDIA CONTROLLER FRAMEWORK
10529 M:      Sakari Ailus <[email protected]>
10530 M:      Laurent Pinchart <[email protected]>
10531 L:      [email protected]
10532 S:      Supported
10533 W:      https://www.linuxtv.org
10534 T:      git git://linuxtv.org/media_tree.git
10535 F:      drivers/media/mc/
10536 F:      include/media/media-*.h
10537 F:      include/uapi/linux/media.h
10538
10539 MEDIA DRIVER FOR FREESCALE IMX PXP
10540 M:      Philipp Zabel <[email protected]>
10541 L:      [email protected]
10542 S:      Maintained
10543 T:      git git://linuxtv.org/media_tree.git
10544 F:      drivers/media/platform/imx-pxp.[ch]
10545
10546 MEDIA DRIVERS FOR ASCOT2E
10547 M:      Sergey Kozlov <[email protected]>
10548 M:      Abylay Ospan <[email protected]>
10549 L:      [email protected]
10550 S:      Supported
10551 W:      https://linuxtv.org
10552 W:      http://netup.tv/
10553 T:      git git://linuxtv.org/media_tree.git
10554 F:      drivers/media/dvb-frontends/ascot2e*
10555
10556 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10557 M:      Jasmin Jessich <[email protected]>
10558 L:      [email protected]
10559 S:      Maintained
10560 W:      https://linuxtv.org
10561 T:      git git://linuxtv.org/media_tree.git
10562 F:      drivers/media/dvb-frontends/cxd2099*
10563
10564 MEDIA DRIVERS FOR CXD2841ER
10565 M:      Sergey Kozlov <[email protected]>
10566 M:      Abylay Ospan <[email protected]>
10567 L:      [email protected]
10568 S:      Supported
10569 W:      https://linuxtv.org
10570 W:      http://netup.tv/
10571 T:      git git://linuxtv.org/media_tree.git
10572 F:      drivers/media/dvb-frontends/cxd2841er*
10573
10574 MEDIA DRIVERS FOR CXD2880
10575 M:      Yasunari Takiguchi <[email protected]>
10576 L:      [email protected]
10577 S:      Supported
10578 W:      http://linuxtv.org/
10579 T:      git git://linuxtv.org/media_tree.git
10580 F:      drivers/media/dvb-frontends/cxd2880/*
10581 F:      drivers/media/spi/cxd2880*
10582
10583 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10584 L:      [email protected]
10585 S:      Orphan
10586 W:      https://linuxtv.org
10587 T:      git git://linuxtv.org/media_tree.git
10588 F:      drivers/media/pci/ddbridge/*
10589
10590 MEDIA DRIVERS FOR FREESCALE IMX
10591 M:      Steve Longerbeam <[email protected]>
10592 M:      Philipp Zabel <[email protected]>
10593 L:      [email protected]
10594 S:      Maintained
10595 T:      git git://linuxtv.org/media_tree.git
10596 F:      Documentation/admin-guide/media/imx.rst
10597 F:      Documentation/devicetree/bindings/media/imx.txt
10598 F:      drivers/staging/media/imx/
10599 F:      include/linux/imx-media.h
10600 F:      include/media/imx.h
10601
10602 MEDIA DRIVERS FOR FREESCALE IMX7
10603 M:      Rui Miguel Silva <[email protected]>
10604 L:      [email protected]
10605 S:      Maintained
10606 T:      git git://linuxtv.org/media_tree.git
10607 F:      Documentation/admin-guide/media/imx7.rst
10608 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10609 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10610 F:      drivers/staging/media/imx/imx7-media-csi.c
10611 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10612
10613 MEDIA DRIVERS FOR HELENE
10614 M:      Abylay Ospan <[email protected]>
10615 L:      [email protected]
10616 S:      Supported
10617 W:      https://linuxtv.org
10618 W:      http://netup.tv/
10619 T:      git git://linuxtv.org/media_tree.git
10620 F:      drivers/media/dvb-frontends/helene*
10621
10622 MEDIA DRIVERS FOR HORUS3A
10623 M:      Sergey Kozlov <[email protected]>
10624 M:      Abylay Ospan <[email protected]>
10625 L:      [email protected]
10626 S:      Supported
10627 W:      https://linuxtv.org
10628 W:      http://netup.tv/
10629 T:      git git://linuxtv.org/media_tree.git
10630 F:      drivers/media/dvb-frontends/horus3a*
10631
10632 MEDIA DRIVERS FOR LNBH25
10633 M:      Sergey Kozlov <[email protected]>
10634 M:      Abylay Ospan <[email protected]>
10635 L:      [email protected]
10636 S:      Supported
10637 W:      https://linuxtv.org
10638 W:      http://netup.tv/
10639 T:      git git://linuxtv.org/media_tree.git
10640 F:      drivers/media/dvb-frontends/lnbh25*
10641
10642 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10643 L:      [email protected]
10644 S:      Orphan
10645 W:      https://linuxtv.org
10646 T:      git git://linuxtv.org/media_tree.git
10647 F:      drivers/media/dvb-frontends/mxl5xx*
10648
10649 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10650 M:      Sergey Kozlov <[email protected]>
10651 M:      Abylay Ospan <[email protected]>
10652 L:      [email protected]
10653 S:      Supported
10654 W:      https://linuxtv.org
10655 W:      http://netup.tv/
10656 T:      git git://linuxtv.org/media_tree.git
10657 F:      drivers/media/pci/netup_unidvb/*
10658
10659 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10660 M:      Dmitry Osipenko <[email protected]>
10661 L:      [email protected]
10662 L:      [email protected]
10663 S:      Maintained
10664 T:      git git://linuxtv.org/media_tree.git
10665 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10666 F:      drivers/staging/media/tegra-vde/
10667
10668 MEDIA DRIVERS FOR RENESAS - CEU
10669 M:      Jacopo Mondi <[email protected]>
10670 L:      [email protected]
10671 L:      [email protected]
10672 S:      Supported
10673 T:      git git://linuxtv.org/media_tree.git
10674 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10675 F:      drivers/media/platform/renesas-ceu.c
10676 F:      include/media/drv-intf/renesas-ceu.h
10677
10678 MEDIA DRIVERS FOR RENESAS - DRIF
10679 M:      Ramesh Shanmugasundaram <[email protected]>
10680 L:      [email protected]
10681 L:      [email protected]
10682 S:      Supported
10683 T:      git git://linuxtv.org/media_tree.git
10684 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10685 F:      drivers/media/platform/rcar_drif.c
10686
10687 MEDIA DRIVERS FOR RENESAS - FCP
10688 M:      Laurent Pinchart <[email protected]>
10689 L:      [email protected]
10690 L:      [email protected]
10691 S:      Supported
10692 T:      git git://linuxtv.org/media_tree.git
10693 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10694 F:      drivers/media/platform/rcar-fcp.c
10695 F:      include/media/rcar-fcp.h
10696
10697 MEDIA DRIVERS FOR RENESAS - FDP1
10698 M:      Kieran Bingham <[email protected]>
10699 L:      [email protected]
10700 L:      [email protected]
10701 S:      Supported
10702 T:      git git://linuxtv.org/media_tree.git
10703 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10704 F:      drivers/media/platform/rcar_fdp1.c
10705
10706 MEDIA DRIVERS FOR RENESAS - VIN
10707 M:      Niklas Söderlund <[email protected]>
10708 L:      [email protected]
10709 L:      [email protected]
10710 S:      Supported
10711 T:      git git://linuxtv.org/media_tree.git
10712 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10713 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10714 F:      drivers/media/platform/rcar-vin/
10715
10716 MEDIA DRIVERS FOR RENESAS - VSP1
10717 M:      Laurent Pinchart <[email protected]>
10718 M:      Kieran Bingham <[email protected]>
10719 L:      [email protected]
10720 L:      [email protected]
10721 S:      Supported
10722 T:      git git://linuxtv.org/media_tree.git
10723 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10724 F:      drivers/media/platform/vsp1/
10725
10726 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10727 L:      [email protected]
10728 S:      Orphan
10729 W:      https://linuxtv.org
10730 T:      git git://linuxtv.org/media_tree.git
10731 F:      drivers/media/dvb-frontends/stv0910*
10732
10733 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10734 L:      [email protected]
10735 S:      Orphan
10736 W:      https://linuxtv.org
10737 T:      git git://linuxtv.org/media_tree.git
10738 F:      drivers/media/dvb-frontends/stv6111*
10739
10740 MEDIA DRIVERS FOR STM32 - DCMI
10741 M:      Hugues Fruchet <[email protected]>
10742 L:      [email protected]
10743 S:      Supported
10744 T:      git git://linuxtv.org/media_tree.git
10745 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10746 F:      drivers/media/platform/stm32/stm32-dcmi.c
10747
10748 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10749 M:      Mauro Carvalho Chehab <[email protected]>
10750 L:      [email protected]
10751 S:      Maintained
10752 W:      https://linuxtv.org
10753 Q:      http://patchwork.kernel.org/project/linux-media/list/
10754 T:      git git://linuxtv.org/media_tree.git
10755 F:      Documentation/admin-guide/media/
10756 F:      Documentation/devicetree/bindings/media/
10757 F:      Documentation/driver-api/media/
10758 F:      Documentation/userspace-api/media/
10759 F:      drivers/media/
10760 F:      drivers/staging/media/
10761 F:      include/linux/platform_data/media/
10762 F:      include/media/
10763 F:      include/uapi/linux/dvb/
10764 F:      include/uapi/linux/ivtv*
10765 F:      include/uapi/linux/media.h
10766 F:      include/uapi/linux/meye.h
10767 F:      include/uapi/linux/uvcvideo.h
10768 F:      include/uapi/linux/v4l2-*
10769 F:      include/uapi/linux/videodev2.h
10770
10771 MEDIATEK BLUETOOTH DRIVER
10772 M:      Sean Wang <[email protected]>
10773 L:      [email protected]
10774 L:      [email protected] (moderated for non-subscribers)
10775 S:      Maintained
10776 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10777 F:      drivers/bluetooth/btmtkuart.c
10778
10779 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10780 M:      Sean Wang <[email protected]>
10781 L:      [email protected]
10782 S:      Maintained
10783 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10784 F:      drivers/power/reset/mt6323-poweroff.c
10785
10786 MEDIATEK CIR DRIVER
10787 M:      Sean Wang <[email protected]>
10788 S:      Maintained
10789 F:      drivers/media/rc/mtk-cir.c
10790
10791 MEDIATEK DMA DRIVER
10792 M:      Sean Wang <[email protected]>
10793 L:      [email protected]
10794 L:      [email protected] (moderated for non-subscribers)
10795 L:      [email protected] (moderated for non-subscribers)
10796 S:      Maintained
10797 F:      Documentation/devicetree/bindings/dma/mtk-*
10798 F:      drivers/dma/mediatek/
10799
10800 MEDIATEK ETHERNET DRIVER
10801 M:      Felix Fietkau <[email protected]>
10802 M:      John Crispin <[email protected]>
10803 M:      Sean Wang <[email protected]>
10804 M:      Mark Lee <[email protected]>
10805 L:      [email protected]
10806 S:      Maintained
10807 F:      drivers/net/ethernet/mediatek/
10808
10809 MEDIATEK I2C CONTROLLER DRIVER
10810 M:      Qii Wang <[email protected]>
10811 L:      [email protected]
10812 S:      Maintained
10813 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
10814 F:      drivers/i2c/busses/i2c-mt65xx.c
10815
10816 MEDIATEK JPEG DRIVER
10817 M:      Rick Chang <[email protected]>
10818 M:      Bin Liu <[email protected]>
10819 S:      Supported
10820 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10821 F:      drivers/media/platform/mtk-jpeg/
10822
10823 MEDIATEK MDP DRIVER
10824 M:      Minghsiu Tsai <[email protected]>
10825 M:      Houlong Wei <[email protected]>
10826 M:      Andrew-CT Chen <[email protected]>
10827 S:      Supported
10828 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10829 F:      drivers/media/platform/mtk-mdp/
10830 F:      drivers/media/platform/mtk-vpu/
10831
10832 MEDIATEK MEDIA DRIVER
10833 M:      Tiffany Lin <[email protected]>
10834 M:      Andrew-CT Chen <[email protected]>
10835 S:      Supported
10836 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10837 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10838 F:      drivers/media/platform/mtk-vcodec/
10839 F:      drivers/media/platform/mtk-vpu/
10840
10841 MEDIATEK MMC/SD/SDIO DRIVER
10842 M:      Chaotian Jing <[email protected]>
10843 S:      Maintained
10844 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10845 F:      drivers/mmc/host/mtk-sd.c
10846
10847 MEDIATEK MT76 WIRELESS LAN DRIVER
10848 M:      Felix Fietkau <[email protected]>
10849 M:      Lorenzo Bianconi <[email protected]>
10850 R:      Ryder Lee <[email protected]>
10851 L:      [email protected]
10852 S:      Maintained
10853 F:      drivers/net/wireless/mediatek/mt76/
10854
10855 MEDIATEK MT7601U WIRELESS LAN DRIVER
10856 M:      Jakub Kicinski <[email protected]>
10857 L:      [email protected]
10858 S:      Maintained
10859 F:      drivers/net/wireless/mediatek/mt7601u/
10860
10861 MEDIATEK MT7621/28/88 I2C DRIVER
10862 M:      Stefan Roese <[email protected]>
10863 L:      [email protected]
10864 S:      Maintained
10865 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10866 F:      drivers/i2c/busses/i2c-mt7621.c
10867
10868 MEDIATEK NAND CONTROLLER DRIVER
10869 L:      [email protected]
10870 S:      Orphan
10871 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10872 F:      drivers/mtd/nand/raw/mtk_*
10873
10874 MEDIATEK PMIC LED DRIVER
10875 M:      Sean Wang <[email protected]>
10876 S:      Maintained
10877 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10878 F:      drivers/leds/leds-mt6323.c
10879
10880 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10881 M:      Sean Wang <[email protected]>
10882 S:      Maintained
10883 F:      drivers/char/hw_random/mtk-rng.c
10884
10885 MEDIATEK SWITCH DRIVER
10886 M:      Sean Wang <[email protected]>
10887 L:      [email protected]
10888 S:      Maintained
10889 F:      drivers/net/dsa/mt7530.*
10890 F:      net/dsa/tag_mtk.c
10891
10892 MEDIATEK USB3 DRD IP DRIVER
10893 M:      Chunfeng Yun <[email protected]>
10894 L:      [email protected] (moderated for non-subscribers)
10895 L:      [email protected] (moderated for non-subscribers)
10896 L:      [email protected] (moderated for non-subscribers)
10897 S:      Maintained
10898 F:      drivers/usb/mtu3/
10899
10900 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10901 M:      Peter Senna Tschudin <[email protected]>
10902 M:      Martin Donnelly <[email protected]>
10903 M:      Martyn Welch <[email protected]>
10904 S:      Maintained
10905 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10906 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10907
10908 MEGARAID SCSI/SAS DRIVERS
10909 M:      Kashyap Desai <[email protected]>
10910 M:      Sumit Saxena <[email protected]>
10911 M:      Shivasharan S <[email protected]>
10912 L:      [email protected]
10913 L:      [email protected]
10914 S:      Maintained
10915 W:      http://www.avagotech.com/support/
10916 F:      Documentation/scsi/megaraid.rst
10917 F:      drivers/scsi/megaraid.*
10918 F:      drivers/scsi/megaraid/
10919
10920 MELEXIS MLX90614 DRIVER
10921 M:      Crt Mori <[email protected]>
10922 L:      [email protected]
10923 S:      Supported
10924 W:      http://www.melexis.com
10925 F:      drivers/iio/temperature/mlx90614.c
10926
10927 MELEXIS MLX90632 DRIVER
10928 M:      Crt Mori <[email protected]>
10929 L:      [email protected]
10930 S:      Supported
10931 W:      http://www.melexis.com
10932 F:      drivers/iio/temperature/mlx90632.c
10933
10934 MELFAS MIP4 TOUCHSCREEN DRIVER
10935 M:      Sangwon Jee <[email protected]>
10936 S:      Supported
10937 W:      http://www.melfas.com
10938 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10939 F:      drivers/input/touchscreen/melfas_mip4.c
10940
10941 MELLANOX ETHERNET DRIVER (mlx4_en)
10942 M:      Tariq Toukan <[email protected]>
10943 L:      [email protected]
10944 S:      Supported
10945 W:      http://www.mellanox.com
10946 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10947 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10948
10949 MELLANOX ETHERNET DRIVER (mlx5e)
10950 M:      Saeed Mahameed <[email protected]>
10951 L:      [email protected]
10952 S:      Supported
10953 W:      http://www.mellanox.com
10954 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10955 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10956
10957 MELLANOX ETHERNET INNOVA DRIVERS
10958 R:      Boris Pismenny <[email protected]>
10959 L:      [email protected]
10960 S:      Supported
10961 W:      http://www.mellanox.com
10962 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10963 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10964 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10965 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10966 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10967
10968 MELLANOX ETHERNET SWITCH DRIVERS
10969 M:      Jiri Pirko <[email protected]>
10970 M:      Ido Schimmel <[email protected]>
10971 L:      [email protected]
10972 S:      Supported
10973 W:      http://www.mellanox.com
10974 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10975 F:      drivers/net/ethernet/mellanox/mlxsw/
10976 F:      tools/testing/selftests/drivers/net/mlxsw/
10977
10978 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10979 M:      [email protected]
10980 L:      [email protected]
10981 S:      Supported
10982 W:      http://www.mellanox.com
10983 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10984 F:      drivers/net/ethernet/mellanox/mlxfw/
10985
10986 MELLANOX HARDWARE PLATFORM SUPPORT
10987 M:      Andy Shevchenko <[email protected]>
10988 M:      Darren Hart <[email protected]>
10989 M:      Vadim Pasternak <[email protected]>
10990 L:      [email protected]
10991 S:      Supported
10992 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
10993 F:      drivers/platform/mellanox/
10994 F:      include/linux/platform_data/mlxreg.h
10995
10996 MELLANOX MLX4 core VPI driver
10997 M:      Tariq Toukan <[email protected]>
10998 L:      [email protected]
10999 L:      [email protected]
11000 S:      Supported
11001 W:      http://www.mellanox.com
11002 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11003 F:      drivers/net/ethernet/mellanox/mlx4/
11004 F:      include/linux/mlx4/
11005
11006 MELLANOX MLX4 IB driver
11007 M:      Yishai Hadas <[email protected]>
11008 L:      [email protected]
11009 S:      Supported
11010 W:      http://www.mellanox.com
11011 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11012 F:      drivers/infiniband/hw/mlx4/
11013 F:      include/linux/mlx4/
11014 F:      include/uapi/rdma/mlx4-abi.h
11015
11016 MELLANOX MLX5 core VPI driver
11017 M:      Saeed Mahameed <[email protected]>
11018 M:      Leon Romanovsky <[email protected]>
11019 L:      [email protected]
11020 L:      [email protected]
11021 S:      Supported
11022 W:      http://www.mellanox.com
11023 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11024 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11025 F:      drivers/net/ethernet/mellanox/mlx5/core/
11026 F:      include/linux/mlx5/
11027
11028 MELLANOX MLX5 IB driver
11029 M:      Leon Romanovsky <[email protected]>
11030 L:      [email protected]
11031 S:      Supported
11032 W:      http://www.mellanox.com
11033 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11034 F:      drivers/infiniband/hw/mlx5/
11035 F:      include/linux/mlx5/
11036 F:      include/uapi/rdma/mlx5-abi.h
11037
11038 MELLANOX MLXCPLD I2C AND MUX DRIVER
11039 M:      Vadim Pasternak <[email protected]>
11040 M:      Michael Shych <[email protected]>
11041 L:      [email protected]
11042 S:      Supported
11043 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11044 F:      drivers/i2c/busses/i2c-mlxcpld.c
11045 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11046
11047 MELLANOX MLXCPLD LED DRIVER
11048 M:      Vadim Pasternak <[email protected]>
11049 L:      [email protected]
11050 S:      Supported
11051 F:      Documentation/leds/leds-mlxcpld.rst
11052 F:      drivers/leds/leds-mlxcpld.c
11053 F:      drivers/leds/leds-mlxreg.c
11054
11055 MELLANOX PLATFORM DRIVER
11056 M:      Vadim Pasternak <[email protected]>
11057 L:      [email protected]
11058 S:      Supported
11059 F:      drivers/platform/x86/mlx-platform.c
11060
11061 MEMBARRIER SUPPORT
11062 M:      Mathieu Desnoyers <[email protected]>
11063 M:      "Paul E. McKenney" <[email protected]>
11064 L:      [email protected]
11065 S:      Supported
11066 F:      arch/powerpc/include/asm/membarrier.h
11067 F:      include/uapi/linux/membarrier.h
11068 F:      kernel/sched/membarrier.c
11069
11070 MEMBLOCK
11071 M:      Mike Rapoport <[email protected]>
11072 L:      [email protected]
11073 S:      Maintained
11074 F:      Documentation/core-api/boot-time-mm.rst
11075 F:      include/linux/memblock.h
11076 F:      mm/memblock.c
11077
11078 MEMORY MANAGEMENT
11079 M:      Andrew Morton <[email protected]>
11080 L:      [email protected]
11081 S:      Maintained
11082 W:      http://www.linux-mm.org
11083 T:      quilt https://ozlabs.org/~akpm/mmotm/
11084 T:      quilt https://ozlabs.org/~akpm/mmots/
11085 T:      git git://github.com/hnaz/linux-mm.git
11086 F:      include/linux/gfp.h
11087 F:      include/linux/memory_hotplug.h
11088 F:      include/linux/mm.h
11089 F:      include/linux/mmzone.h
11090 F:      include/linux/vmalloc.h
11091 F:      mm/
11092
11093 MEMORY TECHNOLOGY DEVICES (MTD)
11094 M:      Miquel Raynal <[email protected]>
11095 M:      Richard Weinberger <[email protected]>
11096 M:      Vignesh Raghavendra <[email protected]>
11097 L:      [email protected]
11098 S:      Maintained
11099 W:      http://www.linux-mtd.infradead.org/
11100 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11101 C:      irc://irc.oftc.net/mtd
11102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11104 F:      Documentation/devicetree/bindings/mtd/
11105 F:      drivers/mtd/
11106 F:      include/linux/mtd/
11107 F:      include/uapi/mtd/
11108
11109 MEN A21 WATCHDOG DRIVER
11110 M:      Johannes Thumshirn <[email protected]>
11111 L:      [email protected]
11112 S:      Maintained
11113 F:      drivers/watchdog/mena21_wdt.c
11114
11115 MEN CHAMELEON BUS (mcb)
11116 M:      Johannes Thumshirn <[email protected]>
11117 S:      Maintained
11118 F:      Documentation/driver-api/men-chameleon-bus.rst
11119 F:      drivers/mcb/
11120 F:      include/linux/mcb.h
11121
11122 MEN F21BMC (Board Management Controller)
11123 M:      Andreas Werner <[email protected]>
11124 S:      Supported
11125 F:      Documentation/hwmon/menf21bmc.rst
11126 F:      drivers/hwmon/menf21bmc_hwmon.c
11127 F:      drivers/leds/leds-menf21bmc.c
11128 F:      drivers/mfd/menf21bmc.c
11129 F:      drivers/watchdog/menf21bmc_wdt.c
11130
11131 MEN Z069 WATCHDOG DRIVER
11132 M:      Johannes Thumshirn <[email protected]>
11133 L:      [email protected]
11134 S:      Maintained
11135 F:      drivers/watchdog/menz69_wdt.c
11136
11137 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11138 M:      Neil Armstrong <[email protected]>
11139 L:      [email protected]
11140 L:      [email protected]
11141 S:      Supported
11142 W:      http://linux-meson.com/
11143 T:      git git://linuxtv.org/media_tree.git
11144 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11145 F:      drivers/media/platform/meson/ao-cec-g12a.c
11146 F:      drivers/media/platform/meson/ao-cec.c
11147
11148 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11149 M:      Liang Yang <[email protected]>
11150 L:      [email protected]
11151 S:      Maintained
11152 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11153 F:      drivers/mtd/nand/raw/meson_*
11154
11155 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11156 M:      Maxime Jourdan <[email protected]>
11157 M:      Neil Armstrong <[email protected]>
11158 L:      [email protected]
11159 L:      [email protected]
11160 S:      Supported
11161 T:      git git://linuxtv.org/media_tree.git
11162 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11163 F:      drivers/staging/media/meson/vdec/
11164
11165 METHODE UDPU SUPPORT
11166 M:      Vladimir Vid <[email protected]>
11167 S:      Maintained
11168 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11169
11170 MHI BUS
11171 M:      Manivannan Sadhasivam <[email protected]>
11172 M:      Hemant Kumar <[email protected]>
11173 L:      [email protected]
11174 S:      Maintained
11175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11176 F:      Documentation/mhi/
11177 F:      drivers/bus/mhi/
11178 F:      include/linux/mhi.h
11179
11180 MICROBLAZE ARCHITECTURE
11181 M:      Michal Simek <[email protected]>
11182 S:      Supported
11183 W:      http://www.monstr.eu/fdt/
11184 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11185 F:      arch/microblaze/
11186
11187 MICROCHIP AT91 SERIAL DRIVER
11188 M:      Richard Genoud <[email protected]>
11189 S:      Maintained
11190 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11191 F:      drivers/tty/serial/atmel_serial.c
11192 F:      drivers/tty/serial/atmel_serial.h
11193
11194 MICROCHIP AT91 USART MFD DRIVER
11195 M:      Radu Pirea <[email protected]>
11196 L:      [email protected]
11197 S:      Supported
11198 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11199 F:      drivers/mfd/at91-usart.c
11200 F:      include/dt-bindings/mfd/at91-usart.h
11201
11202 MICROCHIP AT91 USART SPI DRIVER
11203 M:      Radu Pirea <[email protected]>
11204 L:      [email protected]
11205 S:      Supported
11206 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11207 F:      drivers/spi/spi-at91-usart.c
11208
11209 MICROCHIP AUDIO ASOC DRIVERS
11210 M:      Codrin Ciubotariu <[email protected]>
11211 L:      [email protected] (moderated for non-subscribers)
11212 S:      Supported
11213 F:      sound/soc/atmel
11214
11215 MICROCHIP DMA DRIVER
11216 M:      Ludovic Desroches <[email protected]>
11217 L:      [email protected] (moderated for non-subscribers)
11218 L:      [email protected]
11219 S:      Supported
11220 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11221 F:      drivers/dma/at_hdmac.c
11222 F:      drivers/dma/at_hdmac_regs.h
11223 F:      include/dt-bindings/dma/at91.h
11224 F:      include/linux/platform_data/dma-atmel.h
11225
11226 MICROCHIP ECC DRIVER
11227 M:      Tudor Ambarus <[email protected]>
11228 L:      [email protected]
11229 S:      Maintained
11230 F:      drivers/crypto/atmel-ecc.*
11231
11232 MICROCHIP I2C DRIVER
11233 M:      Ludovic Desroches <[email protected]>
11234 L:      [email protected]
11235 S:      Supported
11236 F:      drivers/i2c/busses/i2c-at91-*.c
11237 F:      drivers/i2c/busses/i2c-at91.h
11238
11239 MICROCHIP ISC DRIVER
11240 M:      Eugen Hristev <[email protected]>
11241 L:      [email protected]
11242 S:      Supported
11243 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11244 F:      drivers/media/platform/atmel/atmel-isc-base.c
11245 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11246 F:      drivers/media/platform/atmel/atmel-isc.h
11247 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11248 F:      include/linux/atmel-isc-media.h
11249
11250 MICROCHIP ISI DRIVER
11251 M:      Eugen Hristev <[email protected]>
11252 L:      [email protected]
11253 S:      Supported
11254 F:      drivers/media/platform/atmel/atmel-isi.c
11255 F:      drivers/media/platform/atmel/atmel-isi.h
11256
11257 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11258 M:      Woojung Huh <[email protected]>
11259 M:      Microchip Linux Driver Support <[email protected]>
11260 L:      [email protected]
11261 S:      Maintained
11262 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11263 F:      drivers/net/dsa/microchip/*
11264 F:      include/linux/platform_data/microchip-ksz.h
11265 F:      net/dsa/tag_ksz.c
11266
11267 MICROCHIP LAN743X ETHERNET DRIVER
11268 M:      Bryan Whitehead <[email protected]>
11269 M:      Microchip Linux Driver Support <[email protected]>
11270 L:      [email protected]
11271 S:      Maintained
11272 F:      drivers/net/ethernet/microchip/lan743x_*
11273
11274 MICROCHIP LCDFB DRIVER
11275 M:      Nicolas Ferre <[email protected]>
11276 L:      [email protected]
11277 S:      Maintained
11278 F:      drivers/video/fbdev/atmel_lcdfb.c
11279 F:      include/video/atmel_lcdc.h
11280
11281 MICROCHIP MCP16502 PMIC DRIVER
11282 M:      Andrei Stefanescu <[email protected]>
11283 L:      [email protected] (moderated for non-subscribers)
11284 S:      Maintained
11285 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11286 F:      drivers/regulator/mcp16502.c
11287
11288 MICROCHIP MCP3911 ADC DRIVER
11289 M:      Marcus Folkesson <[email protected]>
11290 M:      Kent Gustavsson <[email protected]>
11291 L:      [email protected]
11292 S:      Supported
11293 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11294 F:      drivers/iio/adc/mcp3911.c
11295
11296 MICROCHIP MMC/SD/SDIO MCI DRIVER
11297 M:      Ludovic Desroches <[email protected]>
11298 S:      Maintained
11299 F:      drivers/mmc/host/atmel-mci.c
11300
11301 MICROCHIP NAND DRIVER
11302 M:      Tudor Ambarus <[email protected]>
11303 L:      [email protected]
11304 S:      Supported
11305 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11306 F:      drivers/mtd/nand/raw/atmel/*
11307
11308 MICROCHIP PWM DRIVER
11309 M:      Claudiu Beznea <[email protected]>
11310 L:      [email protected] (moderated for non-subscribers)
11311 L:      [email protected]
11312 S:      Supported
11313 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11314 F:      drivers/pwm/pwm-atmel.c
11315
11316 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11317 M:      Ludovic Desroches <[email protected]>
11318 M:      Eugen Hristev <[email protected]>
11319 L:      [email protected]
11320 S:      Supported
11321 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11322 F:      drivers/iio/adc/at91-sama5d2_adc.c
11323 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11324
11325 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11326 M:      Nicolas Ferre <[email protected]>
11327 S:      Supported
11328 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11329
11330 MICROCHIP SPI DRIVER
11331 M:      Nicolas Ferre <[email protected]>
11332 S:      Supported
11333 F:      drivers/spi/spi-atmel.*
11334
11335 MICROCHIP SSC DRIVER
11336 M:      Nicolas Ferre <[email protected]>
11337 L:      [email protected] (moderated for non-subscribers)
11338 S:      Supported
11339 F:      drivers/misc/atmel-ssc.c
11340 F:      include/linux/atmel-ssc.h
11341
11342 MICROCHIP USB251XB DRIVER
11343 M:      Richard Leitner <[email protected]>
11344 L:      [email protected]
11345 S:      Maintained
11346 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11347 F:      drivers/usb/misc/usb251xb.c
11348
11349 MICROCHIP USBA UDC DRIVER
11350 M:      Cristian Birsan <[email protected]>
11351 L:      [email protected] (moderated for non-subscribers)
11352 S:      Supported
11353 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11354
11355 MICROCHIP XDMA DRIVER
11356 M:      Ludovic Desroches <[email protected]>
11357 L:      [email protected]
11358 L:      [email protected]
11359 S:      Supported
11360 F:      drivers/dma/at_xdmac.c
11361
11362 MICROSEMI MIPS SOCS
11363 M:      Alexandre Belloni <[email protected]>
11364 M:      Microchip Linux Driver Support <[email protected]>
11365 L:      [email protected]
11366 S:      Supported
11367 F:      Documentation/devicetree/bindings/mips/mscc.txt
11368 F:      arch/mips/boot/dts/mscc/
11369 F:      arch/mips/configs/generic/board-ocelot.config
11370 F:      arch/mips/generic/board-ocelot.c
11371
11372 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11373 M:      Don Brace <[email protected]>
11374 L:      [email protected]
11375 L:      [email protected]
11376 S:      Supported
11377 F:      Documentation/scsi/smartpqi.rst
11378 F:      drivers/scsi/smartpqi/Kconfig
11379 F:      drivers/scsi/smartpqi/Makefile
11380 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11381 F:      include/linux/cciss*.h
11382 F:      include/uapi/linux/cciss*.h
11383
11384 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11385 M:      Chen Yu <[email protected]>
11386 L:      [email protected]
11387 S:      Supported
11388 F:      drivers/platform/x86/surfacepro3_button.c
11389
11390 MICROTEK X6 SCANNER
11391 M:      Oliver Neukum <[email protected]>
11392 S:      Maintained
11393 F:      drivers/usb/image/microtek.*
11394
11395 MIPS
11396 M:      Thomas Bogendoerfer <[email protected]>
11397 L:      [email protected]
11398 S:      Maintained
11399 W:      http://www.linux-mips.org/
11400 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11402 F:      Documentation/devicetree/bindings/mips/
11403 F:      Documentation/mips/
11404 F:      arch/mips/
11405 F:      drivers/platform/mips/
11406
11407 MIPS BOSTON DEVELOPMENT BOARD
11408 M:      Paul Burton <[email protected]>
11409 L:      [email protected]
11410 S:      Maintained
11411 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11412 F:      arch/mips/boot/dts/img/boston.dts
11413 F:      arch/mips/configs/generic/board-boston.config
11414 F:      drivers/clk/imgtec/clk-boston.c
11415 F:      include/dt-bindings/clock/boston-clock.h
11416
11417 MIPS GENERIC PLATFORM
11418 M:      Paul Burton <[email protected]>
11419 L:      [email protected]
11420 S:      Supported
11421 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11422 F:      arch/mips/generic/
11423 F:      arch/mips/tools/generic-board-config.sh
11424
11425 MIPS RINT INSTRUCTION EMULATION
11426 M:      Aleksandar Markovic <[email protected]>
11427 L:      [email protected]
11428 S:      Supported
11429 F:      arch/mips/math-emu/dp_rint.c
11430 F:      arch/mips/math-emu/sp_rint.c
11431
11432 MIPS/LOONGSON1 ARCHITECTURE
11433 M:      Keguang Zhang <[email protected]>
11434 L:      [email protected]
11435 S:      Maintained
11436 F:      arch/mips/include/asm/mach-loongson32/
11437 F:      arch/mips/loongson32/
11438 F:      drivers/*/*/*loongson1*
11439 F:      drivers/*/*loongson1*
11440
11441 MIPS/LOONGSON2EF ARCHITECTURE
11442 M:      Jiaxun Yang <[email protected]>
11443 L:      [email protected]
11444 S:      Maintained
11445 F:      arch/mips/include/asm/mach-loongson2ef/
11446 F:      arch/mips/loongson2ef/
11447 F:      drivers/*/*/*loongson2*
11448 F:      drivers/*/*loongson2*
11449
11450 MIPS/LOONGSON64 ARCHITECTURE
11451 M:      Huacai Chen <[email protected]>
11452 M:      Jiaxun Yang <[email protected]>
11453 L:      [email protected]
11454 S:      Maintained
11455 F:      arch/mips/include/asm/mach-loongson64/
11456 F:      arch/mips/loongson64/
11457 F:      drivers/*/*/*loongson3*
11458 F:      drivers/*/*loongson3*
11459 F:      drivers/irqchip/irq-loongson*
11460 F:      drivers/platform/mips/cpu_hwmon.c
11461
11462 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11463 M:      Hans Verkuil <[email protected]>
11464 L:      [email protected]
11465 S:      Odd Fixes
11466 W:      https://linuxtv.org
11467 T:      git git://linuxtv.org/media_tree.git
11468 F:      drivers/media/radio/radio-miropcm20*
11469
11470 MMP SUPPORT
11471 R:      Lubomir Rintel <[email protected]>
11472 L:      [email protected] (moderated for non-subscribers)
11473 S:      Odd Fixes
11474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11475 F:      arch/arm/boot/dts/mmp*
11476 F:      arch/arm/mach-mmp/
11477 F:      linux/soc/mmp/
11478
11479 MMP USB PHY DRIVERS
11480 R:      Lubomir Rintel <[email protected]>
11481 L:      [email protected] (moderated for non-subscribers)
11482 S:      Maintained
11483 F:      drivers/phy/marvell/phy-mmp3-usb.c
11484 F:      drivers/phy/marvell/phy-pxa-usb.c
11485
11486 MMU GATHER AND TLB INVALIDATION
11487 M:      Will Deacon <[email protected]>
11488 M:      "Aneesh Kumar K.V" <[email protected]>
11489 M:      Andrew Morton <[email protected]>
11490 M:      Nick Piggin <[email protected]>
11491 M:      Peter Zijlstra <[email protected]>
11492 L:      [email protected]
11493 L:      [email protected]
11494 S:      Maintained
11495 F:      arch/*/include/asm/tlb.h
11496 F:      include/asm-generic/tlb.h
11497 F:      mm/mmu_gather.c
11498
11499 MN88472 MEDIA DRIVER
11500 M:      Antti Palosaari <[email protected]>
11501 L:      [email protected]
11502 S:      Maintained
11503 W:      https://linuxtv.org
11504 W:      http://palosaari.fi/linux/
11505 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11506 F:      drivers/media/dvb-frontends/mn88472*
11507
11508 MN88473 MEDIA DRIVER
11509 M:      Antti Palosaari <[email protected]>
11510 L:      [email protected]
11511 S:      Maintained
11512 W:      https://linuxtv.org
11513 W:      http://palosaari.fi/linux/
11514 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11515 F:      drivers/media/dvb-frontends/mn88473*
11516
11517 MODULE SUPPORT
11518 M:      Jessica Yu <[email protected]>
11519 S:      Maintained
11520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11521 F:      include/linux/module.h
11522 F:      kernel/module.c
11523
11524 MONOLITHIC POWER SYSTEM PMIC DRIVER
11525 M:      Saravanan Sekar <[email protected]>
11526 S:      Maintained
11527 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11528 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11529 F:      drivers/iio/adc/mp2629_adc.c
11530 F:      drivers/mfd/mp2629.c
11531 F:      drivers/power/supply/mp2629_charger.c
11532 F:      drivers/regulator/mp5416.c
11533 F:      drivers/regulator/mpq7920.c
11534 F:      drivers/regulator/mpq7920.h
11535 F:      include/linux/mfd/mp2629.h
11536
11537 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11538 S:      Orphan
11539 W:      http://popies.net/meye/
11540 F:      Documentation/userspace-api/media/drivers/meye*
11541 F:      drivers/media/pci/meye/
11542 F:      include/uapi/linux/meye.h
11543
11544 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11545 M:      Jiri Slaby <[email protected]>
11546 S:      Maintained
11547 F:      Documentation/driver-api/serial/moxa-smartio.rst
11548 F:      drivers/tty/mxser.*
11549
11550 MR800 AVERMEDIA USB FM RADIO DRIVER
11551 M:      Alexey Klimov <[email protected]>
11552 L:      [email protected]
11553 S:      Maintained
11554 T:      git git://linuxtv.org/media_tree.git
11555 F:      drivers/media/radio/radio-mr800.c
11556
11557 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11558 M:      Alan Ott <[email protected]>
11559 L:      [email protected]
11560 S:      Maintained
11561 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11562 F:      drivers/net/ieee802154/mrf24j40.c
11563
11564 MSI LAPTOP SUPPORT
11565 M:      "Lee, Chun-Yi" <[email protected]>
11566 L:      [email protected]
11567 S:      Maintained
11568 F:      drivers/platform/x86/msi-laptop.c
11569
11570 MSI WMI SUPPORT
11571 L:      [email protected]
11572 S:      Orphan
11573 F:      drivers/platform/x86/msi-wmi.c
11574
11575 MSI001 MEDIA DRIVER
11576 M:      Antti Palosaari <[email protected]>
11577 L:      [email protected]
11578 S:      Maintained
11579 W:      https://linuxtv.org
11580 W:      http://palosaari.fi/linux/
11581 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11582 T:      git git://linuxtv.org/anttip/media_tree.git
11583 F:      drivers/media/tuners/msi001*
11584
11585 MSI2500 MEDIA DRIVER
11586 M:      Antti Palosaari <[email protected]>
11587 L:      [email protected]
11588 S:      Maintained
11589 W:      https://linuxtv.org
11590 W:      http://palosaari.fi/linux/
11591 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11592 T:      git git://linuxtv.org/anttip/media_tree.git
11593 F:      drivers/media/usb/msi2500/
11594
11595 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11596 M:      Robert Jarzmik <[email protected]>
11597 L:      [email protected]
11598 S:      Maintained
11599 F:      drivers/mtd/devices/docg3*
11600
11601 MT9M032 APTINA SENSOR DRIVER
11602 M:      Laurent Pinchart <[email protected]>
11603 L:      [email protected]
11604 S:      Maintained
11605 T:      git git://linuxtv.org/media_tree.git
11606 F:      drivers/media/i2c/mt9m032.c
11607 F:      include/media/i2c/mt9m032.h
11608
11609 MT9P031 APTINA CAMERA SENSOR
11610 M:      Laurent Pinchart <[email protected]>
11611 L:      [email protected]
11612 S:      Maintained
11613 T:      git git://linuxtv.org/media_tree.git
11614 F:      drivers/media/i2c/mt9p031.c
11615 F:      include/media/i2c/mt9p031.h
11616
11617 MT9T001 APTINA CAMERA SENSOR
11618 M:      Laurent Pinchart <[email protected]>
11619 L:      [email protected]
11620 S:      Maintained
11621 T:      git git://linuxtv.org/media_tree.git
11622 F:      drivers/media/i2c/mt9t001.c
11623 F:      include/media/i2c/mt9t001.h
11624
11625 MT9T112 APTINA CAMERA SENSOR
11626 M:      Jacopo Mondi <[email protected]>
11627 L:      [email protected]
11628 S:      Odd Fixes
11629 T:      git git://linuxtv.org/media_tree.git
11630 F:      drivers/media/i2c/mt9t112.c
11631 F:      include/media/i2c/mt9t112.h
11632
11633 MT9V032 APTINA CAMERA SENSOR
11634 M:      Laurent Pinchart <[email protected]>
11635 L:      [email protected]
11636 S:      Maintained
11637 T:      git git://linuxtv.org/media_tree.git
11638 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11639 F:      drivers/media/i2c/mt9v032.c
11640 F:      include/media/i2c/mt9v032.h
11641
11642 MT9V111 APTINA CAMERA SENSOR
11643 M:      Jacopo Mondi <[email protected]>
11644 L:      [email protected]
11645 S:      Maintained
11646 T:      git git://linuxtv.org/media_tree.git
11647 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11648 F:      drivers/media/i2c/mt9v111.c
11649
11650 MULTIFUNCTION DEVICES (MFD)
11651 M:      Lee Jones <[email protected]>
11652 S:      Supported
11653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11654 F:      Documentation/devicetree/bindings/mfd/
11655 F:      drivers/mfd/
11656 F:      include/dt-bindings/mfd/
11657 F:      include/linux/mfd/
11658
11659 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11660 S:      Orphan
11661 F:      drivers/mmc/host/mmc_spi.c
11662 F:      include/linux/spi/mmc_spi.h
11663
11664 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11665 M:      Ulf Hansson <[email protected]>
11666 L:      [email protected]
11667 S:      Maintained
11668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11669 F:      Documentation/devicetree/bindings/mmc/
11670 F:      drivers/mmc/
11671 F:      include/linux/mmc/
11672 F:      include/uapi/linux/mmc/
11673
11674 MULTIPLEXER SUBSYSTEM
11675 M:      Peter Rosin <[email protected]>
11676 S:      Maintained
11677 F:      Documentation/ABI/testing/sysfs-class-mux*
11678 F:      Documentation/devicetree/bindings/mux/
11679 F:      drivers/mux/
11680 F:      include/dt-bindings/mux/
11681 F:      include/linux/mux/
11682
11683 MULTITECH MULTIPORT CARD (ISICOM)
11684 S:      Orphan
11685 F:      drivers/tty/isicom.c
11686 F:      include/linux/isicom.h
11687
11688 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11689 M:      Bin Liu <[email protected]>
11690 L:      [email protected]
11691 S:      Maintained
11692 F:      drivers/usb/musb/
11693
11694 MXL301RF MEDIA DRIVER
11695 M:      Akihiro Tsukada <[email protected]>
11696 L:      [email protected]
11697 S:      Odd Fixes
11698 F:      drivers/media/tuners/mxl301rf*
11699
11700 MXL5007T MEDIA DRIVER
11701 M:      Michael Krufky <[email protected]>
11702 L:      [email protected]
11703 S:      Maintained
11704 W:      https://linuxtv.org
11705 W:      http://github.com/mkrufky
11706 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11707 T:      git git://linuxtv.org/mkrufky/tuners.git
11708 F:      drivers/media/tuners/mxl5007t.*
11709
11710 MXSFB DRM DRIVER
11711 M:      Marek Vasut <[email protected]>
11712 M:      Stefan Agner <[email protected]>
11713 L:      [email protected]
11714 S:      Supported
11715 T:      git git://anongit.freedesktop.org/drm/drm-misc
11716 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11717 F:      drivers/gpu/drm/mxsfb/
11718
11719 MYLEX DAC960 PCI RAID Controller
11720 M:      Hannes Reinecke <[email protected]>
11721 L:      [email protected]
11722 S:      Supported
11723 F:      drivers/scsi/myrb.*
11724 F:      drivers/scsi/myrs.*
11725
11726 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11727 M:      Chris Lee <[email protected]>
11728 L:      [email protected]
11729 S:      Supported
11730 W:      https://www.cspi.com/ethernet-products/support/downloads/
11731 F:      drivers/net/ethernet/myricom/myri10ge/
11732
11733 NAND FLASH SUBSYSTEM
11734 M:      Miquel Raynal <[email protected]>
11735 R:      Richard Weinberger <[email protected]>
11736 L:      [email protected]
11737 S:      Maintained
11738 W:      http://www.linux-mtd.infradead.org/
11739 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11740 C:      irc://irc.oftc.net/mtd
11741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11742 F:      drivers/mtd/nand/
11743 F:      include/linux/mtd/*nand*.h
11744
11745 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11746 M:      Daniel Mack <[email protected]>
11747 L:      [email protected] (moderated for non-subscribers)
11748 S:      Maintained
11749 W:      http://www.native-instruments.com
11750 F:      sound/usb/caiaq/
11751
11752 NATSEMI ETHERNET DRIVER (DP8381x)
11753 S:      Orphan
11754 F:      drivers/net/ethernet/natsemi/natsemi.c
11755
11756 NCR 5380 SCSI DRIVERS
11757 M:      Finn Thain <[email protected]>
11758 M:      Michael Schmitz <[email protected]>
11759 L:      [email protected]
11760 S:      Maintained
11761 F:      Documentation/scsi/g_NCR5380.rst
11762 F:      drivers/scsi/NCR5380.*
11763 F:      drivers/scsi/arm/cumana_1.c
11764 F:      drivers/scsi/arm/oak.c
11765 F:      drivers/scsi/atari_scsi.*
11766 F:      drivers/scsi/dmx3191d.c
11767 F:      drivers/scsi/g_NCR5380.*
11768 F:      drivers/scsi/mac_scsi.*
11769 F:      drivers/scsi/sun3_scsi.*
11770 F:      drivers/scsi/sun3_scsi_vme.c
11771
11772 NCSI LIBRARY
11773 M:      Samuel Mendoza-Jonas <[email protected]>
11774 S:      Maintained
11775 F:      net/ncsi/
11776
11777 NCT6775 HARDWARE MONITOR DRIVER
11778 M:      Guenter Roeck <[email protected]>
11779 L:      [email protected]
11780 S:      Maintained
11781 F:      Documentation/hwmon/nct6775.rst
11782 F:      drivers/hwmon/nct6775.c
11783
11784 NETDEVSIM
11785 M:      Jakub Kicinski <[email protected]>
11786 S:      Maintained
11787 F:      drivers/net/netdevsim/*
11788
11789 NETEM NETWORK EMULATOR
11790 M:      Stephen Hemminger <[email protected]>
11791 L:      [email protected]
11792 S:      Maintained
11793 F:      net/sched/sch_netem.c
11794
11795 NETERION 10GbE DRIVERS (s2io/vxge)
11796 M:      Jon Mason <[email protected]>
11797 L:      [email protected]
11798 S:      Supported
11799 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
11800 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
11801 F:      drivers/net/ethernet/neterion/
11802
11803 NETFILTER
11804 M:      Pablo Neira Ayuso <[email protected]>
11805 M:      Jozsef Kadlecsik <[email protected]>
11806 M:      Florian Westphal <[email protected]>
11807 L:      [email protected]
11808 L:      [email protected]
11809 S:      Maintained
11810 W:      http://www.netfilter.org/
11811 W:      http://www.iptables.org/
11812 W:      http://www.nftables.org/
11813 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11816 F:      include/linux/netfilter*
11817 F:      include/linux/netfilter/
11818 F:      include/net/netfilter/
11819 F:      include/uapi/linux/netfilter*
11820 F:      include/uapi/linux/netfilter/
11821 F:      net/*/netfilter.c
11822 F:      net/*/netfilter/
11823 F:      net/bridge/br_netfilter*.c
11824 F:      net/netfilter/
11825
11826 NETROM NETWORK LAYER
11827 M:      Ralf Baechle <[email protected]>
11828 L:      [email protected]
11829 S:      Maintained
11830 W:      http://www.linux-ax25.org/
11831 F:      include/net/netrom.h
11832 F:      include/uapi/linux/netrom.h
11833 F:      net/netrom/
11834
11835 NETRONOME ETHERNET DRIVERS
11836 M:      Jakub Kicinski <[email protected]>
11837 L:      [email protected]
11838 S:      Maintained
11839 F:      drivers/net/ethernet/netronome/
11840
11841 NETWORK BLOCK DEVICE (NBD)
11842 M:      Josef Bacik <[email protected]>
11843 L:      [email protected]
11844 L:      [email protected]
11845 S:      Maintained
11846 F:      Documentation/admin-guide/blockdev/nbd.rst
11847 F:      drivers/block/nbd.c
11848 F:      include/trace/events/nbd.h
11849 F:      include/uapi/linux/nbd.h
11850
11851 NETWORK DROP MONITOR
11852 M:      Neil Horman <[email protected]>
11853 L:      [email protected]
11854 S:      Maintained
11855 W:      https://fedorahosted.org/dropwatch/
11856 F:      include/net/drop_monitor.h
11857 F:      include/uapi/linux/net_dropmon.h
11858 F:      net/core/drop_monitor.c
11859
11860 NETWORKING DRIVERS
11861 M:      "David S. Miller" <[email protected]>
11862 M:      Jakub Kicinski <[email protected]>
11863 L:      [email protected]
11864 S:      Maintained
11865 W:      http://www.linuxfoundation.org/en/Net
11866 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11869 F:      Documentation/devicetree/bindings/net/
11870 F:      drivers/net/
11871 F:      include/linux/etherdevice.h
11872 F:      include/linux/fcdevice.h
11873 F:      include/linux/fddidevice.h
11874 F:      include/linux/hippidevice.h
11875 F:      include/linux/if_*
11876 F:      include/linux/inetdevice.h
11877 F:      include/linux/netdevice.h
11878 F:      include/uapi/linux/if_*
11879 F:      include/uapi/linux/netdevice.h
11880
11881 NETWORKING DRIVERS (WIRELESS)
11882 M:      Kalle Valo <[email protected]>
11883 L:      [email protected]
11884 S:      Maintained
11885 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11888 F:      Documentation/devicetree/bindings/net/wireless/
11889 F:      drivers/net/wireless/
11890
11891 NETWORKING [DSA]
11892 M:      Andrew Lunn <[email protected]>
11893 M:      Vivien Didelot <[email protected]>
11894 M:      Florian Fainelli <[email protected]>
11895 S:      Maintained
11896 F:      Documentation/devicetree/bindings/net/dsa/
11897 F:      drivers/net/dsa/
11898 F:      include/linux/dsa/
11899 F:      include/linux/platform_data/dsa.h
11900 F:      include/net/dsa.h
11901 F:      net/dsa/
11902
11903 NETWORKING [GENERAL]
11904 M:      "David S. Miller" <[email protected]>
11905 M:      Jakub Kicinski <[email protected]>
11906 L:      [email protected]
11907 S:      Maintained
11908 W:      http://www.linuxfoundation.org/en/Net
11909 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11910 B:      mailto:[email protected]
11911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11913 F:      Documentation/networking/
11914 F:      include/linux/in.h
11915 F:      include/linux/net.h
11916 F:      include/linux/netdevice.h
11917 F:      include/net/
11918 F:      include/uapi/linux/in.h
11919 F:      include/uapi/linux/net.h
11920 F:      include/uapi/linux/net_namespace.h
11921 F:      include/uapi/linux/netdevice.h
11922 F:      lib/net_utils.c
11923 F:      lib/random32.c
11924 F:      net/
11925 F:      tools/testing/selftests/net/
11926
11927 NETWORKING [IPSEC]
11928 M:      Steffen Klassert <[email protected]>
11929 M:      Herbert Xu <[email protected]>
11930 M:      "David S. Miller" <[email protected]>
11931 L:      [email protected]
11932 S:      Maintained
11933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11935 F:      include/net/xfrm.h
11936 F:      include/uapi/linux/xfrm.h
11937 F:      net/ipv4/ah4.c
11938 F:      net/ipv4/esp4*
11939 F:      net/ipv4/ip_vti.c
11940 F:      net/ipv4/ipcomp.c
11941 F:      net/ipv4/xfrm*
11942 F:      net/ipv6/ah6.c
11943 F:      net/ipv6/esp6*
11944 F:      net/ipv6/ip6_vti.c
11945 F:      net/ipv6/ipcomp6.c
11946 F:      net/ipv6/xfrm*
11947 F:      net/key/
11948 F:      net/xfrm/
11949
11950 NETWORKING [IPv4/IPv6]
11951 M:      "David S. Miller" <[email protected]>
11952 M:      Alexey Kuznetsov <[email protected]>
11953 M:      Hideaki YOSHIFUJI <[email protected]>
11954 L:      [email protected]
11955 S:      Maintained
11956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11957 F:      arch/x86/net/*
11958 F:      include/net/ip*
11959 F:      net/ipv4/
11960 F:      net/ipv6/
11961
11962 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11963 M:      Paul Moore <[email protected]>
11964 L:      [email protected]
11965 L:      [email protected]
11966 S:      Maintained
11967 W:      https://github.com/netlabel
11968 F:      Documentation/netlabel/
11969 F:      include/net/calipso.h
11970 F:      include/net/cipso_ipv4.h
11971 F:      include/net/netlabel.h
11972 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11973 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11974 F:      net/ipv4/cipso_ipv4.c
11975 F:      net/ipv6/calipso.c
11976 F:      net/netfilter/xt_CONNSECMARK.c
11977 F:      net/netfilter/xt_SECMARK.c
11978 F:      net/netlabel/
11979
11980 NETWORKING [MPTCP]
11981 M:      Mat Martineau <[email protected]>
11982 M:      Matthieu Baerts <[email protected]>
11983 L:      [email protected]
11984 L:      [email protected]
11985 S:      Maintained
11986 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
11987 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
11988 F:      include/net/mptcp.h
11989 F:      include/uapi/linux/mptcp.h
11990 F:      net/mptcp/
11991 F:      tools/testing/selftests/net/mptcp/
11992
11993 NETWORKING [TCP]
11994 M:      Eric Dumazet <[email protected]>
11995 L:      [email protected]
11996 S:      Maintained
11997 F:      include/linux/tcp.h
11998 F:      include/net/tcp.h
11999 F:      include/trace/events/tcp.h
12000 F:      include/uapi/linux/tcp.h
12001 F:      net/ipv4/syncookies.c
12002 F:      net/ipv4/tcp*.c
12003 F:      net/ipv6/syncookies.c
12004 F:      net/ipv6/tcp*.c
12005
12006 NETWORKING [TLS]
12007 M:      Boris Pismenny <[email protected]>
12008 M:      Aviad Yehezkel <[email protected]>
12009 M:      John Fastabend <[email protected]>
12010 M:      Daniel Borkmann <[email protected]>
12011 M:      Jakub Kicinski <[email protected]>
12012 L:      [email protected]
12013 S:      Maintained
12014 F:      include/net/tls.h
12015 F:      include/uapi/linux/tls.h
12016 F:      net/tls/*
12017
12018 NETWORKING [WIRELESS]
12019 L:      [email protected]
12020 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12021
12022 NETXEN (1/10) GbE SUPPORT
12023 M:      Manish Chopra <[email protected]>
12024 M:      Rahul Verma <[email protected]>
12025 M:      [email protected]
12026 L:      [email protected]
12027 S:      Supported
12028 F:      drivers/net/ethernet/qlogic/netxen/
12029
12030 NET_FAILOVER MODULE
12031 M:      Sridhar Samudrala <[email protected]>
12032 L:      [email protected]
12033 S:      Supported
12034 F:      Documentation/networking/net_failover.rst
12035 F:      drivers/net/net_failover.c
12036 F:      include/net/net_failover.h
12037
12038 NEXTHOP
12039 M:      David Ahern <[email protected]>
12040 L:      [email protected]
12041 S:      Maintained
12042 F:      include/net/netns/nexthop.h
12043 F:      include/net/nexthop.h
12044 F:      include/uapi/linux/nexthop.h
12045 F:      net/ipv4/nexthop.c
12046
12047 NFC SUBSYSTEM
12048 L:      [email protected]
12049 S:      Orphan
12050 F:      Documentation/devicetree/bindings/net/nfc/
12051 F:      drivers/nfc/
12052 F:      include/linux/platform_data/nfcmrvl.h
12053 F:      include/net/nfc/
12054 F:      include/uapi/linux/nfc.h
12055 F:      net/nfc/
12056
12057 NFS, SUNRPC, AND LOCKD CLIENTS
12058 M:      Trond Myklebust <[email protected]>
12059 M:      Anna Schumaker <[email protected]>
12060 L:      [email protected]
12061 S:      Maintained
12062 W:      http://client.linux-nfs.org
12063 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12064 F:      fs/lockd/
12065 F:      fs/nfs/
12066 F:      fs/nfs_common/
12067 F:      include/linux/lockd/
12068 F:      include/linux/nfs*
12069 F:      include/linux/sunrpc/
12070 F:      include/uapi/linux/nfs*
12071 F:      include/uapi/linux/sunrpc/
12072 F:      net/sunrpc/
12073
12074 NILFS2 FILESYSTEM
12075 M:      Ryusuke Konishi <[email protected]>
12076 L:      [email protected]
12077 S:      Supported
12078 W:      https://nilfs.sourceforge.io/
12079 W:      https://nilfs.osdn.jp/
12080 T:      git git://github.com/konis/nilfs2.git
12081 F:      Documentation/filesystems/nilfs2.rst
12082 F:      fs/nilfs2/
12083 F:      include/trace/events/nilfs2.h
12084 F:      include/uapi/linux/nilfs2_api.h
12085 F:      include/uapi/linux/nilfs2_ondisk.h
12086
12087 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12088 M:      YOKOTA Hiroshi <[email protected]>
12089 S:      Maintained
12090 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12091 F:      Documentation/scsi/NinjaSCSI.rst
12092 F:      drivers/scsi/pcmcia/nsp_*
12093
12094 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12095 M:      GOTO Masanori <[email protected]>
12096 M:      YOKOTA Hiroshi <[email protected]>
12097 S:      Maintained
12098 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12099 F:      Documentation/scsi/NinjaSCSI.rst
12100 F:      drivers/scsi/nsp32*
12101
12102 NIOS2 ARCHITECTURE
12103 M:      Ley Foon Tan <[email protected]>
12104 S:      Maintained
12105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12106 F:      arch/nios2/
12107
12108 NOHZ, DYNTICKS SUPPORT
12109 M:      Frederic Weisbecker <[email protected]>
12110 M:      Thomas Gleixner <[email protected]>
12111 M:      Ingo Molnar <[email protected]>
12112 L:      [email protected]
12113 S:      Maintained
12114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12115 F:      include/linux/sched/nohz.h
12116 F:      include/linux/tick.h
12117 F:      kernel/time/tick*.*
12118
12119 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12120 M:      Pavel Machek <[email protected]>
12121 M:      Sakari Ailus <[email protected]>
12122 L:      [email protected]
12123 S:      Maintained
12124 F:      drivers/media/i2c/ad5820.c
12125 F:      drivers/media/i2c/et8ek8
12126
12127 NOKIA N900 POWER SUPPLY DRIVERS
12128 R:      Pali Rohár <[email protected]>
12129 F:      drivers/power/supply/bq2415x_charger.c
12130 F:      drivers/power/supply/bq27xxx_battery.c
12131 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12132 F:      drivers/power/supply/isp1704_charger.c
12133 F:      drivers/power/supply/rx51_battery.c
12134 F:      include/linux/power/bq2415x_charger.h
12135 F:      include/linux/power/bq27xxx_battery.h
12136
12137 NOLIBC HEADER FILE
12138 M:      Willy Tarreau <[email protected]>
12139 S:      Maintained
12140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12141 F:      tools/include/nolibc/
12142
12143 NSDEPS
12144 M:      Matthias Maennich <[email protected]>
12145 S:      Maintained
12146 F:      Documentation/core-api/symbol-namespaces.rst
12147 F:      scripts/nsdeps
12148
12149 NTB AMD DRIVER
12150 M:      Sanjay R Mehta <[email protected]>
12151 M:      Shyam Sundar S K <[email protected]>
12152 L:      [email protected]
12153 S:      Supported
12154 F:      drivers/ntb/hw/amd/
12155
12156 NTB DRIVER CORE
12157 M:      Jon Mason <[email protected]>
12158 M:      Dave Jiang <[email protected]>
12159 M:      Allen Hubbe <[email protected]>
12160 L:      [email protected]
12161 S:      Supported
12162 W:      https://github.com/jonmason/ntb/wiki
12163 T:      git git://github.com/jonmason/ntb.git
12164 F:      drivers/net/ntb_netdev.c
12165 F:      drivers/ntb/
12166 F:      include/linux/ntb.h
12167 F:      include/linux/ntb_transport.h
12168 F:      tools/testing/selftests/ntb/
12169
12170 NTB IDT DRIVER
12171 M:      Serge Semin <[email protected]>
12172 L:      [email protected]
12173 S:      Supported
12174 F:      drivers/ntb/hw/idt/
12175
12176 NTB INTEL DRIVER
12177 M:      Dave Jiang <[email protected]>
12178 L:      [email protected]
12179 S:      Supported
12180 W:      https://github.com/davejiang/linux/wiki
12181 T:      git https://github.com/davejiang/linux.git
12182 F:      drivers/ntb/hw/intel/
12183
12184 NTFS FILESYSTEM
12185 M:      Anton Altaparmakov <[email protected]>
12186 L:      [email protected]
12187 S:      Supported
12188 W:      http://www.tuxera.com/
12189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12190 F:      Documentation/filesystems/ntfs.rst
12191 F:      fs/ntfs/
12192
12193 NUBUS SUBSYSTEM
12194 M:      Finn Thain <[email protected]>
12195 L:      [email protected]
12196 S:      Maintained
12197 F:      arch/*/include/asm/nubus.h
12198 F:      drivers/nubus/
12199 F:      include/linux/nubus.h
12200 F:      include/uapi/linux/nubus.h
12201
12202 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12203 M:      Antonino Daplas <[email protected]>
12204 L:      [email protected]
12205 S:      Maintained
12206 F:      drivers/video/fbdev/nvidia/
12207 F:      drivers/video/fbdev/riva/
12208
12209 NVM EXPRESS DRIVER
12210 M:      Keith Busch <[email protected]>
12211 M:      Jens Axboe <[email protected]>
12212 M:      Christoph Hellwig <[email protected]>
12213 M:      Sagi Grimberg <[email protected]>
12214 L:      [email protected]
12215 S:      Supported
12216 W:      http://git.infradead.org/nvme.git
12217 T:      git://git.infradead.org/nvme.git
12218 F:      drivers/nvme/host/
12219 F:      include/linux/nvme.h
12220 F:      include/uapi/linux/nvme_ioctl.h
12221
12222 NVM EXPRESS FC TRANSPORT DRIVERS
12223 M:      James Smart <[email protected]>
12224 L:      [email protected]
12225 S:      Supported
12226 F:      drivers/nvme/host/fc.c
12227 F:      drivers/nvme/target/fc.c
12228 F:      drivers/nvme/target/fcloop.c
12229 F:      include/linux/nvme-fc-driver.h
12230 F:      include/linux/nvme-fc.h
12231
12232 NVM EXPRESS TARGET DRIVER
12233 M:      Christoph Hellwig <[email protected]>
12234 M:      Sagi Grimberg <[email protected]>
12235 M:      Chaitanya Kulkarni <[email protected]>
12236 L:      [email protected]
12237 S:      Supported
12238 W:      http://git.infradead.org/nvme.git
12239 T:      git://git.infradead.org/nvme.git
12240 F:      drivers/nvme/target/
12241
12242 NVMEM FRAMEWORK
12243 M:      Srinivas Kandagatla <[email protected]>
12244 S:      Maintained
12245 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12246 F:      Documentation/devicetree/bindings/nvmem/
12247 F:      drivers/nvmem/
12248 F:      include/linux/nvmem-consumer.h
12249 F:      include/linux/nvmem-provider.h
12250
12251 NXP FSPI DRIVER
12252 M:      Ashish Kumar <[email protected]>
12253 R:      Yogesh Gaur <[email protected]>
12254 L:      [email protected]
12255 S:      Maintained
12256 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12257 F:      drivers/spi/spi-nxp-fspi.c
12258
12259 NXP FXAS21002C DRIVER
12260 M:      Rui Miguel Silva <[email protected]>
12261 L:      [email protected]
12262 S:      Maintained
12263 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12264 F:      drivers/iio/gyro/fxas21002c.h
12265 F:      drivers/iio/gyro/fxas21002c_core.c
12266 F:      drivers/iio/gyro/fxas21002c_i2c.c
12267 F:      drivers/iio/gyro/fxas21002c_spi.c
12268
12269 NXP SGTL5000 DRIVER
12270 M:      Fabio Estevam <[email protected]>
12271 L:      [email protected] (moderated for non-subscribers)
12272 S:      Maintained
12273 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
12274 F:      sound/soc/codecs/sgtl5000*
12275
12276 NXP SJA1105 ETHERNET SWITCH DRIVER
12277 M:      Vladimir Oltean <[email protected]>
12278 L:      [email protected]
12279 S:      Maintained
12280 F:      drivers/net/dsa/sja1105
12281
12282 NXP TDA998X DRM DRIVER
12283 M:      Russell King <[email protected]>
12284 S:      Maintained
12285 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12286 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12287 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12288 F:      include/drm/i2c/tda998x.h
12289 F:      include/dt-bindings/display/tda998x.h
12290 K:      "nxp,tda998x"
12291
12292 NXP TFA9879 DRIVER
12293 M:      Peter Rosin <[email protected]>
12294 L:      [email protected] (moderated for non-subscribers)
12295 S:      Maintained
12296 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12297 F:      sound/soc/codecs/tfa9879*
12298
12299 NXP-NCI NFC DRIVER
12300 M:      Clément Perrochaud <[email protected]>
12301 R:      Charles Gorand <[email protected]>
12302 L:      [email protected] (moderated for non-subscribers)
12303 S:      Supported
12304 F:      drivers/nfc/nxp-nci
12305
12306 OBJAGG
12307 M:      Jiri Pirko <[email protected]>
12308 L:      [email protected]
12309 S:      Supported
12310 F:      include/linux/objagg.h
12311 F:      lib/objagg.c
12312 F:      lib/test_objagg.c
12313
12314 OBJTOOL
12315 M:      Josh Poimboeuf <[email protected]>
12316 M:      Peter Zijlstra <[email protected]>
12317 S:      Supported
12318 F:      tools/objtool/
12319
12320 OCELOT ETHERNET SWITCH DRIVER
12321 M:      Microchip Linux Driver Support <[email protected]>
12322 M:      Vladimir Oltean <[email protected]>
12323 M:      Claudiu Manoil <[email protected]>
12324 M:      Alexandre Belloni <[email protected]>
12325 L:      [email protected]
12326 S:      Supported
12327 F:      drivers/net/dsa/ocelot/*
12328 F:      drivers/net/ethernet/mscc/
12329 F:      include/soc/mscc/ocelot*
12330 F:      net/dsa/tag_ocelot.c
12331
12332 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12333 M:      Frederic Barrat <[email protected]>
12334 M:      Andrew Donnellan <[email protected]>
12335 L:      [email protected]
12336 S:      Supported
12337 F:      Documentation/userspace-api/accelerators/ocxl.rst
12338 F:      arch/powerpc/include/asm/pnv-ocxl.h
12339 F:      arch/powerpc/platforms/powernv/ocxl.c
12340 F:      drivers/misc/ocxl/
12341 F:      include/misc/ocxl*
12342 F:      include/uapi/misc/ocxl.h
12343
12344 OMAP AUDIO SUPPORT
12345 M:      Peter Ujfalusi <[email protected]>
12346 M:      Jarkko Nikula <[email protected]>
12347 L:      [email protected] (moderated for non-subscribers)
12348 L:      [email protected]
12349 S:      Maintained
12350 F:      sound/soc/ti/n810.c
12351 F:      sound/soc/ti/omap*
12352 F:      sound/soc/ti/rx51.c
12353 F:      sound/soc/ti/sdma-pcm.*
12354
12355 OMAP CLOCK FRAMEWORK SUPPORT
12356 M:      Paul Walmsley <[email protected]>
12357 L:      [email protected]
12358 S:      Maintained
12359 F:      arch/arm/*omap*/*clock*
12360
12361 OMAP DEVICE TREE SUPPORT
12362 M:      Benoît Cousson <[email protected]>
12363 M:      Tony Lindgren <[email protected]>
12364 L:      [email protected]
12365 L:      [email protected]
12366 S:      Maintained
12367 F:      arch/arm/boot/dts/*am3*
12368 F:      arch/arm/boot/dts/*am4*
12369 F:      arch/arm/boot/dts/*am5*
12370 F:      arch/arm/boot/dts/*dra7*
12371 F:      arch/arm/boot/dts/*omap*
12372 F:      arch/arm/boot/dts/logicpd-som-lv*
12373 F:      arch/arm/boot/dts/logicpd-torpedo*
12374
12375 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12376 L:      [email protected]
12377 L:      [email protected]
12378 S:      Orphan
12379 F:      Documentation/arm/omap/dss.rst
12380 F:      drivers/video/fbdev/omap2/
12381
12382 OMAP FRAMEBUFFER SUPPORT
12383 L:      [email protected]
12384 L:      [email protected]
12385 S:      Orphan
12386 F:      drivers/video/fbdev/omap/
12387
12388 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12389 M:      Roger Quadros <[email protected]>
12390 M:      Tony Lindgren <[email protected]>
12391 L:      [email protected]
12392 S:      Maintained
12393 F:      arch/arm/mach-omap2/*gpmc*
12394 F:      drivers/memory/omap-gpmc.c
12395
12396 OMAP GPIO DRIVER
12397 M:      Grygorii Strashko <[email protected]>
12398 M:      Santosh Shilimkar <[email protected]>
12399 M:      Kevin Hilman <[email protected]>
12400 L:      [email protected]
12401 S:      Maintained
12402 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12403 F:      drivers/gpio/gpio-omap.c
12404
12405 OMAP HARDWARE SPINLOCK SUPPORT
12406 M:      Ohad Ben-Cohen <[email protected]>
12407 L:      [email protected]
12408 S:      Maintained
12409 F:      drivers/hwspinlock/omap_hwspinlock.c
12410
12411 OMAP HS MMC SUPPORT
12412 L:      [email protected]
12413 L:      [email protected]
12414 S:      Orphan
12415 F:      drivers/mmc/host/omap_hsmmc.c
12416
12417 OMAP HWMOD DATA
12418 M:      Paul Walmsley <[email protected]>
12419 L:      [email protected]
12420 S:      Maintained
12421 F:      arch/arm/mach-omap2/omap_hwmod*data*
12422
12423 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12424 M:      Benoît Cousson <[email protected]>
12425 L:      [email protected]
12426 S:      Maintained
12427 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12428
12429 OMAP HWMOD SUPPORT
12430 M:      Benoît Cousson <[email protected]>
12431 M:      Paul Walmsley <[email protected]>
12432 L:      [email protected]
12433 S:      Maintained
12434 F:      arch/arm/mach-omap2/omap_hwmod.*
12435
12436 OMAP I2C DRIVER
12437 M:      Vignesh R <[email protected]>
12438 L:      [email protected]
12439 L:      [email protected]
12440 S:      Maintained
12441 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12442 F:      drivers/i2c/busses/i2c-omap.c
12443
12444 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12445 M:      Laurent Pinchart <[email protected]>
12446 L:      [email protected]
12447 S:      Maintained
12448 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12449 F:      drivers/media/platform/omap3isp/
12450 F:      drivers/staging/media/omap4iss/
12451
12452 OMAP MMC SUPPORT
12453 M:      Aaro Koskinen <[email protected]>
12454 L:      [email protected]
12455 S:      Odd Fixes
12456 F:      drivers/mmc/host/omap.c
12457
12458 OMAP POWER MANAGEMENT SUPPORT
12459 M:      Kevin Hilman <[email protected]>
12460 L:      [email protected]
12461 S:      Maintained
12462 F:      arch/arm/*omap*/*pm*
12463 F:      drivers/cpufreq/omap-cpufreq.c
12464
12465 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12466 M:      Rajendra Nayak <[email protected]>
12467 M:      Paul Walmsley <[email protected]>
12468 L:      [email protected]
12469 S:      Maintained
12470 F:      arch/arm/mach-omap2/prm*
12471
12472 OMAP RANDOM NUMBER GENERATOR SUPPORT
12473 M:      Deepak Saxena <[email protected]>
12474 S:      Maintained
12475 F:      drivers/char/hw_random/omap-rng.c
12476
12477 OMAP USB SUPPORT
12478 L:      [email protected]
12479 L:      [email protected]
12480 S:      Orphan
12481 F:      arch/arm/*omap*/usb*
12482 F:      drivers/usb/*/*omap*
12483
12484 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12485 M:      Mark Jackson <[email protected]>
12486 L:      [email protected]
12487 S:      Maintained
12488 F:      arch/arm/boot/dts/am335x-nano.dts
12489
12490 OMAP1 SUPPORT
12491 M:      Aaro Koskinen <[email protected]>
12492 M:      Tony Lindgren <[email protected]>
12493 L:      [email protected]
12494 S:      Maintained
12495 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12497 F:      arch/arm/configs/omap1_defconfig
12498 F:      arch/arm/mach-omap1/
12499 F:      arch/arm/plat-omap/
12500 F:      drivers/i2c/busses/i2c-omap.c
12501 F:      include/linux/platform_data/ams-delta-fiq.h
12502 F:      include/linux/platform_data/i2c-omap.h
12503
12504 OMAP2+ SUPPORT
12505 M:      Tony Lindgren <[email protected]>
12506 L:      [email protected]
12507 S:      Maintained
12508 W:      http://www.muru.com/linux/omap/
12509 W:      http://linux.omap.com/
12510 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12512 F:      arch/arm/configs/omap2plus_defconfig
12513 F:      arch/arm/mach-omap2/
12514 F:      arch/arm/plat-omap/
12515 F:      drivers/bus/ti-sysc.c
12516 F:      drivers/i2c/busses/i2c-omap.c
12517 F:      drivers/irqchip/irq-omap-intc.c
12518 F:      drivers/mfd/*omap*.c
12519 F:      drivers/mfd/menelaus.c
12520 F:      drivers/mfd/palmas.c
12521 F:      drivers/mfd/tps65217.c
12522 F:      drivers/mfd/tps65218.c
12523 F:      drivers/mfd/tps65910.c
12524 F:      drivers/mfd/twl-core.[ch]
12525 F:      drivers/mfd/twl4030*.c
12526 F:      drivers/mfd/twl6030*.c
12527 F:      drivers/mfd/twl6040*.c
12528 F:      drivers/regulator/palmas-regulator*.c
12529 F:      drivers/regulator/pbias-regulator.c
12530 F:      drivers/regulator/tps65217-regulator.c
12531 F:      drivers/regulator/tps65218-regulator.c
12532 F:      drivers/regulator/tps65910-regulator.c
12533 F:      drivers/regulator/twl-regulator.c
12534 F:      drivers/regulator/twl6030-regulator.c
12535 F:      include/linux/platform_data/i2c-omap.h
12536 F:      include/linux/platform_data/ti-sysc.h
12537
12538 OMFS FILESYSTEM
12539 M:      Bob Copeland <[email protected]>
12540 L:      [email protected]
12541 S:      Maintained
12542 F:      Documentation/filesystems/omfs.rst
12543 F:      fs/omfs/
12544
12545 OMNIKEY CARDMAN 4000 DRIVER
12546 M:      Harald Welte <[email protected]>
12547 S:      Maintained
12548 F:      drivers/char/pcmcia/cm4000_cs.c
12549 F:      include/linux/cm4000_cs.h
12550 F:      include/uapi/linux/cm4000_cs.h
12551
12552 OMNIKEY CARDMAN 4040 DRIVER
12553 M:      Harald Welte <[email protected]>
12554 S:      Maintained
12555 F:      drivers/char/pcmcia/cm4040_cs.*
12556
12557 OMNIVISION OV13858 SENSOR DRIVER
12558 M:      Sakari Ailus <[email protected]>
12559 L:      [email protected]
12560 S:      Maintained
12561 T:      git git://linuxtv.org/media_tree.git
12562 F:      drivers/media/i2c/ov13858.c
12563
12564 OMNIVISION OV2680 SENSOR DRIVER
12565 M:      Rui Miguel Silva <[email protected]>
12566 L:      [email protected]
12567 S:      Maintained
12568 T:      git git://linuxtv.org/media_tree.git
12569 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12570 F:      drivers/media/i2c/ov2680.c
12571
12572 OMNIVISION OV2685 SENSOR DRIVER
12573 M:      Shunqian Zheng <[email protected]>
12574 L:      [email protected]
12575 S:      Maintained
12576 T:      git git://linuxtv.org/media_tree.git
12577 F:      drivers/media/i2c/ov2685.c
12578
12579 OMNIVISION OV2740 SENSOR DRIVER
12580 M:      Tianshu Qiu <[email protected]>
12581 R:      Shawn Tu <[email protected]>
12582 R:      Bingbu Cao <[email protected]>
12583 L:      [email protected]
12584 S:      Maintained
12585 T:      git git://linuxtv.org/media_tree.git
12586 F:      drivers/media/i2c/ov2740.c
12587
12588 OMNIVISION OV5640 SENSOR DRIVER
12589 M:      Steve Longerbeam <[email protected]>
12590 L:      [email protected]
12591 S:      Maintained
12592 T:      git git://linuxtv.org/media_tree.git
12593 F:      drivers/media/i2c/ov5640.c
12594
12595 OMNIVISION OV5647 SENSOR DRIVER
12596 M:      Luis Oliveira <[email protected]>
12597 L:      [email protected]
12598 S:      Maintained
12599 T:      git git://linuxtv.org/media_tree.git
12600 F:      drivers/media/i2c/ov5647.c
12601
12602 OMNIVISION OV5670 SENSOR DRIVER
12603 M:      Chiranjeevi Rapolu <[email protected]>
12604 M:      Hyungwoo Yang <[email protected]>
12605 L:      [email protected]
12606 S:      Maintained
12607 T:      git git://linuxtv.org/media_tree.git
12608 F:      drivers/media/i2c/ov5670.c
12609
12610 OMNIVISION OV5675 SENSOR DRIVER
12611 M:      Shawn Tu <[email protected]>
12612 L:      [email protected]
12613 S:      Maintained
12614 T:      git git://linuxtv.org/media_tree.git
12615 F:      drivers/media/i2c/ov5675.c
12616
12617 OMNIVISION OV5695 SENSOR DRIVER
12618 M:      Shunqian Zheng <[email protected]>
12619 L:      [email protected]
12620 S:      Maintained
12621 T:      git git://linuxtv.org/media_tree.git
12622 F:      drivers/media/i2c/ov5695.c
12623
12624 OMNIVISION OV7670 SENSOR DRIVER
12625 M:      Jonathan Corbet <[email protected]>
12626 L:      [email protected]
12627 S:      Maintained
12628 T:      git git://linuxtv.org/media_tree.git
12629 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12630 F:      drivers/media/i2c/ov7670.c
12631
12632 OMNIVISION OV772x SENSOR DRIVER
12633 M:      Jacopo Mondi <[email protected]>
12634 L:      [email protected]
12635 S:      Odd fixes
12636 T:      git git://linuxtv.org/media_tree.git
12637 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12638 F:      drivers/media/i2c/ov772x.c
12639 F:      include/media/i2c/ov772x.h
12640
12641 OMNIVISION OV7740 SENSOR DRIVER
12642 M:      Wenyou Yang <[email protected]>
12643 L:      [email protected]
12644 S:      Maintained
12645 T:      git git://linuxtv.org/media_tree.git
12646 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12647 F:      drivers/media/i2c/ov7740.c
12648
12649 OMNIVISION OV8856 SENSOR DRIVER
12650 M:      Dongchun Zhu <[email protected]>
12651 L:      [email protected]
12652 S:      Maintained
12653 T:      git git://linuxtv.org/media_tree.git
12654 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
12655 F:      drivers/media/i2c/ov8856.c
12656
12657 OMNIVISION OV9640 SENSOR DRIVER
12658 M:      Petr Cvek <[email protected]>
12659 L:      [email protected]
12660 S:      Maintained
12661 F:      drivers/media/i2c/ov9640.*
12662
12663 OMNIVISION OV9650 SENSOR DRIVER
12664 M:      Sakari Ailus <[email protected]>
12665 R:      Akinobu Mita <[email protected]>
12666 R:      Sylwester Nawrocki <[email protected]>
12667 L:      [email protected]
12668 S:      Maintained
12669 T:      git git://linuxtv.org/media_tree.git
12670 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12671 F:      drivers/media/i2c/ov9650.c
12672
12673 ONENAND FLASH DRIVER
12674 M:      Kyungmin Park <[email protected]>
12675 L:      [email protected]
12676 S:      Maintained
12677 F:      drivers/mtd/nand/onenand/
12678 F:      include/linux/mtd/onenand*.h
12679
12680 ONION OMEGA2+ BOARD
12681 M:      Harvey Hunt <[email protected]>
12682 L:      [email protected]
12683 S:      Maintained
12684 F:      arch/mips/boot/dts/ralink/omega2p.dts
12685
12686 OP-TEE DRIVER
12687 M:      Jens Wiklander <[email protected]>
12688 L:      [email protected]
12689 S:      Maintained
12690 F:      drivers/tee/optee/
12691
12692 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12693 M:      Sumit Garg <[email protected]>
12694 L:      [email protected]
12695 S:      Maintained
12696 F:      drivers/char/hw_random/optee-rng.c
12697
12698 OPA-VNIC DRIVER
12699 M:      Dennis Dalessandro <[email protected]>
12700 M:      Niranjana Vishwanathapura <[email protected]>
12701 L:      [email protected]
12702 S:      Supported
12703 F:      drivers/infiniband/ulp/opa_vnic
12704
12705 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12706 M:      Pantelis Antoniou <[email protected]>
12707 M:      Frank Rowand <[email protected]>
12708 L:      [email protected]
12709 S:      Maintained
12710 F:      Documentation/devicetree/dynamic-resolution-notes.rst
12711 F:      Documentation/devicetree/overlay-notes.rst
12712 F:      drivers/of/overlay.c
12713 F:      drivers/of/resolver.c
12714 K:      of_overlay_notifier_
12715
12716 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12717 M:      Rob Herring <[email protected]>
12718 M:      Frank Rowand <[email protected]>
12719 L:      [email protected]
12720 S:      Maintained
12721 W:      http://www.devicetree.org/
12722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12723 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12724 F:      drivers/of/
12725 F:      include/linux/of*.h
12726 F:      scripts/dtc/
12727
12728 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12729 M:      Rob Herring <[email protected]>
12730 L:      [email protected]
12731 S:      Maintained
12732 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12734 F:      Documentation/devicetree/
12735 F:      arch/*/boot/dts/
12736 F:      include/dt-bindings/
12737
12738 OPENCORES I2C BUS DRIVER
12739 M:      Peter Korsgaard <[email protected]>
12740 M:      Andrew Lunn <[email protected]>
12741 L:      [email protected]
12742 S:      Maintained
12743 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12744 F:      Documentation/i2c/busses/i2c-ocores.rst
12745 F:      drivers/i2c/busses/i2c-ocores.c
12746 F:      include/linux/platform_data/i2c-ocores.h
12747
12748 OPENRISC ARCHITECTURE
12749 M:      Jonas Bonn <[email protected]>
12750 M:      Stefan Kristiansson <[email protected]>
12751 M:      Stafford Horne <[email protected]>
12752 L:      [email protected]
12753 S:      Maintained
12754 W:      http://openrisc.io
12755 T:      git git://github.com/openrisc/linux.git
12756 F:      Documentation/devicetree/bindings/openrisc/
12757 F:      Documentation/openrisc/
12758 F:      arch/openrisc/
12759 F:      drivers/irqchip/irq-ompic.c
12760 F:      drivers/irqchip/irq-or1k-*
12761
12762 OPENVSWITCH
12763 M:      Pravin B Shelar <[email protected]>
12764 L:      [email protected]
12765 L:      [email protected]
12766 S:      Maintained
12767 W:      http://openvswitch.org
12768 F:      include/uapi/linux/openvswitch.h
12769 F:      net/openvswitch/
12770
12771 OPERATING PERFORMANCE POINTS (OPP)
12772 M:      Viresh Kumar <[email protected]>
12773 M:      Nishanth Menon <[email protected]>
12774 M:      Stephen Boyd <[email protected]>
12775 L:      [email protected]
12776 S:      Maintained
12777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12778 F:      Documentation/devicetree/bindings/opp/
12779 F:      Documentation/power/opp.rst
12780 F:      drivers/opp/
12781 F:      include/linux/pm_opp.h
12782
12783 OPL4 DRIVER
12784 M:      Clemens Ladisch <[email protected]>
12785 L:      [email protected] (moderated for non-subscribers)
12786 S:      Maintained
12787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12788 F:      sound/drivers/opl4/
12789
12790 OPROFILE
12791 M:      Robert Richter <[email protected]>
12792 L:      [email protected]
12793 S:      Maintained
12794 F:      arch/*/include/asm/oprofile*.h
12795 F:      arch/*/oprofile/
12796 F:      drivers/oprofile/
12797 F:      include/linux/oprofile.h
12798
12799 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12800 M:      Mark Fasheh <[email protected]>
12801 M:      Joel Becker <[email protected]>
12802 M:      Joseph Qi <[email protected]>
12803 L:      [email protected] (moderated for non-subscribers)
12804 S:      Supported
12805 W:      http://ocfs2.wiki.kernel.org
12806 F:      Documentation/filesystems/dlmfs.rst
12807 F:      Documentation/filesystems/ocfs2.rst
12808 F:      fs/ocfs2/
12809
12810 ORANGEFS FILESYSTEM
12811 M:      Mike Marshall <[email protected]>
12812 R:      Martin Brandenburg <[email protected]>
12813 L:      [email protected]
12814 S:      Supported
12815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12816 F:      Documentation/filesystems/orangefs.rst
12817 F:      fs/orangefs/
12818
12819 ORINOCO DRIVER
12820 L:      [email protected]
12821 S:      Orphan
12822 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
12823 W:      http://www.nongnu.org/orinoco/
12824 F:      drivers/net/wireless/intersil/orinoco/
12825
12826 OV2659 OMNIVISION SENSOR DRIVER
12827 M:      "Lad, Prabhakar" <[email protected]>
12828 L:      [email protected]
12829 S:      Maintained
12830 W:      https://linuxtv.org
12831 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12832 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12833 F:      drivers/media/i2c/ov2659.c
12834 F:      include/media/i2c/ov2659.h
12835
12836 OVERLAY FILESYSTEM
12837 M:      Miklos Szeredi <[email protected]>
12838 L:      [email protected]
12839 S:      Supported
12840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12841 F:      Documentation/filesystems/overlayfs.rst
12842 F:      fs/overlayfs/
12843
12844 P54 WIRELESS DRIVER
12845 M:      Christian Lamparter <[email protected]>
12846 L:      [email protected]
12847 S:      Maintained
12848 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
12849 F:      drivers/net/wireless/intersil/p54/
12850
12851 PACKING
12852 M:      Vladimir Oltean <[email protected]>
12853 L:      [email protected]
12854 S:      Supported
12855 F:      Documentation/core-api/packing.rst
12856 F:      include/linux/packing.h
12857 F:      lib/packing.c
12858
12859 PADATA PARALLEL EXECUTION MECHANISM
12860 M:      Steffen Klassert <[email protected]>
12861 L:      [email protected]
12862 S:      Maintained
12863 F:      Documentation/core-api/padata.rst
12864 F:      include/linux/padata.h
12865 F:      kernel/padata.c
12866
12867 PAGE POOL
12868 M:      Jesper Dangaard Brouer <[email protected]>
12869 M:      Ilias Apalodimas <[email protected]>
12870 L:      [email protected]
12871 S:      Supported
12872 F:      include/net/page_pool.h
12873 F:      net/core/page_pool.c
12874
12875 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12876 M:      Harald Welte <[email protected]>
12877 L:      [email protected]
12878 S:      Maintained
12879 F:      drivers/platform/x86/panasonic-laptop.c
12880
12881 PARALLAX PING IIO SENSOR DRIVER
12882 M:      Andreas Klinger <[email protected]>
12883 L:      [email protected]
12884 S:      Maintained
12885 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
12886 F:      drivers/iio/proximity/ping.c
12887
12888 PARALLEL LCD/KEYPAD PANEL DRIVER
12889 M:      Willy Tarreau <[email protected]>
12890 M:      Ksenija Stanojevic <[email protected]>
12891 S:      Odd Fixes
12892 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12893 F:      drivers/auxdisplay/panel.c
12894
12895 PARALLEL PORT SUBSYSTEM
12896 M:      Sudip Mukherjee <[email protected]>
12897 M:      Sudip Mukherjee <[email protected]>
12898 L:      [email protected] (subscribers-only)
12899 S:      Maintained
12900 F:      Documentation/driver-api/parport*.rst
12901 F:      drivers/char/ppdev.c
12902 F:      drivers/parport/
12903 F:      include/linux/parport*.h
12904 F:      include/uapi/linux/ppdev.h
12905
12906 PARAVIRT_OPS INTERFACE
12907 M:      Juergen Gross <[email protected]>
12908 M:      Deep Shah <[email protected]>
12909 M:      "VMware, Inc." <[email protected]>
12910 L:      [email protected]
12911 S:      Supported
12912 F:      Documentation/virt/paravirt_ops.rst
12913 F:      arch/*/include/asm/paravirt*.h
12914 F:      arch/*/kernel/paravirt*
12915 F:      include/linux/hypervisor.h
12916
12917 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12918 M:      Tim Waugh <[email protected]>
12919 L:      [email protected] (subscribers-only)
12920 S:      Maintained
12921 F:      Documentation/admin-guide/blockdev/paride.rst
12922 F:      drivers/block/paride/
12923
12924 PARISC ARCHITECTURE
12925 M:      "James E.J. Bottomley" <[email protected]>
12926 M:      Helge Deller <[email protected]>
12927 L:      [email protected]
12928 S:      Maintained
12929 W:      https://parisc.wiki.kernel.org
12930 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12933 F:      Documentation/parisc/
12934 F:      arch/parisc/
12935 F:      drivers/char/agp/parisc-agp.c
12936 F:      drivers/input/misc/hp_sdc_rtc.c
12937 F:      drivers/input/serio/gscps2.c
12938 F:      drivers/input/serio/hp_sdc*
12939 F:      drivers/parisc/
12940 F:      drivers/parport/parport_gsc.*
12941 F:      drivers/tty/serial/8250/8250_gsc.c
12942 F:      drivers/video/console/sti*
12943 F:      drivers/video/fbdev/sti*
12944 F:      drivers/video/logo/logo_parisc*
12945 F:      include/linux/hp_sdc.h
12946
12947 PARMAN
12948 M:      Jiri Pirko <[email protected]>
12949 L:      [email protected]
12950 S:      Supported
12951 F:      include/linux/parman.h
12952 F:      lib/parman.c
12953 F:      lib/test_parman.c
12954
12955 PC ENGINES APU BOARD DRIVER
12956 M:      Enrico Weigelt, metux IT consult <[email protected]>
12957 S:      Maintained
12958 F:      drivers/platform/x86/pcengines-apuv2.c
12959
12960 PC87360 HARDWARE MONITORING DRIVER
12961 M:      Jim Cromie <[email protected]>
12962 L:      [email protected]
12963 S:      Maintained
12964 F:      Documentation/hwmon/pc87360.rst
12965 F:      drivers/hwmon/pc87360.c
12966
12967 PC8736x GPIO DRIVER
12968 M:      Jim Cromie <[email protected]>
12969 S:      Maintained
12970 F:      drivers/char/pc8736x_gpio.c
12971
12972 PC87427 HARDWARE MONITORING DRIVER
12973 M:      Jean Delvare <[email protected]>
12974 L:      [email protected]
12975 S:      Maintained
12976 F:      Documentation/hwmon/pc87427.rst
12977 F:      drivers/hwmon/pc87427.c
12978
12979 PCA9532 LED DRIVER
12980 M:      Riku Voipio <[email protected]>
12981 S:      Maintained
12982 F:      drivers/leds/leds-pca9532.c
12983 F:      include/linux/leds-pca9532.h
12984
12985 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12986 M:      Guenter Roeck <[email protected]>
12987 L:      [email protected]
12988 S:      Maintained
12989 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12990
12991 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12992 M:      Khalid Aziz <[email protected]>
12993 S:      Maintained
12994 F:      drivers/firmware/pcdp.*
12995
12996 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12997 M:      Thomas Petazzoni <[email protected]>
12998 L:      [email protected]
12999 L:      [email protected] (moderated for non-subscribers)
13000 S:      Maintained
13001 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13002 F:      drivers/pci/controller/pci-aardvark.c
13003
13004 PCI DRIVER FOR ALTERA PCIE IP
13005 M:      Ley Foon Tan <[email protected]>
13006 L:      [email protected] (moderated for non-subscribers)
13007 L:      [email protected]
13008 S:      Supported
13009 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13010 F:      drivers/pci/controller/pcie-altera.c
13011
13012 PCI DRIVER FOR APPLIEDMICRO XGENE
13013 M:      Toan Le <[email protected]>
13014 L:      [email protected]
13015 L:      [email protected]
13016 S:      Maintained
13017 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13018 F:      drivers/pci/controller/pci-xgene.c
13019
13020 PCI DRIVER FOR ARM VERSATILE PLATFORM
13021 M:      Rob Herring <[email protected]>
13022 L:      [email protected]
13023 L:      [email protected]
13024 S:      Maintained
13025 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13026 F:      drivers/pci/controller/pci-versatile.c
13027
13028 PCI DRIVER FOR ARMADA 8K
13029 M:      Thomas Petazzoni <[email protected]>
13030 L:      [email protected]
13031 L:      [email protected]
13032 S:      Maintained
13033 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13034 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13035
13036 PCI DRIVER FOR CADENCE PCIE IP
13037 M:      Tom Joseph <[email protected]>
13038 L:      [email protected]
13039 S:      Maintained
13040 F:      Documentation/devicetree/bindings/pci/cdns,*
13041 F:      drivers/pci/controller/cadence/
13042
13043 PCI DRIVER FOR FREESCALE LAYERSCAPE
13044 M:      Minghuan Lian <[email protected]>
13045 M:      Mingkai Hu <[email protected]>
13046 M:      Roy Zang <[email protected]>
13047 L:      [email protected]
13048 L:      [email protected]
13049 L:      [email protected]
13050 S:      Maintained
13051 F:      drivers/pci/controller/dwc/*layerscape*
13052
13053 PCI DRIVER FOR GENERIC OF HOSTS
13054 M:      Will Deacon <[email protected]>
13055 L:      [email protected]
13056 L:      [email protected] (moderated for non-subscribers)
13057 S:      Maintained
13058 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13059 F:      drivers/pci/controller/pci-host-common.c
13060 F:      drivers/pci/controller/pci-host-generic.c
13061
13062 PCI DRIVER FOR IMX6
13063 M:      Richard Zhu <[email protected]>
13064 M:      Lucas Stach <[email protected]>
13065 L:      [email protected]
13066 L:      [email protected] (moderated for non-subscribers)
13067 S:      Maintained
13068 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13069 F:      drivers/pci/controller/dwc/*imx6*
13070
13071 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13072 M:      Jonathan Derrick <[email protected]>
13073 L:      [email protected]
13074 S:      Supported
13075 F:      drivers/pci/controller/vmd.c
13076
13077 PCI DRIVER FOR MICROSEMI SWITCHTEC
13078 M:      Kurt Schwemmer <[email protected]>
13079 M:      Logan Gunthorpe <[email protected]>
13080 L:      [email protected]
13081 S:      Maintained
13082 F:      Documentation/ABI/testing/sysfs-class-switchtec
13083 F:      Documentation/driver-api/switchtec.rst
13084 F:      drivers/ntb/hw/mscc/
13085 F:      drivers/pci/switch/switchtec*
13086 F:      include/linux/switchtec.h
13087 F:      include/uapi/linux/switchtec_ioctl.h
13088
13089 PCI DRIVER FOR MOBIVEIL PCIE IP
13090 M:      Karthikeyan Mitran <[email protected]>
13091 M:      Hou Zhiqiang <[email protected]>
13092 L:      [email protected]
13093 S:      Supported
13094 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13095 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13096
13097 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13098 M:      Thomas Petazzoni <[email protected]>
13099 M:      Jason Cooper <[email protected]>
13100 L:      [email protected]
13101 L:      [email protected] (moderated for non-subscribers)
13102 S:      Maintained
13103 F:      drivers/pci/controller/*mvebu*
13104
13105 PCI DRIVER FOR NVIDIA TEGRA
13106 M:      Thierry Reding <[email protected]>
13107 L:      [email protected]
13108 L:      [email protected]
13109 S:      Supported
13110 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13111 F:      drivers/pci/controller/pci-tegra.c
13112
13113 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13114 M:      Hou Zhiqiang <[email protected]>
13115 L:      [email protected]
13116 L:      [email protected]
13117 S:      Maintained
13118 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13119 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13120
13121 PCI DRIVER FOR RENESAS R-CAR
13122 M:      Marek Vasut <[email protected]>
13123 M:      Yoshihiro Shimoda <[email protected]>
13124 L:      [email protected]
13125 L:      [email protected]
13126 S:      Maintained
13127 F:      Documentation/devicetree/bindings/pci/*rcar*
13128 F:      drivers/pci/controller/*rcar*
13129
13130 PCI DRIVER FOR SAMSUNG EXYNOS
13131 M:      Jingoo Han <[email protected]>
13132 L:      [email protected]
13133 L:      [email protected] (moderated for non-subscribers)
13134 L:      [email protected] (moderated for non-subscribers)
13135 S:      Maintained
13136 F:      drivers/pci/controller/dwc/pci-exynos.c
13137
13138 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13139 M:      Jingoo Han <[email protected]>
13140 M:      Gustavo Pimentel <[email protected]>
13141 L:      [email protected]
13142 S:      Maintained
13143 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13144 F:      drivers/pci/controller/dwc/*designware*
13145
13146 PCI DRIVER FOR TI DRA7XX
13147 M:      Kishon Vijay Abraham I <[email protected]>
13148 L:      [email protected]
13149 L:      [email protected]
13150 S:      Supported
13151 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13152 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13153
13154 PCI DRIVER FOR TI KEYSTONE
13155 M:      Murali Karicheri <[email protected]>
13156 L:      [email protected]
13157 L:      [email protected] (moderated for non-subscribers)
13158 S:      Maintained
13159 F:      drivers/pci/controller/dwc/pci-keystone.c
13160
13161 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13162 M:      Linus Walleij <[email protected]>
13163 L:      [email protected]
13164 S:      Maintained
13165 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13166 F:      drivers/pci/controller/pci-v3-semi.c
13167
13168 PCI ENDPOINT SUBSYSTEM
13169 M:      Kishon Vijay Abraham I <[email protected]>
13170 M:      Lorenzo Pieralisi <[email protected]>
13171 L:      [email protected]
13172 S:      Supported
13173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13174 F:      drivers/misc/pci_endpoint_test.c
13175 F:      drivers/pci/endpoint/
13176 F:      tools/pci/
13177
13178 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13179 M:      Russell Currey <[email protected]>
13180 M:      Sam Bobroff <[email protected]>
13181 M:      Oliver O'Halloran <[email protected]>
13182 L:      [email protected]
13183 S:      Supported
13184 F:      Documentation/PCI/pci-error-recovery.rst
13185 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13186 F:      arch/powerpc/include/*/eeh*.h
13187 F:      arch/powerpc/kernel/eeh*.c
13188 F:      arch/powerpc/platforms/*/eeh*.c
13189 F:      drivers/pci/pcie/aer.c
13190 F:      drivers/pci/pcie/dpc.c
13191 F:      drivers/pci/pcie/err.c
13192
13193 PCI ERROR RECOVERY
13194 M:      Linas Vepstas <[email protected]>
13195 L:      [email protected]
13196 S:      Supported
13197 F:      Documentation/PCI/pci-error-recovery.rst
13198
13199 PCI MSI DRIVER FOR ALTERA MSI IP
13200 M:      Ley Foon Tan <[email protected]>
13201 L:      [email protected] (moderated for non-subscribers)
13202 L:      [email protected]
13203 S:      Supported
13204 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13205 F:      drivers/pci/controller/pcie-altera-msi.c
13206
13207 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13208 M:      Toan Le <[email protected]>
13209 L:      [email protected]
13210 L:      [email protected]
13211 S:      Maintained
13212 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13213 F:      drivers/pci/controller/pci-xgene-msi.c
13214
13215 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13216 M:      Lorenzo Pieralisi <[email protected]>
13217 R:      Rob Herring <[email protected]>
13218 L:      [email protected]
13219 S:      Supported
13220 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13222 F:      drivers/pci/controller/
13223
13224 PCI SUBSYSTEM
13225 M:      Bjorn Helgaas <[email protected]>
13226 L:      [email protected]
13227 S:      Supported
13228 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13230 F:      Documentation/PCI/
13231 F:      Documentation/devicetree/bindings/pci/
13232 F:      arch/x86/kernel/early-quirks.c
13233 F:      arch/x86/kernel/quirks.c
13234 F:      arch/x86/pci/
13235 F:      drivers/acpi/pci*
13236 F:      drivers/pci/
13237 F:      include/asm-generic/pci*
13238 F:      include/linux/of_pci.h
13239 F:      include/linux/pci*
13240 F:      include/uapi/linux/pci*
13241 F:      lib/pci*
13242
13243 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13244 M:      Jonathan Chocron <[email protected]>
13245 L:      [email protected]
13246 S:      Maintained
13247 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13248 F:      drivers/pci/controller/dwc/pcie-al.c
13249
13250 PCIE DRIVER FOR AMLOGIC MESON
13251 M:      Yue Wang <[email protected]>
13252 L:      [email protected]
13253 L:      [email protected]
13254 S:      Maintained
13255 F:      drivers/pci/controller/dwc/pci-meson.c
13256
13257 PCIE DRIVER FOR AXIS ARTPEC
13258 M:      Jesper Nilsson <[email protected]>
13259 L:      [email protected]
13260 L:      [email protected]
13261 S:      Maintained
13262 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13263 F:      drivers/pci/controller/dwc/*artpec*
13264
13265 PCIE DRIVER FOR CAVIUM THUNDERX
13266 M:      Robert Richter <[email protected]>
13267 L:      [email protected]
13268 L:      [email protected] (moderated for non-subscribers)
13269 S:      Supported
13270 F:      drivers/pci/controller/pci-thunder-*
13271
13272 PCIE DRIVER FOR HISILICON
13273 M:      Zhou Wang <[email protected]>
13274 L:      [email protected]
13275 S:      Maintained
13276 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13277 F:      drivers/pci/controller/dwc/pcie-hisi.c
13278
13279 PCIE DRIVER FOR HISILICON KIRIN
13280 M:      Xiaowei Song <[email protected]>
13281 M:      Binghui Wang <[email protected]>
13282 L:      [email protected]
13283 S:      Maintained
13284 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13285 F:      drivers/pci/controller/dwc/pcie-kirin.c
13286
13287 PCIE DRIVER FOR HISILICON STB
13288 M:      Shawn Guo <[email protected]>
13289 L:      [email protected]
13290 S:      Maintained
13291 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13292 F:      drivers/pci/controller/dwc/pcie-histb.c
13293
13294 PCIE DRIVER FOR MEDIATEK
13295 M:      Ryder Lee <[email protected]>
13296 L:      [email protected]
13297 L:      [email protected]
13298 S:      Supported
13299 F:      Documentation/devicetree/bindings/pci/mediatek*
13300 F:      drivers/pci/controller/*mediatek*
13301
13302 PCIE DRIVER FOR QUALCOMM MSM
13303 M:      Stanimir Varbanov <[email protected]>
13304 L:      [email protected]
13305 L:      [email protected]
13306 S:      Maintained
13307 F:      drivers/pci/controller/dwc/*qcom*
13308
13309 PCIE DRIVER FOR ROCKCHIP
13310 M:      Shawn Lin <[email protected]>
13311 L:      [email protected]
13312 L:      [email protected]
13313 S:      Maintained
13314 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13315 F:      drivers/pci/controller/pcie-rockchip*
13316
13317 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13318 M:      Kunihiko Hayashi <[email protected]>
13319 L:      [email protected]
13320 S:      Maintained
13321 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13322 F:      drivers/pci/controller/dwc/pcie-uniphier*
13323
13324 PCIE DRIVER FOR ST SPEAR13XX
13325 M:      Pratyush Anand <[email protected]>
13326 L:      [email protected]
13327 S:      Maintained
13328 F:      drivers/pci/controller/dwc/*spear*
13329
13330 PCMCIA SUBSYSTEM
13331 M:      Dominik Brodowski <[email protected]>
13332 S:      Odd Fixes
13333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13334 F:      Documentation/pcmcia/
13335 F:      drivers/pcmcia/
13336 F:      include/pcmcia/
13337 F:      tools/pcmcia/
13338
13339 PCNET32 NETWORK DRIVER
13340 M:      Don Fry <[email protected]>
13341 L:      [email protected]
13342 S:      Maintained
13343 F:      drivers/net/ethernet/amd/pcnet32.c
13344
13345 PCRYPT PARALLEL CRYPTO ENGINE
13346 M:      Steffen Klassert <[email protected]>
13347 L:      [email protected]
13348 S:      Maintained
13349 F:      crypto/pcrypt.c
13350 F:      include/crypto/pcrypt.h
13351
13352 PEAQ WMI HOTKEYS DRIVER
13353 M:      Hans de Goede <[email protected]>
13354 L:      [email protected]
13355 S:      Maintained
13356 F:      drivers/platform/x86/peaq-wmi.c
13357
13358 PENSANDO ETHERNET DRIVERS
13359 M:      Shannon Nelson <[email protected]>
13360 M:      Pensando Drivers <[email protected]>
13361 L:      [email protected]
13362 S:      Supported
13363 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
13364 F:      drivers/net/ethernet/pensando/
13365
13366 PER-CPU MEMORY ALLOCATOR
13367 M:      Dennis Zhou <[email protected]>
13368 M:      Tejun Heo <[email protected]>
13369 M:      Christoph Lameter <[email protected]>
13370 S:      Maintained
13371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13372 F:      arch/*/include/asm/percpu.h
13373 F:      include/linux/percpu*.h
13374 F:      mm/percpu*.c
13375
13376 PER-TASK DELAY ACCOUNTING
13377 M:      Balbir Singh <[email protected]>
13378 S:      Maintained
13379 F:      include/linux/delayacct.h
13380 F:      kernel/delayacct.c
13381
13382 PERFORMANCE EVENTS SUBSYSTEM
13383 M:      Peter Zijlstra <[email protected]>
13384 M:      Ingo Molnar <[email protected]>
13385 M:      Arnaldo Carvalho de Melo <[email protected]>
13386 R:      Mark Rutland <[email protected]>
13387 R:      Alexander Shishkin <[email protected]>
13388 R:      Jiri Olsa <[email protected]>
13389 R:      Namhyung Kim <[email protected]>
13390 L:      [email protected]
13391 S:      Supported
13392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13393 F:      arch/*/events/*
13394 F:      arch/*/events/*/*
13395 F:      arch/*/include/asm/perf_event.h
13396 F:      arch/*/kernel/*/*/perf_event*.c
13397 F:      arch/*/kernel/*/perf_event*.c
13398 F:      arch/*/kernel/perf_callchain.c
13399 F:      arch/*/kernel/perf_event*.c
13400 F:      include/linux/perf_event.h
13401 F:      include/uapi/linux/perf_event.h
13402 F:      kernel/events/*
13403 F:      tools/perf/
13404
13405 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13406 R:      John Garry <[email protected]>
13407 R:      Will Deacon <[email protected]>
13408 L:      [email protected] (moderated for non-subscribers)
13409 S:      Supported
13410 F:      tools/perf/pmu-events/arch/arm64/
13411
13412 PERSONALITY HANDLING
13413 M:      Christoph Hellwig <[email protected]>
13414 L:      [email protected]
13415 S:      Maintained
13416 F:      include/linux/personality.h
13417 F:      include/uapi/linux/personality.h
13418
13419 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13420 M:      Marcus Folkesson <[email protected]>
13421 L:      [email protected]
13422 S:      Maintained
13423 F:      Documentation/input/devices/pxrc.rst
13424 F:      drivers/input/joystick/pxrc.c
13425
13426 PHONET PROTOCOL
13427 M:      Remi Denis-Courmont <[email protected]>
13428 S:      Supported
13429 F:      Documentation/networking/phonet.rst
13430 F:      include/linux/phonet.h
13431 F:      include/net/phonet/
13432 F:      include/uapi/linux/phonet.h
13433 F:      net/phonet/
13434
13435 PHRAM MTD DRIVER
13436 M:      Joern Engel <[email protected]>
13437 L:      [email protected]
13438 S:      Maintained
13439 F:      drivers/mtd/devices/phram.c
13440
13441 PICOLCD HID DRIVER
13442 M:      Bruno Prémont <[email protected]>
13443 L:      [email protected]
13444 S:      Maintained
13445 F:      drivers/hid/hid-picolcd*
13446
13447 PICOXCELL SUPPORT
13448 M:      Jamie Iles <[email protected]>
13449 L:      [email protected] (moderated for non-subscribers)
13450 S:      Supported
13451 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13452 F:      arch/arm/boot/dts/picoxcell*
13453 F:      arch/arm/mach-picoxcell/
13454 F:      drivers/crypto/picoxcell*
13455
13456 PIDFD API
13457 M:      Christian Brauner <[email protected]>
13458 L:      [email protected]
13459 S:      Maintained
13460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13461 F:      samples/pidfd/
13462 F:      tools/testing/selftests/clone3/
13463 F:      tools/testing/selftests/pid_namespace/
13464 F:      tools/testing/selftests/pidfd/
13465 K:      (?i)pidfd
13466 K:      (?i)clone3
13467 K:      \b(clone_args|kernel_clone_args)\b
13468
13469 PIN CONTROL SUBSYSTEM
13470 M:      Linus Walleij <[email protected]>
13471 L:      [email protected]
13472 S:      Maintained
13473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13474 F:      Documentation/devicetree/bindings/pinctrl/
13475 F:      Documentation/driver-api/pinctl.rst
13476 F:      drivers/pinctrl/
13477 F:      include/linux/pinctrl/
13478
13479 PIN CONTROLLER - FREESCALE
13480 M:      Dong Aisheng <[email protected]>
13481 M:      Fabio Estevam <[email protected]>
13482 M:      Shawn Guo <[email protected]>
13483 M:      Stefan Agner <[email protected]>
13484 R:      Pengutronix Kernel Team <[email protected]>
13485 L:      [email protected]
13486 S:      Maintained
13487 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13488 F:      drivers/pinctrl/freescale/
13489
13490 PIN CONTROLLER - INTEL
13491 M:      Mika Westerberg <[email protected]>
13492 M:      Andy Shevchenko <[email protected]>
13493 S:      Maintained
13494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13495 F:      drivers/pinctrl/intel/
13496
13497 PIN CONTROLLER - MEDIATEK
13498 M:      Sean Wang <[email protected]>
13499 L:      [email protected] (moderated for non-subscribers)
13500 S:      Maintained
13501 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13502 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13503 F:      drivers/pinctrl/mediatek/
13504
13505 PIN CONTROLLER - MICROCHIP AT91
13506 M:      Ludovic Desroches <[email protected]>
13507 L:      [email protected] (moderated for non-subscribers)
13508 L:      [email protected]
13509 S:      Supported
13510 F:      drivers/gpio/gpio-sama5d2-piobu.c
13511 F:      drivers/pinctrl/pinctrl-at91*
13512
13513 PIN CONTROLLER - QUALCOMM
13514 M:      Bjorn Andersson <[email protected]>
13515 L:      [email protected]
13516 S:      Maintained
13517 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13518 F:      drivers/pinctrl/qcom/
13519
13520 PIN CONTROLLER - RENESAS
13521 M:      Geert Uytterhoeven <[email protected]>
13522 L:      [email protected]
13523 S:      Supported
13524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13525 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
13526 F:      drivers/pinctrl/pinctrl-rz*
13527 F:      drivers/pinctrl/sh-pfc/
13528
13529 PIN CONTROLLER - SAMSUNG
13530 M:      Tomasz Figa <[email protected]>
13531 M:      Krzysztof Kozlowski <[email protected]>
13532 M:      Sylwester Nawrocki <[email protected]>
13533 L:      [email protected] (moderated for non-subscribers)
13534 L:      [email protected] (moderated for non-subscribers)
13535 S:      Maintained
13536 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13538 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13539 F:      drivers/pinctrl/samsung/
13540 F:      include/dt-bindings/pinctrl/samsung.h
13541
13542 PIN CONTROLLER - SINGLE
13543 M:      Tony Lindgren <[email protected]>
13544 M:      Haojian Zhuang <[email protected]>
13545 L:      [email protected] (moderated for non-subscribers)
13546 L:      [email protected]
13547 S:      Maintained
13548 F:      drivers/pinctrl/pinctrl-single.c
13549
13550 PIN CONTROLLER - ST SPEAR
13551 M:      Viresh Kumar <[email protected]>
13552 L:      [email protected] (moderated for non-subscribers)
13553 S:      Maintained
13554 W:      http://www.st.com/spear
13555 F:      drivers/pinctrl/spear/
13556
13557 PISTACHIO SOC SUPPORT
13558 M:      James Hartley <[email protected]>
13559 L:      [email protected]
13560 S:      Odd Fixes
13561 F:      arch/mips/boot/dts/img/pistachio*
13562 F:      arch/mips/configs/pistachio*_defconfig
13563 F:      arch/mips/include/asm/mach-pistachio/
13564 F:      arch/mips/pistachio/
13565
13566 PKTCDVD DRIVER
13567 M:      [email protected]
13568 S:      Orphan
13569 F:      drivers/block/pktcdvd.c
13570 F:      include/linux/pktcdvd.h
13571 F:      include/uapi/linux/pktcdvd.h
13572
13573 PKUNITY SOC DRIVERS
13574 M:      Guan Xuetao <[email protected]>
13575 S:      Maintained
13576 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13577 T:      git git://github.com/gxt/linux.git
13578 F:      drivers/i2c/busses/i2c-puv3.c
13579 F:      drivers/input/serio/i8042-unicore32io.h
13580 F:      drivers/rtc/rtc-puv3.c
13581 F:      drivers/video/fbdev/fb-puv3.c
13582
13583 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13584 M:      Tomasz Duszynski <[email protected]>
13585 S:      Maintained
13586 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13587 F:      drivers/iio/chemical/pms7003.c
13588
13589 PLX DMA DRIVER
13590 M:      Logan Gunthorpe <[email protected]>
13591 S:      Maintained
13592 F:      drivers/dma/plx_dma.c
13593
13594 PM-GRAPH UTILITY
13595 M:      "Todd E Brandt" <[email protected]>
13596 L:      [email protected]
13597 S:      Supported
13598 W:      https://01.org/pm-graph
13599 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13600 T:      git git://github.com/intel/pm-graph
13601 F:      tools/power/pm-graph
13602
13603 PMBUS HARDWARE MONITORING DRIVERS
13604 M:      Guenter Roeck <[email protected]>
13605 L:      [email protected]
13606 S:      Maintained
13607 W:      http://hwmon.wiki.kernel.org/
13608 W:      http://www.roeck-us.net/linux/drivers/
13609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13610 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13611 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13612 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13613 F:      Documentation/hwmon/adm1275.rst
13614 F:      Documentation/hwmon/ibm-cffps.rst
13615 F:      Documentation/hwmon/ir35221.rst
13616 F:      Documentation/hwmon/lm25066.rst
13617 F:      Documentation/hwmon/ltc2978.rst
13618 F:      Documentation/hwmon/ltc3815.rst
13619 F:      Documentation/hwmon/max16064.rst
13620 F:      Documentation/hwmon/max20751.rst
13621 F:      Documentation/hwmon/max31785.rst
13622 F:      Documentation/hwmon/max34440.rst
13623 F:      Documentation/hwmon/max8688.rst
13624 F:      Documentation/hwmon/pmbus-core.rst
13625 F:      Documentation/hwmon/pmbus.rst
13626 F:      Documentation/hwmon/tps40422.rst
13627 F:      Documentation/hwmon/ucd9000.rst
13628 F:      Documentation/hwmon/ucd9200.rst
13629 F:      Documentation/hwmon/zl6100.rst
13630 F:      drivers/hwmon/pmbus/
13631 F:      include/linux/pmbus.h
13632
13633 PMC SIERRA MaxRAID DRIVER
13634 L:      [email protected]
13635 S:      Orphan
13636 W:      http://www.pmc-sierra.com/
13637 F:      drivers/scsi/pmcraid.*
13638
13639 PMC SIERRA PM8001 DRIVER
13640 M:      Jack Wang <[email protected]>
13641 L:      [email protected]
13642 S:      Supported
13643 F:      drivers/scsi/pm8001/
13644
13645 PNI RM3100 IIO DRIVER
13646 M:      Song Qiang <[email protected]>
13647 L:      [email protected]
13648 S:      Maintained
13649 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13650 F:      drivers/iio/magnetometer/rm3100*
13651
13652 PNP SUPPORT
13653 M:      "Rafael J. Wysocki" <[email protected]>
13654 L:      [email protected]
13655 S:      Maintained
13656 F:      drivers/pnp/
13657 F:      include/linux/pnp.h
13658
13659 POSIX CLOCKS and TIMERS
13660 M:      Thomas Gleixner <[email protected]>
13661 L:      [email protected]
13662 S:      Maintained
13663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13664 F:      fs/timerfd.c
13665 F:      include/linux/time_namespace.h
13666 F:      include/linux/timer*
13667 F:      kernel/time/*timer*
13668 F:      kernel/time/namespace.c
13669
13670 POWER MANAGEMENT CORE
13671 M:      "Rafael J. Wysocki" <[email protected]>
13672 L:      [email protected]
13673 S:      Supported
13674 B:      https://bugzilla.kernel.org
13675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13676 F:      drivers/base/power/
13677 F:      drivers/powercap/
13678 F:      include/linux/intel_rapl.h
13679 F:      include/linux/pm.h
13680 F:      include/linux/pm_*
13681 F:      include/linux/powercap.h
13682 F:      kernel/configs/nopm.config
13683
13684 POWER STATE COORDINATION INTERFACE (PSCI)
13685 M:      Mark Rutland <[email protected]>
13686 M:      Lorenzo Pieralisi <[email protected]>
13687 L:      [email protected]
13688 S:      Maintained
13689 F:      drivers/firmware/psci/
13690 F:      include/linux/psci.h
13691 F:      include/uapi/linux/psci.h
13692
13693 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13694 M:      Sebastian Reichel <[email protected]>
13695 L:      [email protected]
13696 S:      Maintained
13697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13698 F:      Documentation/ABI/testing/sysfs-class-power
13699 F:      Documentation/devicetree/bindings/power/supply/
13700 F:      drivers/power/supply/
13701 F:      include/linux/power_supply.h
13702
13703 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13704 M:      Suraj Jitindar Singh <[email protected]>
13705 L:      [email protected]
13706 S:      Maintained
13707 F:      drivers/char/powernv-op-panel.c
13708
13709 PPP OVER ATM (RFC 2364)
13710 M:      Mitchell Blank Jr <[email protected]>
13711 S:      Maintained
13712 F:      include/uapi/linux/atmppp.h
13713 F:      net/atm/pppoatm.c
13714
13715 PPP OVER ETHERNET
13716 M:      Michal Ostrowski <[email protected]>
13717 S:      Maintained
13718 F:      drivers/net/ppp/pppoe.c
13719 F:      drivers/net/ppp/pppox.c
13720
13721 PPP OVER L2TP
13722 M:      James Chapman <[email protected]>
13723 S:      Maintained
13724 F:      include/linux/if_pppol2tp.h
13725 F:      include/uapi/linux/if_pppol2tp.h
13726 F:      net/l2tp/l2tp_ppp.c
13727
13728 PPP PROTOCOL DRIVERS AND COMPRESSORS
13729 M:      Paul Mackerras <[email protected]>
13730 L:      [email protected]
13731 S:      Maintained
13732 F:      drivers/net/ppp/ppp_*
13733
13734 PPS SUPPORT
13735 M:      Rodolfo Giometti <[email protected]>
13736 L:      [email protected] (subscribers-only)
13737 S:      Maintained
13738 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13739 F:      Documentation/ABI/testing/sysfs-pps
13740 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13741 F:      Documentation/driver-api/pps.rst
13742 F:      drivers/pps/
13743 F:      include/linux/pps*.h
13744 F:      include/uapi/linux/pps.h
13745
13746 PPTP DRIVER
13747 M:      Dmitry Kozlov <[email protected]>
13748 L:      [email protected]
13749 S:      Maintained
13750 W:      http://sourceforge.net/projects/accel-pptp
13751 F:      drivers/net/ppp/pptp.c
13752
13753 PRESSURE STALL INFORMATION (PSI)
13754 M:      Johannes Weiner <[email protected]>
13755 S:      Maintained
13756 F:      include/linux/psi*
13757 F:      kernel/sched/psi.c
13758
13759 PRINTK
13760 M:      Petr Mladek <[email protected]>
13761 M:      Sergey Senozhatsky <[email protected]>
13762 R:      Steven Rostedt <[email protected]>
13763 S:      Maintained
13764 F:      include/linux/printk.h
13765 F:      kernel/printk/
13766
13767 PRISM54 WIRELESS DRIVER
13768 M:      Luis Chamberlain <[email protected]>
13769 L:      [email protected]
13770 S:      Obsolete
13771 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13772 F:      drivers/net/wireless/intersil/prism54/
13773
13774 PROC FILESYSTEM
13775 R:      Alexey Dobriyan <[email protected]>
13776 L:      [email protected]
13777 L:      [email protected]
13778 S:      Maintained
13779 F:      Documentation/filesystems/proc.rst
13780 F:      fs/proc/
13781 F:      include/linux/proc_fs.h
13782 F:      tools/testing/selftests/proc/
13783
13784 PROC SYSCTL
13785 M:      Luis Chamberlain <[email protected]>
13786 M:      Kees Cook <[email protected]>
13787 M:      Iurii Zaikin <[email protected]>
13788 L:      [email protected]
13789 L:      [email protected]
13790 S:      Maintained
13791 F:      fs/proc/proc_sysctl.c
13792 F:      include/linux/sysctl.h
13793 F:      kernel/sysctl-test.c
13794 F:      kernel/sysctl.c
13795 F:      tools/testing/selftests/sysctl/
13796
13797 PS3 NETWORK SUPPORT
13798 M:      Geoff Levand <[email protected]>
13799 L:      [email protected]
13800 L:      [email protected]
13801 S:      Maintained
13802 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13803
13804 PS3 PLATFORM SUPPORT
13805 M:      Geoff Levand <[email protected]>
13806 L:      [email protected]
13807 S:      Maintained
13808 F:      arch/powerpc/boot/ps3*
13809 F:      arch/powerpc/include/asm/lv1call.h
13810 F:      arch/powerpc/include/asm/ps3*.h
13811 F:      arch/powerpc/platforms/ps3/
13812 F:      drivers/*/ps3*
13813 F:      drivers/ps3/
13814 F:      drivers/rtc/rtc-ps3.c
13815 F:      drivers/usb/host/*ps3.c
13816 F:      sound/ppc/snd_ps3*
13817
13818 PS3VRAM DRIVER
13819 M:      Jim Paris <[email protected]>
13820 M:      Geoff Levand <[email protected]>
13821 L:      [email protected]
13822 S:      Maintained
13823 F:      drivers/block/ps3vram.c
13824
13825 PSAMPLE PACKET SAMPLING SUPPORT
13826 M:      Yotam Gigi <[email protected]>
13827 S:      Maintained
13828 F:      include/net/psample.h
13829 F:      include/uapi/linux/psample.h
13830 F:      net/psample
13831
13832 PSTORE FILESYSTEM
13833 M:      Kees Cook <[email protected]>
13834 M:      Anton Vorontsov <[email protected]>
13835 M:      Colin Cross <[email protected]>
13836 M:      Tony Luck <[email protected]>
13837 S:      Maintained
13838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13839 F:      Documentation/admin-guide/ramoops.rst
13840 F:      Documentation/admin-guide/pstore-blk.rst
13841 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13842 F:      drivers/acpi/apei/erst.c
13843 F:      drivers/firmware/efi/efi-pstore.c
13844 F:      fs/pstore/
13845 F:      include/linux/pstore*
13846 K:      \b(pstore|ramoops)
13847
13848 PTP HARDWARE CLOCK SUPPORT
13849 M:      Richard Cochran <[email protected]>
13850 L:      [email protected]
13851 S:      Maintained
13852 W:      http://linuxptp.sourceforge.net/
13853 F:      Documentation/ABI/testing/sysfs-ptp
13854 F:      Documentation/driver-api/ptp.rst
13855 F:      drivers/net/phy/dp83640*
13856 F:      drivers/ptp/*
13857 F:      include/linux/ptp_cl*
13858
13859 PTRACE SUPPORT
13860 M:      Oleg Nesterov <[email protected]>
13861 S:      Maintained
13862 F:      arch/*/*/ptrace*.c
13863 F:      arch/*/include/asm/ptrace*.h
13864 F:      arch/*/ptrace*.c
13865 F:      include/asm-generic/syscall.h
13866 F:      include/linux/ptrace.h
13867 F:      include/linux/regset.h
13868 F:      include/linux/tracehook.h
13869 F:      include/uapi/linux/ptrace.h
13870 F:      include/uapi/linux/ptrace.h
13871 F:      kernel/ptrace.c
13872
13873 PULSE8-CEC DRIVER
13874 M:      Hans Verkuil <[email protected]>
13875 L:      [email protected]
13876 S:      Maintained
13877 T:      git git://linuxtv.org/media_tree.git
13878 F:      Documentation/admin-guide/media/pulse8-cec.rst
13879 F:      drivers/media/cec/usb/pulse8/
13880
13881 PVRUSB2 VIDEO4LINUX DRIVER
13882 M:      Mike Isely <[email protected]>
13883 L:      [email protected]       (subscribers-only)
13884 L:      [email protected]
13885 S:      Maintained
13886 W:      http://www.isely.net/pvrusb2/
13887 T:      git git://linuxtv.org/media_tree.git
13888 F:      Documentation/driver-api/media/drivers/pvrusb2*
13889 F:      drivers/media/usb/pvrusb2/
13890
13891 PWC WEBCAM DRIVER
13892 M:      Hans Verkuil <[email protected]>
13893 L:      [email protected]
13894 S:      Odd Fixes
13895 T:      git git://linuxtv.org/media_tree.git
13896 F:      drivers/media/usb/pwc/*
13897 F:      include/trace/events/pwc.h
13898
13899 PWM FAN DRIVER
13900 M:      Kamil Debski <[email protected]>
13901 M:      Bartlomiej Zolnierkiewicz <[email protected]>
13902 L:      [email protected]
13903 S:      Supported
13904 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13905 F:      Documentation/hwmon/pwm-fan.rst
13906 F:      drivers/hwmon/pwm-fan.c
13907
13908 PWM IR Transmitter
13909 M:      Sean Young <[email protected]>
13910 L:      [email protected]
13911 S:      Maintained
13912 F:      drivers/media/rc/pwm-ir-tx.c
13913
13914 PWM SUBSYSTEM
13915 M:      Thierry Reding <[email protected]>
13916 R:      Uwe Kleine-König <[email protected]>
13917 M:      Lee Jones <[email protected]>
13918 L:      [email protected]
13919 S:      Maintained
13920 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13922 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13923 F:      Documentation/devicetree/bindings/pwm/
13924 F:      Documentation/driver-api/pwm.rst
13925 F:      drivers/gpio/gpio-mvebu.c
13926 F:      drivers/pwm/
13927 F:      drivers/video/backlight/pwm_bl.c
13928 F:      include/linux/pwm.h
13929 F:      include/linux/pwm_backlight.h
13930 K:      pwm_(config|apply_state|ops)
13931
13932 PXA GPIO DRIVER
13933 M:      Robert Jarzmik <[email protected]>
13934 L:      [email protected]
13935 S:      Maintained
13936 F:      drivers/gpio/gpio-pxa.c
13937
13938 PXA MMCI DRIVER
13939 S:      Orphan
13940
13941 PXA RTC DRIVER
13942 M:      Robert Jarzmik <[email protected]>
13943 L:      [email protected]
13944 S:      Maintained
13945
13946 PXA2xx/PXA3xx SUPPORT
13947 M:      Daniel Mack <[email protected]>
13948 M:      Haojian Zhuang <[email protected]>
13949 M:      Robert Jarzmik <[email protected]>
13950 L:      [email protected] (moderated for non-subscribers)
13951 S:      Maintained
13952 T:      git git://github.com/hzhuang1/linux.git
13953 T:      git git://github.com/rjarzmik/linux.git
13954 F:      arch/arm/boot/dts/pxa*
13955 F:      arch/arm/mach-pxa/
13956 F:      drivers/dma/pxa*
13957 F:      drivers/pcmcia/pxa2xx*
13958 F:      drivers/pinctrl/pxa/
13959 F:      drivers/spi/spi-pxa2xx*
13960 F:      drivers/usb/gadget/udc/pxa2*
13961 F:      include/sound/pxa2xx-lib.h
13962 F:      sound/arm/pxa*
13963 F:      sound/soc/pxa/
13964
13965 QAT DRIVER
13966 M:      Giovanni Cabiddu <[email protected]>
13967 L:      [email protected]
13968 S:      Supported
13969 F:      drivers/crypto/qat/
13970
13971 QCOM AUDIO (ASoC) DRIVERS
13972 M:      Patrick Lai <[email protected]>
13973 M:      Banajit Goswami <[email protected]>
13974 L:      [email protected] (moderated for non-subscribers)
13975 S:      Supported
13976 F:      sound/soc/qcom/
13977
13978 QCOM IPA DRIVER
13979 M:      Alex Elder <[email protected]>
13980 L:      [email protected]
13981 S:      Supported
13982 F:      drivers/net/ipa/
13983
13984 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13985 M:      Gabriel Somlo <[email protected]>
13986 M:      "Michael S. Tsirkin" <[email protected]>
13987 L:      [email protected]
13988 S:      Maintained
13989 F:      drivers/firmware/qemu_fw_cfg.c
13990 F:      include/uapi/linux/qemu_fw_cfg.h
13991
13992 QIB DRIVER
13993 M:      Dennis Dalessandro <[email protected]>
13994 M:      Mike Marciniszyn <[email protected]>
13995 L:      [email protected]
13996 S:      Supported
13997 F:      drivers/infiniband/hw/qib/
13998
13999 QLOGIC QL41xxx FCOE DRIVER
14000 M:      [email protected]
14001 L:      [email protected]
14002 S:      Supported
14003 F:      drivers/scsi/qedf/
14004
14005 QLOGIC QL41xxx ISCSI DRIVER
14006 M:      [email protected]
14007 L:      [email protected]
14008 S:      Supported
14009 F:      drivers/scsi/qedi/
14010
14011 QLOGIC QL4xxx ETHERNET DRIVER
14012 M:      Ariel Elior <[email protected]>
14013 M:      [email protected]
14014 L:      [email protected]
14015 S:      Supported
14016 F:      drivers/net/ethernet/qlogic/qed/
14017 F:      drivers/net/ethernet/qlogic/qede/
14018 F:      include/linux/qed/
14019
14020 QLOGIC QL4xxx RDMA DRIVER
14021 M:      Michal Kalderon <[email protected]>
14022 M:      Ariel Elior <[email protected]>
14023 L:      [email protected]
14024 S:      Supported
14025 F:      drivers/infiniband/hw/qedr/
14026 F:      include/uapi/rdma/qedr-abi.h
14027
14028 QLOGIC QLA1280 SCSI DRIVER
14029 M:      Michael Reed <[email protected]>
14030 L:      [email protected]
14031 S:      Maintained
14032 F:      drivers/scsi/qla1280.[ch]
14033
14034 QLOGIC QLA2XXX FC-SCSI DRIVER
14035 M:      Nilesh Javali <[email protected]>
14036 M:      [email protected]
14037 L:      [email protected]
14038 S:      Supported
14039 F:      Documentation/scsi/LICENSE.qla2xxx
14040 F:      drivers/scsi/qla2xxx/
14041
14042 QLOGIC QLA3XXX NETWORK DRIVER
14043 M:      [email protected]
14044 L:      [email protected]
14045 S:      Supported
14046 F:      Documentation/networking/device_drivers/ethernet/qlogic/LICENSE.qla3xxx
14047 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14048
14049 QLOGIC QLA4XXX iSCSI DRIVER
14050 M:      [email protected]
14051 L:      [email protected]
14052 S:      Supported
14053 F:      Documentation/scsi/LICENSE.qla4xxx
14054 F:      drivers/scsi/qla4xxx/
14055
14056 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14057 M:      Shahed Shaikh <[email protected]>
14058 M:      Manish Chopra <[email protected]>
14059 M:      [email protected]
14060 L:      [email protected]
14061 S:      Supported
14062 F:      drivers/net/ethernet/qlogic/qlcnic/
14063
14064 QLOGIC QLGE 10Gb ETHERNET DRIVER
14065 M:      Manish Chopra <[email protected]>
14066 M:      [email protected]
14067 L:      [email protected]
14068 S:      Supported
14069 F:      drivers/staging/qlge/
14070
14071 QM1D1B0004 MEDIA DRIVER
14072 M:      Akihiro Tsukada <[email protected]>
14073 L:      [email protected]
14074 S:      Odd Fixes
14075 F:      drivers/media/tuners/qm1d1b0004*
14076
14077 QM1D1C0042 MEDIA DRIVER
14078 M:      Akihiro Tsukada <[email protected]>
14079 L:      [email protected]
14080 S:      Odd Fixes
14081 F:      drivers/media/tuners/qm1d1c0042*
14082
14083 QNX4 FILESYSTEM
14084 M:      Anders Larsen <[email protected]>
14085 S:      Maintained
14086 W:      http://www.alarsen.net/linux/qnx4fs/
14087 F:      fs/qnx4/
14088 F:      include/uapi/linux/qnx4_fs.h
14089 F:      include/uapi/linux/qnxtypes.h
14090
14091 QORIQ DPAA2 FSL-MC BUS DRIVER
14092 M:      Stuart Yoder <[email protected]>
14093 M:      Laurentiu Tudor <[email protected]>
14094 L:      [email protected]
14095 S:      Maintained
14096 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14097 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
14098 F:      drivers/bus/fsl-mc/
14099
14100 QT1010 MEDIA DRIVER
14101 M:      Antti Palosaari <[email protected]>
14102 L:      [email protected]
14103 S:      Maintained
14104 W:      https://linuxtv.org
14105 W:      http://palosaari.fi/linux/
14106 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14107 T:      git git://linuxtv.org/anttip/media_tree.git
14108 F:      drivers/media/tuners/qt1010*
14109
14110 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14111 M:      Kalle Valo <[email protected]>
14112 L:      [email protected]
14113 S:      Supported
14114 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14116 F:      drivers/net/wireless/ath/ath10k/
14117
14118 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14119 M:      Kalle Valo <[email protected]>
14120 L:      [email protected]
14121 S:      Supported
14122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14123 F:      drivers/net/wireless/ath/ath11k/
14124
14125 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14126 M:      QCA ath9k Development <[email protected]>
14127 L:      [email protected]
14128 S:      Supported
14129 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14130 F:      drivers/net/wireless/ath/ath9k/
14131
14132 QUALCOMM CAMERA SUBSYSTEM DRIVER
14133 M:      Todor Tomov <[email protected]>
14134 L:      [email protected]
14135 S:      Maintained
14136 F:      Documentation/admin-guide/media/qcom_camss.rst
14137 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14138 F:      drivers/media/platform/qcom/camss/
14139
14140 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14141 M:      Niklas Cassel <[email protected]>
14142 L:      [email protected]
14143 L:      [email protected]
14144 S:      Maintained
14145 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14146 F:      drivers/power/avs/qcom-cpr.c
14147
14148 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14149 M:      Ilia Lin <[email protected]>
14150 L:      [email protected]
14151 S:      Maintained
14152 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14153 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14154
14155 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14156 M:      Timur Tabi <[email protected]>
14157 L:      [email protected]
14158 S:      Maintained
14159 F:      drivers/net/ethernet/qualcomm/emac/
14160
14161 QUALCOMM ETHQOS ETHERNET DRIVER
14162 M:      Vinod Koul <[email protected]>
14163 L:      [email protected]
14164 S:      Maintained
14165 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14166 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14167
14168 QUALCOMM GENERIC INTERFACE I2C DRIVER
14169 M:      Alok Chauhan <[email protected]>
14170 L:      [email protected]
14171 L:      [email protected]
14172 S:      Supported
14173 F:      drivers/i2c/busses/i2c-qcom-geni.c
14174
14175 QUALCOMM HEXAGON ARCHITECTURE
14176 M:      Brian Cain <[email protected]>
14177 L:      [email protected]
14178 S:      Supported
14179 F:      arch/hexagon/
14180
14181 QUALCOMM HIDMA DRIVER
14182 M:      Sinan Kaya <[email protected]>
14183 L:      [email protected]
14184 L:      [email protected]
14185 L:      [email protected]
14186 S:      Supported
14187 F:      drivers/dma/qcom/hidma*
14188
14189 QUALCOMM I2C CCI DRIVER
14190 M:      Loic Poulain <[email protected]>
14191 M:      Robert Foss <[email protected]>
14192 L:      [email protected]
14193 L:      [email protected]
14194 S:      Maintained
14195 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14196 F:      drivers/i2c/busses/i2c-qcom-cci.c
14197
14198 QUALCOMM IOMMU
14199 M:      Rob Clark <[email protected]>
14200 L:      [email protected]
14201 L:      [email protected]
14202 S:      Maintained
14203 F:      drivers/iommu/qcom_iommu.c
14204
14205 QUALCOMM IPCC MAILBOX DRIVER
14206 M:      Manivannan Sadhasivam <[email protected]>
14207 L:      [email protected]
14208 S:      Supported
14209 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14210 F:      drivers/mailbox/qcom-ipcc.c
14211 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14212
14213 QUALCOMM RMNET DRIVER
14214 M:      Subash Abhinov Kasiviswanathan <[email protected]>
14215 M:      Sean Tranchetti <[email protected]>
14216 L:      [email protected]
14217 S:      Maintained
14218 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
14219 F:      drivers/net/ethernet/qualcomm/rmnet/
14220 F:      include/linux/if_rmnet.h
14221
14222 QUALCOMM TSENS THERMAL DRIVER
14223 M:      Amit Kucheria <[email protected]>
14224 L:      [email protected]
14225 L:      [email protected]
14226 S:      Maintained
14227 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14228 F:      drivers/thermal/qcom/
14229
14230 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14231 M:      Stanimir Varbanov <[email protected]>
14232 L:      [email protected]
14233 L:      [email protected]
14234 S:      Maintained
14235 T:      git git://linuxtv.org/media_tree.git
14236 F:      Documentation/devicetree/bindings/media/*venus*
14237 F:      drivers/media/platform/qcom/venus/
14238
14239 QUALCOMM WCN36XX WIRELESS DRIVER
14240 M:      Kalle Valo <[email protected]>
14241 L:      [email protected]
14242 S:      Supported
14243 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14244 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14245 F:      drivers/net/wireless/ath/wcn36xx/
14246
14247 QUANTENNA QTNFMAC WIRELESS DRIVER
14248 M:      Igor Mitsyanko <[email protected]>
14249 R:      Sergey Matyukevich <[email protected]>
14250 L:      [email protected]
14251 S:      Maintained
14252 F:      drivers/net/wireless/quantenna
14253
14254 RADEON and AMDGPU DRM DRIVERS
14255 M:      Alex Deucher <[email protected]>
14256 M:      Christian König <[email protected]>
14257 L:      [email protected]
14258 S:      Supported
14259 T:      git git://people.freedesktop.org/~agd5f/linux
14260 F:      drivers/gpu/drm/amd/
14261 F:      drivers/gpu/drm/radeon/
14262 F:      include/uapi/drm/amdgpu_drm.h
14263 F:      include/uapi/drm/radeon_drm.h
14264
14265 RADEON FRAMEBUFFER DISPLAY DRIVER
14266 M:      Benjamin Herrenschmidt <[email protected]>
14267 L:      [email protected]
14268 S:      Maintained
14269 F:      drivers/video/fbdev/aty/radeon*
14270 F:      include/uapi/linux/radeonfb.h
14271
14272 RADIOSHARK RADIO DRIVER
14273 M:      Hans Verkuil <[email protected]>
14274 L:      [email protected]
14275 S:      Maintained
14276 T:      git git://linuxtv.org/media_tree.git
14277 F:      drivers/media/radio/radio-shark.c
14278
14279 RADIOSHARK2 RADIO DRIVER
14280 M:      Hans Verkuil <[email protected]>
14281 L:      [email protected]
14282 S:      Maintained
14283 T:      git git://linuxtv.org/media_tree.git
14284 F:      drivers/media/radio/radio-shark2.c
14285 F:      drivers/media/radio/radio-tea5777.c
14286
14287 RADOS BLOCK DEVICE (RBD)
14288 M:      Ilya Dryomov <[email protected]>
14289 R:      Dongsheng Yang <[email protected]>
14290 L:      [email protected]
14291 S:      Supported
14292 W:      http://ceph.com/
14293 T:      git git://github.com/ceph/ceph-client.git
14294 F:      Documentation/ABI/testing/sysfs-bus-rbd
14295 F:      drivers/block/rbd.c
14296 F:      drivers/block/rbd_types.h
14297
14298 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14299 M:      Paul Mackerras <[email protected]>
14300 L:      [email protected]
14301 S:      Maintained
14302 F:      drivers/video/fbdev/aty/aty128fb.c
14303
14304 RAINSHADOW-CEC DRIVER
14305 M:      Hans Verkuil <[email protected]>
14306 L:      [email protected]
14307 S:      Maintained
14308 T:      git git://linuxtv.org/media_tree.git
14309 F:      drivers/media/cec/usb/rainshadow/
14310
14311 RALINK MIPS ARCHITECTURE
14312 M:      John Crispin <[email protected]>
14313 L:      [email protected]
14314 S:      Maintained
14315 F:      arch/mips/ralink
14316
14317 RALINK RT2X00 WIRELESS LAN DRIVER
14318 M:      Stanislaw Gruszka <[email protected]>
14319 M:      Helmut Schaa <[email protected]>
14320 L:      [email protected]
14321 S:      Maintained
14322 F:      drivers/net/wireless/ralink/rt2x00/
14323
14324 RAMDISK RAM BLOCK DEVICE DRIVER
14325 M:      Jens Axboe <[email protected]>
14326 S:      Maintained
14327 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14328 F:      drivers/block/brd.c
14329
14330 RANCHU VIRTUAL BOARD FOR MIPS
14331 M:      Miodrag Dinic <[email protected]>
14332 L:      [email protected]
14333 S:      Supported
14334 F:      arch/mips/configs/generic/board-ranchu.config
14335 F:      arch/mips/generic/board-ranchu.c
14336
14337 RANDOM NUMBER DRIVER
14338 M:      "Theodore Ts'o" <[email protected]>
14339 S:      Maintained
14340 F:      drivers/char/random.c
14341
14342 RAPIDIO SUBSYSTEM
14343 M:      Matt Porter <[email protected]>
14344 M:      Alexandre Bounine <[email protected]>
14345 S:      Maintained
14346 F:      drivers/rapidio/
14347
14348 RAS INFRASTRUCTURE
14349 M:      Tony Luck <[email protected]>
14350 M:      Borislav Petkov <[email protected]>
14351 L:      [email protected]
14352 S:      Maintained
14353 F:      Documentation/admin-guide/ras.rst
14354 F:      drivers/ras/
14355 F:      include/linux/ras.h
14356 F:      include/ras/ras_event.h
14357
14358 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14359 L:      [email protected]
14360 S:      Orphan
14361 F:      drivers/net/wireless/ray*
14362
14363 RCMM REMOTE CONTROLS DECODER
14364 M:      Patrick Lerda <[email protected]>
14365 S:      Maintained
14366 F:      drivers/media/rc/ir-rcmm-decoder.c
14367
14368 RCUTORTURE TEST FRAMEWORK
14369 M:      "Paul E. McKenney" <[email protected]>
14370 M:      Josh Triplett <[email protected]>
14371 R:      Steven Rostedt <[email protected]>
14372 R:      Mathieu Desnoyers <[email protected]>
14373 R:      Lai Jiangshan <[email protected]>
14374 L:      [email protected]
14375 S:      Supported
14376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14377 F:      tools/testing/selftests/rcutorture
14378
14379 RDC R-321X SoC
14380 M:      Florian Fainelli <[email protected]>
14381 S:      Maintained
14382
14383 RDC R6040 FAST ETHERNET DRIVER
14384 M:      Florian Fainelli <[email protected]>
14385 L:      [email protected]
14386 S:      Maintained
14387 F:      drivers/net/ethernet/rdc/r6040.c
14388
14389 RDMAVT - RDMA verbs software
14390 M:      Dennis Dalessandro <[email protected]>
14391 M:      Mike Marciniszyn <[email protected]>
14392 L:      [email protected]
14393 S:      Supported
14394 F:      drivers/infiniband/sw/rdmavt
14395
14396 RDS - RELIABLE DATAGRAM SOCKETS
14397 M:      Santosh Shilimkar <[email protected]>
14398 L:      [email protected]
14399 L:      [email protected]
14400 L:      [email protected] (moderated for non-subscribers)
14401 S:      Supported
14402 W:      https://oss.oracle.com/projects/rds/
14403 F:      Documentation/networking/rds.rst
14404 F:      net/rds/
14405
14406 RDT - RESOURCE ALLOCATION
14407 M:      Fenghua Yu <[email protected]>
14408 M:      Reinette Chatre <[email protected]>
14409 L:      [email protected]
14410 S:      Supported
14411 F:      Documentation/x86/resctrl*
14412 F:      arch/x86/include/asm/resctrl.h
14413 F:      arch/x86/kernel/cpu/resctrl/
14414 F:      tools/testing/selftests/resctrl/
14415
14416 READ-COPY UPDATE (RCU)
14417 M:      "Paul E. McKenney" <[email protected]>
14418 M:      Josh Triplett <[email protected]>
14419 R:      Steven Rostedt <[email protected]>
14420 R:      Mathieu Desnoyers <[email protected]>
14421 R:      Lai Jiangshan <[email protected]>
14422 R:      Joel Fernandes <[email protected]>
14423 L:      [email protected]
14424 S:      Supported
14425 W:      http://www.rdrop.com/users/paulmck/RCU/
14426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14427 F:      Documentation/RCU/
14428 F:      include/linux/rcu*
14429 F:      kernel/rcu/
14430 X:      Documentation/RCU/torture.txt
14431 X:      include/linux/srcu*.h
14432 X:      kernel/rcu/srcu*.c
14433
14434 REAL TIME CLOCK (RTC) SUBSYSTEM
14435 M:      Alessandro Zummo <[email protected]>
14436 M:      Alexandre Belloni <[email protected]>
14437 L:      [email protected]
14438 S:      Maintained
14439 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14441 F:      Documentation/admin-guide/rtc.rst
14442 F:      Documentation/devicetree/bindings/rtc/
14443 F:      drivers/rtc/
14444 F:      include/linux/platform_data/rtc-*
14445 F:      include/linux/rtc.h
14446 F:      include/linux/rtc/
14447 F:      include/uapi/linux/rtc.h
14448 F:      tools/testing/selftests/rtc/
14449
14450 REALTEK AUDIO CODECS
14451 M:      Oder Chiou <[email protected]>
14452 S:      Maintained
14453 F:      include/sound/rt*.h
14454 F:      sound/soc/codecs/rt*
14455
14456 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14457 M:      Linus Walleij <[email protected]>
14458 S:      Maintained
14459 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14460 F:      drivers/net/dsa/realtek-smi*
14461 F:      drivers/net/dsa/rtl83*
14462
14463 REALTEK WIRELESS DRIVER (rtlwifi family)
14464 M:      Ping-Ke Shih <[email protected]>
14465 L:      [email protected]
14466 S:      Maintained
14467 W:      https://wireless.wiki.kernel.org/
14468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14469 F:      drivers/net/wireless/realtek/rtlwifi/
14470
14471 REALTEK WIRELESS DRIVER (rtw88)
14472 M:      Yan-Hsuan Chuang <[email protected]>
14473 L:      [email protected]
14474 S:      Maintained
14475 F:      drivers/net/wireless/realtek/rtw88/
14476
14477 REDPINE WIRELESS DRIVER
14478 M:      Amitkumar Karwar <[email protected]>
14479 M:      Siva Rebbagondla <[email protected]>
14480 L:      [email protected]
14481 S:      Maintained
14482 F:      drivers/net/wireless/rsi/
14483
14484 REGISTER MAP ABSTRACTION
14485 M:      Mark Brown <[email protected]>
14486 L:      [email protected]
14487 S:      Supported
14488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14489 F:      Documentation/devicetree/bindings/regmap/
14490 F:      drivers/base/regmap/
14491 F:      include/linux/regmap.h
14492
14493 REISERFS FILE SYSTEM
14494 L:      [email protected]
14495 S:      Supported
14496 F:      fs/reiserfs/
14497
14498 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14499 M:      Ohad Ben-Cohen <[email protected]>
14500 M:      Bjorn Andersson <[email protected]>
14501 L:      [email protected]
14502 S:      Maintained
14503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14504 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14505 F:      Documentation/devicetree/bindings/remoteproc/
14506 F:      Documentation/remoteproc.txt
14507 F:      drivers/remoteproc/
14508 F:      include/linux/remoteproc.h
14509 F:      include/linux/remoteproc/
14510
14511 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14512 M:      Ohad Ben-Cohen <[email protected]>
14513 M:      Bjorn Andersson <[email protected]>
14514 L:      [email protected]
14515 S:      Maintained
14516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14517 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14518 F:      Documentation/rpmsg.txt
14519 F:      drivers/rpmsg/
14520 F:      include/linux/rpmsg.h
14521 F:      include/linux/rpmsg/
14522 F:      include/uapi/linux/rpmsg.h
14523 F:      samples/rpmsg/
14524
14525 RENESAS CLOCK DRIVERS
14526 M:      Geert Uytterhoeven <[email protected]>
14527 L:      [email protected]
14528 S:      Supported
14529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14530 F:      Documentation/devicetree/bindings/clock/renesas,*
14531 F:      drivers/clk/renesas/
14532
14533 RENESAS EMEV2 I2C DRIVER
14534 M:      Wolfram Sang <[email protected]>
14535 S:      Supported
14536 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14537 F:      drivers/i2c/busses/i2c-emev2.c
14538
14539 RENESAS ETHERNET DRIVERS
14540 R:      Sergei Shtylyov <[email protected]>
14541 L:      [email protected]
14542 L:      [email protected]
14543 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14544 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14545 F:      drivers/net/ethernet/renesas/
14546 F:      include/linux/sh_eth.h
14547
14548 RENESAS R-CAR GYROADC DRIVER
14549 M:      Marek Vasut <[email protected]>
14550 L:      [email protected]
14551 S:      Supported
14552 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14553 F:      drivers/iio/adc/rcar-gyroadc.c
14554
14555 RENESAS R-CAR I2C DRIVERS
14556 M:      Wolfram Sang <[email protected]>
14557 S:      Supported
14558 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14559 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14560 F:      drivers/i2c/busses/i2c-rcar.c
14561 F:      drivers/i2c/busses/i2c-sh_mobile.c
14562
14563 RENESAS R-CAR THERMAL DRIVERS
14564 M:      Niklas Söderlund <[email protected]>
14565 L:      [email protected]
14566 S:      Supported
14567 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
14568 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
14569 F:      drivers/thermal/rcar_gen3_thermal.c
14570 F:      drivers/thermal/rcar_thermal.c
14571
14572 RENESAS RIIC DRIVER
14573 M:      Chris Brandt <[email protected]>
14574 S:      Supported
14575 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14576 F:      drivers/i2c/busses/i2c-riic.c
14577
14578 RENESAS USB PHY DRIVER
14579 M:      Yoshihiro Shimoda <[email protected]>
14580 L:      [email protected]
14581 S:      Maintained
14582 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14583
14584 RESET CONTROLLER FRAMEWORK
14585 M:      Philipp Zabel <[email protected]>
14586 S:      Maintained
14587 T:      git git://git.pengutronix.de/git/pza/linux
14588 F:      Documentation/devicetree/bindings/reset/
14589 F:      drivers/reset/
14590 F:      include/dt-bindings/reset/
14591 F:      include/linux/reset-controller.h
14592 F:      include/linux/reset.h
14593 F:      include/linux/reset/
14594 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14595
14596 RESTARTABLE SEQUENCES SUPPORT
14597 M:      Mathieu Desnoyers <[email protected]>
14598 M:      Peter Zijlstra <[email protected]>
14599 M:      "Paul E. McKenney" <[email protected]>
14600 M:      Boqun Feng <[email protected]>
14601 L:      [email protected]
14602 S:      Supported
14603 F:      include/trace/events/rseq.h
14604 F:      include/uapi/linux/rseq.h
14605 F:      kernel/rseq.c
14606 F:      tools/testing/selftests/rseq/
14607
14608 RFKILL
14609 M:      Johannes Berg <[email protected]>
14610 L:      [email protected]
14611 S:      Maintained
14612 W:      https://wireless.wiki.kernel.org/
14613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14615 F:      Documentation/ABI/stable/sysfs-class-rfkill
14616 F:      Documentation/driver-api/rfkill.rst
14617 F:      include/linux/rfkill.h
14618 F:      include/uapi/linux/rfkill.h
14619 F:      net/rfkill/
14620
14621 RHASHTABLE
14622 M:      Thomas Graf <[email protected]>
14623 M:      Herbert Xu <[email protected]>
14624 L:      [email protected]
14625 S:      Maintained
14626 F:      include/linux/rhashtable-types.h
14627 F:      include/linux/rhashtable.h
14628 F:      lib/rhashtable.c
14629 F:      lib/test_rhashtable.c
14630
14631 RICOH R5C592 MEMORYSTICK DRIVER
14632 M:      Maxim Levitsky <[email protected]>
14633 S:      Maintained
14634 F:      drivers/memstick/host/r592.*
14635
14636 RICOH SMARTMEDIA/XD DRIVER
14637 M:      Maxim Levitsky <[email protected]>
14638 S:      Maintained
14639 F:      drivers/mtd/nand/raw/r852.c
14640 F:      drivers/mtd/nand/raw/r852.h
14641
14642 RISC-V ARCHITECTURE
14643 M:      Paul Walmsley <[email protected]>
14644 M:      Palmer Dabbelt <[email protected]>
14645 M:      Albert Ou <[email protected]>
14646 L:      [email protected]
14647 S:      Supported
14648 P:      Documentation/riscv/patch-acceptance.rst
14649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14650 F:      arch/riscv/
14651 N:      riscv
14652 K:      riscv
14653
14654 RNBD BLOCK DRIVERS
14655 M:      Danil Kipnis <[email protected]>
14656 M:      Jack Wang <[email protected]>
14657 L:      [email protected]
14658 S:      Maintained
14659 F:      drivers/block/rnbd/
14660
14661 ROCCAT DRIVERS
14662 M:      Stefan Achatz <[email protected]>
14663 S:      Maintained
14664 W:      http://sourceforge.net/projects/roccat/
14665 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14666 F:      drivers/hid/hid-roccat*
14667 F:      include/linux/hid-roccat*
14668
14669 ROCKCHIP ISP V1 DRIVER
14670 M:      Helen Koike <[email protected]>
14671 L:      [email protected]
14672 S:      Maintained
14673 F:      drivers/staging/media/rkisp1/
14674
14675 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14676 M:      Jacob Chen <[email protected]>
14677 M:      Ezequiel Garcia <[email protected]>
14678 L:      [email protected]
14679 L:      [email protected]
14680 S:      Maintained
14681 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
14682 F:      drivers/media/platform/rockchip/rga/
14683
14684 ROCKCHIP VIDEO DECODER DRIVER
14685 M:      Ezequiel Garcia <[email protected]>
14686 L:      [email protected]
14687 L:      [email protected]
14688 S:      Maintained
14689 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
14690 F:      drivers/staging/media/rkvdec/
14691
14692 ROCKER DRIVER
14693 M:      Jiri Pirko <[email protected]>
14694 L:      [email protected]
14695 S:      Supported
14696 F:      drivers/net/ethernet/rocker/
14697
14698 ROCKETPORT DRIVER
14699 S:      Maintained
14700 W:      http://www.comtrol.com
14701 F:      Documentation/driver-api/serial/rocket.rst
14702 F:      drivers/tty/rocket*
14703
14704 ROCKETPORT EXPRESS/INFINITY DRIVER
14705 M:      Kevin Cernekee <[email protected]>
14706 L:      [email protected]
14707 S:      Odd Fixes
14708 F:      drivers/tty/serial/rp2.*
14709
14710 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14711 M:      Tomasz Duszynski <[email protected]>
14712 S:      Maintained
14713 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14714 F:      drivers/iio/light/bh1750.c
14715
14716 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14717 M:      Marek Vasut <[email protected]>
14718 L:      [email protected]
14719 L:      [email protected]
14720 S:      Supported
14721 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14722 F:      drivers/gpio/gpio-bd9571mwv.c
14723 F:      drivers/mfd/bd9571mwv.c
14724 F:      drivers/regulator/bd9571mwv-regulator.c
14725 F:      include/linux/mfd/bd9571mwv.h
14726
14727 ROSE NETWORK LAYER
14728 M:      Ralf Baechle <[email protected]>
14729 L:      [email protected]
14730 S:      Maintained
14731 W:      http://www.linux-ax25.org/
14732 F:      include/net/rose.h
14733 F:      include/uapi/linux/rose.h
14734 F:      net/rose/
14735
14736 ROTATION DRIVER FOR ALLWINNER A83T
14737 M:      Jernej Skrabec <[email protected]>
14738 L:      [email protected]
14739 S:      Maintained
14740 T:      git git://linuxtv.org/media_tree.git
14741 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14742 F:      drivers/media/platform/sunxi/sun8i-rotate/
14743
14744 RTL2830 MEDIA DRIVER
14745 M:      Antti Palosaari <[email protected]>
14746 L:      [email protected]
14747 S:      Maintained
14748 W:      https://linuxtv.org
14749 W:      http://palosaari.fi/linux/
14750 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14751 T:      git git://linuxtv.org/anttip/media_tree.git
14752 F:      drivers/media/dvb-frontends/rtl2830*
14753
14754 RTL2832 MEDIA DRIVER
14755 M:      Antti Palosaari <[email protected]>
14756 L:      [email protected]
14757 S:      Maintained
14758 W:      https://linuxtv.org
14759 W:      http://palosaari.fi/linux/
14760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14761 T:      git git://linuxtv.org/anttip/media_tree.git
14762 F:      drivers/media/dvb-frontends/rtl2832*
14763
14764 RTL2832_SDR MEDIA DRIVER
14765 M:      Antti Palosaari <[email protected]>
14766 L:      [email protected]
14767 S:      Maintained
14768 W:      https://linuxtv.org
14769 W:      http://palosaari.fi/linux/
14770 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14771 T:      git git://linuxtv.org/anttip/media_tree.git
14772 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14773
14774 RTL8180 WIRELESS DRIVER
14775 L:      [email protected]
14776 S:      Orphan
14777 W:      https://wireless.wiki.kernel.org/
14778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14779 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14780
14781 RTL8187 WIRELESS DRIVER
14782 M:      Herton Ronaldo Krzesinski <[email protected]>
14783 M:      Hin-Tak Leung <[email protected]>
14784 M:      Larry Finger <[email protected]>
14785 L:      [email protected]
14786 S:      Maintained
14787 W:      https://wireless.wiki.kernel.org/
14788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14789 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14790
14791 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14792 M:      Jes Sorensen <[email protected]>
14793 L:      [email protected]
14794 S:      Maintained
14795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14796 F:      drivers/net/wireless/realtek/rtl8xxxu/
14797
14798 RTRS TRANSPORT DRIVERS
14799 M:      Danil Kipnis <[email protected]>
14800 M:      Jack Wang <[email protected]>
14801 L:      [email protected]
14802 S:      Maintained
14803 F:      drivers/infiniband/ulp/rtrs/
14804
14805 RXRPC SOCKETS (AF_RXRPC)
14806 M:      David Howells <[email protected]>
14807 L:      [email protected]
14808 S:      Supported
14809 W:      https://www.infradead.org/~dhowells/kafs/
14810 F:      Documentation/networking/rxrpc.rst
14811 F:      include/keys/rxrpc-type.h
14812 F:      include/net/af_rxrpc.h
14813 F:      include/trace/events/rxrpc.h
14814 F:      include/uapi/linux/rxrpc.h
14815 F:      net/rxrpc/
14816
14817 S3 SAVAGE FRAMEBUFFER DRIVER
14818 M:      Antonino Daplas <[email protected]>
14819 L:      [email protected]
14820 S:      Maintained
14821 F:      drivers/video/fbdev/savage/
14822
14823 S390
14824 M:      Heiko Carstens <[email protected]>
14825 M:      Vasily Gorbik <[email protected]>
14826 M:      Christian Borntraeger <[email protected]>
14827 L:      [email protected]
14828 S:      Supported
14829 W:      http://www.ibm.com/developerworks/linux/linux390/
14830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14831 F:      Documentation/driver-api/s390-drivers.rst
14832 F:      Documentation/s390/
14833 F:      arch/s390/
14834 F:      drivers/s390/
14835
14836 S390 COMMON I/O LAYER
14837 M:      Vineeth Vijayan <[email protected]>
14838 M:      Peter Oberparleiter <[email protected]>
14839 L:      [email protected]
14840 S:      Supported
14841 W:      http://www.ibm.com/developerworks/linux/linux390/
14842 F:      drivers/s390/cio/
14843
14844 S390 DASD DRIVER
14845 M:      Stefan Haberland <[email protected]>
14846 M:      Jan Hoeppner <[email protected]>
14847 L:      [email protected]
14848 S:      Supported
14849 W:      http://www.ibm.com/developerworks/linux/linux390/
14850 F:      block/partitions/ibm.c
14851 F:      drivers/s390/block/dasd*
14852 F:      include/linux/dasd_mod.h
14853
14854 S390 IOMMU (PCI)
14855 M:      Gerald Schaefer <[email protected]>
14856 L:      [email protected]
14857 S:      Supported
14858 W:      http://www.ibm.com/developerworks/linux/linux390/
14859 F:      drivers/iommu/s390-iommu.c
14860
14861 S390 IUCV NETWORK LAYER
14862 M:      Julian Wiedmann <[email protected]>
14863 M:      Karsten Graul <[email protected]>
14864 M:      Ursula Braun <[email protected]>
14865 L:      [email protected]
14866 S:      Supported
14867 W:      http://www.ibm.com/developerworks/linux/linux390/
14868 F:      drivers/s390/net/*iucv*
14869 F:      include/net/iucv/
14870 F:      net/iucv/
14871
14872 S390 NETWORK DRIVERS
14873 M:      Julian Wiedmann <[email protected]>
14874 M:      Karsten Graul <[email protected]>
14875 M:      Ursula Braun <[email protected]>
14876 L:      [email protected]
14877 S:      Supported
14878 W:      http://www.ibm.com/developerworks/linux/linux390/
14879 F:      drivers/s390/net/
14880
14881 S390 PCI SUBSYSTEM
14882 M:      Niklas Schnelle <[email protected]>
14883 M:      Gerald Schaefer <[email protected]>
14884 L:      [email protected]
14885 S:      Supported
14886 W:      http://www.ibm.com/developerworks/linux/linux390/
14887 F:      arch/s390/pci/
14888 F:      drivers/pci/hotplug/s390_pci_hpc.c
14889 F:      Documentation/s390/pci.rst
14890
14891 S390 VFIO AP DRIVER
14892 M:      Tony Krowiak <[email protected]>
14893 M:      Pierre Morel <[email protected]>
14894 M:      Halil Pasic <[email protected]>
14895 L:      [email protected]
14896 S:      Supported
14897 W:      http://www.ibm.com/developerworks/linux/linux390/
14898 F:      Documentation/s390/vfio-ap.rst
14899 F:      drivers/s390/crypto/vfio_ap_drv.c
14900 F:      drivers/s390/crypto/vfio_ap_ops.c
14901 F:      drivers/s390/crypto/vfio_ap_private.h
14902
14903 S390 VFIO-CCW DRIVER
14904 M:      Cornelia Huck <[email protected]>
14905 M:      Eric Farman <[email protected]>
14906 R:      Halil Pasic <[email protected]>
14907 L:      [email protected]
14908 L:      [email protected]
14909 S:      Supported
14910 F:      Documentation/s390/vfio-ccw.rst
14911 F:      drivers/s390/cio/vfio_ccw*
14912 F:      include/uapi/linux/vfio_ccw.h
14913
14914 S390 ZCRYPT DRIVER
14915 M:      Harald Freudenberger <[email protected]>
14916 L:      [email protected]
14917 S:      Supported
14918 W:      http://www.ibm.com/developerworks/linux/linux390/
14919 F:      drivers/s390/crypto/
14920
14921 S390 ZFCP DRIVER
14922 M:      Steffen Maier <[email protected]>
14923 M:      Benjamin Block <[email protected]>
14924 L:      [email protected]
14925 S:      Supported
14926 W:      http://www.ibm.com/developerworks/linux/linux390/
14927 F:      drivers/s390/scsi/zfcp_*
14928
14929 S3C24XX SD/MMC Driver
14930 M:      Ben Dooks <[email protected]>
14931 L:      [email protected] (moderated for non-subscribers)
14932 S:      Supported
14933 F:      drivers/mmc/host/s3cmci.*
14934
14935 SAA6588 RDS RECEIVER DRIVER
14936 M:      Hans Verkuil <[email protected]>
14937 L:      [email protected]
14938 S:      Odd Fixes
14939 W:      https://linuxtv.org
14940 T:      git git://linuxtv.org/media_tree.git
14941 F:      drivers/media/i2c/saa6588*
14942
14943 SAA7134 VIDEO4LINUX DRIVER
14944 M:      Mauro Carvalho Chehab <[email protected]>
14945 L:      [email protected]
14946 S:      Odd fixes
14947 W:      https://linuxtv.org
14948 T:      git git://linuxtv.org/media_tree.git
14949 F:      Documentation/driver-api/media/drivers/saa7134*
14950 F:      drivers/media/pci/saa7134/
14951
14952 SAA7146 VIDEO4LINUX-2 DRIVER
14953 M:      Hans Verkuil <[email protected]>
14954 L:      [email protected]
14955 S:      Maintained
14956 T:      git git://linuxtv.org/media_tree.git
14957 F:      drivers/media/common/saa7146/
14958 F:      drivers/media/pci/saa7146/
14959 F:      include/media/drv-intf/saa7146*
14960
14961 SAFESETID SECURITY MODULE
14962 M:      Micah Morton <[email protected]>
14963 S:      Supported
14964 F:      Documentation/admin-guide/LSM/SafeSetID.rst
14965 F:      security/safesetid/
14966
14967 SAMSUNG AUDIO (ASoC) DRIVERS
14968 M:      Krzysztof Kozlowski <[email protected]>
14969 M:      Sangbeom Kim <[email protected]>
14970 M:      Sylwester Nawrocki <[email protected]>
14971 L:      [email protected] (moderated for non-subscribers)
14972 S:      Supported
14973 F:      Documentation/devicetree/bindings/sound/samsung*
14974 F:      sound/soc/samsung/
14975
14976 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14977 M:      Krzysztof Kozlowski <[email protected]>
14978 L:      [email protected]
14979 L:      [email protected]
14980 S:      Maintained
14981 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
14982 F:      drivers/crypto/exynos-rng.c
14983
14984 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14985 M:      Łukasz Stelmach <[email protected]>
14986 L:      [email protected]
14987 S:      Maintained
14988 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14989 F:      drivers/char/hw_random/exynos-trng.c
14990
14991 SAMSUNG FRAMEBUFFER DRIVER
14992 M:      Jingoo Han <[email protected]>
14993 L:      [email protected]
14994 S:      Maintained
14995 F:      drivers/video/fbdev/s3c-fb.c
14996
14997 SAMSUNG LAPTOP DRIVER
14998 M:      Corentin Chary <[email protected]>
14999 L:      [email protected]
15000 S:      Maintained
15001 F:      drivers/platform/x86/samsung-laptop.c
15002
15003 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15004 M:      Sangbeom Kim <[email protected]>
15005 M:      Krzysztof Kozlowski <[email protected]>
15006 M:      Bartlomiej Zolnierkiewicz <[email protected]>
15007 L:      [email protected]
15008 L:      [email protected]
15009 S:      Supported
15010 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15011 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15012 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15013 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15014 F:      drivers/clk/clk-s2mps11.c
15015 F:      drivers/mfd/sec*.c
15016 F:      drivers/regulator/s2m*.c
15017 F:      drivers/regulator/s5m*.c
15018 F:      drivers/rtc/rtc-s5m.c
15019 F:      include/linux/mfd/samsung/
15020
15021 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15022 M:      Sylwester Nawrocki <[email protected]>
15023 L:      [email protected]
15024 L:      [email protected] (moderated for non-subscribers)
15025 S:      Maintained
15026 F:      drivers/media/platform/s3c-camif/
15027 F:      include/media/drv-intf/s3c_camif.h
15028
15029 SAMSUNG S3FWRN5 NFC DRIVER
15030 M:      Robert Baldyga <[email protected]>
15031 M:      Krzysztof Opasiak <[email protected]>
15032 L:      [email protected] (moderated for non-subscribers)
15033 S:      Supported
15034 F:      drivers/nfc/s3fwrn5
15035
15036 SAMSUNG S5C73M3 CAMERA DRIVER
15037 M:      Kyungmin Park <[email protected]>
15038 M:      Andrzej Hajda <[email protected]>
15039 L:      [email protected]
15040 S:      Supported
15041 F:      drivers/media/i2c/s5c73m3/*
15042
15043 SAMSUNG S5K5BAF CAMERA DRIVER
15044 M:      Kyungmin Park <[email protected]>
15045 M:      Andrzej Hajda <[email protected]>
15046 L:      [email protected]
15047 S:      Supported
15048 F:      drivers/media/i2c/s5k5baf.c
15049
15050 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15051 M:      Krzysztof Kozlowski <[email protected]>
15052 M:      Vladimir Zapolskiy <[email protected]>
15053 M:      Kamil Konieczny <[email protected]>
15054 L:      [email protected]
15055 L:      [email protected]
15056 S:      Maintained
15057 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15058 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15059 F:      drivers/crypto/s5p-sss.c
15060
15061 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15062 M:      Kyungmin Park <[email protected]>
15063 M:      Sylwester Nawrocki <[email protected]>
15064 L:      [email protected]
15065 S:      Supported
15066 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15067 F:      drivers/media/platform/exynos4-is/
15068
15069 SAMSUNG SOC CLOCK DRIVERS
15070 M:      Sylwester Nawrocki <[email protected]>
15071 M:      Tomasz Figa <[email protected]>
15072 M:      Chanwoo Choi <[email protected]>
15073 L:      [email protected] (moderated for non-subscribers)
15074 S:      Supported
15075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15076 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15077 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15078 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15079 F:      drivers/clk/samsung/
15080 F:      include/dt-bindings/clock/exynos*.h
15081
15082 SAMSUNG SPI DRIVERS
15083 M:      Kukjin Kim <[email protected]>
15084 M:      Krzysztof Kozlowski <[email protected]>
15085 M:      Andi Shyti <[email protected]>
15086 L:      [email protected]
15087 L:      [email protected] (moderated for non-subscribers)
15088 S:      Maintained
15089 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15090 F:      drivers/spi/spi-s3c*
15091 F:      include/linux/platform_data/spi-s3c64xx.h
15092
15093 SAMSUNG SXGBE DRIVERS
15094 M:      Byungho An <[email protected]>
15095 L:      [email protected]
15096 S:      Supported
15097 F:      drivers/net/ethernet/samsung/sxgbe/
15098
15099 SAMSUNG THERMAL DRIVER
15100 M:      Bartlomiej Zolnierkiewicz <[email protected]>
15101 L:      [email protected]
15102 L:      [email protected]
15103 S:      Supported
15104 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15105 F:      drivers/thermal/samsung/
15106
15107 SAMSUNG USB2 PHY DRIVER
15108 M:      Kamil Debski <[email protected]>
15109 M:      Sylwester Nawrocki <[email protected]>
15110 L:      [email protected]
15111 S:      Supported
15112 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15113 F:      Documentation/driver-api/phy/samsung-usb2.rst
15114 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15115 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15116 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15117 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15118 F:      drivers/phy/samsung/phy-samsung-usb2.c
15119 F:      drivers/phy/samsung/phy-samsung-usb2.h
15120
15121 SC1200 WDT DRIVER
15122 M:      Zwane Mwaikambo <[email protected]>
15123 S:      Maintained
15124 F:      drivers/watchdog/sc1200wdt.c
15125
15126 SCHEDULER
15127 M:      Ingo Molnar <[email protected]>
15128 M:      Peter Zijlstra <[email protected]>
15129 M:      Juri Lelli <[email protected]> (SCHED_DEADLINE)
15130 M:      Vincent Guittot <[email protected]> (SCHED_NORMAL)
15131 R:      Dietmar Eggemann <[email protected]> (SCHED_NORMAL)
15132 R:      Steven Rostedt <[email protected]> (SCHED_FIFO/SCHED_RR)
15133 R:      Ben Segall <[email protected]> (CONFIG_CFS_BANDWIDTH)
15134 R:      Mel Gorman <[email protected]> (CONFIG_NUMA_BALANCING)
15135 L:      [email protected]
15136 S:      Maintained
15137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15138 F:      include/linux/preempt.h
15139 F:      include/linux/sched.h
15140 F:      include/linux/wait.h
15141 F:      include/uapi/linux/sched.h
15142 F:      kernel/sched/
15143
15144 SCR24X CHIP CARD INTERFACE DRIVER
15145 M:      Lubomir Rintel <[email protected]>
15146 S:      Supported
15147 F:      drivers/char/pcmcia/scr24x_cs.c
15148
15149 SCSI CDROM DRIVER
15150 M:      Jens Axboe <[email protected]>
15151 L:      [email protected]
15152 S:      Maintained
15153 W:      http://www.kernel.dk
15154 F:      drivers/scsi/sr*
15155
15156 SCSI RDMA PROTOCOL (SRP) INITIATOR
15157 M:      Bart Van Assche <[email protected]>
15158 L:      [email protected]
15159 S:      Supported
15160 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15161 F:      drivers/infiniband/ulp/srp/
15162 F:      include/scsi/srp.h
15163
15164 SCSI RDMA PROTOCOL (SRP) TARGET
15165 M:      Bart Van Assche <[email protected]>
15166 L:      [email protected]
15167 L:      [email protected]
15168 S:      Supported
15169 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15170 F:      drivers/infiniband/ulp/srpt/
15171
15172 SCSI SG DRIVER
15173 M:      Doug Gilbert <[email protected]>
15174 L:      [email protected]
15175 S:      Maintained
15176 W:      http://sg.danny.cz/sg
15177 F:      Documentation/scsi/scsi-generic.rst
15178 F:      drivers/scsi/sg.c
15179 F:      include/scsi/sg.h
15180
15181 SCSI SUBSYSTEM
15182 M:      "James E.J. Bottomley" <[email protected]>
15183 M:      "Martin K. Petersen" <[email protected]>
15184 L:      [email protected]
15185 S:      Maintained
15186 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15189 F:      Documentation/devicetree/bindings/scsi/
15190 F:      drivers/scsi/
15191 F:      include/scsi/
15192
15193 SCSI TAPE DRIVER
15194 M:      Kai Mäkisara <[email protected]>
15195 L:      [email protected]
15196 S:      Maintained
15197 F:      Documentation/scsi/st.rst
15198 F:      drivers/scsi/st.*
15199 F:      drivers/scsi/st_*.h
15200
15201 SCSI TARGET SUBSYSTEM
15202 M:      "Martin K. Petersen" <[email protected]>
15203 L:      [email protected]
15204 L:      [email protected]
15205 S:      Supported
15206 W:      http://www.linux-iscsi.org
15207 Q:      https://patchwork.kernel.org/project/target-devel/list/
15208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15209 F:      Documentation/target/
15210 F:      drivers/target/
15211 F:      include/target/
15212
15213 SCTP PROTOCOL
15214 M:      Vlad Yasevich <[email protected]>
15215 M:      Neil Horman <[email protected]>
15216 M:      Marcelo Ricardo Leitner <[email protected]>
15217 L:      [email protected]
15218 S:      Maintained
15219 W:      http://lksctp.sourceforge.net
15220 F:      Documentation/networking/sctp.rst
15221 F:      include/linux/sctp.h
15222 F:      include/net/sctp/
15223 F:      include/uapi/linux/sctp.h
15224 F:      net/sctp/
15225
15226 SCx200 CPU SUPPORT
15227 M:      Jim Cromie <[email protected]>
15228 S:      Odd Fixes
15229 F:      Documentation/i2c/busses/scx200_acb.rst
15230 F:      arch/x86/platform/scx200/
15231 F:      drivers/i2c/busses/scx200*
15232 F:      drivers/mtd/maps/scx200_docflash.c
15233 F:      drivers/watchdog/scx200_wdt.c
15234 F:      include/linux/scx200.h
15235
15236 SCx200 GPIO DRIVER
15237 M:      Jim Cromie <[email protected]>
15238 S:      Maintained
15239 F:      drivers/char/scx200_gpio.c
15240 F:      include/linux/scx200_gpio.h
15241
15242 SCx200 HRT CLOCKSOURCE DRIVER
15243 M:      Jim Cromie <[email protected]>
15244 S:      Maintained
15245 F:      drivers/clocksource/scx200_hrt.c
15246
15247 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15248 M:      Sascha Sommer <[email protected]>
15249 L:      [email protected] (subscribers-only)
15250 S:      Maintained
15251 F:      drivers/mmc/host/sdricoh_cs.c
15252
15253 SECO BOARDS CEC DRIVER
15254 M:      Ettore Chimenti <[email protected]>
15255 S:      Maintained
15256 F:      drivers/media/platform/seco-cec/seco-cec.c
15257 F:      drivers/media/platform/seco-cec/seco-cec.h
15258
15259 SECURE COMPUTING
15260 M:      Kees Cook <[email protected]>
15261 R:      Andy Lutomirski <[email protected]>
15262 R:      Will Drewry <[email protected]>
15263 S:      Supported
15264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15265 F:      Documentation/userspace-api/seccomp_filter.rst
15266 F:      include/linux/seccomp.h
15267 F:      include/uapi/linux/seccomp.h
15268 F:      kernel/seccomp.c
15269 F:      tools/testing/selftests/kselftest_harness.h
15270 F:      tools/testing/selftests/seccomp/*
15271 K:      \bsecure_computing
15272 K:      \bTIF_SECCOMP\b
15273
15274 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15275 M:      Al Cooper <[email protected]>
15276 L:      [email protected]
15277 L:      [email protected]
15278 S:      Maintained
15279 F:      drivers/mmc/host/sdhci-brcmstb*
15280
15281 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15282 M:      Adrian Hunter <[email protected]>
15283 L:      [email protected]
15284 S:      Maintained
15285 F:      drivers/mmc/host/sdhci*
15286 F:      include/linux/mmc/sdhci*
15287
15288 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15289 M:      Ludovic Desroches <[email protected]>
15290 L:      [email protected]
15291 S:      Supported
15292 F:      drivers/mmc/host/sdhci-of-at91.c
15293
15294 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15295 M:      Ben Dooks <[email protected]>
15296 M:      Jaehoon Chung <[email protected]>
15297 L:      [email protected]
15298 S:      Maintained
15299 F:      drivers/mmc/host/sdhci-s3c*
15300
15301 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15302 M:      Viresh Kumar <[email protected]>
15303 L:      [email protected]
15304 S:      Maintained
15305 F:      drivers/mmc/host/sdhci-spear.c
15306
15307 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15308 M:      Kishon Vijay Abraham I <[email protected]>
15309 L:      [email protected]
15310 S:      Maintained
15311 F:      drivers/mmc/host/sdhci-omap.c
15312
15313 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15314 M:      Jonathan Derrick <[email protected]>
15315 M:      Revanth Rajashekar <[email protected]>
15316 L:      [email protected]
15317 S:      Supported
15318 F:      block/opal_proto.h
15319 F:      block/sed*
15320 F:      include/linux/sed*
15321 F:      include/uapi/linux/sed*
15322
15323 SECURITY CONTACT
15324 M:      Security Officers <[email protected]>
15325 S:      Supported
15326
15327 SECURITY SUBSYSTEM
15328 M:      James Morris <[email protected]>
15329 M:      "Serge E. Hallyn" <[email protected]>
15330 L:      [email protected] (suggested Cc:)
15331 S:      Supported
15332 W:      http://kernsec.org/
15333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15334 F:      security/
15335 X:      security/selinux/
15336
15337 SELINUX SECURITY MODULE
15338 M:      Paul Moore <[email protected]>
15339 M:      Stephen Smalley <[email protected]>
15340 M:      Eric Paris <[email protected]>
15341 L:      [email protected]
15342 S:      Supported
15343 W:      https://selinuxproject.org
15344 W:      https://github.com/SELinuxProject
15345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15346 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15347 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15348 F:      Documentation/admin-guide/LSM/SELinux.rst
15349 F:      include/uapi/linux/selinux_netlink.h
15350 F:      scripts/selinux/
15351 F:      security/selinux/
15352
15353 SENSABLE PHANTOM
15354 M:      Jiri Slaby <[email protected]>
15355 S:      Maintained
15356 F:      drivers/misc/phantom.c
15357 F:      include/uapi/linux/phantom.h
15358
15359 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15360 M:      Tomasz Duszynski <[email protected]>
15361 S:      Maintained
15362 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15363 F:      drivers/iio/chemical/sps30.c
15364
15365 SERIAL DEVICE BUS
15366 M:      Rob Herring <[email protected]>
15367 L:      [email protected]
15368 S:      Maintained
15369 F:      Documentation/devicetree/bindings/serial/serial.yaml
15370 F:      drivers/tty/serdev/
15371 F:      include/linux/serdev.h
15372
15373 SERIAL DRIVERS
15374 M:      Greg Kroah-Hartman <[email protected]>
15375 L:      [email protected]
15376 S:      Maintained
15377 F:      Documentation/devicetree/bindings/serial/
15378 F:      drivers/tty/serial/
15379
15380 SERIAL IR RECEIVER
15381 M:      Sean Young <[email protected]>
15382 L:      [email protected]
15383 S:      Maintained
15384 F:      drivers/media/rc/serial_ir.c
15385
15386 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15387 M:      Srinivas Kandagatla <[email protected]>
15388 L:      [email protected] (moderated for non-subscribers)
15389 S:      Maintained
15390 F:      Documentation/devicetree/bindings/slimbus/
15391 F:      drivers/slimbus/
15392 F:      include/linux/slimbus.h
15393
15394 SFC NETWORK DRIVER
15395 M:      Solarflare linux maintainers <[email protected]>
15396 M:      Edward Cree <[email protected]>
15397 M:      Martin Habets <[email protected]>
15398 L:      [email protected]
15399 S:      Supported
15400 F:      drivers/net/ethernet/sfc/
15401
15402 SFF/SFP/SFP+ MODULE SUPPORT
15403 M:      Russell King <[email protected]>
15404 L:      [email protected]
15405 S:      Maintained
15406 F:      drivers/net/phy/phylink.c
15407 F:      drivers/net/phy/sfp*
15408 F:      include/linux/phylink.h
15409 F:      include/linux/sfp.h
15410 K:      phylink
15411
15412 SGI GRU DRIVER
15413 M:      Dimitri Sivanich <[email protected]>
15414 S:      Maintained
15415 F:      drivers/misc/sgi-gru/
15416
15417 SGI XP/XPC/XPNET DRIVER
15418 M:      Cliff Whickman <[email protected]>
15419 M:      Robin Holt <[email protected]>
15420 S:      Maintained
15421 F:      drivers/misc/sgi-xp/
15422
15423 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15424 M:      Ursula Braun <[email protected]>
15425 M:      Karsten Graul <[email protected]>
15426 L:      [email protected]
15427 S:      Supported
15428 W:      http://www.ibm.com/developerworks/linux/linux390/
15429 F:      net/smc/
15430
15431 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15432 M:      Linus Walleij <[email protected]>
15433 L:      [email protected]
15434 S:      Maintained
15435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15436 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15437 F:      drivers/iio/light/gp2ap002.c
15438
15439 SHARP RJ54N1CB0C SENSOR DRIVER
15440 M:      Jacopo Mondi <[email protected]>
15441 L:      [email protected]
15442 S:      Odd fixes
15443 T:      git git://linuxtv.org/media_tree.git
15444 F:      drivers/media/i2c/rj54n1cb0c.c
15445 F:      include/media/i2c/rj54n1cb0c.h
15446
15447 SH_VOU V4L2 OUTPUT DRIVER
15448 L:      [email protected]
15449 S:      Orphan
15450 F:      drivers/media/platform/sh_vou.c
15451 F:      include/media/drv-intf/sh_vou.h
15452
15453 SI2157 MEDIA DRIVER
15454 M:      Antti Palosaari <[email protected]>
15455 L:      [email protected]
15456 S:      Maintained
15457 W:      https://linuxtv.org
15458 W:      http://palosaari.fi/linux/
15459 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15460 T:      git git://linuxtv.org/anttip/media_tree.git
15461 F:      drivers/media/tuners/si2157*
15462
15463 SI2165 MEDIA DRIVER
15464 M:      Matthias Schwarzott <[email protected]>
15465 L:      [email protected]
15466 S:      Maintained
15467 W:      https://linuxtv.org
15468 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15469 F:      drivers/media/dvb-frontends/si2165*
15470
15471 SI2168 MEDIA DRIVER
15472 M:      Antti Palosaari <[email protected]>
15473 L:      [email protected]
15474 S:      Maintained
15475 W:      https://linuxtv.org
15476 W:      http://palosaari.fi/linux/
15477 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15478 T:      git git://linuxtv.org/anttip/media_tree.git
15479 F:      drivers/media/dvb-frontends/si2168*
15480
15481 SI470X FM RADIO RECEIVER I2C DRIVER
15482 M:      Hans Verkuil <[email protected]>
15483 L:      [email protected]
15484 S:      Odd Fixes
15485 W:      https://linuxtv.org
15486 T:      git git://linuxtv.org/media_tree.git
15487 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15488
15489 SI470X FM RADIO RECEIVER USB DRIVER
15490 M:      Hans Verkuil <[email protected]>
15491 L:      [email protected]
15492 S:      Maintained
15493 W:      https://linuxtv.org
15494 T:      git git://linuxtv.org/media_tree.git
15495 F:      drivers/media/radio/si470x/radio-si470x-common.c
15496 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15497 F:      drivers/media/radio/si470x/radio-si470x.h
15498
15499 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15500 M:      Eduardo Valentin <[email protected]>
15501 L:      [email protected]
15502 S:      Odd Fixes
15503 W:      https://linuxtv.org
15504 T:      git git://linuxtv.org/media_tree.git
15505 F:      drivers/media/radio/si4713/si4713.?
15506
15507 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15508 M:      Eduardo Valentin <[email protected]>
15509 L:      [email protected]
15510 S:      Odd Fixes
15511 W:      https://linuxtv.org
15512 T:      git git://linuxtv.org/media_tree.git
15513 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15514
15515 SI4713 FM RADIO TRANSMITTER USB DRIVER
15516 M:      Hans Verkuil <[email protected]>
15517 L:      [email protected]
15518 S:      Maintained
15519 W:      https://linuxtv.org
15520 T:      git git://linuxtv.org/media_tree.git
15521 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15522
15523 SIANO DVB DRIVER
15524 M:      Mauro Carvalho Chehab <[email protected]>
15525 L:      [email protected]
15526 S:      Odd fixes
15527 W:      https://linuxtv.org
15528 T:      git git://linuxtv.org/media_tree.git
15529 F:      drivers/media/common/siano/
15530 F:      drivers/media/mmc/siano/
15531 F:      drivers/media/usb/siano/
15532 F:      drivers/media/usb/siano/
15533
15534 SIFIVE DRIVERS
15535 M:      Palmer Dabbelt <[email protected]>
15536 M:      Paul Walmsley <[email protected]>
15537 L:      [email protected]
15538 S:      Supported
15539 T:      git git://github.com/sifive/riscv-linux.git
15540 N:      sifive
15541 K:      [^@]sifive
15542
15543 SIFIVE FU540 SYSTEM-ON-CHIP
15544 M:      Paul Walmsley <[email protected]>
15545 M:      Palmer Dabbelt <[email protected]>
15546 L:      [email protected]
15547 S:      Supported
15548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15549 N:      fu540
15550 K:      fu540
15551
15552 SIFIVE PDMA DRIVER
15553 M:      Green Wan <[email protected]>
15554 S:      Maintained
15555 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15556 F:      drivers/dma/sf-pdma/
15557
15558 SILEAD TOUCHSCREEN DRIVER
15559 M:      Hans de Goede <[email protected]>
15560 L:      [email protected]
15561 L:      [email protected]
15562 S:      Maintained
15563 F:      drivers/input/touchscreen/silead.c
15564 F:      drivers/platform/x86/touchscreen_dmi.c
15565
15566 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15567 M:      Jérôme Pouiller <[email protected]>
15568 S:      Supported
15569 F:      drivers/staging/wfx/
15570
15571 SILICON MOTION SM712 FRAME BUFFER DRIVER
15572 M:      Sudip Mukherjee <[email protected]>
15573 M:      Teddy Wang <[email protected]>
15574 M:      Sudip Mukherjee <[email protected]>
15575 L:      [email protected]
15576 S:      Maintained
15577 F:      Documentation/fb/sm712fb.rst
15578 F:      drivers/video/fbdev/sm712*
15579
15580 SIMPLE FIRMWARE INTERFACE (SFI)
15581 S:      Obsolete
15582 W:      http://simplefirmware.org/
15583 F:      arch/x86/platform/sfi/
15584 F:      drivers/sfi/
15585 F:      include/linux/sfi*.h
15586
15587 SIMPLEFB FB DRIVER
15588 M:      Hans de Goede <[email protected]>
15589 L:      [email protected]
15590 S:      Maintained
15591 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15592 F:      drivers/video/fbdev/simplefb.c
15593 F:      include/linux/platform_data/simplefb.h
15594
15595 SIMTEC EB110ATX (Chalice CATS)
15596 M:      Vincent Sanders <[email protected]>
15597 M:      Simtec Linux Team <[email protected]>
15598 S:      Supported
15599 W:      http://www.simtec.co.uk/products/EB110ATX/
15600
15601 SIMTEC EB2410ITX (BAST)
15602 M:      Vincent Sanders <[email protected]>
15603 M:      Simtec Linux Team <[email protected]>
15604 S:      Supported
15605 W:      http://www.simtec.co.uk/products/EB2410ITX/
15606 F:      arch/arm/mach-s3c24xx/bast-ide.c
15607 F:      arch/arm/mach-s3c24xx/bast-irq.c
15608 F:      arch/arm/mach-s3c24xx/mach-bast.c
15609
15610 SIOX
15611 M:      Thorsten Scherer <[email protected]>
15612 M:      Uwe Kleine-König <[email protected]>
15613 R:      Pengutronix Kernel Team <[email protected]>
15614 S:      Supported
15615 F:      drivers/gpio/gpio-siox.c
15616 F:      drivers/siox/*
15617 F:      include/trace/events/siox.h
15618
15619 SIPHASH PRF ROUTINES
15620 M:      Jason A. Donenfeld <[email protected]>
15621 S:      Maintained
15622 F:      include/linux/siphash.h
15623 F:      lib/siphash.c
15624 F:      lib/test_siphash.c
15625
15626 SIS 190 ETHERNET DRIVER
15627 M:      Francois Romieu <[email protected]>
15628 L:      [email protected]
15629 S:      Maintained
15630 F:      drivers/net/ethernet/sis/sis190.c
15631
15632 SIS 900/7016 FAST ETHERNET DRIVER
15633 M:      Daniele Venzano <[email protected]>
15634 L:      [email protected]
15635 S:      Maintained
15636 W:      http://www.brownhat.org/sis900.html
15637 F:      drivers/net/ethernet/sis/sis900.*
15638
15639 SIS FRAMEBUFFER DRIVER
15640 M:      Thomas Winischhofer <[email protected]>
15641 S:      Maintained
15642 W:      http://www.winischhofer.net/linuxsisvga.shtml
15643 F:      Documentation/fb/sisfb.rst
15644 F:      drivers/video/fbdev/sis/
15645 F:      include/video/sisfb.h
15646
15647 SIS USB2VGA DRIVER
15648 M:      Thomas Winischhofer <[email protected]>
15649 S:      Maintained
15650 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15651 F:      drivers/usb/misc/sisusbvga/
15652
15653 SLAB ALLOCATOR
15654 M:      Christoph Lameter <[email protected]>
15655 M:      Pekka Enberg <[email protected]>
15656 M:      David Rientjes <[email protected]>
15657 M:      Joonsoo Kim <[email protected]>
15658 M:      Andrew Morton <[email protected]>
15659 L:      [email protected]
15660 S:      Maintained
15661 F:      include/linux/sl?b*.h
15662 F:      mm/sl?b*
15663
15664 SLEEPABLE READ-COPY UPDATE (SRCU)
15665 M:      Lai Jiangshan <[email protected]>
15666 M:      "Paul E. McKenney" <[email protected]>
15667 M:      Josh Triplett <[email protected]>
15668 R:      Steven Rostedt <[email protected]>
15669 R:      Mathieu Desnoyers <[email protected]>
15670 L:      [email protected]
15671 S:      Supported
15672 W:      http://www.rdrop.com/users/paulmck/RCU/
15673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15674 F:      include/linux/srcu*.h
15675 F:      kernel/rcu/srcu*.c
15676
15677 SMACK SECURITY MODULE
15678 M:      Casey Schaufler <[email protected]>
15679 L:      [email protected]
15680 S:      Maintained
15681 W:      http://schaufler-ca.com
15682 T:      git git://github.com/cschaufler/smack-next
15683 F:      Documentation/admin-guide/LSM/Smack.rst
15684 F:      security/smack/
15685
15686 SMC91x ETHERNET DRIVER
15687 M:      Nicolas Pitre <[email protected]>
15688 S:      Odd Fixes
15689 F:      drivers/net/ethernet/smsc/smc91x.*
15690
15691 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
15692 M:      Mark Rutland <[email protected]>
15693 M:      Lorenzo Pieralisi <[email protected]>
15694 M:      Sudeep Holla <[email protected]>
15695 L:      [email protected]
15696 S:      Maintained
15697 F:      drivers/firmware/smccc/
15698 F:      include/linux/arm-smccc.h
15699
15700 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15701 M:      Sakari Ailus <[email protected]>
15702 L:      [email protected]
15703 S:      Maintained
15704 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15705 F:      drivers/media/i2c/smiapp-pll.c
15706 F:      drivers/media/i2c/smiapp-pll.h
15707 F:      drivers/media/i2c/smiapp/
15708 F:      include/uapi/linux/smiapp.h
15709
15710 SMM665 HARDWARE MONITOR DRIVER
15711 M:      Guenter Roeck <[email protected]>
15712 L:      [email protected]
15713 S:      Maintained
15714 F:      Documentation/hwmon/smm665.rst
15715 F:      drivers/hwmon/smm665.c
15716
15717 SMSC EMC2103 HARDWARE MONITOR DRIVER
15718 M:      Steve Glendinning <[email protected]>
15719 L:      [email protected]
15720 S:      Maintained
15721 F:      Documentation/hwmon/emc2103.rst
15722 F:      drivers/hwmon/emc2103.c
15723
15724 SMSC SCH5627 HARDWARE MONITOR DRIVER
15725 M:      Hans de Goede <[email protected]>
15726 L:      [email protected]
15727 S:      Supported
15728 F:      Documentation/hwmon/sch5627.rst
15729 F:      drivers/hwmon/sch5627.c
15730
15731 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15732 M:      Steve Glendinning <[email protected]>
15733 L:      [email protected]
15734 S:      Maintained
15735 F:      drivers/video/fbdev/smscufx.c
15736
15737 SMSC47B397 HARDWARE MONITOR DRIVER
15738 M:      Jean Delvare <[email protected]>
15739 L:      [email protected]
15740 S:      Maintained
15741 F:      Documentation/hwmon/smsc47b397.rst
15742 F:      drivers/hwmon/smsc47b397.c
15743
15744 SMSC911x ETHERNET DRIVER
15745 M:      Steve Glendinning <[email protected]>
15746 L:      [email protected]
15747 S:      Maintained
15748 F:      drivers/net/ethernet/smsc/smsc911x.*
15749 F:      include/linux/smsc911x.h
15750
15751 SMSC9420 PCI ETHERNET DRIVER
15752 M:      Steve Glendinning <[email protected]>
15753 L:      [email protected]
15754 S:      Maintained
15755 F:      drivers/net/ethernet/smsc/smsc9420.*
15756
15757 SOC-CAMERA V4L2 SUBSYSTEM
15758 L:      [email protected]
15759 S:      Orphan
15760 T:      git git://linuxtv.org/media_tree.git
15761 F:      drivers/staging/media/soc_camera/
15762 F:      include/media/soc_camera.h
15763
15764 SOCIONEXT (SNI) AVE NETWORK DRIVER
15765 M:      Kunihiko Hayashi <[email protected]>
15766 L:      [email protected]
15767 S:      Maintained
15768 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
15769 F:      drivers/net/ethernet/socionext/sni_ave.c
15770
15771 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15772 M:      Jassi Brar <[email protected]>
15773 M:      Ilias Apalodimas <[email protected]>
15774 L:      [email protected]
15775 S:      Maintained
15776 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15777 F:      drivers/net/ethernet/socionext/netsec.c
15778
15779 SOCIONEXT (SNI) Synquacer SPI DRIVER
15780 M:      Masahisa Kojima <[email protected]>
15781 M:      Jassi Brar <[email protected]>
15782 L:      [email protected]
15783 S:      Maintained
15784 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15785 F:      drivers/spi/spi-synquacer.c
15786
15787 SOCIONEXT SYNQUACER I2C DRIVER
15788 M:      Ard Biesheuvel <[email protected]>
15789 L:      [email protected]
15790 S:      Maintained
15791 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15792 F:      drivers/i2c/busses/i2c-synquacer.c
15793
15794 SOCIONEXT UNIPHIER SOUND DRIVER
15795 L:      [email protected] (moderated for non-subscribers)
15796 S:      Orphan
15797 F:      sound/soc/uniphier/
15798
15799 SOEKRIS NET48XX LED SUPPORT
15800 M:      Chris Boot <[email protected]>
15801 S:      Maintained
15802 F:      drivers/leds/leds-net48xx.c
15803
15804 SOFT-IWARP DRIVER (siw)
15805 M:      Bernard Metzler <[email protected]>
15806 L:      [email protected]
15807 S:      Supported
15808 F:      drivers/infiniband/sw/siw/
15809 F:      include/uapi/rdma/siw-abi.h
15810
15811 SOFT-ROCE DRIVER (rxe)
15812 M:      Zhu Yanjun <[email protected]>
15813 L:      [email protected]
15814 S:      Supported
15815 F:      drivers/infiniband/sw/rxe/
15816 F:      include/uapi/rdma/rdma_user_rxe.h
15817
15818 SOFTLOGIC 6x10 MPEG CODEC
15819 M:      Bluecherry Maintainers <[email protected]>
15820 M:      Anton Sviridenko <[email protected]>
15821 M:      Andrey Utkin <[email protected]>
15822 M:      Andrey Utkin <[email protected]>
15823 M:      Ismael Luceno <[email protected]>
15824 L:      [email protected]
15825 S:      Supported
15826 F:      drivers/media/pci/solo6x10/
15827
15828 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15829 M:      James Morse <[email protected]>
15830 L:      [email protected]
15831 S:      Maintained
15832 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15833 F:      drivers/firmware/arm_sdei.c
15834 F:      include/linux/arm_sdei.h
15835 F:      include/uapi/linux/arm_sdei.h
15836
15837 SOFTWARE RAID (Multiple Disks) SUPPORT
15838 M:      Song Liu <[email protected]>
15839 L:      [email protected]
15840 S:      Supported
15841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15842 F:      drivers/md/Kconfig
15843 F:      drivers/md/Makefile
15844 F:      drivers/md/md*
15845 F:      drivers/md/raid*
15846 F:      include/linux/raid/
15847 F:      include/uapi/linux/raid/
15848
15849 SOLIDRUN CLEARFOG SUPPORT
15850 M:      Russell King <[email protected]>
15851 S:      Maintained
15852 F:      arch/arm/boot/dts/armada-388-clearfog*
15853 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15854
15855 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15856 M:      Russell King <[email protected]>
15857 S:      Maintained
15858 F:      arch/arm/boot/dts/imx6*-cubox-i*
15859 F:      arch/arm/boot/dts/imx6*-hummingboard*
15860 F:      arch/arm/boot/dts/imx6*-sr-*
15861
15862 SONIC NETWORK DRIVER
15863 M:      Thomas Bogendoerfer <[email protected]>
15864 L:      [email protected]
15865 S:      Maintained
15866 F:      drivers/net/ethernet/natsemi/sonic.*
15867
15868 SONICS SILICON BACKPLANE DRIVER (SSB)
15869 M:      Michael Buesch <[email protected]>
15870 L:      [email protected]
15871 S:      Maintained
15872 F:      drivers/ssb/
15873 F:      include/linux/ssb/
15874
15875 SONY IMX214 SENSOR DRIVER
15876 M:      Ricardo Ribalda <[email protected]>
15877 L:      [email protected]
15878 S:      Maintained
15879 T:      git git://linuxtv.org/media_tree.git
15880 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15881 F:      drivers/media/i2c/imx214.c
15882
15883 SONY IMX219 SENSOR DRIVER
15884 M:      Dave Stevenson <[email protected]>
15885 L:      [email protected]
15886 S:      Maintained
15887 T:      git git://linuxtv.org/media_tree.git
15888 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
15889 F:      drivers/media/i2c/imx219.c
15890
15891 SONY IMX258 SENSOR DRIVER
15892 M:      Sakari Ailus <[email protected]>
15893 L:      [email protected]
15894 S:      Maintained
15895 T:      git git://linuxtv.org/media_tree.git
15896 F:      drivers/media/i2c/imx258.c
15897
15898 SONY IMX274 SENSOR DRIVER
15899 M:      Leon Luo <[email protected]>
15900 L:      [email protected]
15901 S:      Maintained
15902 T:      git git://linuxtv.org/media_tree.git
15903 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15904 F:      drivers/media/i2c/imx274.c
15905
15906 SONY IMX290 SENSOR DRIVER
15907 M:      Manivannan Sadhasivam <[email protected]>
15908 L:      [email protected]
15909 S:      Maintained
15910 T:      git git://linuxtv.org/media_tree.git
15911 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
15912 F:      drivers/media/i2c/imx290.c
15913
15914 SONY IMX319 SENSOR DRIVER
15915 M:      Bingbu Cao <[email protected]>
15916 L:      [email protected]
15917 S:      Maintained
15918 T:      git git://linuxtv.org/media_tree.git
15919 F:      drivers/media/i2c/imx319.c
15920
15921 SONY IMX355 SENSOR DRIVER
15922 M:      Tianshu Qiu <[email protected]>
15923 L:      [email protected]
15924 S:      Maintained
15925 T:      git git://linuxtv.org/media_tree.git
15926 F:      drivers/media/i2c/imx355.c
15927
15928 SONY MEMORYSTICK SUBSYSTEM
15929 M:      Maxim Levitsky <[email protected]>
15930 M:      Alex Dubov <[email protected]>
15931 M:      Ulf Hansson <[email protected]>
15932 L:      [email protected]
15933 S:      Maintained
15934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15935 F:      drivers/memstick/
15936 F:      include/linux/memstick.h
15937
15938 SONY VAIO CONTROL DEVICE DRIVER
15939 M:      Mattia Dongili <[email protected]>
15940 L:      [email protected]
15941 S:      Maintained
15942 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15943 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15944 F:      drivers/char/sonypi.c
15945 F:      drivers/platform/x86/sony-laptop.c
15946 F:      include/linux/sony-laptop.h
15947
15948 SOUND
15949 M:      Jaroslav Kysela <[email protected]>
15950 M:      Takashi Iwai <[email protected]>
15951 L:      [email protected] (moderated for non-subscribers)
15952 S:      Maintained
15953 W:      http://www.alsa-project.org/
15954 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15956 F:      Documentation/sound/
15957 F:      include/sound/
15958 F:      include/uapi/sound/
15959 F:      sound/
15960
15961 SOUND - COMPRESSED AUDIO
15962 M:      Vinod Koul <[email protected]>
15963 L:      [email protected] (moderated for non-subscribers)
15964 S:      Supported
15965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15966 F:      Documentation/sound/designs/compress-offload.rst
15967 F:      include/sound/compress_driver.h
15968 F:      include/uapi/sound/compress_*
15969 F:      sound/core/compress_offload.c
15970 F:      sound/soc/soc-compress.c
15971
15972 SOUND - DMAENGINE HELPERS
15973 M:      Lars-Peter Clausen <[email protected]>
15974 S:      Supported
15975 F:      include/sound/dmaengine_pcm.h
15976 F:      sound/core/pcm_dmaengine.c
15977 F:      sound/soc/soc-generic-dmaengine-pcm.c
15978
15979 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15980 M:      Liam Girdwood <[email protected]>
15981 M:      Mark Brown <[email protected]>
15982 L:      [email protected] (moderated for non-subscribers)
15983 S:      Supported
15984 W:      http://alsa-project.org/main/index.php/ASoC
15985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15986 F:      Documentation/devicetree/bindings/sound/
15987 F:      Documentation/sound/soc/
15988 F:      include/dt-bindings/sound/
15989 F:      include/sound/soc*
15990 F:      sound/soc/
15991
15992 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
15993 M:      Pierre-Louis Bossart <[email protected]>
15994 M:      Liam Girdwood <[email protected]>
15995 M:      Ranjani Sridharan <[email protected]>
15996 M:      Kai Vehmanen <[email protected]>
15997 M:      Daniel Baluta <[email protected]>
15998 L:      [email protected] (moderated for non-subscribers)
15999 S:      Supported
16000 W:      https://github.com/thesofproject/linux/
16001 F:      sound/soc/sof/
16002
16003 SOUNDWIRE SUBSYSTEM
16004 M:      Vinod Koul <[email protected]>
16005 M:      Sanyog Kale <[email protected]>
16006 R:      Pierre-Louis Bossart <[email protected]>
16007 L:      [email protected] (moderated for non-subscribers)
16008 S:      Supported
16009 F:      Documentation/driver-api/soundwire/
16010 F:      drivers/soundwire/
16011 F:      include/linux/soundwire/
16012
16013 SP2 MEDIA DRIVER
16014 M:      Olli Salonen <[email protected]>
16015 L:      [email protected]
16016 S:      Maintained
16017 W:      https://linuxtv.org
16018 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16019 F:      drivers/media/dvb-frontends/sp2*
16020
16021 SPARC + UltraSPARC (sparc/sparc64)
16022 M:      "David S. Miller" <[email protected]>
16023 L:      [email protected]
16024 S:      Maintained
16025 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16028 F:      arch/sparc/
16029 F:      drivers/sbus/
16030
16031 SPARC SERIAL DRIVERS
16032 M:      "David S. Miller" <[email protected]>
16033 L:      [email protected]
16034 S:      Maintained
16035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16037 F:      drivers/tty/serial/suncore.c
16038 F:      drivers/tty/serial/sunhv.c
16039 F:      drivers/tty/serial/sunsab.c
16040 F:      drivers/tty/serial/sunsab.h
16041 F:      drivers/tty/serial/sunsu.c
16042 F:      drivers/tty/serial/sunzilog.c
16043 F:      drivers/tty/serial/sunzilog.h
16044 F:      drivers/tty/vcc.c
16045 F:      include/linux/sunserialcore.h
16046
16047 SPARSE CHECKER
16048 M:      "Luc Van Oostenryck" <[email protected]>
16049 L:      [email protected]
16050 S:      Maintained
16051 W:      https://sparse.docs.kernel.org/
16052 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16053 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16054 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16055 F:      include/linux/compiler.h
16056
16057 SPEAR CLOCK FRAMEWORK SUPPORT
16058 M:      Viresh Kumar <[email protected]>
16059 L:      [email protected] (moderated for non-subscribers)
16060 S:      Maintained
16061 W:      http://www.st.com/spear
16062 F:      drivers/clk/spear/
16063
16064 SPEAR PLATFORM SUPPORT
16065 M:      Viresh Kumar <[email protected]>
16066 M:      Shiraz Hashim <[email protected]>
16067 L:      [email protected] (moderated for non-subscribers)
16068 S:      Maintained
16069 W:      http://www.st.com/spear
16070 F:      arch/arm/boot/dts/spear*
16071 F:      arch/arm/mach-spear/
16072
16073 SPI NOR SUBSYSTEM
16074 M:      Tudor Ambarus <[email protected]>
16075 L:      [email protected]
16076 S:      Maintained
16077 W:      http://www.linux-mtd.infradead.org/
16078 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16079 C:      irc://irc.oftc.net/mtd
16080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16081 F:      drivers/mtd/spi-nor/
16082 F:      include/linux/mtd/spi-nor.h
16083
16084 SPI SUBSYSTEM
16085 M:      Mark Brown <[email protected]>
16086 L:      [email protected]
16087 S:      Maintained
16088 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16090 F:      Documentation/devicetree/bindings/spi/
16091 F:      Documentation/spi/
16092 F:      drivers/spi/
16093 F:      include/linux/spi/
16094 F:      include/uapi/linux/spi/
16095 F:      tools/spi/
16096
16097 SPIDERNET NETWORK DRIVER for CELL
16098 M:      Ishizaki Kou <[email protected]>
16099 L:      [email protected]
16100 S:      Supported
16101 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
16102 F:      drivers/net/ethernet/toshiba/spider_net*
16103
16104 SPMI SUBSYSTEM
16105 R:      Stephen Boyd <[email protected]>
16106 L:      [email protected]
16107 F:      Documentation/devicetree/bindings/spmi/
16108 F:      drivers/spmi/
16109 F:      include/dt-bindings/spmi/spmi.h
16110 F:      include/linux/spmi.h
16111 F:      include/trace/events/spmi.h
16112
16113 SPU FILE SYSTEM
16114 M:      Jeremy Kerr <[email protected]>
16115 L:      [email protected]
16116 S:      Supported
16117 W:      http://www.ibm.com/developerworks/power/cell/
16118 F:      Documentation/filesystems/spufs/spufs.rst
16119 F:      arch/powerpc/platforms/cell/spufs/
16120
16121 SQUASHFS FILE SYSTEM
16122 M:      Phillip Lougher <[email protected]>
16123 L:      [email protected] (subscribers-only)
16124 S:      Maintained
16125 W:      http://squashfs.org.uk
16126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16127 F:      Documentation/filesystems/squashfs.rst
16128 F:      fs/squashfs/
16129
16130 SRM (Alpha) environment access
16131 M:      Jan-Benedict Glaw <[email protected]>
16132 S:      Maintained
16133 F:      arch/alpha/kernel/srm_env.c
16134
16135 ST LSM6DSx IMU IIO DRIVER
16136 M:      Lorenzo Bianconi <[email protected]>
16137 L:      [email protected]
16138 S:      Maintained
16139 W:      http://www.st.com/
16140 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16141 F:      drivers/iio/imu/st_lsm6dsx/
16142
16143 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16144 M:      Mickael Guene <[email protected]>
16145 L:      [email protected]
16146 S:      Maintained
16147 T:      git git://linuxtv.org/media_tree.git
16148 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16149 F:      drivers/media/i2c/st-mipid02.c
16150
16151 ST STM32 I2C/SMBUS DRIVER
16152 M:      Pierre-Yves MORDRET <[email protected]>
16153 L:      [email protected]
16154 S:      Maintained
16155 F:      drivers/i2c/busses/i2c-stm32*
16156
16157 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16158 M:      Song Qiang <[email protected]>
16159 L:      [email protected]
16160 S:      Maintained
16161 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16162 F:      drivers/iio/proximity/vl53l0x-i2c.c
16163
16164 STABLE BRANCH
16165 M:      Greg Kroah-Hartman <[email protected]>
16166 M:      Sasha Levin <[email protected]>
16167 L:      [email protected]
16168 S:      Supported
16169 F:      Documentation/process/stable-kernel-rules.rst
16170
16171 STAGING - ATOMISP DRIVER
16172 M:      Mauro Carvalho Chehab <[email protected]>
16173 R:      Sakari Ailus <[email protected]>
16174 L:      [email protected]
16175 S:      Maintained
16176 F:      drivers/staging/media/atomisp/
16177
16178 STAGING - COMEDI
16179 M:      Ian Abbott <[email protected]>
16180 M:      H Hartley Sweeten <[email protected]>
16181 S:      Odd Fixes
16182 F:      drivers/staging/comedi/
16183
16184 STAGING - FIELDBUS SUBSYSTEM
16185 M:      Sven Van Asbroeck <[email protected]>
16186 S:      Maintained
16187 F:      drivers/staging/fieldbus/*
16188 F:      drivers/staging/fieldbus/Documentation/
16189
16190 STAGING - HMS ANYBUS-S BUS
16191 M:      Sven Van Asbroeck <[email protected]>
16192 S:      Maintained
16193 F:      drivers/staging/fieldbus/anybuss/
16194
16195 STAGING - INDUSTRIAL IO
16196 M:      Jonathan Cameron <[email protected]>
16197 L:      [email protected]
16198 S:      Odd Fixes
16199 F:      Documentation/devicetree/bindings/staging/iio/
16200 F:      drivers/staging/iio/
16201
16202 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16203 M:      Marc Dietrich <[email protected]>
16204 L:      [email protected] (moderated for non-subscribers)
16205 L:      [email protected]
16206 S:      Maintained
16207 F:      drivers/staging/nvec/
16208
16209 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16210 M:      Jens Frederich <[email protected]>
16211 M:      Daniel Drake <[email protected]>
16212 M:      Jon Nettleton <[email protected]>
16213 S:      Maintained
16214 W:      http://wiki.laptop.org/go/DCON
16215 F:      drivers/staging/olpc_dcon/
16216
16217 STAGING - REALTEK RTL8188EU DRIVERS
16218 M:      Larry Finger <[email protected]>
16219 S:      Odd Fixes
16220 F:      drivers/staging/rtl8188eu/
16221
16222 STAGING - REALTEK RTL8712U DRIVERS
16223 M:      Larry Finger <[email protected]>
16224 M:      Florian Schilhabel <[email protected]>.
16225 S:      Odd Fixes
16226 F:      drivers/staging/rtl8712/
16227
16228 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16229 M:      Michael Hennerich <[email protected]>
16230 M:      Beniamin Bia <[email protected]>
16231 L:      [email protected]
16232 S:      Supported
16233 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16234 F:      drivers/staging/fbtft/fb_seps525.c
16235
16236 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16237 M:      Sudip Mukherjee <[email protected]>
16238 M:      Teddy Wang <[email protected]>
16239 M:      Sudip Mukherjee <[email protected]>
16240 L:      [email protected]
16241 S:      Maintained
16242 F:      drivers/staging/sm750fb/
16243
16244 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
16245 M:      William Hubbs <[email protected]>
16246 M:      Chris Brannon <[email protected]>
16247 M:      Kirk Reiser <[email protected]>
16248 M:      Samuel Thibault <[email protected]>
16249 L:      [email protected]
16250 S:      Odd Fixes
16251 W:      http://www.linux-speakup.org/
16252 F:      drivers/staging/speakup/
16253
16254 STAGING - VIA VT665X DRIVERS
16255 M:      Forest Bond <[email protected]>
16256 S:      Odd Fixes
16257 F:      drivers/staging/vt665?/
16258
16259 STAGING - WILC1000 WIFI DRIVER
16260 M:      Adham Abozaeid <[email protected]>
16261 M:      Ajay Singh <[email protected]>
16262 L:      [email protected]
16263 S:      Supported
16264 F:      drivers/staging/wilc1000/
16265
16266 STAGING SUBSYSTEM
16267 M:      Greg Kroah-Hartman <[email protected]>
16268 L:      [email protected]
16269 S:      Supported
16270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16271 F:      drivers/staging/
16272
16273 STARFIRE/DURALAN NETWORK DRIVER
16274 M:      Ion Badulescu <[email protected]>
16275 S:      Odd Fixes
16276 F:      drivers/net/ethernet/adaptec/starfire*
16277
16278 STEC S1220 SKD DRIVER
16279 M:      Damien Le Moal <[email protected]>
16280 L:      [email protected]
16281 S:      Maintained
16282 F:      drivers/block/skd*[ch]
16283
16284 STI AUDIO (ASoC) DRIVERS
16285 M:      Arnaud Pouliquen <[email protected]>
16286 L:      [email protected] (moderated for non-subscribers)
16287 S:      Maintained
16288 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16289 F:      sound/soc/sti/
16290
16291 STI CEC DRIVER
16292 M:      Benjamin Gaignard <[email protected]>
16293 S:      Maintained
16294 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16295 F:      drivers/media/platform/sti/cec/
16296
16297 STK1160 USB VIDEO CAPTURE DRIVER
16298 M:      Ezequiel Garcia <[email protected]>
16299 L:      [email protected]
16300 S:      Maintained
16301 T:      git git://linuxtv.org/media_tree.git
16302 F:      drivers/media/usb/stk1160/
16303
16304 STM32 AUDIO (ASoC) DRIVERS
16305 M:      Olivier Moysan <[email protected]>
16306 M:      Arnaud Pouliquen <[email protected]>
16307 L:      [email protected] (moderated for non-subscribers)
16308 S:      Maintained
16309 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16310 F:      sound/soc/stm/
16311
16312 STM32 TIMER/LPTIMER DRIVERS
16313 M:      Fabrice Gasnier <[email protected]>
16314 S:      Maintained
16315 F:      Documentation/ABI/testing/*timer-stm32
16316 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16317 F:      drivers/*/stm32-*timer*
16318 F:      drivers/pwm/pwm-stm32*
16319 F:      include/linux/*/stm32-*tim*
16320
16321 STMMAC ETHERNET DRIVER
16322 M:      Giuseppe Cavallaro <[email protected]>
16323 M:      Alexandre Torgue <[email protected]>
16324 M:      Jose Abreu <[email protected]>
16325 L:      [email protected]
16326 S:      Supported
16327 W:      http://www.stlinux.com
16328 F:      Documentation/networking/device_drivers/ethernet/stmicro/
16329 F:      drivers/net/ethernet/stmicro/stmmac/
16330
16331 SUN3/3X
16332 M:      Sam Creasey <[email protected]>
16333 S:      Maintained
16334 W:      http://sammy.net/sun3/
16335 F:      arch/m68k/include/asm/sun3*
16336 F:      arch/m68k/kernel/*sun3*
16337 F:      arch/m68k/sun3*/
16338 F:      drivers/net/ethernet/i825xx/sun3*
16339
16340 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16341 M:      Hans de Goede <[email protected]>
16342 L:      [email protected]
16343 S:      Maintained
16344 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16345 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16346
16347 SUNDANCE NETWORK DRIVER
16348 M:      Denis Kirjanov <[email protected]>
16349 L:      [email protected]
16350 S:      Maintained
16351 F:      drivers/net/ethernet/dlink/sundance.c
16352
16353 SUPERH
16354 M:      Yoshinori Sato <[email protected]>
16355 M:      Rich Felker <[email protected]>
16356 L:      [email protected]
16357 S:      Maintained
16358 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16359 F:      Documentation/sh/
16360 F:      arch/sh/
16361 F:      drivers/sh/
16362
16363 SUSPEND TO RAM
16364 M:      "Rafael J. Wysocki" <[email protected]>
16365 M:      Len Brown <[email protected]>
16366 M:      Pavel Machek <[email protected]>
16367 L:      [email protected]
16368 S:      Supported
16369 B:      https://bugzilla.kernel.org
16370 F:      Documentation/power/
16371 F:      arch/x86/kernel/acpi/
16372 F:      drivers/base/power/
16373 F:      include/linux/freezer.h
16374 F:      include/linux/pm.h
16375 F:      include/linux/suspend.h
16376 F:      kernel/power/
16377
16378 SVGA HANDLING
16379 M:      Martin Mares <[email protected]>
16380 L:      [email protected]
16381 S:      Maintained
16382 F:      Documentation/admin-guide/svga.rst
16383 F:      arch/x86/boot/video*
16384
16385 SWIOTLB SUBSYSTEM
16386 M:      Konrad Rzeszutek Wilk <[email protected]>
16387 L:      [email protected]
16388 S:      Supported
16389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16390 F:      arch/*/kernel/pci-swiotlb.c
16391 F:      include/linux/swiotlb.h
16392 F:      kernel/dma/swiotlb.c
16393
16394 SWITCHDEV
16395 M:      Jiri Pirko <[email protected]>
16396 M:      Ivan Vecera <[email protected]>
16397 L:      [email protected]
16398 S:      Supported
16399 F:      include/net/switchdev.h
16400 F:      net/switchdev/
16401
16402 SY8106A REGULATOR DRIVER
16403 M:      Icenowy Zheng <[email protected]>
16404 S:      Maintained
16405 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16406 F:      drivers/regulator/sy8106a-regulator.c
16407
16408 SYNC FILE FRAMEWORK
16409 M:      Sumit Semwal <[email protected]>
16410 R:      Gustavo Padovan <[email protected]>
16411 L:      [email protected]
16412 L:      [email protected]
16413 S:      Maintained
16414 T:      git git://anongit.freedesktop.org/drm/drm-misc
16415 F:      Documentation/driver-api/sync_file.rst
16416 F:      drivers/dma-buf/dma-fence*
16417 F:      drivers/dma-buf/sw_sync.c
16418 F:      drivers/dma-buf/sync_*
16419 F:      include/linux/sync_file.h
16420 F:      include/uapi/linux/sync_file.h
16421
16422 SYNOPSYS ARC ARCHITECTURE
16423 M:      Vineet Gupta <[email protected]>
16424 L:      [email protected]
16425 S:      Supported
16426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16427 F:      Documentation/devicetree/bindings/arc/*
16428 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16429 F:      arch/arc/
16430 F:      drivers/clocksource/arc_timer.c
16431 F:      drivers/tty/serial/arc_uart.c
16432
16433 SYNOPSYS ARC HSDK SDP pll clock driver
16434 M:      Eugeniy Paltsev <[email protected]>
16435 S:      Supported
16436 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16437 F:      drivers/clk/clk-hsdk-pll.c
16438
16439 SYNOPSYS ARC SDP clock driver
16440 M:      Eugeniy Paltsev <[email protected]>
16441 S:      Supported
16442 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16443 F:      drivers/clk/axs10x/*
16444
16445 SYNOPSYS ARC SDP platform support
16446 M:      Alexey Brodkin <[email protected]>
16447 S:      Supported
16448 F:      Documentation/devicetree/bindings/arc/axs10*
16449 F:      arch/arc/boot/dts/ax*
16450 F:      arch/arc/plat-axs10x
16451
16452 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16453 M:      Eugeniy Paltsev <[email protected]>
16454 S:      Supported
16455 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16456 F:      drivers/reset/reset-axs10x.c
16457
16458 SYNOPSYS CREG GPIO DRIVER
16459 M:      Eugeniy Paltsev <[email protected]>
16460 S:      Maintained
16461 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16462 F:      drivers/gpio/gpio-creg-snps.c
16463
16464 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16465 R:      Andy Shevchenko <[email protected]>
16466 S:      Maintained
16467 F:      drivers/tty/serial/8250/8250_dw.c
16468 F:      drivers/tty/serial/8250/8250_dwlib.*
16469 F:      drivers/tty/serial/8250/8250_lpss.c
16470
16471 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16472 M:      Hoan Tran <[email protected]>
16473 M:      Serge Semin <[email protected]>
16474 L:      [email protected]
16475 S:      Maintained
16476 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
16477 F:      drivers/gpio/gpio-dwapb.c
16478
16479 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16480 M:      Eugeniy Paltsev <[email protected]>
16481 S:      Maintained
16482 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16483 F:      drivers/dma/dw-axi-dmac/
16484
16485 SYNOPSYS DESIGNWARE DMAC DRIVER
16486 M:      Viresh Kumar <[email protected]>
16487 R:      Andy Shevchenko <[email protected]>
16488 S:      Maintained
16489 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16490 F:      drivers/dma/dw/
16491 F:      include/dt-bindings/dma/dw-dmac.h
16492 F:      include/linux/dma/dw.h
16493 F:      include/linux/platform_data/dma-dw.h
16494
16495 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16496 M:      Jose Abreu <[email protected]>
16497 L:      [email protected]
16498 S:      Supported
16499 F:      drivers/net/ethernet/synopsys/
16500
16501 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16502 M:      Jose Abreu <[email protected]>
16503 L:      [email protected]
16504 S:      Supported
16505 F:      drivers/net/phy/mdio-xpcs.c
16506 F:      include/linux/mdio-xpcs.h
16507
16508 SYNOPSYS DESIGNWARE I2C DRIVER
16509 M:      Jarkko Nikula <[email protected]>
16510 R:      Andy Shevchenko <[email protected]>
16511 R:      Mika Westerberg <[email protected]>
16512 L:      [email protected]
16513 S:      Maintained
16514 F:      drivers/i2c/busses/i2c-designware-*
16515 F:      include/linux/platform_data/i2c-designware.h
16516
16517 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16518 M:      Jaehoon Chung <[email protected]>
16519 L:      [email protected]
16520 S:      Maintained
16521 F:      drivers/mmc/host/dw_mmc*
16522
16523 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16524 M:      Eugeniy Paltsev <[email protected]>
16525 S:      Supported
16526 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16527 F:      drivers/reset/reset-hsdk.c
16528 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16529
16530 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
16531 M:      Prabu Thangamuthu <[email protected]>
16532 M:      Manjunath M B <[email protected]>
16533 L:      [email protected]
16534 S:      Maintained
16535 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
16536
16537 SYSTEM CONFIGURATION (SYSCON)
16538 M:      Lee Jones <[email protected]>
16539 M:      Arnd Bergmann <[email protected]>
16540 S:      Supported
16541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16542 F:      drivers/mfd/syscon.c
16543
16544 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16545 M:      Sudeep Holla <[email protected]>
16546 L:      [email protected]
16547 S:      Maintained
16548 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16549 F:      drivers/clk/clk-sc[mp]i.c
16550 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16551 F:      drivers/firmware/arm_scmi/
16552 F:      drivers/firmware/arm_scpi.c
16553 F:      drivers/reset/reset-scmi.c
16554 F:      include/linux/sc[mp]i_protocol.h
16555 F:      include/trace/events/scmi.h
16556
16557 SYSTEM RESET/SHUTDOWN DRIVERS
16558 M:      Sebastian Reichel <[email protected]>
16559 L:      [email protected]
16560 S:      Maintained
16561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16562 F:      Documentation/devicetree/bindings/power/reset/
16563 F:      drivers/power/reset/
16564
16565 SYSTEM TRACE MODULE CLASS
16566 M:      Alexander Shishkin <[email protected]>
16567 S:      Maintained
16568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16569 F:      Documentation/trace/stm.rst
16570 F:      drivers/hwtracing/stm/
16571 F:      include/linux/stm.h
16572 F:      include/uapi/linux/stm.h
16573
16574 SYSTEM76 ACPI DRIVER
16575 M:      Jeremy Soller <[email protected]>
16576 M:      System76 Product Development <[email protected]>
16577 L:      [email protected]
16578 S:      Maintained
16579 F:      drivers/platform/x86/system76_acpi.c
16580
16581 SYSV FILESYSTEM
16582 M:      Christoph Hellwig <[email protected]>
16583 S:      Maintained
16584 F:      Documentation/filesystems/sysv-fs.rst
16585 F:      fs/sysv/
16586 F:      include/linux/sysv_fs.h
16587
16588 TASKSTATS STATISTICS INTERFACE
16589 M:      Balbir Singh <[email protected]>
16590 S:      Maintained
16591 F:      Documentation/accounting/taskstats*
16592 F:      include/linux/taskstats*
16593 F:      kernel/taskstats.c
16594
16595 TC subsystem
16596 M:      Jamal Hadi Salim <[email protected]>
16597 M:      Cong Wang <[email protected]>
16598 M:      Jiri Pirko <[email protected]>
16599 L:      [email protected]
16600 S:      Maintained
16601 F:      include/net/pkt_cls.h
16602 F:      include/net/pkt_sched.h
16603 F:      include/net/tc_act/
16604 F:      include/uapi/linux/pkt_cls.h
16605 F:      include/uapi/linux/pkt_sched.h
16606 F:      include/uapi/linux/tc_act/
16607 F:      include/uapi/linux/tc_ematch/
16608 F:      net/sched/
16609
16610 TC90522 MEDIA DRIVER
16611 M:      Akihiro Tsukada <[email protected]>
16612 L:      [email protected]
16613 S:      Odd Fixes
16614 F:      drivers/media/dvb-frontends/tc90522*
16615
16616 TCP LOW PRIORITY MODULE
16617 M:      "Wong Hoi Sing, Edison" <[email protected]>
16618 M:      "Hung Hing Lun, Mike" <[email protected]>
16619 S:      Maintained
16620 W:      http://tcp-lp-mod.sourceforge.net/
16621 F:      net/ipv4/tcp_lp.c
16622
16623 TDA10071 MEDIA DRIVER
16624 M:      Antti Palosaari <[email protected]>
16625 L:      [email protected]
16626 S:      Maintained
16627 W:      https://linuxtv.org
16628 W:      http://palosaari.fi/linux/
16629 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16630 T:      git git://linuxtv.org/anttip/media_tree.git
16631 F:      drivers/media/dvb-frontends/tda10071*
16632
16633 TDA18212 MEDIA DRIVER
16634 M:      Antti Palosaari <[email protected]>
16635 L:      [email protected]
16636 S:      Maintained
16637 W:      https://linuxtv.org
16638 W:      http://palosaari.fi/linux/
16639 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16640 T:      git git://linuxtv.org/anttip/media_tree.git
16641 F:      drivers/media/tuners/tda18212*
16642
16643 TDA18218 MEDIA DRIVER
16644 M:      Antti Palosaari <[email protected]>
16645 L:      [email protected]
16646 S:      Maintained
16647 W:      https://linuxtv.org
16648 W:      http://palosaari.fi/linux/
16649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16650 T:      git git://linuxtv.org/anttip/media_tree.git
16651 F:      drivers/media/tuners/tda18218*
16652
16653 TDA18250 MEDIA DRIVER
16654 M:      Olli Salonen <[email protected]>
16655 L:      [email protected]
16656 S:      Maintained
16657 W:      https://linuxtv.org
16658 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16659 T:      git git://linuxtv.org/media_tree.git
16660 F:      drivers/media/tuners/tda18250*
16661
16662 TDA18271 MEDIA DRIVER
16663 M:      Michael Krufky <[email protected]>
16664 L:      [email protected]
16665 S:      Maintained
16666 W:      https://linuxtv.org
16667 W:      http://github.com/mkrufky
16668 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16669 T:      git git://linuxtv.org/mkrufky/tuners.git
16670 F:      drivers/media/tuners/tda18271*
16671
16672 TDA1997x MEDIA DRIVER
16673 M:      Tim Harvey <[email protected]>
16674 L:      [email protected]
16675 S:      Maintained
16676 W:      https://linuxtv.org
16677 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16678 F:      drivers/media/i2c/tda1997x.*
16679
16680 TDA827x MEDIA DRIVER
16681 M:      Michael Krufky <[email protected]>
16682 L:      [email protected]
16683 S:      Maintained
16684 W:      https://linuxtv.org
16685 W:      http://github.com/mkrufky
16686 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16687 T:      git git://linuxtv.org/mkrufky/tuners.git
16688 F:      drivers/media/tuners/tda8290.*
16689
16690 TDA8290 MEDIA DRIVER
16691 M:      Michael Krufky <[email protected]>
16692 L:      [email protected]
16693 S:      Maintained
16694 W:      https://linuxtv.org
16695 W:      http://github.com/mkrufky
16696 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16697 T:      git git://linuxtv.org/mkrufky/tuners.git
16698 F:      drivers/media/tuners/tda8290.*
16699
16700 TDA9840 MEDIA DRIVER
16701 M:      Hans Verkuil <[email protected]>
16702 L:      [email protected]
16703 S:      Maintained
16704 W:      https://linuxtv.org
16705 T:      git git://linuxtv.org/media_tree.git
16706 F:      drivers/media/i2c/tda9840*
16707
16708 TEA5761 TUNER DRIVER
16709 M:      Mauro Carvalho Chehab <[email protected]>
16710 L:      [email protected]
16711 S:      Odd fixes
16712 W:      https://linuxtv.org
16713 T:      git git://linuxtv.org/media_tree.git
16714 F:      drivers/media/tuners/tea5761.*
16715
16716 TEA5767 TUNER DRIVER
16717 M:      Mauro Carvalho Chehab <[email protected]>
16718 L:      [email protected]
16719 S:      Maintained
16720 W:      https://linuxtv.org
16721 T:      git git://linuxtv.org/media_tree.git
16722 F:      drivers/media/tuners/tea5767.*
16723
16724 TEA6415C MEDIA DRIVER
16725 M:      Hans Verkuil <[email protected]>
16726 L:      [email protected]
16727 S:      Maintained
16728 W:      https://linuxtv.org
16729 T:      git git://linuxtv.org/media_tree.git
16730 F:      drivers/media/i2c/tea6415c*
16731
16732 TEA6420 MEDIA DRIVER
16733 M:      Hans Verkuil <[email protected]>
16734 L:      [email protected]
16735 S:      Maintained
16736 W:      https://linuxtv.org
16737 T:      git git://linuxtv.org/media_tree.git
16738 F:      drivers/media/i2c/tea6420*
16739
16740 TEAM DRIVER
16741 M:      Jiri Pirko <[email protected]>
16742 L:      [email protected]
16743 S:      Supported
16744 F:      drivers/net/team/
16745 F:      include/linux/if_team.h
16746 F:      include/uapi/linux/if_team.h
16747
16748 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16749 M:      "Savoir-faire Linux Inc." <[email protected]>
16750 S:      Maintained
16751 F:      arch/x86/platform/ts5500/
16752
16753 TECHNOTREND USB IR RECEIVER
16754 M:      Sean Young <[email protected]>
16755 L:      [email protected]
16756 S:      Maintained
16757 F:      drivers/media/rc/ttusbir.c
16758
16759 TECHWELL TW9910 VIDEO DECODER
16760 L:      [email protected]
16761 S:      Orphan
16762 F:      drivers/media/i2c/tw9910.c
16763 F:      include/media/i2c/tw9910.h
16764
16765 TEE SUBSYSTEM
16766 M:      Jens Wiklander <[email protected]>
16767 L:      [email protected]
16768 S:      Maintained
16769 F:      Documentation/tee.txt
16770 F:      drivers/tee/
16771 F:      include/linux/tee_drv.h
16772 F:      include/uapi/linux/tee.h
16773
16774 TEGRA ARCHITECTURE SUPPORT
16775 M:      Thierry Reding <[email protected]>
16776 M:      Jonathan Hunter <[email protected]>
16777 L:      [email protected]
16778 S:      Supported
16779 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16781 N:      [^a-z]tegra
16782
16783 TEGRA CLOCK DRIVER
16784 M:      Peter De Schrijver <[email protected]>
16785 M:      Prashant Gaikwad <[email protected]>
16786 S:      Supported
16787 F:      drivers/clk/tegra/
16788
16789 TEGRA DMA DRIVERS
16790 M:      Laxman Dewangan <[email protected]>
16791 M:      Jon Hunter <[email protected]>
16792 S:      Supported
16793 F:      drivers/dma/tegra*
16794
16795 TEGRA I2C DRIVER
16796 M:      Laxman Dewangan <[email protected]>
16797 R:      Dmitry Osipenko <[email protected]>
16798 S:      Supported
16799 F:      drivers/i2c/busses/i2c-tegra.c
16800
16801 TEGRA IOMMU DRIVERS
16802 M:      Thierry Reding <[email protected]>
16803 L:      [email protected]
16804 S:      Supported
16805 F:      drivers/iommu/tegra*
16806
16807 TEGRA KBC DRIVER
16808 M:      Laxman Dewangan <[email protected]>
16809 S:      Supported
16810 F:      drivers/input/keyboard/tegra-kbc.c
16811
16812 TEGRA NAND DRIVER
16813 M:      Stefan Agner <[email protected]>
16814 M:      Lucas Stach <[email protected]>
16815 S:      Maintained
16816 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16817 F:      drivers/mtd/nand/raw/tegra_nand.c
16818
16819 TEGRA PWM DRIVER
16820 M:      Thierry Reding <[email protected]>
16821 S:      Supported
16822 F:      drivers/pwm/pwm-tegra.c
16823
16824 TEGRA SERIAL DRIVER
16825 M:      Laxman Dewangan <[email protected]>
16826 S:      Supported
16827 F:      drivers/tty/serial/serial-tegra.c
16828
16829 TEGRA SPI DRIVER
16830 M:      Laxman Dewangan <[email protected]>
16831 S:      Supported
16832 F:      drivers/spi/spi-tegra*
16833
16834 TEGRA VIDEO DRIVER
16835 M:      Thierry Reding <[email protected]>
16836 M:      Jonathan Hunter <[email protected]>
16837 M:      Sowjanya Komatineni <[email protected]>
16838 L:      [email protected]
16839 L:      [email protected]
16840 S:      Maintained
16841 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
16842 F:      drivers/staging/media/tegra-video/
16843
16844 TEGRA XUSB PADCTL DRIVER
16845 M:      JC Kuo <[email protected]>
16846 S:      Supported
16847 F:      drivers/phy/tegra/xusb*
16848
16849 TEHUTI ETHERNET DRIVER
16850 M:      Andy Gospodarek <[email protected]>
16851 L:      [email protected]
16852 S:      Supported
16853 F:      drivers/net/ethernet/tehuti/*
16854
16855 TELECOM CLOCK DRIVER FOR MCPL0010
16856 M:      Mark Gross <[email protected]>
16857 S:      Supported
16858 F:      drivers/char/tlclk.c
16859
16860 TEMPO SEMICONDUCTOR DRIVERS
16861 M:      Steven Eckhoff <[email protected]>
16862 S:      Maintained
16863 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16864 F:      sound/soc/codecs/tscs*.c
16865 F:      sound/soc/codecs/tscs*.h
16866
16867 TENSILICA XTENSA PORT (xtensa)
16868 M:      Chris Zankel <[email protected]>
16869 M:      Max Filippov <[email protected]>
16870 L:      [email protected]
16871 S:      Maintained
16872 T:      git git://github.com/czankel/xtensa-linux.git
16873 F:      arch/xtensa/
16874 F:      drivers/irqchip/irq-xtensa-*
16875
16876 TEXAS INSTRUMENTS ASoC DRIVERS
16877 M:      Peter Ujfalusi <[email protected]>
16878 L:      [email protected] (moderated for non-subscribers)
16879 S:      Maintained
16880 F:      sound/soc/ti/
16881
16882 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
16883 M:      Ricardo Ribalda <[email protected]>
16884 L:      [email protected]
16885 S:      Supported
16886 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16887 F:      drivers/iio/dac/ti-dac7612.c
16888
16889 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
16890 M:      Nishanth Menon <[email protected]>
16891 M:      Tero Kristo <[email protected]>
16892 M:      Santosh Shilimkar <[email protected]>
16893 L:      [email protected]
16894 S:      Maintained
16895 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16896 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16897 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16898 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16899 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16900 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16901 F:      drivers/clk/keystone/sci-clk.c
16902 F:      drivers/firmware/ti_sci*
16903 F:      drivers/irqchip/irq-ti-sci-inta.c
16904 F:      drivers/irqchip/irq-ti-sci-intr.c
16905 F:      drivers/reset/reset-ti-sci.c
16906 F:      drivers/soc/ti/ti_sci_inta_msi.c
16907 F:      drivers/soc/ti/ti_sci_pm_domains.c
16908 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16909 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16910 F:      include/linux/soc/ti/ti_sci_protocol.h
16911
16912 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16913 M:      Hans Verkuil <[email protected]>
16914 L:      [email protected]
16915 S:      Maintained
16916 W:      https://linuxtv.org
16917 T:      git git://linuxtv.org/media_tree.git
16918 F:      drivers/media/radio/radio-raremono.c
16919
16920 THERMAL
16921 M:      Zhang Rui <[email protected]>
16922 M:      Daniel Lezcano <[email protected]>
16923 R:      Amit Kucheria <[email protected]>
16924 L:      [email protected]
16925 S:      Supported
16926 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16928 F:      Documentation/devicetree/bindings/thermal/
16929 F:      drivers/thermal/
16930 F:      include/linux/cpu_cooling.h
16931 F:      include/linux/thermal.h
16932 F:      include/uapi/linux/thermal.h
16933
16934 THERMAL DRIVER FOR AMLOGIC SOCS
16935 M:      Guillaume La Roque <[email protected]>
16936 L:      [email protected]
16937 L:      [email protected]
16938 S:      Supported
16939 W:      http://linux-meson.com/
16940 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16941 F:      drivers/thermal/amlogic_thermal.c
16942
16943 THERMAL/CPU_COOLING
16944 M:      Amit Daniel Kachhap <[email protected]>
16945 M:      Daniel Lezcano <[email protected]>
16946 M:      Viresh Kumar <[email protected]>
16947 M:      Javi Merino <[email protected]>
16948 L:      [email protected]
16949 S:      Supported
16950 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16951 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
16952 F:      drivers/thermal/cpufreq_cooling.c
16953 F:      drivers/thermal/cpuidle_cooling.c
16954 F:      include/linux/cpu_cooling.h
16955
16956 THINKPAD ACPI EXTRAS DRIVER
16957 M:      Henrique de Moraes Holschuh <[email protected]>
16958 L:      [email protected]
16959 L:      [email protected]
16960 S:      Maintained
16961 W:      http://ibm-acpi.sourceforge.net
16962 W:      http://thinkwiki.org/wiki/Ibm-acpi
16963 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16964 F:      drivers/platform/x86/thinkpad_acpi.c
16965
16966 THUNDERBOLT DRIVER
16967 M:      Andreas Noever <[email protected]>
16968 M:      Michael Jamet <[email protected]>
16969 M:      Mika Westerberg <[email protected]>
16970 M:      Yehezkel Bernat <[email protected]>
16971 L:      [email protected]
16972 S:      Maintained
16973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16974 F:      Documentation/admin-guide/thunderbolt.rst
16975 F:      drivers/thunderbolt/
16976 F:      include/linux/thunderbolt.h
16977
16978 THUNDERBOLT NETWORK DRIVER
16979 M:      Michael Jamet <[email protected]>
16980 M:      Mika Westerberg <[email protected]>
16981 M:      Yehezkel Bernat <[email protected]>
16982 L:      [email protected]
16983 S:      Maintained
16984 F:      drivers/net/thunderbolt.c
16985
16986 THUNDERX GPIO DRIVER
16987 M:      Robert Richter <[email protected]>
16988 S:      Maintained
16989 F:      drivers/gpio/gpio-thunderx.c
16990
16991 TI AM437X VPFE DRIVER
16992 M:      "Lad, Prabhakar" <[email protected]>
16993 L:      [email protected]
16994 S:      Maintained
16995 W:      https://linuxtv.org
16996 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16997 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16998 F:      drivers/media/platform/am437x/
16999
17000 TI BANDGAP AND THERMAL DRIVER
17001 M:      Eduardo Valentin <[email protected]>
17002 M:      Keerthy <[email protected]>
17003 L:      [email protected]
17004 L:      [email protected]
17005 S:      Maintained
17006 F:      drivers/thermal/ti-soc-thermal/
17007
17008 TI BQ27XXX POWER SUPPLY DRIVER
17009 R:      Andrew F. Davis <[email protected]>
17010 F:      drivers/power/supply/bq27xxx_battery.c
17011 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17012 F:      include/linux/power/bq27xxx_battery.h
17013
17014 TI CDCE706 CLOCK DRIVER
17015 M:      Max Filippov <[email protected]>
17016 S:      Maintained
17017 F:      drivers/clk/clk-cdce706.c
17018
17019 TI CLOCK DRIVER
17020 M:      Tero Kristo <[email protected]>
17021 L:      [email protected]
17022 S:      Maintained
17023 F:      drivers/clk/ti/
17024 F:      include/linux/clk/ti.h
17025
17026 TI DAVINCI MACHINE SUPPORT
17027 M:      Sekhar Nori <[email protected]>
17028 R:      Bartosz Golaszewski <[email protected]>
17029 L:      [email protected] (moderated for non-subscribers)
17030 S:      Supported
17031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17032 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17033 F:      arch/arm/boot/dts/da850*
17034 F:      arch/arm/mach-davinci/
17035 F:      drivers/i2c/busses/i2c-davinci.c
17036
17037 TI DAVINCI SERIES CLOCK DRIVER
17038 M:      David Lechner <[email protected]>
17039 R:      Sekhar Nori <[email protected]>
17040 S:      Maintained
17041 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17042 F:      drivers/clk/davinci/
17043
17044 TI DAVINCI SERIES GPIO DRIVER
17045 M:      Keerthy <[email protected]>
17046 L:      [email protected]
17047 S:      Maintained
17048 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17049 F:      drivers/gpio/gpio-davinci.c
17050
17051 TI DAVINCI SERIES MEDIA DRIVER
17052 M:      "Lad, Prabhakar" <[email protected]>
17053 L:      [email protected]
17054 S:      Maintained
17055 W:      https://linuxtv.org
17056 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17057 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17058 F:      drivers/media/platform/davinci/
17059 F:      include/media/davinci/
17060
17061 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17062 R:      David Lechner <[email protected]>
17063 L:      [email protected]
17064 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17065 F:      drivers/counter/ti-eqep.c
17066
17067 TI ETHERNET SWITCH DRIVER (CPSW)
17068 R:      Grygorii Strashko <[email protected]>
17069 L:      [email protected]
17070 L:      [email protected]
17071 S:      Maintained
17072 F:      drivers/net/ethernet/ti/cpsw*
17073 F:      drivers/net/ethernet/ti/davinci*
17074
17075 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17076 M:      Alex Dubov <[email protected]>
17077 S:      Maintained
17078 W:      http://tifmxx.berlios.de/
17079 F:      drivers/memstick/host/tifm_ms.c
17080 F:      drivers/misc/tifm*
17081 F:      drivers/mmc/host/tifm_sd.c
17082 F:      include/linux/tifm.h
17083
17084 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17085 M:      Santosh Shilimkar <[email protected]>
17086 L:      [email protected]
17087 L:      [email protected] (moderated for non-subscribers)
17088 S:      Maintained
17089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17090 F:      drivers/soc/ti/*
17091
17092 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17093 M:      M R Swami Reddy <[email protected]>
17094 M:      Vishwas A Deshpande <[email protected]>
17095 L:      [email protected] (moderated for non-subscribers)
17096 S:      Maintained
17097 F:      sound/soc/codecs/isabelle*
17098 F:      sound/soc/codecs/lm49453*
17099
17100 TI LP855x BACKLIGHT DRIVER
17101 M:      Milo Kim <[email protected]>
17102 S:      Maintained
17103 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17104 F:      drivers/video/backlight/lp855x_bl.c
17105 F:      include/linux/platform_data/lp855x.h
17106
17107 TI LP8727 CHARGER DRIVER
17108 M:      Milo Kim <[email protected]>
17109 S:      Maintained
17110 F:      drivers/power/supply/lp8727_charger.c
17111 F:      include/linux/platform_data/lp8727.h
17112
17113 TI LP8788 MFD DRIVER
17114 M:      Milo Kim <[email protected]>
17115 S:      Maintained
17116 F:      drivers/iio/adc/lp8788_adc.c
17117 F:      drivers/leds/leds-lp8788.c
17118 F:      drivers/mfd/lp8788*.c
17119 F:      drivers/power/supply/lp8788-charger.c
17120 F:      drivers/regulator/lp8788-*.c
17121 F:      include/linux/mfd/lp8788*.h
17122
17123 TI NETCP ETHERNET DRIVER
17124 M:      Wingman Kwok <[email protected]>
17125 M:      Murali Karicheri <[email protected]>
17126 L:      [email protected]
17127 S:      Maintained
17128 F:      drivers/net/ethernet/ti/netcp*
17129
17130 TI PCM3060 ASoC CODEC DRIVER
17131 M:      Kirill Marinushkin <[email protected]>
17132 L:      [email protected] (moderated for non-subscribers)
17133 S:      Maintained
17134 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17135 F:      sound/soc/codecs/pcm3060*
17136
17137 TI TAS571X FAMILY ASoC CODEC DRIVER
17138 M:      Kevin Cernekee <[email protected]>
17139 L:      [email protected] (moderated for non-subscribers)
17140 S:      Odd Fixes
17141 F:      sound/soc/codecs/tas571x*
17142
17143 TI TCAN4X5X DEVICE DRIVER
17144 M:      Dan Murphy <[email protected]>
17145 L:      [email protected]
17146 S:      Maintained
17147 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17148 F:      drivers/net/can/m_can/tcan4x5x.c
17149
17150 TI TRF7970A NFC DRIVER
17151 M:      Mark Greer <[email protected]>
17152 L:      [email protected]
17153 L:      [email protected] (moderated for non-subscribers)
17154 S:      Supported
17155 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17156 F:      drivers/nfc/trf7970a.c
17157
17158 TI TWL4030 SERIES SOC CODEC DRIVER
17159 M:      Peter Ujfalusi <[email protected]>
17160 L:      [email protected] (moderated for non-subscribers)
17161 S:      Maintained
17162 F:      sound/soc/codecs/twl4030*
17163
17164 TI VPE/CAL DRIVERS
17165 M:      Benoit Parrot <[email protected]>
17166 L:      [email protected]
17167 S:      Maintained
17168 W:      http://linuxtv.org/
17169 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17170 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17171 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17172 F:      drivers/media/platform/ti-vpe/
17173
17174 TI WILINK WIRELESS DRIVERS
17175 L:      [email protected]
17176 S:      Orphan
17177 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17178 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17180 F:      drivers/net/wireless/ti/
17181 F:      include/linux/wl12xx.h
17182
17183 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17184 M:      John Stultz <[email protected]>
17185 M:      Thomas Gleixner <[email protected]>
17186 R:      Stephen Boyd <[email protected]>
17187 L:      [email protected]
17188 S:      Supported
17189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17190 F:      include/linux/clocksource.h
17191 F:      include/linux/time.h
17192 F:      include/linux/timex.h
17193 F:      include/uapi/linux/time.h
17194 F:      include/uapi/linux/timex.h
17195 F:      kernel/time/alarmtimer.c
17196 F:      kernel/time/clocksource.c
17197 F:      kernel/time/ntp.c
17198 F:      kernel/time/time*.c
17199 F:      tools/testing/selftests/timers/
17200
17201 TIPC NETWORK LAYER
17202 M:      Jon Maloy <[email protected]>
17203 M:      Ying Xue <[email protected]>
17204 L:      [email protected] (core kernel code)
17205 L:      [email protected] (user apps, general discussion)
17206 S:      Maintained
17207 W:      http://tipc.sourceforge.net/
17208 F:      include/uapi/linux/tipc*.h
17209 F:      net/tipc/
17210
17211 TLAN NETWORK DRIVER
17212 M:      Samuel Chessman <[email protected]>
17213 L:      [email protected] (subscribers-only)
17214 S:      Maintained
17215 W:      http://sourceforge.net/projects/tlan/
17216 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
17217 F:      drivers/net/ethernet/ti/tlan.*
17218
17219 TM6000 VIDEO4LINUX DRIVER
17220 M:      Mauro Carvalho Chehab <[email protected]>
17221 L:      [email protected]
17222 S:      Odd fixes
17223 W:      https://linuxtv.org
17224 T:      git git://linuxtv.org/media_tree.git
17225 F:      Documentation/admin-guide/media/tm6000*
17226 F:      drivers/media/usb/tm6000/
17227
17228 TMIO/SDHI MMC DRIVER
17229 M:      Wolfram Sang <[email protected]>
17230 L:      [email protected]
17231 S:      Supported
17232 F:      drivers/mmc/host/renesas_sdhi*
17233 F:      drivers/mmc/host/tmio_mmc*
17234 F:      include/linux/mfd/tmio.h
17235
17236 TMP401 HARDWARE MONITOR DRIVER
17237 M:      Guenter Roeck <[email protected]>
17238 L:      [email protected]
17239 S:      Maintained
17240 F:      Documentation/hwmon/tmp401.rst
17241 F:      drivers/hwmon/tmp401.c
17242
17243 TMP513 HARDWARE MONITOR DRIVER
17244 M:      Eric Tremblay <[email protected]>
17245 L:      [email protected]
17246 S:      Maintained
17247 F:      Documentation/hwmon/tmp513.rst
17248 F:      drivers/hwmon/tmp513.c
17249
17250 TMPFS (SHMEM FILESYSTEM)
17251 M:      Hugh Dickins <[email protected]>
17252 L:      [email protected]
17253 S:      Maintained
17254 F:      include/linux/shmem_fs.h
17255 F:      mm/shmem.c
17256
17257 TOMOYO SECURITY MODULE
17258 M:      Kentaro Takeda <[email protected]>
17259 M:      Tetsuo Handa <[email protected]>
17260 L:      [email protected] (subscribers-only, for developers in English)
17261 L:      [email protected] (subscribers-only, for users in English)
17262 L:      [email protected] (subscribers-only, for developers in Japanese)
17263 L:      [email protected] (subscribers-only, for users in Japanese)
17264 S:      Maintained
17265 W:      https://tomoyo.osdn.jp/
17266 F:      security/tomoyo/
17267
17268 TOPSTAR LAPTOP EXTRAS DRIVER
17269 M:      Herton Ronaldo Krzesinski <[email protected]>
17270 L:      [email protected]
17271 S:      Maintained
17272 F:      drivers/platform/x86/topstar-laptop.c
17273
17274 TORTURE-TEST MODULES
17275 M:      Davidlohr Bueso <[email protected]>
17276 M:      "Paul E. McKenney" <[email protected]>
17277 M:      Josh Triplett <[email protected]>
17278 L:      [email protected]
17279 S:      Supported
17280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17281 F:      Documentation/RCU/torture.txt
17282 F:      kernel/locking/locktorture.c
17283 F:      kernel/rcu/rcuperf.c
17284 F:      kernel/rcu/rcutorture.c
17285 F:      kernel/torture.c
17286
17287 TOSHIBA ACPI EXTRAS DRIVER
17288 M:      Azael Avalos <[email protected]>
17289 L:      [email protected]
17290 S:      Maintained
17291 F:      drivers/platform/x86/toshiba_acpi.c
17292
17293 TOSHIBA BLUETOOTH DRIVER
17294 M:      Azael Avalos <[email protected]>
17295 L:      [email protected]
17296 S:      Maintained
17297 F:      drivers/platform/x86/toshiba_bluetooth.c
17298
17299 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17300 M:      Azael Avalos <[email protected]>
17301 L:      [email protected]
17302 S:      Maintained
17303 F:      drivers/platform/x86/toshiba_haps.c
17304
17305 TOSHIBA SMM DRIVER
17306 M:      Jonathan Buzzard <[email protected]>
17307 S:      Maintained
17308 W:      http://www.buzzard.org.uk/toshiba/
17309 F:      drivers/char/toshiba.c
17310 F:      include/linux/toshiba.h
17311 F:      include/uapi/linux/toshiba.h
17312
17313 TOSHIBA TC358743 DRIVER
17314 M:      Mats Randgaard <[email protected]>
17315 L:      [email protected]
17316 S:      Maintained
17317 F:      drivers/media/i2c/tc358743*
17318 F:      include/media/i2c/tc358743.h
17319
17320 TOSHIBA WMI HOTKEYS DRIVER
17321 M:      Azael Avalos <[email protected]>
17322 L:      [email protected]
17323 S:      Maintained
17324 F:      drivers/platform/x86/toshiba-wmi.c
17325
17326 TPM DEVICE DRIVER
17327 M:      Peter Huewe <[email protected]>
17328 M:      Jarkko Sakkinen <[email protected]>
17329 R:      Jason Gunthorpe <[email protected]>
17330 L:      [email protected]
17331 S:      Maintained
17332 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17333 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17334 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
17335 F:      drivers/char/tpm/
17336
17337 TRACING
17338 M:      Steven Rostedt <[email protected]>
17339 M:      Ingo Molnar <[email protected]>
17340 S:      Maintained
17341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17342 F:      Documentation/trace/ftrace.rst
17343 F:      arch/*/*/*/ftrace.h
17344 F:      arch/*/kernel/ftrace.c
17345 F:      include/*/ftrace.h
17346 F:      include/linux/trace*.h
17347 F:      include/trace/
17348 F:      kernel/trace/
17349 F:      tools/testing/selftests/ftrace/
17350
17351 TRACING MMIO ACCESSES (MMIOTRACE)
17352 M:      Steven Rostedt <[email protected]>
17353 M:      Ingo Molnar <[email protected]>
17354 R:      Karol Herbst <[email protected]>
17355 R:      Pekka Paalanen <[email protected]>
17356 L:      [email protected]
17357 L:      [email protected]
17358 S:      Maintained
17359 F:      arch/x86/mm/kmmio.c
17360 F:      arch/x86/mm/mmio-mod.c
17361 F:      arch/x86/mm/testmmiotrace.c
17362 F:      include/linux/mmiotrace.h
17363 F:      kernel/trace/trace_mmiotrace.c
17364
17365 TRIVIAL PATCHES
17366 M:      Jiri Kosina <[email protected]>
17367 S:      Maintained
17368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17369 K:      ^Subject:.*(?i)trivial
17370
17371 TTY LAYER
17372 M:      Greg Kroah-Hartman <[email protected]>
17373 M:      Jiri Slaby <[email protected]>
17374 S:      Supported
17375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17376 F:      Documentation/driver-api/serial/
17377 F:      drivers/tty/
17378 F:      drivers/tty/serial/serial_core.c
17379 F:      include/linux/serial.h
17380 F:      include/linux/serial_core.h
17381 F:      include/linux/tty.h
17382 F:      include/uapi/linux/serial.h
17383 F:      include/uapi/linux/serial_core.h
17384 F:      include/uapi/linux/tty.h
17385
17386 TUA9001 MEDIA DRIVER
17387 M:      Antti Palosaari <[email protected]>
17388 L:      [email protected]
17389 S:      Maintained
17390 W:      https://linuxtv.org
17391 W:      http://palosaari.fi/linux/
17392 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17393 T:      git git://linuxtv.org/anttip/media_tree.git
17394 F:      drivers/media/tuners/tua9001*
17395
17396 TULIP NETWORK DRIVERS
17397 L:      [email protected]
17398 L:      [email protected]
17399 S:      Orphan
17400 F:      drivers/net/ethernet/dec/tulip/
17401
17402 TUN/TAP driver
17403 M:      Maxim Krasnyansky <[email protected]>
17404 S:      Maintained
17405 W:      http://vtun.sourceforge.net/tun
17406 F:      Documentation/networking/tuntap.rst
17407 F:      arch/um/os-Linux/drivers/
17408
17409 TURBOCHANNEL SUBSYSTEM
17410 M:      "Maciej W. Rozycki" <[email protected]>
17411 M:      Ralf Baechle <[email protected]>
17412 L:      [email protected]
17413 S:      Maintained
17414 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17415 F:      drivers/tc/
17416 F:      include/linux/tc.h
17417
17418 TURBOSTAT UTILITY
17419 M:      "Len Brown" <[email protected]>
17420 L:      [email protected]
17421 S:      Supported
17422 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17423 B:      https://bugzilla.kernel.org
17424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17425 F:      tools/power/x86/turbostat/
17426
17427 TW5864 VIDEO4LINUX DRIVER
17428 M:      Bluecherry Maintainers <[email protected]>
17429 M:      Anton Sviridenko <[email protected]>
17430 M:      Andrey Utkin <[email protected]>
17431 M:      Andrey Utkin <[email protected]>
17432 L:      [email protected]
17433 S:      Supported
17434 F:      drivers/media/pci/tw5864/
17435
17436 TW68 VIDEO4LINUX DRIVER
17437 M:      Hans Verkuil <[email protected]>
17438 L:      [email protected]
17439 S:      Odd Fixes
17440 W:      https://linuxtv.org
17441 T:      git git://linuxtv.org/media_tree.git
17442 F:      drivers/media/pci/tw68/
17443
17444 TW686X VIDEO4LINUX DRIVER
17445 M:      Ezequiel Garcia <[email protected]>
17446 L:      [email protected]
17447 S:      Maintained
17448 W:      http://linuxtv.org
17449 T:      git git://linuxtv.org/media_tree.git
17450 F:      drivers/media/pci/tw686x/
17451
17452 UACCE ACCELERATOR FRAMEWORK
17453 M:      Zhangfei Gao <[email protected]>
17454 M:      Zhou Wang <[email protected]>
17455 L:      [email protected]
17456 L:      [email protected]
17457 S:      Maintained
17458 F:      Documentation/ABI/testing/sysfs-driver-uacce
17459 F:      Documentation/misc-devices/uacce.rst
17460 F:      drivers/misc/uacce/
17461 F:      include/linux/uacce.h
17462 F:      include/uapi/misc/uacce/
17463
17464 UBI FILE SYSTEM (UBIFS)
17465 M:      Richard Weinberger <[email protected]>
17466 L:      [email protected]
17467 S:      Supported
17468 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17471 F:      Documentation/filesystems/ubifs.rst
17472 F:      fs/ubifs/
17473
17474 UCLINUX (M68KNOMMU AND COLDFIRE)
17475 M:      Greg Ungerer <[email protected]>
17476 L:      [email protected]
17477 L:      [email protected]  (subscribers-only)
17478 S:      Maintained
17479 W:      http://www.linux-m68k.org/
17480 W:      http://www.uclinux.org/
17481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17482 F:      arch/m68k/*/*_no.*
17483 F:      arch/m68k/68*/
17484 F:      arch/m68k/coldfire/
17485 F:      arch/m68k/include/asm/*_no.*
17486
17487 UDF FILESYSTEM
17488 M:      Jan Kara <[email protected]>
17489 S:      Maintained
17490 F:      Documentation/filesystems/udf.rst
17491 F:      fs/udf/
17492
17493 UDRAW TABLET
17494 M:      Bastien Nocera <[email protected]>
17495 L:      [email protected]
17496 S:      Maintained
17497 F:      drivers/hid/hid-udraw-ps3.c
17498
17499 UFS FILESYSTEM
17500 M:      Evgeniy Dushistov <[email protected]>
17501 S:      Maintained
17502 F:      Documentation/admin-guide/ufs.rst
17503 F:      fs/ufs/
17504
17505 UHID USERSPACE HID IO DRIVER
17506 M:      David Herrmann <[email protected]>
17507 L:      [email protected]
17508 S:      Maintained
17509 F:      drivers/hid/uhid.c
17510 F:      include/uapi/linux/uhid.h
17511
17512 ULPI BUS
17513 M:      Heikki Krogerus <[email protected]>
17514 L:      [email protected]
17515 S:      Maintained
17516 F:      drivers/usb/common/ulpi.c
17517 F:      include/linux/ulpi/
17518
17519 UNICODE SUBSYSTEM
17520 M:      Gabriel Krisman Bertazi <[email protected]>
17521 L:      [email protected]
17522 S:      Supported
17523 F:      fs/unicode/
17524
17525 UNICORE32 ARCHITECTURE
17526 M:      Guan Xuetao <[email protected]>
17527 S:      Maintained
17528 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
17529 T:      git git://github.com/gxt/linux.git
17530 F:      arch/unicore32/
17531
17532 UNIFDEF
17533 M:      Tony Finch <[email protected]>
17534 S:      Maintained
17535 W:      http://dotat.at/prog/unifdef
17536 F:      scripts/unifdef.c
17537
17538 UNIFORM CDROM DRIVER
17539 M:      Jens Axboe <[email protected]>
17540 S:      Maintained
17541 W:      http://www.kernel.dk
17542 F:      Documentation/cdrom/
17543 F:      drivers/cdrom/cdrom.c
17544 F:      include/linux/cdrom.h
17545 F:      include/uapi/linux/cdrom.h
17546
17547 UNISYS S-PAR DRIVERS
17548 M:      David Kershner <[email protected]>
17549 L:      [email protected] (Unisys internal)
17550 S:      Supported
17551 F:      drivers/staging/unisys/
17552 F:      drivers/visorbus/
17553 F:      include/linux/visorbus.h
17554
17555 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17556 R:      Alim Akhtar <[email protected]>
17557 R:      Avri Altman <[email protected]>
17558 L:      [email protected]
17559 S:      Supported
17560 F:      Documentation/scsi/ufs.rst
17561 F:      drivers/scsi/ufs/
17562
17563 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17564 M:      Pedro Sousa <[email protected]>
17565 L:      [email protected]
17566 S:      Supported
17567 F:      drivers/scsi/ufs/*dwc*
17568
17569 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17570 M:      Stanley Chu <[email protected]>
17571 L:      [email protected]
17572 L:      [email protected] (moderated for non-subscribers)
17573 S:      Maintained
17574 F:      drivers/scsi/ufs/ufs-mediatek*
17575
17576 UNSORTED BLOCK IMAGES (UBI)
17577 M:      Richard Weinberger <[email protected]>
17578 L:      [email protected]
17579 S:      Supported
17580 W:      http://www.linux-mtd.infradead.org/
17581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17583 F:      drivers/mtd/ubi/
17584 F:      include/linux/mtd/ubi.h
17585 F:      include/uapi/mtd/ubi-user.h
17586
17587 USB "USBNET" DRIVER FRAMEWORK
17588 M:      Oliver Neukum <[email protected]>
17589 L:      [email protected]
17590 S:      Maintained
17591 W:      http://www.linux-usb.org/usbnet
17592 F:      drivers/net/usb/usbnet.c
17593 F:      include/linux/usb/usbnet.h
17594
17595 USB ACM DRIVER
17596 M:      Oliver Neukum <[email protected]>
17597 L:      [email protected]
17598 S:      Maintained
17599 F:      Documentation/usb/acm.rst
17600 F:      drivers/usb/class/cdc-acm.*
17601
17602 USB APPLE MFI FASTCHARGE DRIVER
17603 M:      Bastien Nocera <[email protected]>
17604 L:      [email protected]
17605 S:      Maintained
17606 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17607
17608 USB AR5523 WIRELESS DRIVER
17609 M:      Pontus Fuchs <[email protected]>
17610 L:      [email protected]
17611 S:      Maintained
17612 F:      drivers/net/wireless/ath/ar5523/
17613
17614 USB ATTACHED SCSI
17615 M:      Oliver Neukum <[email protected]>
17616 L:      [email protected]
17617 L:      [email protected]
17618 S:      Maintained
17619 F:      drivers/usb/storage/uas.c
17620
17621 USB CDC ETHERNET DRIVER
17622 M:      Oliver Neukum <[email protected]>
17623 L:      [email protected]
17624 S:      Maintained
17625 F:      drivers/net/usb/cdc_*.c
17626 F:      include/uapi/linux/usb/cdc.h
17627
17628 USB CHAOSKEY DRIVER
17629 M:      Keith Packard <[email protected]>
17630 L:      [email protected]
17631 S:      Maintained
17632 F:      drivers/usb/misc/chaoskey.c
17633
17634 USB CYPRESS C67X00 DRIVER
17635 M:      Peter Korsgaard <[email protected]>
17636 L:      [email protected]
17637 S:      Maintained
17638 F:      drivers/usb/c67x00/
17639
17640 USB DAVICOM DM9601 DRIVER
17641 M:      Peter Korsgaard <[email protected]>
17642 L:      [email protected]
17643 S:      Maintained
17644 W:      http://www.linux-usb.org/usbnet
17645 F:      drivers/net/usb/dm9601.c
17646
17647 USB EHCI DRIVER
17648 M:      Alan Stern <[email protected]>
17649 L:      [email protected]
17650 S:      Maintained
17651 F:      Documentation/usb/ehci.rst
17652 F:      drivers/usb/host/ehci*
17653
17654 USB GADGET/PERIPHERAL SUBSYSTEM
17655 M:      Felipe Balbi <[email protected]>
17656 L:      [email protected]
17657 S:      Maintained
17658 W:      http://www.linux-usb.org/gadget
17659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17660 F:      drivers/usb/gadget/
17661 F:      include/linux/usb/gadget*
17662
17663 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17664 M:      Jiri Kosina <[email protected]>
17665 M:      Benjamin Tissoires <[email protected]>
17666 L:      [email protected]
17667 S:      Maintained
17668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17669 F:      Documentation/hid/hiddev.rst
17670 F:      drivers/hid/usbhid/
17671
17672 USB INTEL XHCI ROLE MUX DRIVER
17673 M:      Hans de Goede <[email protected]>
17674 L:      [email protected]
17675 S:      Maintained
17676 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17677
17678 USB IP DRIVER FOR HISILICON KIRIN
17679 M:      Yu Chen <[email protected]>
17680 M:      Binghui Wang <[email protected]>
17681 L:      [email protected]
17682 S:      Maintained
17683 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17684 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17685
17686 USB ISP116X DRIVER
17687 M:      Olav Kongas <[email protected]>
17688 L:      [email protected]
17689 S:      Maintained
17690 F:      drivers/usb/host/isp116x*
17691 F:      include/linux/usb/isp116x.h
17692
17693 USB LAN78XX ETHERNET DRIVER
17694 M:      Woojung Huh <[email protected]>
17695 M:      Microchip Linux Driver Support <[email protected]>
17696 L:      [email protected]
17697 S:      Maintained
17698 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17699 F:      drivers/net/usb/lan78xx.*
17700 F:      include/dt-bindings/net/microchip-lan78xx.h
17701
17702 USB MASS STORAGE DRIVER
17703 M:      Alan Stern <[email protected]>
17704 L:      [email protected]
17705 L:      [email protected]
17706 S:      Maintained
17707 F:      drivers/usb/storage/
17708
17709 USB MIDI DRIVER
17710 M:      Clemens Ladisch <[email protected]>
17711 L:      [email protected] (moderated for non-subscribers)
17712 S:      Maintained
17713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17714 F:      sound/usb/midi.*
17715
17716 USB NETWORKING DRIVERS
17717 L:      [email protected]
17718 S:      Odd Fixes
17719 F:      drivers/net/usb/
17720
17721 USB OHCI DRIVER
17722 M:      Alan Stern <[email protected]>
17723 L:      [email protected]
17724 S:      Maintained
17725 F:      Documentation/usb/ohci.rst
17726 F:      drivers/usb/host/ohci*
17727
17728 USB OTG FSM (Finite State Machine)
17729 M:      Peter Chen <[email protected]>
17730 L:      [email protected]
17731 S:      Maintained
17732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17733 F:      drivers/usb/common/usb-otg-fsm.c
17734
17735 USB OVER IP DRIVER
17736 M:      Valentina Manea <[email protected]>
17737 M:      Shuah Khan <[email protected]>
17738 M:      Shuah Khan <[email protected]>
17739 L:      [email protected]
17740 S:      Maintained
17741 F:      Documentation/usb/usbip_protocol.rst
17742 F:      drivers/usb/usbip/
17743 F:      tools/testing/selftests/drivers/usb/usbip/
17744 F:      tools/usb/usbip/
17745
17746 USB PEGASUS DRIVER
17747 M:      Petko Manolov <[email protected]>
17748 L:      [email protected]
17749 L:      [email protected]
17750 S:      Maintained
17751 W:      https://github.com/petkan/pegasus
17752 T:      git git://github.com/petkan/pegasus.git
17753 F:      drivers/net/usb/pegasus.*
17754
17755 USB PHY LAYER
17756 M:      Felipe Balbi <[email protected]>
17757 L:      [email protected]
17758 S:      Maintained
17759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17760 F:      drivers/usb/phy/
17761
17762 USB PRINTER DRIVER (usblp)
17763 M:      Pete Zaitcev <[email protected]>
17764 L:      [email protected]
17765 S:      Supported
17766 F:      drivers/usb/class/usblp.c
17767
17768 USB QMI WWAN NETWORK DRIVER
17769 M:      Bjørn Mork <[email protected]>
17770 L:      [email protected]
17771 S:      Maintained
17772 F:      Documentation/ABI/testing/sysfs-class-net-qmi
17773 F:      drivers/net/usb/qmi_wwan.c
17774
17775 USB RTL8150 DRIVER
17776 M:      Petko Manolov <[email protected]>
17777 L:      [email protected]
17778 L:      [email protected]
17779 S:      Maintained
17780 W:      https://github.com/petkan/rtl8150
17781 T:      git git://github.com/petkan/rtl8150.git
17782 F:      drivers/net/usb/rtl8150.c
17783
17784 USB SERIAL SUBSYSTEM
17785 M:      Johan Hovold <[email protected]>
17786 L:      [email protected]
17787 S:      Maintained
17788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17789 F:      Documentation/usb/usb-serial.rst
17790 F:      drivers/usb/serial/
17791 F:      include/linux/usb/serial.h
17792
17793 USB SMSC75XX ETHERNET DRIVER
17794 M:      Steve Glendinning <[email protected]>
17795 L:      [email protected]
17796 S:      Maintained
17797 F:      drivers/net/usb/smsc75xx.*
17798
17799 USB SMSC95XX ETHERNET DRIVER
17800 M:      Steve Glendinning <[email protected]>
17801 M:      Microchip Linux Driver Support <[email protected]>
17802 L:      [email protected]
17803 S:      Maintained
17804 F:      drivers/net/usb/smsc95xx.*
17805
17806 USB SUBSYSTEM
17807 M:      Greg Kroah-Hartman <[email protected]>
17808 L:      [email protected]
17809 S:      Supported
17810 W:      http://www.linux-usb.org
17811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17812 F:      Documentation/devicetree/bindings/usb/
17813 F:      Documentation/usb/
17814 F:      drivers/usb/
17815 F:      include/linux/usb.h
17816 F:      include/linux/usb/
17817
17818 USB TYPEC BUS FOR ALTERNATE MODES
17819 M:      Heikki Krogerus <[email protected]>
17820 L:      [email protected]
17821 S:      Maintained
17822 F:      Documentation/ABI/testing/sysfs-bus-typec
17823 F:      Documentation/driver-api/usb/typec_bus.rst
17824 F:      drivers/usb/typec/altmodes/
17825 F:      include/linux/usb/typec_altmode.h
17826
17827 USB TYPEC CLASS
17828 M:      Heikki Krogerus <[email protected]>
17829 L:      [email protected]
17830 S:      Maintained
17831 F:      Documentation/ABI/testing/sysfs-class-typec
17832 F:      Documentation/driver-api/usb/typec.rst
17833 F:      drivers/usb/typec/
17834 F:      include/linux/usb/typec.h
17835
17836 USB TYPEC INTEL PMC MUX DRIVER
17837 M:      Heikki Krogerus <[email protected]>
17838 L:      [email protected]
17839 S:      Maintained
17840 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
17841 F:      drivers/usb/typec/mux/intel_pmc_mux.c
17842
17843 USB TYPEC PI3USB30532 MUX DRIVER
17844 M:      Hans de Goede <[email protected]>
17845 L:      [email protected]
17846 S:      Maintained
17847 F:      drivers/usb/typec/mux/pi3usb30532.c
17848
17849 USB TYPEC PORT CONTROLLER DRIVERS
17850 M:      Guenter Roeck <[email protected]>
17851 L:      [email protected]
17852 S:      Maintained
17853 F:      drivers/usb/typec/tcpm/
17854
17855 USB UHCI DRIVER
17856 M:      Alan Stern <[email protected]>
17857 L:      [email protected]
17858 S:      Maintained
17859 F:      drivers/usb/host/uhci*
17860
17861 USB VIDEO CLASS
17862 M:      Laurent Pinchart <[email protected]>
17863 L:      [email protected] (subscribers-only)
17864 L:      [email protected]
17865 S:      Maintained
17866 W:      http://www.ideasonboard.org/uvc/
17867 T:      git git://linuxtv.org/media_tree.git
17868 F:      drivers/media/usb/uvc/
17869 F:      include/uapi/linux/uvcvideo.h
17870
17871 USB VISION DRIVER
17872 M:      Hans Verkuil <[email protected]>
17873 L:      [email protected]
17874 S:      Odd Fixes
17875 W:      https://linuxtv.org
17876 T:      git git://linuxtv.org/media_tree.git
17877 F:      drivers/staging/media/usbvision/
17878
17879 USB WEBCAM GADGET
17880 M:      Laurent Pinchart <[email protected]>
17881 L:      [email protected]
17882 S:      Maintained
17883 F:      drivers/usb/gadget/function/*uvc*
17884 F:      drivers/usb/gadget/legacy/webcam.c
17885 F:      include/uapi/linux/usb/g_uvc.h
17886
17887 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17888 M:      Jussi Kivilinna <[email protected]>
17889 L:      [email protected]
17890 S:      Maintained
17891 F:      drivers/net/wireless/rndis_wlan.c
17892
17893 USB XHCI DRIVER
17894 M:      Mathias Nyman <[email protected]>
17895 L:      [email protected]
17896 S:      Supported
17897 F:      drivers/usb/host/pci-quirks*
17898 F:      drivers/usb/host/xhci*
17899
17900 USB ZD1201 DRIVER
17901 L:      [email protected]
17902 S:      Orphan
17903 W:      http://linux-lc100020.sourceforge.net
17904 F:      drivers/net/wireless/zydas/zd1201.*
17905
17906 USB ZR364XX DRIVER
17907 M:      Antoine Jacquet <[email protected]>
17908 L:      [email protected]
17909 L:      [email protected]
17910 S:      Maintained
17911 W:      http://royale.zerezo.com/zr364xx/
17912 T:      git git://linuxtv.org/media_tree.git
17913 F:      Documentation/admin-guide/media/zr364xx*
17914 F:      drivers/media/usb/zr364xx/
17915
17916 USER-MODE LINUX (UML)
17917 M:      Jeff Dike <[email protected]>
17918 M:      Richard Weinberger <[email protected]>
17919 M:      Anton Ivanov <[email protected]>
17920 L:      [email protected]
17921 S:      Maintained
17922 W:      http://user-mode-linux.sourceforge.net
17923 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17925 F:      Documentation/virt/uml/
17926 F:      arch/um/
17927 F:      arch/x86/um/
17928 F:      fs/hostfs/
17929
17930 USERSPACE COPYIN/COPYOUT (UIOVEC)
17931 M:      Alexander Viro <[email protected]>
17932 S:      Maintained
17933 F:      include/linux/uio.h
17934 F:      lib/iov_iter.c
17935
17936 USERSPACE DMA BUFFER DRIVER
17937 M:      Gerd Hoffmann <[email protected]>
17938 L:      [email protected]
17939 S:      Maintained
17940 T:      git git://anongit.freedesktop.org/drm/drm-misc
17941 F:      drivers/dma-buf/udmabuf.c
17942 F:      include/uapi/linux/udmabuf.h
17943
17944 USERSPACE I/O (UIO)
17945 M:      Greg Kroah-Hartman <[email protected]>
17946 S:      Maintained
17947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17948 F:      Documentation/driver-api/uio-howto.rst
17949 F:      drivers/uio/
17950 F:      include/linux/uio_driver.h
17951
17952 UTIL-LINUX PACKAGE
17953 M:      Karel Zak <[email protected]>
17954 L:      [email protected]
17955 S:      Maintained
17956 W:      http://en.wikipedia.org/wiki/Util-linux
17957 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17958
17959 UUID HELPERS
17960 M:      Christoph Hellwig <[email protected]>
17961 R:      Andy Shevchenko <[email protected]>
17962 L:      [email protected]
17963 S:      Maintained
17964 T:      git git://git.infradead.org/users/hch/uuid.git
17965 F:      include/linux/uuid.h
17966 F:      include/uapi/linux/uuid.h
17967 F:      lib/test_uuid.c
17968 F:      lib/uuid.c
17969
17970 UVESAFB DRIVER
17971 M:      Michal Januszewski <[email protected]>
17972 L:      [email protected]
17973 S:      Maintained
17974 W:      https://github.com/mjanusz/v86d
17975 F:      Documentation/fb/uvesafb.rst
17976 F:      drivers/video/fbdev/uvesafb.*
17977
17978 Ux500 CLOCK DRIVERS
17979 M:      Ulf Hansson <[email protected]>
17980 L:      [email protected]
17981 L:      [email protected] (moderated for non-subscribers)
17982 S:      Maintained
17983 F:      drivers/clk/ux500/
17984
17985 VF610 NAND DRIVER
17986 M:      Stefan Agner <[email protected]>
17987 L:      [email protected]
17988 S:      Supported
17989 F:      drivers/mtd/nand/raw/vf610_nfc.c
17990
17991 VFAT/FAT/MSDOS FILESYSTEM
17992 M:      OGAWA Hirofumi <[email protected]>
17993 S:      Maintained
17994 F:      Documentation/filesystems/vfat.rst
17995 F:      fs/fat/
17996
17997 VFIO DRIVER
17998 M:      Alex Williamson <[email protected]>
17999 R:      Cornelia Huck <[email protected]>
18000 L:      [email protected]
18001 S:      Maintained
18002 T:      git git://github.com/awilliam/linux-vfio.git
18003 F:      Documentation/driver-api/vfio.rst
18004 F:      drivers/vfio/
18005 F:      include/linux/vfio.h
18006 F:      include/uapi/linux/vfio.h
18007
18008 VFIO MEDIATED DEVICE DRIVERS
18009 M:      Kirti Wankhede <[email protected]>
18010 L:      [email protected]
18011 S:      Maintained
18012 F:      Documentation/driver-api/vfio-mediated-device.rst
18013 F:      drivers/vfio/mdev/
18014 F:      include/linux/mdev.h
18015 F:      samples/vfio-mdev/
18016
18017 VFIO PLATFORM DRIVER
18018 M:      Eric Auger <[email protected]>
18019 L:      [email protected]
18020 S:      Maintained
18021 F:      drivers/vfio/platform/
18022
18023 VGA_SWITCHEROO
18024 R:      Lukas Wunner <[email protected]>
18025 S:      Maintained
18026 T:      git git://anongit.freedesktop.org/drm/drm-misc
18027 F:      Documentation/gpu/vga-switcheroo.rst
18028 F:      drivers/gpu/vga/vga_switcheroo.c
18029 F:      include/linux/vga_switcheroo.h
18030
18031 VIA RHINE NETWORK DRIVER
18032 S:      Orphan
18033 F:      drivers/net/ethernet/via/via-rhine.c
18034
18035 VIA SD/MMC CARD CONTROLLER DRIVER
18036 M:      Bruce Chang <[email protected]>
18037 M:      Harald Welte <[email protected]>
18038 S:      Maintained
18039 F:      drivers/mmc/host/via-sdmmc.c
18040
18041 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18042 M:      Florian Tobias Schandinat <[email protected]>
18043 L:      [email protected]
18044 S:      Maintained
18045 F:      drivers/video/fbdev/via/
18046 F:      include/linux/via-core.h
18047 F:      include/linux/via-gpio.h
18048 F:      include/linux/via_i2c.h
18049
18050 VIA VELOCITY NETWORK DRIVER
18051 M:      Francois Romieu <[email protected]>
18052 L:      [email protected]
18053 S:      Maintained
18054 F:      drivers/net/ethernet/via/via-velocity.*
18055
18056 VICODEC VIRTUAL CODEC DRIVER
18057 M:      Hans Verkuil <[email protected]>
18058 L:      [email protected]
18059 S:      Maintained
18060 W:      https://linuxtv.org
18061 T:      git git://linuxtv.org/media_tree.git
18062 F:      drivers/media/test-drivers/vicodec/*
18063
18064 VIDEO I2C POLLING DRIVER
18065 M:      Matt Ranostay <[email protected]>
18066 L:      [email protected]
18067 S:      Maintained
18068 F:      drivers/media/i2c/video-i2c.c
18069
18070 VIDEO MULTIPLEXER DRIVER
18071 M:      Philipp Zabel <[email protected]>
18072 L:      [email protected]
18073 S:      Maintained
18074 F:      drivers/media/platform/video-mux.c
18075
18076 VIDEOBUF2 FRAMEWORK
18077 M:      Pawel Osciak <[email protected]>
18078 M:      Marek Szyprowski <[email protected]>
18079 M:      Kyungmin Park <[email protected]>
18080 R:      Tomasz Figa <[email protected]>
18081 L:      [email protected]
18082 S:      Maintained
18083 F:      drivers/media/common/videobuf2/*
18084 F:      include/media/videobuf2-*
18085
18086 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18087 M:      Helen Koike <[email protected]>
18088 R:      Shuah Khan <[email protected]>
18089 L:      [email protected]
18090 S:      Maintained
18091 W:      https://linuxtv.org
18092 T:      git git://linuxtv.org/media_tree.git
18093 F:      drivers/media/test-drivers/vimc/*
18094
18095 VIRT LIB
18096 M:      Alex Williamson <[email protected]>
18097 M:      Paolo Bonzini <[email protected]>
18098 L:      [email protected]
18099 S:      Supported
18100 F:      virt/lib/
18101
18102 VIRTIO AND VHOST VSOCK DRIVER
18103 M:      Stefan Hajnoczi <[email protected]>
18104 M:      Stefano Garzarella <[email protected]>
18105 L:      [email protected]
18106 L:      [email protected]
18107 L:      [email protected]
18108 S:      Maintained
18109 F:      drivers/net/vsockmon.c
18110 F:      drivers/vhost/vsock.c
18111 F:      include/linux/virtio_vsock.h
18112 F:      include/uapi/linux/virtio_vsock.h
18113 F:      include/uapi/linux/vm_sockets_diag.h
18114 F:      include/uapi/linux/vsockmon.h
18115 F:      net/vmw_vsock/af_vsock_tap.c
18116 F:      net/vmw_vsock/diag.c
18117 F:      net/vmw_vsock/virtio_transport.c
18118 F:      net/vmw_vsock/virtio_transport_common.c
18119 F:      net/vmw_vsock/vsock_loopback.c
18120 F:      tools/testing/vsock/
18121
18122 VIRTIO BLOCK AND SCSI DRIVERS
18123 M:      "Michael S. Tsirkin" <[email protected]>
18124 M:      Jason Wang <[email protected]>
18125 R:      Paolo Bonzini <[email protected]>
18126 R:      Stefan Hajnoczi <[email protected]>
18127 L:      [email protected]
18128 S:      Maintained
18129 F:      drivers/block/virtio_blk.c
18130 F:      drivers/scsi/virtio_scsi.c
18131 F:      drivers/vhost/scsi.c
18132 F:      include/uapi/linux/virtio_blk.h
18133 F:      include/uapi/linux/virtio_scsi.h
18134
18135 VIRTIO CONSOLE DRIVER
18136 M:      Amit Shah <[email protected]>
18137 L:      [email protected]
18138 S:      Maintained
18139 F:      drivers/char/virtio_console.c
18140 F:      include/linux/virtio_console.h
18141 F:      include/uapi/linux/virtio_console.h
18142
18143 VIRTIO CORE AND NET DRIVERS
18144 M:      "Michael S. Tsirkin" <[email protected]>
18145 M:      Jason Wang <[email protected]>
18146 L:      [email protected]
18147 S:      Maintained
18148 F:      Documentation/devicetree/bindings/virtio/
18149 F:      drivers/block/virtio_blk.c
18150 F:      drivers/crypto/virtio/
18151 F:      drivers/net/virtio_net.c
18152 F:      drivers/vdpa/
18153 F:      drivers/virtio/
18154 F:      include/linux/vdpa.h
18155 F:      include/linux/virtio*.h
18156 F:      include/uapi/linux/virtio_*.h
18157 F:      tools/virtio/
18158
18159 VIRTIO BALLOON
18160 M:      "Michael S. Tsirkin" <[email protected]>
18161 M:      David Hildenbrand <[email protected]>
18162 L:      [email protected]
18163 S:      Maintained
18164 F:      drivers/virtio/virtio_balloon.c
18165 F:      include/uapi/linux/virtio_balloon.h
18166 F:      include/linux/balloon_compaction.h
18167 F:      mm/balloon_compaction.c
18168
18169 VIRTIO CRYPTO DRIVER
18170 M:      Gonglei <[email protected]>
18171 L:      [email protected]
18172 L:      [email protected]
18173 S:      Maintained
18174 F:      drivers/crypto/virtio/
18175 F:      include/uapi/linux/virtio_crypto.h
18176
18177 VIRTIO DRIVERS FOR S390
18178 M:      Cornelia Huck <[email protected]>
18179 M:      Halil Pasic <[email protected]>
18180 L:      [email protected]
18181 L:      [email protected]
18182 L:      [email protected]
18183 S:      Supported
18184 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18185 F:      drivers/s390/virtio/
18186
18187 VIRTIO FILE SYSTEM
18188 M:      Vivek Goyal <[email protected]>
18189 M:      Stefan Hajnoczi <[email protected]>
18190 M:      Miklos Szeredi <[email protected]>
18191 L:      [email protected]
18192 L:      [email protected]
18193 S:      Supported
18194 W:      https://virtio-fs.gitlab.io/
18195 F:      Documentation/filesystems/virtiofs.rst
18196 F:      fs/fuse/virtio_fs.c
18197 F:      include/uapi/linux/virtio_fs.h
18198
18199 VIRTIO GPU DRIVER
18200 M:      David Airlie <[email protected]>
18201 M:      Gerd Hoffmann <[email protected]>
18202 L:      [email protected]
18203 L:      [email protected]
18204 S:      Maintained
18205 T:      git git://anongit.freedesktop.org/drm/drm-misc
18206 F:      drivers/gpu/drm/virtio/
18207 F:      include/uapi/linux/virtio_gpu.h
18208
18209 VIRTIO HOST (VHOST)
18210 M:      "Michael S. Tsirkin" <[email protected]>
18211 M:      Jason Wang <[email protected]>
18212 L:      [email protected]
18213 L:      [email protected]
18214 L:      [email protected]
18215 S:      Maintained
18216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18217 F:      drivers/vhost/
18218 F:      include/linux/vhost_iotlb.h
18219 F:      include/uapi/linux/vhost.h
18220
18221 VIRTIO INPUT DRIVER
18222 M:      Gerd Hoffmann <[email protected]>
18223 S:      Maintained
18224 F:      drivers/virtio/virtio_input.c
18225 F:      include/uapi/linux/virtio_input.h
18226
18227 VIRTIO IOMMU DRIVER
18228 M:      Jean-Philippe Brucker <[email protected]>
18229 L:      [email protected]
18230 S:      Maintained
18231 F:      drivers/iommu/virtio-iommu.c
18232 F:      include/uapi/linux/virtio_iommu.h
18233
18234 VIRTIO MEM DRIVER
18235 M:      David Hildenbrand <[email protected]>
18236 L:      [email protected]
18237 S:      Maintained
18238 F:      drivers/virtio/virtio_mem.c
18239 F:      include/uapi/linux/virtio_mem.h
18240
18241 VIRTUAL BOX GUEST DEVICE DRIVER
18242 M:      Hans de Goede <[email protected]>
18243 M:      Arnd Bergmann <[email protected]>
18244 M:      Greg Kroah-Hartman <[email protected]>
18245 S:      Maintained
18246 F:      drivers/virt/vboxguest/
18247 F:      include/linux/vbox_utils.h
18248 F:      include/uapi/linux/vbox*.h
18249
18250 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18251 M:      Hans de Goede <[email protected]>
18252 L:      [email protected]
18253 S:      Maintained
18254 F:      fs/vboxsf/*
18255
18256 VIRTUAL SERIO DEVICE DRIVER
18257 M:      Stephen Chandler Paul <[email protected]>
18258 S:      Maintained
18259 F:      drivers/input/serio/userio.c
18260 F:      include/uapi/linux/userio.h
18261
18262 VIVID VIRTUAL VIDEO DRIVER
18263 M:      Hans Verkuil <[email protected]>
18264 L:      [email protected]
18265 S:      Maintained
18266 W:      https://linuxtv.org
18267 T:      git git://linuxtv.org/media_tree.git
18268 F:      drivers/media/test-drivers/vivid/*
18269
18270 VLYNQ BUS
18271 M:      Florian Fainelli <[email protected]>
18272 L:      [email protected] (subscribers-only)
18273 S:      Maintained
18274 F:      drivers/vlynq/vlynq.c
18275 F:      include/linux/vlynq.h
18276
18277 VME SUBSYSTEM
18278 M:      Martyn Welch <[email protected]>
18279 M:      Manohar Vanga <[email protected]>
18280 M:      Greg Kroah-Hartman <[email protected]>
18281 L:      [email protected]
18282 S:      Maintained
18283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18284 F:      Documentation/driver-api/vme.rst
18285 F:      drivers/staging/vme/
18286 F:      drivers/vme/
18287 F:      include/linux/vme*
18288
18289 VMWARE BALLOON DRIVER
18290 M:      Nadav Amit <[email protected]>
18291 M:      "VMware, Inc." <[email protected]>
18292 L:      [email protected]
18293 S:      Maintained
18294 F:      drivers/misc/vmw_balloon.c
18295
18296 VMWARE HYPERVISOR INTERFACE
18297 M:      Deep Shah <[email protected]>
18298 M:      "VMware, Inc." <[email protected]>
18299 L:      [email protected]
18300 S:      Supported
18301 F:      arch/x86/include/asm/vmware.h
18302 F:      arch/x86/kernel/cpu/vmware.c
18303
18304 VMWARE PVRDMA DRIVER
18305 M:      Adit Ranadive <[email protected]>
18306 M:      VMware PV-Drivers <[email protected]>
18307 L:      [email protected]
18308 S:      Maintained
18309 F:      drivers/infiniband/hw/vmw_pvrdma/
18310
18311 VMware PVSCSI driver
18312 M:      Jim Gill <[email protected]>
18313 M:      VMware PV-Drivers <[email protected]>
18314 L:      [email protected]
18315 S:      Maintained
18316 F:      drivers/scsi/vmw_pvscsi.c
18317 F:      drivers/scsi/vmw_pvscsi.h
18318
18319 VMWARE VIRTUAL PTP CLOCK DRIVER
18320 M:      Vivek Thampi <[email protected]>
18321 M:      "VMware, Inc." <[email protected]>
18322 L:      [email protected]
18323 S:      Supported
18324 F:      drivers/ptp/ptp_vmw.c
18325
18326 VMWARE VMMOUSE SUBDRIVER
18327 M:      "VMware Graphics" <[email protected]>
18328 M:      "VMware, Inc." <[email protected]>
18329 L:      [email protected]
18330 S:      Maintained
18331 F:      drivers/input/mouse/vmmouse.c
18332 F:      drivers/input/mouse/vmmouse.h
18333
18334 VMWARE VMXNET3 ETHERNET DRIVER
18335 M:      Ronak Doshi <[email protected]>
18336 M:      "VMware, Inc." <[email protected]>
18337 L:      [email protected]
18338 S:      Maintained
18339 F:      drivers/net/vmxnet3/
18340
18341 VOCORE VOCORE2 BOARD
18342 M:      Harvey Hunt <[email protected]>
18343 L:      [email protected]
18344 S:      Maintained
18345 F:      arch/mips/boot/dts/ralink/vocore2.dts
18346
18347 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18348 M:      Liam Girdwood <[email protected]>
18349 M:      Mark Brown <[email protected]>
18350 L:      [email protected]
18351 S:      Supported
18352 W:      http://www.slimlogic.co.uk/?p=48
18353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18354 F:      Documentation/devicetree/bindings/regulator/
18355 F:      Documentation/power/regulator/
18356 F:      drivers/regulator/
18357 F:      include/dt-bindings/regulator/
18358 F:      include/linux/regulator/
18359 K:      regulator_get_optional
18360
18361 VRF
18362 M:      David Ahern <[email protected]>
18363 M:      Shrijeet Mukherjee <[email protected]>
18364 L:      [email protected]
18365 S:      Maintained
18366 F:      Documentation/networking/vrf.rst
18367 F:      drivers/net/vrf.c
18368
18369 VSPRINTF
18370 M:      Petr Mladek <[email protected]>
18371 M:      Steven Rostedt <[email protected]>
18372 M:      Sergey Senozhatsky <[email protected]>
18373 R:      Andy Shevchenko <[email protected]>
18374 R:      Rasmus Villemoes <[email protected]>
18375 S:      Maintained
18376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18377 F:      Documentation/core-api/printk-formats.rst
18378 F:      lib/test_printf.c
18379 F:      lib/vsprintf.c
18380
18381 VT1211 HARDWARE MONITOR DRIVER
18382 M:      Juerg Haefliger <[email protected]>
18383 L:      [email protected]
18384 S:      Maintained
18385 F:      Documentation/hwmon/vt1211.rst
18386 F:      drivers/hwmon/vt1211.c
18387
18388 VT8231 HARDWARE MONITOR DRIVER
18389 M:      Roger Lucas <[email protected]>
18390 L:      [email protected]
18391 S:      Maintained
18392 F:      drivers/hwmon/vt8231.c
18393
18394 VUB300 USB to SDIO/SD/MMC bridge chip
18395 L:      [email protected]
18396 S:      Orphan
18397 F:      drivers/mmc/host/vub300.c
18398
18399 W1 DALLAS'S 1-WIRE BUS
18400 M:      Evgeniy Polyakov <[email protected]>
18401 S:      Maintained
18402 F:      Documentation/devicetree/bindings/w1/
18403 F:      Documentation/w1/
18404 F:      drivers/w1/
18405 F:      include/linux/w1.h
18406
18407 W83791D HARDWARE MONITORING DRIVER
18408 M:      Marc Hulsman <[email protected]>
18409 L:      [email protected]
18410 S:      Maintained
18411 F:      Documentation/hwmon/w83791d.rst
18412 F:      drivers/hwmon/w83791d.c
18413
18414 W83793 HARDWARE MONITORING DRIVER
18415 M:      Rudolf Marek <[email protected]>
18416 L:      [email protected]
18417 S:      Maintained
18418 F:      Documentation/hwmon/w83793.rst
18419 F:      drivers/hwmon/w83793.c
18420
18421 W83795 HARDWARE MONITORING DRIVER
18422 M:      Jean Delvare <[email protected]>
18423 L:      [email protected]
18424 S:      Maintained
18425 F:      drivers/hwmon/w83795.c
18426
18427 W83L51xD SD/MMC CARD INTERFACE DRIVER
18428 M:      Pierre Ossman <[email protected]>
18429 S:      Maintained
18430 F:      drivers/mmc/host/wbsd.*
18431
18432 WACOM PROTOCOL 4 SERIAL TABLETS
18433 M:      Julian Squires <[email protected]>
18434 M:      Hans de Goede <[email protected]>
18435 L:      [email protected]
18436 S:      Maintained
18437 F:      drivers/input/tablet/wacom_serial4.c
18438
18439 WATCHDOG DEVICE DRIVERS
18440 M:      Wim Van Sebroeck <[email protected]>
18441 M:      Guenter Roeck <[email protected]>
18442 L:      [email protected]
18443 S:      Maintained
18444 W:      http://www.linux-watchdog.org/
18445 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18446 F:      Documentation/devicetree/bindings/watchdog/
18447 F:      Documentation/watchdog/
18448 F:      drivers/watchdog/
18449 F:      include/linux/watchdog.h
18450 F:      include/uapi/linux/watchdog.h
18451
18452 WHISKEYCOVE PMIC GPIO DRIVER
18453 M:      Kuppuswamy Sathyanarayanan <[email protected]>
18454 L:      [email protected]
18455 S:      Maintained
18456 F:      drivers/gpio/gpio-wcove.c
18457
18458 WHWAVE RTC DRIVER
18459 M:      Dianlong Li <[email protected]>
18460 L:      [email protected]
18461 S:      Maintained
18462 F:      drivers/rtc/rtc-sd3078.c
18463
18464 WIIMOTE HID DRIVER
18465 M:      David Herrmann <[email protected]>
18466 L:      [email protected]
18467 S:      Maintained
18468 F:      drivers/hid/hid-wiimote*
18469
18470 WILOCITY WIL6210 WIRELESS DRIVER
18471 M:      Maya Erez <[email protected]>
18472 L:      [email protected]
18473 L:      [email protected]
18474 S:      Supported
18475 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
18476 F:      drivers/net/wireless/ath/wil6210/
18477
18478 WIMAX STACK
18479 M:      Inaky Perez-Gonzalez <[email protected]>
18480 M:      [email protected]
18481 L:      [email protected] (subscribers-only)
18482 S:      Supported
18483 W:      http://linuxwimax.org
18484 F:      Documentation/admin-guide/wimax/wimax.rst
18485 F:      include/linux/wimax/debug.h
18486 F:      include/net/wimax.h
18487 F:      include/uapi/linux/wimax.h
18488 F:      net/wimax/
18489
18490 WINBOND CIR DRIVER
18491 M:      David Härdeman <[email protected]>
18492 S:      Maintained
18493 F:      drivers/media/rc/winbond-cir.c
18494
18495 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18496 M:      William Breathitt Gray <[email protected]>
18497 L:      [email protected]
18498 S:      Maintained
18499 F:      drivers/watchdog/ebc-c384_wdt.c
18500
18501 WINSYSTEMS WS16C48 GPIO DRIVER
18502 M:      William Breathitt Gray <[email protected]>
18503 L:      [email protected]
18504 S:      Maintained
18505 F:      drivers/gpio/gpio-ws16c48.c
18506
18507 WIREGUARD SECURE NETWORK TUNNEL
18508 M:      Jason A. Donenfeld <[email protected]>
18509 L:      [email protected]
18510 L:      [email protected]
18511 S:      Maintained
18512 F:      drivers/net/wireguard/
18513 F:      tools/testing/selftests/wireguard/
18514
18515 WISTRON LAPTOP BUTTON DRIVER
18516 M:      Miloslav Trmac <[email protected]>
18517 S:      Maintained
18518 F:      drivers/input/misc/wistron_btns.c
18519
18520 WL3501 WIRELESS PCMCIA CARD DRIVER
18521 L:      [email protected]
18522 S:      Odd fixes
18523 F:      drivers/net/wireless/wl3501*
18524
18525 WOLFSON MICROELECTRONICS DRIVERS
18526 L:      [email protected]
18527 S:      Supported
18528 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18529 T:      git https://github.com/CirrusLogic/linux-drivers.git
18530 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
18531 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
18532 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18533 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
18534 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
18535 F:      Documentation/hwmon/wm83??.rst
18536 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18537 F:      drivers/clk/clk-wm83*.c
18538 F:      drivers/extcon/extcon-arizona.c
18539 F:      drivers/gpio/gpio-*wm*.c
18540 F:      drivers/gpio/gpio-arizona.c
18541 F:      drivers/hwmon/wm83??-hwmon.c
18542 F:      drivers/input/misc/wm831x-on.c
18543 F:      drivers/input/touchscreen/wm831x-ts.c
18544 F:      drivers/input/touchscreen/wm97*.c
18545 F:      drivers/leds/leds-wm83*.c
18546 F:      drivers/mfd/arizona*
18547 F:      drivers/mfd/cs47l24*
18548 F:      drivers/mfd/wm*.c
18549 F:      drivers/power/supply/wm83*.c
18550 F:      drivers/regulator/arizona*
18551 F:      drivers/regulator/wm8*.c
18552 F:      drivers/rtc/rtc-wm83*.c
18553 F:      drivers/video/backlight/wm83*_bl.c
18554 F:      drivers/watchdog/wm83*_wdt.c
18555 F:      include/linux/mfd/arizona/
18556 F:      include/linux/mfd/wm831x/
18557 F:      include/linux/mfd/wm8350/
18558 F:      include/linux/mfd/wm8400*
18559 F:      include/linux/regulator/arizona*
18560 F:      include/linux/wm97xx.h
18561 F:      include/sound/wm????.h
18562 F:      sound/soc/codecs/arizona.?
18563 F:      sound/soc/codecs/cs47l24*
18564 F:      sound/soc/codecs/wm*
18565
18566 WORKQUEUE
18567 M:      Tejun Heo <[email protected]>
18568 R:      Lai Jiangshan <[email protected]>
18569 S:      Maintained
18570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18571 F:      Documentation/core-api/workqueue.rst
18572 F:      include/linux/workqueue.h
18573 F:      kernel/workqueue.c
18574
18575 X-POWERS AXP288 PMIC DRIVERS
18576 M:      Hans de Goede <[email protected]>
18577 S:      Maintained
18578 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18579 N:      axp288
18580
18581 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18582 M:      Chen-Yu Tsai <[email protected]>
18583 L:      [email protected]
18584 S:      Maintained
18585 N:      axp[128]
18586
18587 X.25 NETWORK LAYER
18588 M:      Andrew Hendry <[email protected]>
18589 L:      [email protected]
18590 S:      Odd Fixes
18591 F:      Documentation/networking/x25*
18592 F:      include/net/x25*
18593 F:      net/x25/
18594
18595 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18596 M:      Thomas Gleixner <[email protected]>
18597 M:      Ingo Molnar <[email protected]>
18598 M:      Borislav Petkov <[email protected]>
18599 M:      [email protected]
18600 R:      "H. Peter Anvin" <[email protected]>
18601 L:      [email protected]
18602 S:      Maintained
18603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18604 F:      Documentation/devicetree/bindings/x86/
18605 F:      Documentation/x86/
18606 F:      arch/x86/
18607
18608 X86 ENTRY CODE
18609 M:      Andy Lutomirski <[email protected]>
18610 L:      [email protected]
18611 S:      Maintained
18612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18613 F:      arch/x86/entry/
18614
18615 X86 MCE INFRASTRUCTURE
18616 M:      Tony Luck <[email protected]>
18617 M:      Borislav Petkov <[email protected]>
18618 L:      [email protected]
18619 S:      Maintained
18620 F:      arch/x86/kernel/cpu/mce/*
18621
18622 X86 MICROCODE UPDATE SUPPORT
18623 M:      Borislav Petkov <[email protected]>
18624 S:      Maintained
18625 F:      arch/x86/kernel/cpu/microcode/*
18626
18627 X86 MM
18628 M:      Dave Hansen <[email protected]>
18629 M:      Andy Lutomirski <[email protected]>
18630 M:      Peter Zijlstra <[email protected]>
18631 L:      [email protected]
18632 S:      Maintained
18633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18634 F:      arch/x86/mm/
18635
18636 X86 PLATFORM DRIVERS
18637 M:      Darren Hart <[email protected]>
18638 M:      Andy Shevchenko <[email protected]>
18639 L:      [email protected]
18640 S:      Odd Fixes
18641 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
18642 F:      drivers/platform/olpc/
18643 F:      drivers/platform/x86/
18644
18645 X86 PLATFORM DRIVERS - ARCH
18646 R:      Darren Hart <[email protected]>
18647 R:      Andy Shevchenko <[email protected]>
18648 L:      [email protected]
18649 L:      [email protected]
18650 S:      Maintained
18651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18652 F:      arch/x86/platform
18653
18654 X86 VDSO
18655 M:      Andy Lutomirski <[email protected]>
18656 L:      [email protected]
18657 S:      Maintained
18658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18659 F:      arch/x86/entry/vdso/
18660
18661 XARRAY
18662 M:      Matthew Wilcox <[email protected]>
18663 L:      [email protected]
18664 S:      Supported
18665 F:      Documentation/core-api/xarray.rst
18666 F:      include/linux/idr.h
18667 F:      include/linux/xarray.h
18668 F:      lib/idr.c
18669 F:      lib/xarray.c
18670 F:      tools/testing/radix-tree
18671
18672 XBOX DVD IR REMOTE
18673 M:      Benjamin Valentin <[email protected]>
18674 S:      Maintained
18675 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
18676 F:      drivers/media/rc/xbox_remote.c
18677
18678 XC2028/3028 TUNER DRIVER
18679 M:      Mauro Carvalho Chehab <[email protected]>
18680 L:      [email protected]
18681 S:      Maintained
18682 W:      https://linuxtv.org
18683 T:      git git://linuxtv.org/media_tree.git
18684 F:      drivers/media/tuners/tuner-xc2028.*
18685
18686 XDP (eXpress Data Path)
18687 M:      Alexei Starovoitov <[email protected]>
18688 M:      Daniel Borkmann <[email protected]>
18689 M:      David S. Miller <[email protected]>
18690 M:      Jakub Kicinski <[email protected]>
18691 M:      Jesper Dangaard Brouer <[email protected]>
18692 M:      John Fastabend <[email protected]>
18693 L:      [email protected]
18694 L:      [email protected]
18695 S:      Supported
18696 F:      include/net/xdp.h
18697 F:      include/trace/events/xdp.h
18698 F:      kernel/bpf/cpumap.c
18699 F:      kernel/bpf/devmap.c
18700 F:      net/core/xdp.c
18701 N:      xdp
18702 K:      xdp
18703
18704 XDP SOCKETS (AF_XDP)
18705 M:      Björn Töpel <[email protected]>
18706 M:      Magnus Karlsson <[email protected]>
18707 R:      Jonathan Lemon <[email protected]>
18708 L:      [email protected]
18709 L:      [email protected]
18710 S:      Maintained
18711 F:      include/net/xdp_sock*
18712 F:      include/net/xsk_buff_pool.h
18713 F:      include/uapi/linux/if_xdp.h
18714 F:      net/xdp/
18715 F:      samples/bpf/xdpsock*
18716 F:      tools/lib/bpf/xsk*
18717
18718 XEN BLOCK SUBSYSTEM
18719 M:      Konrad Rzeszutek Wilk <[email protected]>
18720 M:      Roger Pau Monné <[email protected]>
18721 L:      [email protected] (moderated for non-subscribers)
18722 S:      Supported
18723 F:      drivers/block/xen*
18724 F:      drivers/block/xen-blkback/*
18725
18726 XEN HYPERVISOR ARM
18727 M:      Stefano Stabellini <[email protected]>
18728 L:      [email protected] (moderated for non-subscribers)
18729 S:      Maintained
18730 F:      arch/arm/include/asm/xen/
18731 F:      arch/arm/xen/
18732
18733 XEN HYPERVISOR ARM64
18734 M:      Stefano Stabellini <[email protected]>
18735 L:      [email protected] (moderated for non-subscribers)
18736 S:      Maintained
18737 F:      arch/arm64/include/asm/xen/
18738 F:      arch/arm64/xen/
18739
18740 XEN HYPERVISOR INTERFACE
18741 M:      Boris Ostrovsky <[email protected]>
18742 M:      Juergen Gross <[email protected]>
18743 R:      Stefano Stabellini <[email protected]>
18744 L:      [email protected] (moderated for non-subscribers)
18745 S:      Supported
18746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18747 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
18748 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
18749 F:      arch/x86/include/asm/pvclock-abi.h
18750 F:      arch/x86/include/asm/xen/
18751 F:      arch/x86/platform/pvh/
18752 F:      arch/x86/xen/
18753 F:      drivers/*/xen-*front.c
18754 F:      drivers/xen/
18755 F:      include/uapi/xen/
18756 F:      include/xen/
18757
18758 XEN NETWORK BACKEND DRIVER
18759 M:      Wei Liu <[email protected]>
18760 M:      Paul Durrant <[email protected]>
18761 L:      [email protected] (moderated for non-subscribers)
18762 L:      [email protected]
18763 S:      Supported
18764 F:      drivers/net/xen-netback/*
18765
18766 XEN PCI SUBSYSTEM
18767 M:      Konrad Rzeszutek Wilk <[email protected]>
18768 L:      [email protected] (moderated for non-subscribers)
18769 S:      Supported
18770 F:      arch/x86/pci/*xen*
18771 F:      drivers/pci/*xen*
18772
18773 XEN PVSCSI DRIVERS
18774 M:      Juergen Gross <[email protected]>
18775 L:      [email protected] (moderated for non-subscribers)
18776 L:      [email protected]
18777 S:      Supported
18778 F:      drivers/scsi/xen-scsifront.c
18779 F:      drivers/xen/xen-scsiback.c
18780 F:      include/xen/interface/io/vscsiif.h
18781
18782 XEN SOUND FRONTEND DRIVER
18783 M:      Oleksandr Andrushchenko <[email protected]>
18784 L:      [email protected] (moderated for non-subscribers)
18785 L:      [email protected] (moderated for non-subscribers)
18786 S:      Supported
18787 F:      sound/xen/*
18788
18789 XEN SWIOTLB SUBSYSTEM
18790 M:      Konrad Rzeszutek Wilk <[email protected]>
18791 L:      [email protected] (moderated for non-subscribers)
18792 L:      [email protected]
18793 S:      Supported
18794 F:      arch/x86/xen/*swiotlb*
18795 F:      drivers/xen/*swiotlb*
18796
18797 XFS FILESYSTEM
18798 M:      Darrick J. Wong <[email protected]>
18799 M:      [email protected]
18800 L:      [email protected]
18801 S:      Supported
18802 W:      http://xfs.org/
18803 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18804 F:      Documentation/ABI/testing/sysfs-fs-xfs
18805 F:      Documentation/admin-guide/xfs.rst
18806 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
18807 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
18808 F:      fs/xfs/
18809 F:      include/uapi/linux/dqblk_xfs.h
18810 F:      include/uapi/linux/fsmap.h
18811
18812 XILINX AXI ETHERNET DRIVER
18813 M:      Radhey Shyam Pandey <[email protected]>
18814 S:      Maintained
18815 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
18816
18817 XILINX CAN DRIVER
18818 M:      Appana Durga Kedareswara rao <[email protected]>
18819 R:      Naga Sureshkumar Relli <[email protected]>
18820 L:      [email protected]
18821 S:      Maintained
18822 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
18823 F:      drivers/net/can/xilinx_can.c
18824
18825 XILINX SD-FEC IP CORES
18826 M:      Derek Kiernan <[email protected]>
18827 M:      Dragan Cvetic <[email protected]>
18828 S:      Maintained
18829 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18830 F:      Documentation/misc-devices/xilinx_sdfec.rst
18831 F:      drivers/misc/Kconfig
18832 F:      drivers/misc/Makefile
18833 F:      drivers/misc/xilinx_sdfec.c
18834 F:      include/uapi/misc/xilinx_sdfec.h
18835
18836 XILINX UARTLITE SERIAL DRIVER
18837 M:      Peter Korsgaard <[email protected]>
18838 L:      [email protected]
18839 S:      Maintained
18840 F:      drivers/tty/serial/uartlite.c
18841
18842 XILINX VIDEO IP CORES
18843 M:      Hyun Kwon <[email protected]>
18844 M:      Laurent Pinchart <[email protected]>
18845 L:      [email protected]
18846 S:      Supported
18847 T:      git git://linuxtv.org/media_tree.git
18848 F:      Documentation/devicetree/bindings/media/xilinx/
18849 F:      drivers/media/platform/xilinx/
18850 F:      include/uapi/linux/xilinx-v4l2-controls.h
18851
18852 XILLYBUS DRIVER
18853 M:      Eli Billauer <[email protected]>
18854 L:      [email protected]
18855 S:      Supported
18856 F:      drivers/char/xillybus/
18857
18858 XLP9XX I2C DRIVER
18859 M:      George Cherian <[email protected]>
18860 L:      [email protected]
18861 S:      Supported
18862 W:      http://www.marvell.com
18863 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18864 F:      drivers/i2c/busses/i2c-xlp9xx.c
18865
18866 XRA1403 GPIO EXPANDER
18867 M:      Nandor Han <[email protected]>
18868 M:      Semi Malinen <[email protected]>
18869 L:      [email protected]
18870 S:      Maintained
18871 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18872 F:      drivers/gpio/gpio-xra1403.c
18873
18874 XTENSA XTFPGA PLATFORM SUPPORT
18875 M:      Max Filippov <[email protected]>
18876 L:      [email protected]
18877 S:      Maintained
18878 F:      drivers/spi/spi-xtensa-xtfpga.c
18879 F:      sound/soc/xtensa/xtfpga-i2s.c
18880
18881 YAM DRIVER FOR AX.25
18882 M:      Jean-Paul Roubelat <[email protected]>
18883 L:      [email protected]
18884 S:      Maintained
18885 F:      drivers/net/hamradio/yam*
18886 F:      include/linux/yam.h
18887
18888 YAMA SECURITY MODULE
18889 M:      Kees Cook <[email protected]>
18890 S:      Supported
18891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18892 F:      Documentation/admin-guide/LSM/Yama.rst
18893 F:      security/yama/
18894
18895 YEALINK PHONE DRIVER
18896 M:      Henk Vergonet <[email protected]>
18897 L:      [email protected]
18898 S:      Maintained
18899 F:      Documentation/input/devices/yealink.rst
18900 F:      drivers/input/misc/yealink.*
18901
18902 Z8530 DRIVER FOR AX.25
18903 M:      Joerg Reuter <[email protected]>
18904 L:      [email protected]
18905 S:      Maintained
18906 W:      http://yaina.de/jreuter/
18907 W:      http://www.qsl.net/dl1bke/
18908 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
18909 F:      drivers/net/hamradio/*scc.c
18910 F:      drivers/net/hamradio/z8530.h
18911
18912 ZBUD COMPRESSED PAGE ALLOCATOR
18913 M:      Seth Jennings <[email protected]>
18914 M:      Dan Streetman <[email protected]>
18915 L:      [email protected]
18916 S:      Maintained
18917 F:      include/linux/zbud.h
18918 F:      mm/zbud.c
18919
18920 ZD1211RW WIRELESS DRIVER
18921 M:      Daniel Drake <[email protected]>
18922 M:      Ulrich Kunitz <[email protected]>
18923 L:      [email protected]
18924 L:      [email protected] (subscribers-only)
18925 S:      Maintained
18926 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18927 F:      drivers/net/wireless/zydas/zd1211rw/
18928
18929 ZD1301 MEDIA DRIVER
18930 M:      Antti Palosaari <[email protected]>
18931 L:      [email protected]
18932 S:      Maintained
18933 W:      https://linuxtv.org/
18934 W:      http://palosaari.fi/linux/
18935 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18936 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18937
18938 ZD1301_DEMOD MEDIA DRIVER
18939 M:      Antti Palosaari <[email protected]>
18940 L:      [email protected]
18941 S:      Maintained
18942 W:      https://linuxtv.org/
18943 W:      http://palosaari.fi/linux/
18944 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18945 F:      drivers/media/dvb-frontends/zd1301_demod*
18946
18947 ZHAOXIN PROCESSOR SUPPORT
18948 M:      Tony W Wang-oc <[email protected]>
18949 L:      [email protected]
18950 S:      Maintained
18951 F:      arch/x86/kernel/cpu/zhaoxin.c
18952
18953 ZONEFS FILESYSTEM
18954 M:      Damien Le Moal <[email protected]>
18955 M:      Naohiro Aota <[email protected]>
18956 R:      Johannes Thumshirn <[email protected]>
18957 L:      [email protected]
18958 S:      Maintained
18959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
18960 F:      Documentation/filesystems/zonefs.rst
18961 F:      fs/zonefs/
18962
18963 ZPOOL COMPRESSED PAGE STORAGE API
18964 M:      Dan Streetman <[email protected]>
18965 L:      [email protected]
18966 S:      Maintained
18967 F:      include/linux/zpool.h
18968 F:      mm/zpool.c
18969
18970 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18971 M:      Minchan Kim <[email protected]>
18972 M:      Nitin Gupta <[email protected]>
18973 R:      Sergey Senozhatsky <[email protected]>
18974 L:      [email protected]
18975 S:      Maintained
18976 F:      Documentation/admin-guide/blockdev/zram.rst
18977 F:      drivers/block/zram/
18978
18979 ZS DECSTATION Z85C30 SERIAL DRIVER
18980 M:      "Maciej W. Rozycki" <[email protected]>
18981 S:      Maintained
18982 F:      drivers/tty/serial/zs.*
18983
18984 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18985 M:      Minchan Kim <[email protected]>
18986 M:      Nitin Gupta <[email protected]>
18987 R:      Sergey Senozhatsky <[email protected]>
18988 L:      [email protected]
18989 S:      Maintained
18990 F:      Documentation/vm/zsmalloc.rst
18991 F:      include/linux/zsmalloc.h
18992 F:      mm/zsmalloc.c
18993
18994 ZSWAP COMPRESSED SWAP CACHING
18995 M:      Seth Jennings <[email protected]>
18996 M:      Dan Streetman <[email protected]>
18997 M:      Vitaly Wool <[email protected]>
18998 L:      [email protected]
18999 S:      Maintained
19000 F:      mm/zswap.c
19001
19002 THE REST
19003 M:      Linus Torvalds <[email protected]>
19004 L:      [email protected]
19005 S:      Buried alive in reporters
19006 Q:      http://patchwork.kernel.org/project/LKML/list/
19007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19008 F:      *
19009 F:      */
This page took 1.051511 seconds and 4 git commands to generate.