]> Git Repo - linux.git/blob - MAINTAINERS
fbcon: Move console_lock for register/unlink/unregister
[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 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
196 F:      Documentation/driver-api/80211/cfg80211.rst
197 F:      Documentation/networking/regulatory.rst
198 F:      include/linux/ieee80211.h
199 F:      include/net/cfg80211.h
200 F:      include/net/ieee80211_radiotap.h
201 F:      include/net/iw_handler.h
202 F:      include/net/wext.h
203 F:      include/uapi/linux/nl80211.h
204 F:      net/wireless/
205
206 8169 10/100/1000 GIGABIT ETHERNET DRIVER
207 M:      Heiner Kallweit <[email protected]>
208 M:      [email protected]
209 L:      [email protected]
210 S:      Maintained
211 F:      drivers/net/ethernet/realtek/r8169*
212
213 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
214 M:      Greg Kroah-Hartman <[email protected]>
215 L:      [email protected]
216 S:      Maintained
217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
218 F:      drivers/tty/serial/8250*
219 F:      include/linux/serial_8250.h
220
221 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
222 L:      [email protected]
223 S:      Orphan / Obsolete
224 F:      drivers/net/ethernet/8390/
225
226 9P FILE SYSTEM
227 M:      Eric Van Hensbergen <[email protected]>
228 M:      Latchesar Ionkov <[email protected]>
229 M:      Dominique Martinet <[email protected]>
230 R:      Christian Schoenebeck <[email protected]>
231 L:      [email protected]
232 S:      Maintained
233 W:      http://swik.net/v9fs
234 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
236 T:      git git://github.com/martinetd/linux.git
237 F:      Documentation/filesystems/9p.rst
238 F:      fs/9p/
239 F:      include/net/9p/
240 F:      include/trace/events/9p.h
241 F:      include/uapi/linux/virtio_9p.h
242 F:      net/9p/
243
244 A8293 MEDIA DRIVER
245 M:      Antti Palosaari <[email protected]>
246 L:      [email protected]
247 S:      Maintained
248 W:      https://linuxtv.org
249 W:      http://palosaari.fi/linux/
250 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
251 T:      git git://linuxtv.org/anttip/media_tree.git
252 F:      drivers/media/dvb-frontends/a8293*
253
254 AACRAID SCSI RAID DRIVER
255 M:      Adaptec OEM Raid Solutions <[email protected]>
256 L:      [email protected]
257 S:      Supported
258 W:      http://www.adaptec.com/
259 F:      Documentation/scsi/aacraid.rst
260 F:      drivers/scsi/aacraid/
261
262 ABI/API
263 L:      [email protected]
264 F:      include/linux/syscalls.h
265 F:      kernel/sys_ni.c
266 X:      include/uapi/
267 X:      arch/*/include/uapi/
268
269 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
270 M:      Hans de Goede <[email protected]>
271 L:      [email protected]
272 S:      Maintained
273 F:      drivers/hwmon/abituguru.c
274
275 ABIT UGURU 3 HARDWARE MONITOR DRIVER
276 M:      Alistair John Strachan <[email protected]>
277 L:      [email protected]
278 S:      Maintained
279 F:      drivers/hwmon/abituguru3.c
280
281 ACCES 104-DIO-48E GPIO DRIVER
282 M:      William Breathitt Gray <[email protected]>
283 L:      [email protected]
284 S:      Maintained
285 F:      drivers/gpio/gpio-104-dio-48e.c
286
287 ACCES 104-IDI-48 GPIO DRIVER
288 M:      "William Breathitt Gray" <[email protected]>
289 L:      [email protected]
290 S:      Maintained
291 F:      drivers/gpio/gpio-104-idi-48.c
292
293 ACCES 104-IDIO-16 GPIO DRIVER
294 M:      "William Breathitt Gray" <[email protected]>
295 L:      [email protected]
296 S:      Maintained
297 F:      drivers/gpio/gpio-104-idio-16.c
298
299 ACCES 104-QUAD-8 DRIVER
300 M:      William Breathitt Gray <[email protected]>
301 M:      Syed Nayyar Waris <[email protected]>
302 L:      [email protected]
303 S:      Maintained
304 F:      drivers/counter/104-quad-8.c
305
306 ACCES PCI-IDIO-16 GPIO DRIVER
307 M:      William Breathitt Gray <[email protected]>
308 L:      [email protected]
309 S:      Maintained
310 F:      drivers/gpio/gpio-pci-idio-16.c
311
312 ACCES PCIe-IDIO-24 GPIO DRIVER
313 M:      William Breathitt Gray <[email protected]>
314 L:      [email protected]
315 S:      Maintained
316 F:      drivers/gpio/gpio-pcie-idio-24.c
317
318 ACENIC DRIVER
319 M:      Jes Sorensen <[email protected]>
320 L:      [email protected]
321 S:      Maintained
322 F:      drivers/net/ethernet/alteon/acenic*
323
324 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
325 M:      Peter Kaestle <[email protected]>
326 L:      [email protected]
327 S:      Maintained
328 W:      http://piie.net/?section=acerhdf
329 F:      drivers/platform/x86/acerhdf.c
330
331 ACER WMI LAPTOP EXTRAS
332 M:      "Lee, Chun-Yi" <[email protected]>
333 L:      [email protected]
334 S:      Maintained
335 F:      drivers/platform/x86/acer-wmi.c
336
337 ACPI
338 M:      "Rafael J. Wysocki" <[email protected]>
339 R:      Len Brown <[email protected]>
340 L:      [email protected]
341 S:      Supported
342 W:      https://01.org/linux-acpi
343 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
344 B:      https://bugzilla.kernel.org
345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
346 F:      Documentation/ABI/testing/configfs-acpi
347 F:      Documentation/ABI/testing/sysfs-bus-acpi
348 F:      Documentation/firmware-guide/acpi/
349 F:      drivers/acpi/
350 F:      drivers/pci/*/*acpi*
351 F:      drivers/pci/*acpi*
352 F:      drivers/pnp/pnpacpi/
353 F:      include/acpi/
354 F:      include/linux/acpi.h
355 F:      include/linux/fwnode.h
356 F:      tools/power/acpi/
357
358 ACPI APEI
359 M:      "Rafael J. Wysocki" <[email protected]>
360 R:      Len Brown <[email protected]>
361 R:      James Morse <[email protected]>
362 R:      Tony Luck <[email protected]>
363 R:      Borislav Petkov <[email protected]>
364 L:      [email protected]
365 F:      drivers/acpi/apei/
366
367 ACPI COMPONENT ARCHITECTURE (ACPICA)
368 M:      Robert Moore <[email protected]>
369 M:      "Rafael J. Wysocki" <[email protected]>
370 L:      [email protected]
371 L:      [email protected]
372 S:      Supported
373 W:      https://acpica.org/
374 W:      https://github.com/acpica/acpica/
375 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
376 B:      https://bugzilla.kernel.org
377 B:      https://bugs.acpica.org
378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
379 F:      drivers/acpi/acpica/
380 F:      include/acpi/
381 F:      tools/power/acpi/
382
383 ACPI FOR ARM64 (ACPI/arm64)
384 M:      Lorenzo Pieralisi <[email protected]>
385 M:      Hanjun Guo <[email protected]>
386 M:      Sudeep Holla <[email protected]>
387 L:      [email protected]
388 L:      [email protected] (moderated for non-subscribers)
389 S:      Maintained
390 F:      drivers/acpi/arm64
391
392 ACPI SERIAL MULTI INSTANTIATE DRIVER
393 M:      Hans de Goede <[email protected]>
394 L:      [email protected]
395 S:      Maintained
396 F:      drivers/platform/x86/serial-multi-instantiate.c
397
398 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
399 M:      Sudeep Holla <[email protected]>
400 L:      [email protected]
401 S:      Supported
402 F:      drivers/mailbox/pcc.c
403
404 ACPI PMIC DRIVERS
405 M:      "Rafael J. Wysocki" <[email protected]>
406 M:      Len Brown <[email protected]>
407 R:      Andy Shevchenko <[email protected]>
408 R:      Mika Westerberg <[email protected]>
409 L:      [email protected]
410 S:      Supported
411 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
412 B:      https://bugzilla.kernel.org
413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
414 F:      drivers/acpi/pmic/
415
416 ACPI THERMAL DRIVER
417 M:      Rafael J. Wysocki <[email protected]>
418 R:      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 VIOT DRIVER
426 M:      Jean-Philippe Brucker <[email protected]>
427 L:      [email protected]
428 L:      [email protected]
429 S:      Maintained
430 F:      drivers/acpi/viot.c
431 F:      include/linux/acpi_viot.h
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 ACRN HYPERVISOR SERVICE MODULE
440 M:      Fei Li <[email protected]>
441 L:      [email protected] (subscribers-only)
442 S:      Supported
443 W:      https://projectacrn.org
444 F:      Documentation/virt/acrn/
445 F:      drivers/virt/acrn/
446 F:      include/uapi/linux/acrn.h
447
448 AD1889 ALSA SOUND DRIVER
449 L:      [email protected]
450 S:      Maintained
451 W:      https://parisc.wiki.kernel.org/index.php/AD1889
452 F:      sound/pci/ad1889.*
453
454 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
455 M:      Mugilraj Dhavachelvan <[email protected]>
456 L:      [email protected]
457 S:      Supported
458 F:      drivers/iio/potentiometer/ad5110.c
459
460 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
461 M:      Michael Hennerich <[email protected]>
462 S:      Supported
463 W:      http://wiki.analog.com/AD5254
464 W:      https://ez.analog.com/linux-software-drivers
465 F:      drivers/misc/ad525x_dpot.c
466
467 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
468 M:      Michael Hennerich <[email protected]>
469 S:      Supported
470 W:      http://wiki.analog.com/AD5398
471 W:      https://ez.analog.com/linux-software-drivers
472 F:      drivers/regulator/ad5398.c
473
474 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
475 M:      Michael Hennerich <[email protected]>
476 S:      Supported
477 W:      http://wiki.analog.com/AD7142
478 W:      https://ez.analog.com/linux-software-drivers
479 F:      drivers/input/misc/ad714x.c
480
481 AD7877 TOUCHSCREEN DRIVER
482 M:      Michael Hennerich <[email protected]>
483 S:      Supported
484 W:      http://wiki.analog.com/AD7877
485 W:      https://ez.analog.com/linux-software-drivers
486 F:      drivers/input/touchscreen/ad7877.c
487
488 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
489 M:      Michael Hennerich <[email protected]>
490 S:      Supported
491 W:      http://wiki.analog.com/AD7879
492 W:      https://ez.analog.com/linux-software-drivers
493 F:      drivers/input/touchscreen/ad7879.c
494
495 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
496 M:      Jiri Kosina <[email protected]>
497 S:      Maintained
498
499 ADF7242 IEEE 802.15.4 RADIO DRIVER
500 M:      Michael Hennerich <[email protected]>
501 L:      [email protected]
502 S:      Supported
503 W:      https://wiki.analog.com/ADF7242
504 W:      https://ez.analog.com/linux-software-drivers
505 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
506 F:      drivers/net/ieee802154/adf7242.c
507
508 ADM1025 HARDWARE MONITOR DRIVER
509 M:      Jean Delvare <[email protected]>
510 L:      [email protected]
511 S:      Maintained
512 F:      Documentation/hwmon/adm1025.rst
513 F:      drivers/hwmon/adm1025.c
514
515 ADM1029 HARDWARE MONITOR DRIVER
516 M:      Corentin Labbe <[email protected]>
517 L:      [email protected]
518 S:      Maintained
519 F:      drivers/hwmon/adm1029.c
520
521 ADM8211 WIRELESS DRIVER
522 L:      [email protected]
523 S:      Orphan
524 W:      https://wireless.wiki.kernel.org/
525 F:      drivers/net/wireless/admtek/adm8211.*
526
527 ADP1653 FLASH CONTROLLER DRIVER
528 M:      Sakari Ailus <[email protected]>
529 L:      [email protected]
530 S:      Maintained
531 F:      drivers/media/i2c/adp1653.c
532 F:      include/media/i2c/adp1653.h
533
534 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
535 M:      Michael Hennerich <[email protected]>
536 S:      Supported
537 W:      http://wiki.analog.com/ADP5520
538 W:      https://ez.analog.com/linux-software-drivers
539 F:      drivers/gpio/gpio-adp5520.c
540 F:      drivers/input/keyboard/adp5520-keys.c
541 F:      drivers/leds/leds-adp5520.c
542 F:      drivers/mfd/adp5520.c
543 F:      drivers/video/backlight/adp5520_bl.c
544
545 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
546 M:      Michael Hennerich <[email protected]>
547 S:      Supported
548 W:      http://wiki.analog.com/ADP5588
549 W:      https://ez.analog.com/linux-software-drivers
550 F:      drivers/gpio/gpio-adp5588.c
551 F:      drivers/input/keyboard/adp5588-keys.c
552
553 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
554 M:      Michael Hennerich <[email protected]>
555 S:      Supported
556 W:      http://wiki.analog.com/ADP8860
557 W:      https://ez.analog.com/linux-software-drivers
558 F:      drivers/video/backlight/adp8860_bl.c
559
560 ADT746X FAN DRIVER
561 M:      Colin Leroy <[email protected]>
562 S:      Maintained
563 F:      drivers/macintosh/therm_adt746x.c
564
565 ADT7475 HARDWARE MONITOR DRIVER
566 M:      Jean Delvare <[email protected]>
567 L:      [email protected]
568 S:      Maintained
569 F:      Documentation/hwmon/adt7475.rst
570 F:      drivers/hwmon/adt7475.c
571
572 ADVANSYS SCSI DRIVER
573 M:      Matthew Wilcox <[email protected]>
574 M:      Hannes Reinecke <[email protected]>
575 L:      [email protected]
576 S:      Maintained
577 F:      Documentation/scsi/advansys.rst
578 F:      drivers/scsi/advansys.c
579
580 ADVANTECH SWBTN DRIVER
581 M:      Andrea Ho <[email protected]>
582 L:      [email protected]
583 S:      Maintained
584 F:      drivers/platform/x86/adv_swbutton.c
585
586 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
587 M:      Lucas Stankus <[email protected]>
588 S:      Supported
589 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
590 F:      drivers/iio/accel/adxl313*
591
592 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
593 M:      Michael Hennerich <[email protected]>
594 S:      Supported
595 W:      http://wiki.analog.com/ADXL345
596 W:      https://ez.analog.com/linux-software-drivers
597 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
598 F:      drivers/input/misc/adxl34x.c
599
600 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
601 M:      Puranjay Mohan <[email protected]>
602 L:      [email protected]
603 S:      Supported
604 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
605 F:      drivers/iio/accel/adxl355.h
606 F:      drivers/iio/accel/adxl355_core.c
607 F:      drivers/iio/accel/adxl355_i2c.c
608 F:      drivers/iio/accel/adxl355_spi.c
609
610 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
611 M:      Cosmin Tanislav <[email protected]>
612 L:      [email protected]
613 S:      Supported
614 W:      http://ez.analog.com/community/linux-device-drivers
615 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
616 F:      drivers/iio/accel/adxl367*
617
618 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
619 M:      Michael Hennerich <[email protected]>
620 S:      Supported
621 W:      https://ez.analog.com/linux-software-drivers
622 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
623 F:      drivers/iio/accel/adxl372.c
624 F:      drivers/iio/accel/adxl372_i2c.c
625 F:      drivers/iio/accel/adxl372_spi.c
626
627 AF9013 MEDIA DRIVER
628 M:      Antti Palosaari <[email protected]>
629 L:      [email protected]
630 S:      Maintained
631 W:      https://linuxtv.org
632 W:      http://palosaari.fi/linux/
633 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
634 T:      git git://linuxtv.org/anttip/media_tree.git
635 F:      drivers/media/dvb-frontends/af9013*
636
637 AF9033 MEDIA DRIVER
638 M:      Antti Palosaari <[email protected]>
639 L:      [email protected]
640 S:      Maintained
641 W:      https://linuxtv.org
642 W:      http://palosaari.fi/linux/
643 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
644 T:      git git://linuxtv.org/anttip/media_tree.git
645 F:      drivers/media/dvb-frontends/af9033*
646
647 AFFS FILE SYSTEM
648 M:      David Sterba <[email protected]>
649 L:      [email protected]
650 S:      Odd Fixes
651 F:      Documentation/filesystems/affs.rst
652 F:      fs/affs/
653
654 AFS FILESYSTEM
655 M:      David Howells <[email protected]>
656 M:      Marc Dionne <[email protected]>
657 L:      [email protected]
658 S:      Supported
659 W:      https://www.infradead.org/~dhowells/kafs/
660 F:      Documentation/filesystems/afs.rst
661 F:      fs/afs/
662 F:      include/trace/events/afs.h
663
664 AGPGART DRIVER
665 M:      David Airlie <[email protected]>
666 S:      Maintained
667 T:      git git://anongit.freedesktop.org/drm/drm
668 F:      drivers/char/agp/
669 F:      include/linux/agp*
670 F:      include/uapi/linux/agp*
671
672 AHA152X SCSI DRIVER
673 M:      "Juergen E. Fischer" <[email protected]>
674 L:      [email protected]
675 S:      Maintained
676 F:      drivers/scsi/aha152x*
677 F:      drivers/scsi/pcmcia/aha152x*
678
679 AIC7XXX / AIC79XX SCSI DRIVER
680 M:      Hannes Reinecke <[email protected]>
681 L:      [email protected]
682 S:      Maintained
683 F:      drivers/scsi/aic7xxx/
684
685 AIMSLAB FM RADIO RECEIVER DRIVER
686 M:      Hans Verkuil <[email protected]>
687 L:      [email protected]
688 S:      Maintained
689 W:      https://linuxtv.org
690 T:      git git://linuxtv.org/media_tree.git
691 F:      drivers/media/radio/radio-aimslab*
692
693 AIO
694 M:      Benjamin LaHaise <[email protected]>
695 L:      [email protected]
696 S:      Supported
697 F:      fs/aio.c
698 F:      include/linux/*aio*.h
699
700 AIRSPY MEDIA DRIVER
701 M:      Antti Palosaari <[email protected]>
702 L:      [email protected]
703 S:      Maintained
704 W:      https://linuxtv.org
705 W:      http://palosaari.fi/linux/
706 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
707 T:      git git://linuxtv.org/anttip/media_tree.git
708 F:      drivers/media/usb/airspy/
709
710 ALACRITECH GIGABIT ETHERNET DRIVER
711 M:      Lino Sanfilippo <[email protected]>
712 S:      Maintained
713 F:      drivers/net/ethernet/alacritech/*
714
715 ALCATEL SPEEDTOUCH USB DRIVER
716 M:      Duncan Sands <[email protected]>
717 L:      [email protected]
718 S:      Maintained
719 W:      http://www.linux-usb.org/SpeedTouch/
720 F:      drivers/usb/atm/speedtch.c
721 F:      drivers/usb/atm/usbatm.c
722
723 ALCHEMY AU1XX0 MMC DRIVER
724 M:      Manuel Lauss <[email protected]>
725 S:      Maintained
726 F:      drivers/mmc/host/au1xmmc.c
727
728 ALI1563 I2C DRIVER
729 M:      Rudolf Marek <[email protected]>
730 L:      [email protected]
731 S:      Maintained
732 F:      Documentation/i2c/busses/i2c-ali1563.rst
733 F:      drivers/i2c/busses/i2c-ali1563.c
734
735 ALIENWARE WMI DRIVER
736 L:      [email protected]
737 S:      Maintained
738 F:      drivers/platform/x86/dell/alienware-wmi.c
739
740 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
741 M:      Tomislav Denis <[email protected]>
742 L:      [email protected]
743 S:      Maintained
744 W:      http://www.allsensors.com/
745 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
746 F:      drivers/iio/pressure/dlhl60d.c
747
748 ALLEGRO DVT VIDEO IP CORE DRIVER
749 M:      Michael Tretter <[email protected]>
750 R:      Pengutronix Kernel Team <[email protected]>
751 L:      [email protected]
752 S:      Maintained
753 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
754 F:      drivers/media/platform/allegro-dvt/
755
756 ALLWINNER A10 CSI DRIVER
757 M:      Maxime Ripard <[email protected]>
758 L:      [email protected]
759 S:      Maintained
760 T:      git git://linuxtv.org/media_tree.git
761 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
762 F:      drivers/media/platform/sunxi/sun4i-csi/
763
764 ALLWINNER CPUFREQ DRIVER
765 M:      Yangtao Li <[email protected]>
766 L:      [email protected]
767 S:      Maintained
768 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
769 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
770
771 ALLWINNER CRYPTO DRIVERS
772 M:      Corentin Labbe <[email protected]>
773 L:      [email protected]
774 S:      Maintained
775 F:      drivers/crypto/allwinner/
776
777 ALLWINNER HARDWARE SPINLOCK SUPPORT
778 M:      Wilken Gottwalt <[email protected]>
779 S:      Maintained
780 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
781 F:      drivers/hwspinlock/sun6i_hwspinlock.c
782
783 ALLWINNER THERMAL DRIVER
784 M:      Vasily Khoruzhick <[email protected]>
785 M:      Yangtao Li <[email protected]>
786 L:      [email protected]
787 S:      Maintained
788 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
789 F:      drivers/thermal/sun8i_thermal.c
790
791 ALLWINNER VPU DRIVER
792 M:      Maxime Ripard <[email protected]>
793 M:      Paul Kocialkowski <[email protected]>
794 L:      [email protected]
795 S:      Maintained
796 F:      drivers/staging/media/sunxi/cedrus/
797
798 ALPHA PORT
799 M:      Richard Henderson <[email protected]>
800 M:      Ivan Kokshaysky <[email protected]>
801 M:      Matt Turner <[email protected]>
802 L:      [email protected]
803 S:      Odd Fixes
804 F:      arch/alpha/
805
806 ALPS PS/2 TOUCHPAD DRIVER
807 R:      Pali Rohár <[email protected]>
808 F:      drivers/input/mouse/alps.*
809
810 ALTERA I2C CONTROLLER DRIVER
811 M:      Thor Thayer <[email protected]>
812 S:      Maintained
813 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
814 F:      drivers/i2c/busses/i2c-altera.c
815
816 ALTERA MAILBOX DRIVER
817 M:      Mun Yew Tham <[email protected]>
818 S:      Maintained
819 F:      drivers/mailbox/mailbox-altera.c
820
821 ALTERA MSGDMA IP CORE DRIVER
822 M:      Olivier Dautricourt <[email protected]>
823 R:      Stefan Roese <[email protected]>
824 L:      [email protected]
825 S:      Odd Fixes
826 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
827 F:      drivers/dma/altera-msgdma.c
828
829 ALTERA PIO DRIVER
830 M:      Mun Yew Tham <[email protected]>
831 L:      [email protected]
832 S:      Maintained
833 F:      drivers/gpio/gpio-altera.c
834
835 ALTERA SYSTEM MANAGER DRIVER
836 M:      Thor Thayer <[email protected]>
837 S:      Maintained
838 F:      drivers/mfd/altera-sysmgr.c
839 F:      include/linux/mfd/altera-sysmgr.h
840
841 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
842 M:      Thor Thayer <[email protected]>
843 S:      Maintained
844 F:      drivers/gpio/gpio-altera-a10sr.c
845 F:      drivers/mfd/altera-a10sr.c
846 F:      drivers/reset/reset-a10sr.c
847 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
848 F:      include/linux/mfd/altera-a10sr.h
849
850 ALTERA TRIPLE SPEED ETHERNET DRIVER
851 M:      Joyce Ooi <[email protected]>
852 L:      [email protected]
853 S:      Maintained
854 F:      drivers/net/ethernet/altera/
855
856 ALTERA UART/JTAG UART SERIAL DRIVERS
857 M:      Tobias Klauser <[email protected]>
858 L:      [email protected]
859 S:      Maintained
860 F:      drivers/tty/serial/altera_jtaguart.c
861 F:      drivers/tty/serial/altera_uart.c
862 F:      include/linux/altera_jtaguart.h
863 F:      include/linux/altera_uart.h
864
865 AMAZON ANNAPURNA LABS FIC DRIVER
866 M:      Talel Shenhar <[email protected]>
867 S:      Maintained
868 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
869 F:      drivers/irqchip/irq-al-fic.c
870
871 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
872 M:      Talel Shenhar <[email protected]>
873 M:      Talel Shenhar <[email protected]>
874 S:      Maintained
875 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
876 F:      drivers/edac/al_mc_edac.c
877
878 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
879 M:      Talel Shenhar <[email protected]>
880 S:      Maintained
881 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
882 F:      drivers/thermal/thermal_mmio.c
883
884 AMAZON ETHERNET DRIVERS
885 M:      Shay Agroskin <[email protected]>
886 M:      Arthur Kiyanovski <[email protected]>
887 R:      David Arinzon <[email protected]>
888 R:      Noam Dagan <[email protected]>
889 R:      Saeed Bishara <[email protected]>
890 L:      [email protected]
891 S:      Supported
892 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
893 F:      drivers/net/ethernet/amazon/
894
895 AMAZON RDMA EFA DRIVER
896 M:      Gal Pressman <[email protected]>
897 R:      Yossi Leybovich <[email protected]>
898 L:      [email protected]
899 S:      Supported
900 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
901 F:      drivers/infiniband/hw/efa/
902 F:      include/uapi/rdma/efa-abi.h
903
904 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
905 M:      Tom Lendacky <[email protected]>
906 M:      John Allen <[email protected]>
907 L:      [email protected]
908 S:      Supported
909 F:      drivers/crypto/ccp/
910 F:      include/linux/ccp.h
911
912 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
913 M:      Brijesh Singh <[email protected]>
914 M:      Tom Lendacky <[email protected]>
915 L:      [email protected]
916 S:      Supported
917 F:      drivers/crypto/ccp/sev*
918 F:      include/uapi/linux/psp-sev.h
919
920 AMD DISPLAY CORE
921 M:      Harry Wentland <[email protected]>
922 M:      Leo Li <[email protected]>
923 M:      Rodrigo Siqueira <[email protected]>
924 L:      [email protected]
925 S:      Supported
926 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
927 F:      drivers/gpu/drm/amd/display/
928
929 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
930 M:      Huang Rui <[email protected]>
931 L:      [email protected]
932 S:      Supported
933 F:      Documentation/hwmon/fam15h_power.rst
934 F:      drivers/hwmon/fam15h_power.c
935
936 AMD FCH GPIO DRIVER
937 M:      Enrico Weigelt, metux IT consult <[email protected]>
938 L:      [email protected]
939 S:      Maintained
940 F:      drivers/gpio/gpio-amd-fch.c
941 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
942
943 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
944 L:      [email protected] (moderated for non-subscribers)
945 S:      Orphan
946 F:      drivers/usb/gadget/udc/amd5536udc.*
947
948 AMD GEODE PROCESSOR/CHIPSET SUPPORT
949 M:      Andres Salomon <[email protected]>
950 L:      [email protected] (moderated for non-subscribers)
951 S:      Supported
952 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
953 F:      arch/x86/include/asm/geode.h
954 F:      drivers/char/hw_random/geode-rng.c
955 F:      drivers/crypto/geode*
956 F:      drivers/video/fbdev/geode/
957
958 AMD IOMMU (AMD-VI)
959 M:      Joerg Roedel <[email protected]>
960 R:      Suravee Suthikulpanit <[email protected]>
961 L:      [email protected]
962 S:      Maintained
963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
964 F:      drivers/iommu/amd/
965 F:      include/linux/amd-iommu.h
966
967 AMD KFD
968 M:      Felix Kuehling <[email protected]>
969 L:      [email protected]
970 S:      Supported
971 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
972 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
973 F:      drivers/gpu/drm/amd/amdkfd/
974 F:      drivers/gpu/drm/amd/include/cik_structs.h
975 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
976 F:      drivers/gpu/drm/amd/include/v9_structs.h
977 F:      drivers/gpu/drm/amd/include/vi_structs.h
978 F:      include/uapi/linux/kfd_ioctl.h
979 F:      include/uapi/linux/kfd_sysfs.h
980
981 AMD SPI DRIVER
982 M:      Sanjay R Mehta <[email protected]>
983 S:      Maintained
984 F:      drivers/spi/spi-amd.c
985
986 AMD MP2 I2C DRIVER
987 M:      Elie Morisse <[email protected]>
988 M:      Nehal Shah <[email protected]>
989 M:      Shyam Sundar S K <[email protected]>
990 L:      [email protected]
991 S:      Maintained
992 F:      drivers/i2c/busses/i2c-amd-mp2*
993
994 AMD PMC DRIVER
995 M:      Shyam Sundar S K <[email protected]>
996 L:      [email protected]
997 S:      Maintained
998 F:      drivers/platform/x86/amd-pmc.*
999
1000 AMD HSMP DRIVER
1001 M:      Naveen Krishna Chatradhi <[email protected]>
1002 R:      Carlos Bilbao <[email protected]>
1003 L:      [email protected]
1004 S:      Maintained
1005 F:      Documentation/x86/amd_hsmp.rst
1006 F:      arch/x86/include/asm/amd_hsmp.h
1007 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1008 F:      drivers/platform/x86/amd_hsmp.c
1009
1010 AMD POWERPLAY AND SWSMU
1011 M:      Evan Quan <[email protected]>
1012 L:      [email protected]
1013 S:      Supported
1014 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1015 F:      drivers/gpu/drm/amd/pm/
1016
1017 AMD PSTATE DRIVER
1018 M:      Huang Rui <[email protected]>
1019 L:      [email protected]
1020 S:      Supported
1021 F:      Documentation/admin-guide/pm/amd-pstate.rst
1022 F:      drivers/cpufreq/amd-pstate*
1023 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1024
1025 AMD PTDMA DRIVER
1026 M:      Sanjay R Mehta <[email protected]>
1027 L:      [email protected]
1028 S:      Maintained
1029 F:      drivers/dma/ptdma/
1030
1031 AMD SEATTLE DEVICE TREE SUPPORT
1032 M:      Brijesh Singh <[email protected]>
1033 M:      Suravee Suthikulpanit <[email protected]>
1034 M:      Tom Lendacky <[email protected]>
1035 S:      Supported
1036 F:      arch/arm64/boot/dts/amd/
1037
1038 AMD XGBE DRIVER
1039 M:      Tom Lendacky <[email protected]>
1040 L:      [email protected]
1041 S:      Supported
1042 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1043 F:      drivers/net/ethernet/amd/xgbe/
1044
1045 AMD SENSOR FUSION HUB DRIVER
1046 M:      Nehal Shah <[email protected]>
1047 M:      Basavaraj Natikar <[email protected]>
1048 L:      [email protected]
1049 S:      Maintained
1050 F:      Documentation/hid/amd-sfh*
1051 F:      drivers/hid/amd-sfh-hid/
1052
1053 AMPHION VPU CODEC V4L2 DRIVER
1054 M:      Ming Qian <[email protected]>
1055 M:      Shijie Qin <[email protected]>
1056 M:      Zhou Peng <[email protected]>
1057 L:      [email protected]
1058 S:      Maintained
1059 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1060 F:      drivers/media/platform/amphion/
1061
1062 AMS AS73211 DRIVER
1063 M:      Christian Eggers <[email protected]>
1064 L:      [email protected]
1065 S:      Maintained
1066 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1067 F:      drivers/iio/light/as73211.c
1068
1069 AMT (Automatic Multicast Tunneling)
1070 M:      Taehee Yoo <[email protected]>
1071 L:      [email protected]
1072 S:      Maintained
1073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1075 F:      drivers/net/amt.c
1076
1077 ANALOG DEVICES INC AD7192 DRIVER
1078 M:      Alexandru Tachici <[email protected]>
1079 L:      [email protected]
1080 S:      Supported
1081 W:      https://ez.analog.com/linux-software-drivers
1082 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1083 F:      drivers/iio/adc/ad7192.c
1084
1085 ANALOG DEVICES INC AD7292 DRIVER
1086 M:      Marcelo Schmitt <[email protected]>
1087 L:      [email protected]
1088 S:      Supported
1089 W:      https://ez.analog.com/linux-software-drivers
1090 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1091 F:      drivers/iio/adc/ad7292.c
1092
1093 ANALOG DEVICES INC AD7293 DRIVER
1094 M:      Antoniu Miclaus <[email protected]>
1095 L:      [email protected]
1096 S:      Supported
1097 W:      https://ez.analog.com/linux-software-drivers
1098 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1099 F:      drivers/iio/dac/ad7293.c
1100
1101 ANALOG DEVICES INC AD7768-1 DRIVER
1102 M:      Michael Hennerich <[email protected]>
1103 L:      [email protected]
1104 S:      Supported
1105 W:      https://ez.analog.com/linux-software-drivers
1106 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1107 F:      drivers/iio/adc/ad7768-1.c
1108
1109 ANALOG DEVICES INC AD7780 DRIVER
1110 M:      Michael Hennerich <[email protected]>
1111 M:      Renato Lui Geh <[email protected]>
1112 L:      [email protected]
1113 S:      Supported
1114 W:      https://ez.analog.com/linux-software-drivers
1115 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1116 F:      drivers/iio/adc/ad7780.c
1117
1118 ANALOG DEVICES INC AD74413R DRIVER
1119 M:      Cosmin Tanislav <[email protected]>
1120 L:      [email protected]
1121 S:      Supported
1122 W:      http://ez.analog.com/community/linux-device-drivers
1123 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1124 F:      drivers/iio/addac/ad74413r.c
1125 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1126
1127 ANALOG DEVICES INC AD9389B DRIVER
1128 M:      Hans Verkuil <[email protected]>
1129 L:      [email protected]
1130 S:      Maintained
1131 F:      drivers/media/i2c/ad9389b*
1132
1133 ANALOG DEVICES INC ADA4250 DRIVER
1134 M:      Antoniu Miclaus <[email protected]>
1135 L:      [email protected]
1136 S:      Supported
1137 W:      https://ez.analog.com/linux-software-drivers
1138 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1139 F:      drivers/iio/amplifiers/ada4250.c
1140
1141 ANALOG DEVICES INC ADGS1408 DRIVER
1142 M:      Mircea Caprioru <[email protected]>
1143 S:      Supported
1144 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1145 F:      drivers/mux/adgs1408.c
1146
1147 ANALOG DEVICES INC ADIN DRIVER
1148 M:      Michael Hennerich <[email protected]>
1149 L:      [email protected]
1150 S:      Supported
1151 W:      https://ez.analog.com/linux-software-drivers
1152 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1153 F:      drivers/net/phy/adin.c
1154
1155 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1156 M:      Nuno Sa <[email protected]>
1157 L:      [email protected]
1158 S:      Supported
1159 F:      drivers/iio/imu/adis.c
1160 F:      drivers/iio/imu/adis_buffer.c
1161 F:      drivers/iio/imu/adis_trigger.c
1162 F:      include/linux/iio/imu/adis.h
1163
1164 ANALOG DEVICES INC ADIS16460 DRIVER
1165 M:      Dragos Bogdan <[email protected]>
1166 L:      [email protected]
1167 S:      Supported
1168 W:      https://ez.analog.com/linux-software-drivers
1169 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1170 F:      drivers/iio/imu/adis16460.c
1171
1172 ANALOG DEVICES INC ADIS16475 DRIVER
1173 M:      Nuno Sa <[email protected]>
1174 L:      [email protected]
1175 W:      https://ez.analog.com/linux-software-drivers
1176 S:      Supported
1177 F:      drivers/iio/imu/adis16475.c
1178 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1179
1180 ANALOG DEVICES INC ADM1177 DRIVER
1181 M:      Michael Hennerich <[email protected]>
1182 L:      [email protected]
1183 S:      Supported
1184 W:      https://ez.analog.com/linux-software-drivers
1185 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1186 F:      drivers/hwmon/adm1177.c
1187
1188 ANALOG DEVICES INC ADMV1013 DRIVER
1189 M:      Antoniu Miclaus <[email protected]>
1190 L:      [email protected]
1191 S:      Supported
1192 W:      https://ez.analog.com/linux-software-drivers
1193 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1194 F:      drivers/iio/frequency/admv1013.c
1195
1196 ANALOG DEVICES INC ADMV8818 DRIVER
1197 M:      Antoniu Miclaus <[email protected]>
1198 L:      [email protected]
1199 S:      Supported
1200 W:      https://ez.analog.com/linux-software-drivers
1201 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1202 F:      drivers/iio/filter/admv8818.c
1203
1204 ANALOG DEVICES INC ADMV1014 DRIVER
1205 M:      Antoniu Miclaus <[email protected]>
1206 L:      [email protected]
1207 S:      Supported
1208 W:      https://ez.analog.com/linux-software-drivers
1209 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1210 F:      drivers/iio/frequency/admv1014.c
1211
1212 ANALOG DEVICES INC ADP5061 DRIVER
1213 M:      Michael Hennerich <[email protected]>
1214 L:      [email protected]
1215 S:      Supported
1216 W:      https://ez.analog.com/linux-software-drivers
1217 F:      drivers/power/supply/adp5061.c
1218
1219 ANALOG DEVICES INC ADRF6780 DRIVER
1220 M:      Antoniu Miclaus <[email protected]>
1221 L:      [email protected]
1222 S:      Supported
1223 W:      https://ez.analog.com/linux-software-drivers
1224 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1225 F:      drivers/iio/frequency/adrf6780.c
1226
1227 ANALOG DEVICES INC ADV7180 DRIVER
1228 M:      Lars-Peter Clausen <[email protected]>
1229 L:      [email protected]
1230 S:      Supported
1231 W:      https://ez.analog.com/linux-software-drivers
1232 F:      drivers/media/i2c/adv7180.c
1233 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1234
1235 ANALOG DEVICES INC ADV748X DRIVER
1236 M:      Kieran Bingham <[email protected]>
1237 L:      [email protected]
1238 S:      Maintained
1239 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1240 F:      drivers/media/i2c/adv748x/*
1241
1242 ANALOG DEVICES INC ADV7511 DRIVER
1243 M:      Hans Verkuil <[email protected]>
1244 L:      [email protected]
1245 S:      Maintained
1246 F:      drivers/media/i2c/adv7511*
1247
1248 ANALOG DEVICES INC ADV7604 DRIVER
1249 M:      Hans Verkuil <[email protected]>
1250 L:      [email protected]
1251 S:      Maintained
1252 F:      drivers/media/i2c/adv7604*
1253 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1254
1255 ANALOG DEVICES INC ADV7842 DRIVER
1256 M:      Hans Verkuil <[email protected]>
1257 L:      [email protected]
1258 S:      Maintained
1259 F:      drivers/media/i2c/adv7842*
1260
1261 ANALOG DEVICES INC ADXRS290 DRIVER
1262 M:      Nishant Malpani <[email protected]>
1263 L:      [email protected]
1264 S:      Supported
1265 F:      drivers/iio/gyro/adxrs290.c
1266 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1267
1268 ANALOG DEVICES INC ASOC CODEC DRIVERS
1269 M:      Lars-Peter Clausen <[email protected]>
1270 M:      Nuno Sá <[email protected]>
1271 L:      [email protected] (moderated for non-subscribers)
1272 S:      Supported
1273 W:      http://wiki.analog.com/
1274 W:      https://ez.analog.com/linux-software-drivers
1275 F:      sound/soc/codecs/ad1*
1276 F:      sound/soc/codecs/ad7*
1277 F:      sound/soc/codecs/adau*
1278 F:      sound/soc/codecs/adav*
1279 F:      sound/soc/codecs/sigmadsp.*
1280 F:      sound/soc/codecs/ssm*
1281
1282 ANALOG DEVICES INC DMA DRIVERS
1283 M:      Lars-Peter Clausen <[email protected]>
1284 S:      Supported
1285 W:      https://ez.analog.com/linux-software-drivers
1286 F:      drivers/dma/dma-axi-dmac.c
1287
1288 ANALOG DEVICES INC IIO DRIVERS
1289 M:      Lars-Peter Clausen <[email protected]>
1290 M:      Michael Hennerich <[email protected]>
1291 S:      Supported
1292 W:      http://wiki.analog.com/
1293 W:      https://ez.analog.com/linux-software-drivers
1294 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1295 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1296 F:      Documentation/devicetree/bindings/iio/*/adi,*
1297 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1298 F:      drivers/iio/*/ad*
1299 F:      drivers/iio/adc/ltc249*
1300 F:      drivers/iio/amplifiers/hmc425a.c
1301 F:      drivers/staging/iio/*/ad*
1302 X:      drivers/iio/*/adjd*
1303
1304 ANALOGBITS PLL LIBRARIES
1305 M:      Paul Walmsley <[email protected]>
1306 S:      Supported
1307 F:      drivers/clk/analogbits/*
1308 F:      include/linux/clk/analogbits*
1309
1310 ANDROID CONFIG FRAGMENTS
1311 M:      Rob Herring <[email protected]>
1312 S:      Supported
1313 F:      kernel/configs/android*
1314
1315 ANDROID DRIVERS
1316 M:      Greg Kroah-Hartman <[email protected]>
1317 M:      Arve Hjønnevåg <[email protected]>
1318 M:      Todd Kjos <[email protected]>
1319 M:      Martijn Coenen <[email protected]>
1320 M:      Joel Fernandes <[email protected]>
1321 M:      Christian Brauner <[email protected]>
1322 M:      Hridya Valsaraju <[email protected]>
1323 M:      Suren Baghdasaryan <[email protected]>
1324 L:      [email protected]
1325 S:      Supported
1326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1327 F:      drivers/android/
1328
1329 ANDROID GOLDFISH PIC DRIVER
1330 M:      Miodrag Dinic <[email protected]>
1331 S:      Supported
1332 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1333 F:      drivers/irqchip/irq-goldfish-pic.c
1334
1335 ANDROID GOLDFISH RTC DRIVER
1336 M:      Jiaxun Yang <[email protected]>
1337 S:      Supported
1338 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1339 F:      drivers/rtc/rtc-goldfish.c
1340
1341 AOA (Apple Onboard Audio) ALSA DRIVER
1342 M:      Johannes Berg <[email protected]>
1343 L:      [email protected]
1344 L:      [email protected] (moderated for non-subscribers)
1345 S:      Maintained
1346 F:      sound/aoa/
1347
1348 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1349 M:      William Breathitt Gray <[email protected]>
1350 L:      [email protected]
1351 S:      Maintained
1352 F:      drivers/iio/adc/stx104.c
1353
1354 APM DRIVER
1355 M:      Jiri Kosina <[email protected]>
1356 S:      Odd fixes
1357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1358 F:      arch/x86/kernel/apm_32.c
1359 F:      drivers/char/apm-emulation.c
1360 F:      include/linux/apm_bios.h
1361 F:      include/uapi/linux/apm_bios.h
1362
1363 APPARMOR SECURITY MODULE
1364 M:      John Johansen <[email protected]>
1365 L:      [email protected] (subscribers-only, general discussion)
1366 S:      Supported
1367 W:      wiki.apparmor.net
1368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1369 F:      Documentation/admin-guide/LSM/apparmor.rst
1370 F:      security/apparmor/
1371
1372 APPLE BCM5974 MULTITOUCH DRIVER
1373 M:      Henrik Rydberg <[email protected]>
1374 L:      [email protected]
1375 S:      Odd fixes
1376 F:      drivers/input/mouse/bcm5974.c
1377
1378 APPLE DART IOMMU DRIVER
1379 M:      Sven Peter <[email protected]>
1380 R:      Alyssa Rosenzweig <[email protected]>
1381 L:      [email protected]
1382 S:      Maintained
1383 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1384 F:      drivers/iommu/apple-dart.c
1385
1386 APPLE PCIE CONTROLLER DRIVER
1387 M:      Alyssa Rosenzweig <[email protected]>
1388 M:      Marc Zyngier <[email protected]>
1389 L:      [email protected]
1390 S:      Maintained
1391 F:      drivers/pci/controller/pcie-apple.c
1392
1393 APPLE SMC DRIVER
1394 M:      Henrik Rydberg <[email protected]>
1395 L:      [email protected]
1396 S:      Odd fixes
1397 F:      drivers/hwmon/applesmc.c
1398
1399 APPLETALK NETWORK LAYER
1400 L:      [email protected]
1401 S:      Odd fixes
1402 F:      drivers/net/appletalk/
1403 F:      include/linux/atalk.h
1404 F:      include/uapi/linux/atalk.h
1405 F:      net/appletalk/
1406
1407 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1408 M:      Khuong Dinh <[email protected]>
1409 S:      Supported
1410 F:      arch/arm64/boot/dts/apm/
1411
1412 APPLIED MICRO (APM) X-GENE SOC EDAC
1413 M:      Khuong Dinh <[email protected]>
1414 S:      Supported
1415 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1416 F:      drivers/edac/xgene_edac.c
1417
1418 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1419 M:      Iyappan Subramanian <[email protected]>
1420 M:      Keyur Chudgar <[email protected]>
1421 S:      Supported
1422 F:      drivers/net/ethernet/apm/xgene-v2/
1423
1424 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1425 M:      Iyappan Subramanian <[email protected]>
1426 M:      Keyur Chudgar <[email protected]>
1427 M:      Quan Nguyen <[email protected]>
1428 S:      Supported
1429 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1430 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1431 F:      drivers/net/ethernet/apm/xgene/
1432 F:      drivers/net/mdio/mdio-xgene.c
1433
1434 APPLIED MICRO (APM) X-GENE SOC PMU
1435 M:      Khuong Dinh <[email protected]>
1436 S:      Supported
1437 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1438 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1439 F:      drivers/perf/xgene_pmu.c
1440
1441 APTINA CAMERA SENSOR PLL
1442 M:      Laurent Pinchart <[email protected]>
1443 L:      [email protected]
1444 S:      Maintained
1445 F:      drivers/media/i2c/aptina-pll.*
1446
1447 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1448 M:      Aleksa Savic <[email protected]>
1449 L:      [email protected]
1450 S:      Maintained
1451 F:      Documentation/hwmon/aquacomputer_d5next.rst
1452 F:      drivers/hwmon/aquacomputer_d5next.c
1453
1454 AQUANTIA ETHERNET DRIVER (atlantic)
1455 M:      Igor Russkikh <[email protected]>
1456 L:      [email protected]
1457 S:      Supported
1458 W:      https://www.marvell.com/
1459 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1460 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1461 F:      drivers/net/ethernet/aquantia/atlantic/
1462
1463 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1464 M:      Egor Pomozov <[email protected]>
1465 L:      [email protected]
1466 S:      Supported
1467 W:      http://www.aquantia.com
1468 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1469
1470 ARASAN NAND CONTROLLER DRIVER
1471 M:      Miquel Raynal <[email protected]>
1472 M:      Naga Sureshkumar Relli <[email protected]>
1473 L:      [email protected]
1474 S:      Maintained
1475 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1476 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1477
1478 ARC FRAMEBUFFER DRIVER
1479 M:      Jaya Kumar <[email protected]>
1480 S:      Maintained
1481 F:      drivers/video/fbdev/arcfb.c
1482 F:      drivers/video/fbdev/core/fb_defio.c
1483
1484 ARC PGU DRM DRIVER
1485 M:      Alexey Brodkin <[email protected]>
1486 S:      Supported
1487 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1488 F:      drivers/gpu/drm/tiny/arcpgu.c
1489
1490 ARCNET NETWORK LAYER
1491 M:      Michael Grzeschik <[email protected]>
1492 L:      [email protected]
1493 S:      Maintained
1494 F:      drivers/net/arcnet/
1495 F:      include/uapi/linux/if_arcnet.h
1496
1497 ARM ARCHITECTED TIMER DRIVER
1498 M:      Mark Rutland <[email protected]>
1499 M:      Marc Zyngier <[email protected]>
1500 L:      [email protected] (moderated for non-subscribers)
1501 S:      Maintained
1502 F:      arch/arm/include/asm/arch_timer.h
1503 F:      arch/arm64/include/asm/arch_timer.h
1504 F:      drivers/clocksource/arm_arch_timer.c
1505
1506 ARM HDLCD DRM DRIVER
1507 M:      Liviu Dudau <[email protected]>
1508 S:      Supported
1509 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1510 F:      drivers/gpu/drm/arm/hdlcd_*
1511
1512 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1513 M:      Linus Walleij <[email protected]>
1514 L:      [email protected] (moderated for non-subscribers)
1515 S:      Maintained
1516 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1517 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1518 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1519 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1520 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1521 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1522 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1523 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1524 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1525 F:      arch/arm/boot/dts/arm-realview-*
1526 F:      arch/arm/boot/dts/integrator*
1527 F:      arch/arm/boot/dts/versatile*
1528 F:      arch/arm/mach-integrator/
1529 F:      arch/arm/mach-realview/
1530 F:      arch/arm/mach-versatile/
1531 F:      arch/arm/plat-versatile/
1532 F:      drivers/bus/arm-integrator-lm.c
1533 F:      drivers/clk/versatile/
1534 F:      drivers/i2c/busses/i2c-versatile.c
1535 F:      drivers/irqchip/irq-versatile-fpga.c
1536 F:      drivers/mtd/maps/physmap-versatile.*
1537 F:      drivers/power/reset/arm-versatile-reboot.c
1538 F:      drivers/soc/versatile/
1539
1540 ARM KOMEDA DRM-KMS DRIVER
1541 M:      James (Qian) Wang <[email protected]>
1542 M:      Liviu Dudau <[email protected]>
1543 M:      Mihail Atanassov <[email protected]>
1544 L:      Mali DP Maintainers <[email protected]>
1545 S:      Supported
1546 T:      git git://anongit.freedesktop.org/drm/drm-misc
1547 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1548 F:      Documentation/gpu/komeda-kms.rst
1549 F:      drivers/gpu/drm/arm/display/include/
1550 F:      drivers/gpu/drm/arm/display/komeda/
1551
1552 ARM MALI PANFROST DRM DRIVER
1553 M:      Rob Herring <[email protected]>
1554 M:      Tomeu Vizoso <[email protected]>
1555 R:      Steven Price <[email protected]>
1556 R:      Alyssa Rosenzweig <[email protected]>
1557 L:      [email protected]
1558 S:      Supported
1559 T:      git git://anongit.freedesktop.org/drm/drm-misc
1560 F:      drivers/gpu/drm/panfrost/
1561 F:      include/uapi/drm/panfrost_drm.h
1562
1563 ARM MALI-DP DRM DRIVER
1564 M:      Liviu Dudau <[email protected]>
1565 M:      Brian Starkey <[email protected]>
1566 L:      Mali DP Maintainers <[email protected]>
1567 S:      Supported
1568 T:      git git://anongit.freedesktop.org/drm/drm-misc
1569 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1570 F:      Documentation/gpu/afbc.rst
1571 F:      drivers/gpu/drm/arm/
1572
1573 ARM MFM AND FLOPPY DRIVERS
1574 M:      Ian Molton <[email protected]>
1575 S:      Maintained
1576 F:      arch/arm/include/asm/floppy.h
1577 F:      arch/arm/mach-rpc/floppydma.S
1578
1579 ARM PMU PROFILING AND DEBUGGING
1580 M:      Will Deacon <[email protected]>
1581 M:      Mark Rutland <[email protected]>
1582 L:      [email protected] (moderated for non-subscribers)
1583 S:      Maintained
1584 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1585 F:      Documentation/devicetree/bindings/perf/
1586 F:      arch/arm*/include/asm/hw_breakpoint.h
1587 F:      arch/arm*/include/asm/perf_event.h
1588 F:      arch/arm*/kernel/hw_breakpoint.c
1589 F:      arch/arm*/kernel/perf_*
1590 F:      drivers/perf/
1591 F:      include/linux/perf/arm_pmu.h
1592
1593 ARM PORT
1594 M:      Russell King <[email protected]>
1595 L:      [email protected] (moderated for non-subscribers)
1596 S:      Odd Fixes
1597 W:      http://www.armlinux.org.uk/
1598 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1599 F:      arch/arm/
1600 X:      arch/arm/boot/dts/
1601
1602 ARM PRIMECELL AACI PL041 DRIVER
1603 M:      Russell King <[email protected]>
1604 S:      Odd Fixes
1605 F:      sound/arm/aaci.*
1606
1607 ARM PRIMECELL BUS SUPPORT
1608 M:      Russell King <[email protected]>
1609 S:      Odd Fixes
1610 F:      drivers/amba/
1611 F:      include/linux/amba/bus.h
1612
1613 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1614 M:      Miquel Raynal <[email protected]>
1615 M:      Naga Sureshkumar Relli <[email protected]>
1616 L:      [email protected]
1617 S:      Maintained
1618 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1619 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1620
1621 ARM PRIMECELL PL35X SMC DRIVER
1622 M:      Miquel Raynal <[email protected]>
1623 M:      Naga Sureshkumar Relli <[email protected]>
1624 L:      [email protected] (moderated for non-subscribers)
1625 S:      Maintained
1626 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1627 F:      drivers/memory/pl353-smc.c
1628
1629 ARM PRIMECELL CLCD PL110 DRIVER
1630 M:      Russell King <[email protected]>
1631 S:      Odd Fixes
1632 F:      drivers/video/fbdev/amba-clcd.*
1633
1634 ARM PRIMECELL KMI PL050 DRIVER
1635 M:      Russell King <[email protected]>
1636 S:      Odd Fixes
1637 F:      drivers/input/serio/ambakmi.*
1638 F:      include/linux/amba/kmi.h
1639
1640 ARM PRIMECELL MMCI PL180/1 DRIVER
1641 M:      Russell King <[email protected]>
1642 S:      Odd Fixes
1643 F:      drivers/mmc/host/mmci.*
1644 F:      include/linux/amba/mmci.h
1645
1646 ARM PRIMECELL SSP PL022 SPI DRIVER
1647 M:      Linus Walleij <[email protected]>
1648 L:      [email protected] (moderated for non-subscribers)
1649 S:      Maintained
1650 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1651 F:      drivers/spi/spi-pl022.c
1652
1653 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1654 M:      Russell King <[email protected]>
1655 S:      Odd Fixes
1656 F:      drivers/tty/serial/amba-pl01*.c
1657 F:      include/linux/amba/serial.h
1658
1659 ARM PRIMECELL VIC PL190/PL192 DRIVER
1660 M:      Linus Walleij <[email protected]>
1661 L:      [email protected] (moderated for non-subscribers)
1662 S:      Maintained
1663 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1664 F:      drivers/irqchip/irq-vic.c
1665
1666 ARM SMC WATCHDOG DRIVER
1667 M:      Julius Werner <[email protected]>
1668 R:      Evan Benn <[email protected]>
1669 S:      Maintained
1670 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1671 F:      drivers/watchdog/arm_smc_wdt.c
1672
1673 ARM SMMU DRIVERS
1674 M:      Will Deacon <[email protected]>
1675 R:      Robin Murphy <[email protected]>
1676 L:      [email protected] (moderated for non-subscribers)
1677 S:      Maintained
1678 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1679 F:      drivers/iommu/arm/
1680 F:      drivers/iommu/io-pgtable-arm*
1681
1682 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1683 M:      Arnd Bergmann <[email protected]>
1684 M:      Olof Johansson <[email protected]>
1685 M:      [email protected]
1686 L:      [email protected] (moderated for non-subscribers)
1687 S:      Maintained
1688 C:      irc://irc.libera.chat/armlinux
1689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1690 F:      arch/arm/boot/dts/Makefile
1691 F:      arch/arm64/boot/dts/Makefile
1692
1693 ARM SUB-ARCHITECTURES
1694 L:      [email protected] (moderated for non-subscribers)
1695 S:      Maintained
1696 C:      irc://irc.libera.chat/armlinux
1697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1698 F:      arch/arm/mach-*/
1699 F:      arch/arm/plat-*/
1700
1701 ARM/ACTIONS SEMI ARCHITECTURE
1702 M:      Andreas Färber <[email protected]>
1703 M:      Manivannan Sadhasivam <[email protected]>
1704 L:      [email protected] (moderated for non-subscribers)
1705 L:      [email protected] (moderated for non-subscribers)
1706 S:      Maintained
1707 F:      Documentation/devicetree/bindings/arm/actions.yaml
1708 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1709 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1710 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1711 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1712 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1713 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1714 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1715 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1716 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1717 F:      arch/arm/boot/dts/owl-*
1718 F:      arch/arm/mach-actions/
1719 F:      arch/arm64/boot/dts/actions/
1720 F:      drivers/clk/actions/
1721 F:      drivers/clocksource/timer-owl*
1722 F:      drivers/dma/owl-dma.c
1723 F:      drivers/i2c/busses/i2c-owl.c
1724 F:      drivers/irqchip/irq-owl-sirq.c
1725 F:      drivers/mmc/host/owl-mmc.c
1726 F:      drivers/net/ethernet/actions/
1727 F:      drivers/pinctrl/actions/*
1728 F:      drivers/soc/actions/
1729 F:      include/dt-bindings/power/owl-*
1730 F:      include/dt-bindings/reset/actions,*
1731 F:      include/linux/soc/actions/
1732 N:      owl
1733
1734 ARM/ADS SPHERE MACHINE SUPPORT
1735 M:      Lennert Buytenhek <[email protected]>
1736 L:      [email protected] (moderated for non-subscribers)
1737 S:      Maintained
1738
1739 ARM/AFEB9260 MACHINE SUPPORT
1740 M:      Sergey Lapin <[email protected]>
1741 L:      [email protected] (moderated for non-subscribers)
1742 S:      Maintained
1743
1744 ARM/AJECO 1ARM MACHINE SUPPORT
1745 M:      Lennert Buytenhek <[email protected]>
1746 L:      [email protected] (moderated for non-subscribers)
1747 S:      Maintained
1748
1749 ARM/Allwinner SoC Clock Support
1750 M:      Emilio López <[email protected]>
1751 S:      Maintained
1752 F:      drivers/clk/sunxi/
1753
1754 ARM/Allwinner sunXi SoC support
1755 M:      Chen-Yu Tsai <[email protected]>
1756 M:      Jernej Skrabec <[email protected]>
1757 M:      Samuel Holland <[email protected]>
1758 L:      [email protected] (moderated for non-subscribers)
1759 S:      Maintained
1760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1761 L:      [email protected]
1762 F:      arch/arm/mach-sunxi/
1763 F:      arch/arm64/boot/dts/allwinner/
1764 F:      drivers/clk/sunxi-ng/
1765 F:      drivers/pinctrl/sunxi/
1766 F:      drivers/soc/sunxi/
1767 N:      allwinner
1768 N:      sun[x456789]i
1769 N:      sun50i
1770
1771 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1772 M:      Neil Armstrong <[email protected]>
1773 M:      Jerome Brunet <[email protected]>
1774 L:      [email protected]
1775 S:      Maintained
1776 F:      Documentation/devicetree/bindings/clock/amlogic*
1777 F:      drivers/clk/meson/
1778 F:      include/dt-bindings/clock/gxbb*
1779 F:      include/dt-bindings/clock/meson*
1780
1781 ARM/Amlogic Meson SoC Crypto Drivers
1782 M:      Corentin Labbe <[email protected]>
1783 L:      [email protected]
1784 L:      [email protected]
1785 S:      Maintained
1786 F:      Documentation/devicetree/bindings/crypto/amlogic*
1787 F:      drivers/crypto/amlogic/
1788
1789 ARM/Amlogic Meson SoC Sound Drivers
1790 M:      Jerome Brunet <[email protected]>
1791 L:      [email protected] (moderated for non-subscribers)
1792 S:      Maintained
1793 F:      Documentation/devicetree/bindings/sound/amlogic*
1794 F:      sound/soc/meson/
1795
1796 ARM/Amlogic Meson SoC support
1797 M:      Neil Armstrong <[email protected]>
1798 M:      Kevin Hilman <[email protected]>
1799 R:      Jerome Brunet <[email protected]>
1800 R:      Martin Blumenstingl <[email protected]>
1801 L:      [email protected] (moderated for non-subscribers)
1802 L:      [email protected]
1803 S:      Maintained
1804 W:      http://linux-meson.com/
1805 F:      arch/arm/boot/dts/meson*
1806 F:      arch/arm/mach-meson/
1807 F:      arch/arm64/boot/dts/amlogic/
1808 F:      drivers/mmc/host/meson*
1809 F:      drivers/pinctrl/meson/
1810 F:      drivers/rtc/rtc-meson*
1811 F:      drivers/soc/amlogic/
1812 N:      meson
1813
1814 ARM/Annapurna Labs ALPINE ARCHITECTURE
1815 M:      Tsahee Zidenberg <[email protected]>
1816 M:      Antoine Tenart <[email protected]>
1817 L:      [email protected] (moderated for non-subscribers)
1818 S:      Maintained
1819 F:      arch/arm/boot/dts/alpine*
1820 F:      arch/arm/mach-alpine/
1821 F:      arch/arm64/boot/dts/amazon/
1822 F:      drivers/*/*alpine*
1823
1824 ARM/APPLE MACHINE SUPPORT
1825 M:      Hector Martin <[email protected]>
1826 M:      Sven Peter <[email protected]>
1827 R:      Alyssa Rosenzweig <[email protected]>
1828 L:      [email protected] (moderated for non-subscribers)
1829 S:      Maintained
1830 W:      https://asahilinux.org
1831 B:      https://github.com/AsahiLinux/linux/issues
1832 C:      irc://irc.oftc.net/asahi-dev
1833 T:      git https://github.com/AsahiLinux/linux.git
1834 F:      Documentation/devicetree/bindings/arm/apple.yaml
1835 F:      Documentation/devicetree/bindings/arm/apple/*
1836 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1837 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1838 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1839 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1840 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1841 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1842 F:      Documentation/devicetree/bindings/power/apple*
1843 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1844 F:      arch/arm64/boot/dts/apple/
1845 F:      drivers/clk/clk-apple-nco.c
1846 F:      drivers/i2c/busses/i2c-pasemi-core.c
1847 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1848 F:      drivers/irqchip/irq-apple-aic.c
1849 F:      drivers/mailbox/apple-mailbox.c
1850 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1851 F:      drivers/soc/apple/*
1852 F:      drivers/watchdog/apple_wdt.c
1853 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1854 F:      include/dt-bindings/pinctrl/apple.h
1855 F:      include/linux/apple-mailbox.h
1856
1857 ARM/ARTPEC MACHINE SUPPORT
1858 M:      Jesper Nilsson <[email protected]>
1859 M:      Lars Persson <[email protected]>
1860 L:      [email protected]
1861 S:      Maintained
1862 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1863 F:      arch/arm/boot/dts/artpec6*
1864 F:      arch/arm/mach-artpec
1865 F:      drivers/clk/axis
1866 F:      drivers/crypto/axis
1867 F:      drivers/mmc/host/usdhi6rol0.c
1868 F:      drivers/pinctrl/pinctrl-artpec*
1869
1870 ARM/ASPEED I2C DRIVER
1871 M:      Brendan Higgins <[email protected]>
1872 R:      Benjamin Herrenschmidt <[email protected]>
1873 R:      Joel Stanley <[email protected]>
1874 L:      [email protected]
1875 L:      [email protected] (moderated for non-subscribers)
1876 S:      Maintained
1877 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1878 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1879 F:      drivers/i2c/busses/i2c-aspeed.c
1880 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1881
1882 ARM/ASPEED MACHINE SUPPORT
1883 M:      Joel Stanley <[email protected]>
1884 R:      Andrew Jeffery <[email protected]>
1885 L:      [email protected] (moderated for non-subscribers)
1886 L:      [email protected] (moderated for non-subscribers)
1887 S:      Supported
1888 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1890 F:      arch/arm/boot/dts/aspeed-*
1891 F:      arch/arm/mach-aspeed/
1892 N:      aspeed
1893
1894 ARM/BITMAIN ARCHITECTURE
1895 M:      Manivannan Sadhasivam <[email protected]>
1896 L:      [email protected] (moderated for non-subscribers)
1897 S:      Maintained
1898 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1899 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1900 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1901 F:      arch/arm64/boot/dts/bitmain/
1902 F:      drivers/clk/clk-bm1880.c
1903 F:      drivers/pinctrl/pinctrl-bm1880.c
1904
1905 ARM/CALXEDA HIGHBANK ARCHITECTURE
1906 M:      Andre Przywara <[email protected]>
1907 L:      [email protected] (moderated for non-subscribers)
1908 S:      Maintained
1909 F:      arch/arm/boot/dts/ecx-*.dts*
1910 F:      arch/arm/boot/dts/highbank.dts
1911 F:      arch/arm/mach-highbank/
1912
1913 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1914 M:      Krzysztof Halasa <[email protected]>
1915 S:      Maintained
1916 F:      arch/arm/mach-cns3xxx/
1917
1918 ARM/CAVIUM THUNDER NETWORK DRIVER
1919 M:      Sunil Goutham <[email protected]>
1920 L:      [email protected] (moderated for non-subscribers)
1921 S:      Supported
1922 F:      drivers/net/ethernet/cavium/thunder/
1923
1924 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1925 M:      Lukasz Majewski <[email protected]>
1926 L:      [email protected] (moderated for non-subscribers)
1927 S:      Maintained
1928 F:      arch/arm/mach-ep93xx/ts72xx.c
1929
1930 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1931 M:      Alexander Shiyan <[email protected]>
1932 L:      [email protected] (moderated for non-subscribers)
1933 S:      Odd Fixes
1934 N:      clps711x
1935
1936 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1937 M:      Lennert Buytenhek <[email protected]>
1938 L:      [email protected] (moderated for non-subscribers)
1939 S:      Maintained
1940
1941 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1942 M:      Hartley Sweeten <[email protected]>
1943 M:      Alexander Sverdlin <[email protected]>
1944 L:      [email protected] (moderated for non-subscribers)
1945 S:      Maintained
1946 F:      arch/arm/mach-ep93xx/
1947 F:      arch/arm/mach-ep93xx/include/mach/
1948
1949 ARM/CLKDEV SUPPORT
1950 M:      Russell King <[email protected]>
1951 L:      [email protected] (moderated for non-subscribers)
1952 S:      Maintained
1953 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1954 F:      drivers/clk/clkdev.c
1955
1956 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1957 M:      Baruch Siach <[email protected]>
1958 L:      [email protected] (moderated for non-subscribers)
1959 S:      Maintained
1960 F:      arch/arm/boot/dts/cx92755*
1961 N:      digicolor
1962
1963 ARM/CONTEC MICRO9 MACHINE SUPPORT
1964 M:      Hubert Feurstein <[email protected]>
1965 S:      Maintained
1966 F:      arch/arm/mach-ep93xx/micro9.c
1967
1968 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1969 M:      Mathieu Poirier <[email protected]>
1970 M:      Suzuki K Poulose <[email protected]>
1971 R:      Mike Leach <[email protected]>
1972 R:      Leo Yan <[email protected]>
1973 L:      [email protected] (moderated for non-subscribers)
1974 L:      [email protected] (moderated for non-subscribers)
1975 S:      Maintained
1976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1977 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1978 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1979 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1980 F:      Documentation/devicetree/bindings/arm/coresight.txt
1981 F:      Documentation/devicetree/bindings/arm/ete.yaml
1982 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1983 F:      Documentation/trace/coresight/*
1984 F:      drivers/hwtracing/coresight/*
1985 F:      include/dt-bindings/arm/coresight-cti-dt.h
1986 F:      include/linux/coresight*
1987 F:      samples/coresight/*
1988 F:      tools/perf/arch/arm/util/auxtrace.c
1989 F:      tools/perf/arch/arm/util/cs-etm.c
1990 F:      tools/perf/arch/arm/util/cs-etm.h
1991 F:      tools/perf/arch/arm/util/pmu.c
1992 F:      tools/perf/util/cs-etm-decoder/*
1993 F:      tools/perf/util/cs-etm.*
1994
1995 ARM/CORGI MACHINE SUPPORT
1996 M:      Richard Purdie <[email protected]>
1997 S:      Maintained
1998
1999 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2000 M:      Hans Ulli Kroll <[email protected]>
2001 M:      Linus Walleij <[email protected]>
2002 L:      [email protected] (moderated for non-subscribers)
2003 S:      Maintained
2004 T:      git git://github.com/ulli-kroll/linux.git
2005 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2006 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
2007 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2008 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2009 F:      arch/arm/boot/dts/gemini*
2010 F:      arch/arm/mach-gemini/
2011 F:      drivers/crypto/gemini/
2012 F:      drivers/net/ethernet/cortina/
2013 F:      drivers/pinctrl/pinctrl-gemini.c
2014 F:      drivers/rtc/rtc-ftrtc010.c
2015
2016 ARM/CZ.NIC TURRIS SUPPORT
2017 M:      Marek Behún <[email protected]>
2018 S:      Maintained
2019 W:      https://www.turris.cz/
2020 F:      Documentation/ABI/testing/debugfs-moxtet
2021 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2022 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2023 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2024 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2025 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2026 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2027 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2028 F:      drivers/bus/moxtet.c
2029 F:      drivers/firmware/turris-mox-rwtm.c
2030 F:      drivers/leds/leds-turris-omnia.c
2031 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2032 F:      drivers/gpio/gpio-moxtet.c
2033 F:      drivers/watchdog/armada_37xx_wdt.c
2034 F:      include/dt-bindings/bus/moxtet.h
2035 F:      include/linux/armada-37xx-rwtm-mailbox.h
2036 F:      include/linux/moxtet.h
2037
2038 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
2039 M:      Robert Jarzmik <[email protected]>
2040 L:      [email protected] (moderated for non-subscribers)
2041 S:      Maintained
2042 F:      arch/arm/mach-pxa/ezx.c
2043
2044 ARM/FARADAY FA526 PORT
2045 M:      Hans Ulli Kroll <[email protected]>
2046 L:      [email protected] (moderated for non-subscribers)
2047 S:      Maintained
2048 T:      git git://git.berlios.de/gemini-board
2049 F:      arch/arm/mm/*-fa*
2050
2051 ARM/FOOTBRIDGE ARCHITECTURE
2052 M:      Russell King <[email protected]>
2053 L:      [email protected] (moderated for non-subscribers)
2054 S:      Maintained
2055 W:      http://www.armlinux.org.uk/
2056 F:      arch/arm/include/asm/hardware/dec21285.h
2057 F:      arch/arm/mach-footbridge/
2058
2059 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2060 M:      Shawn Guo <[email protected]>
2061 M:      Sascha Hauer <[email protected]>
2062 R:      Pengutronix Kernel Team <[email protected]>
2063 R:      Fabio Estevam <[email protected]>
2064 R:      NXP Linux Team <[email protected]>
2065 L:      [email protected] (moderated for non-subscribers)
2066 S:      Maintained
2067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2068 X:      drivers/media/i2c/
2069 N:      imx
2070 N:      mxs
2071
2072 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2073 M:      Shawn Guo <[email protected]>
2074 M:      Li Yang <[email protected]>
2075 L:      [email protected] (moderated for non-subscribers)
2076 S:      Maintained
2077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2078 F:      arch/arm/boot/dts/ls1021a*
2079 F:      arch/arm64/boot/dts/freescale/fsl-*
2080 F:      arch/arm64/boot/dts/freescale/qoriq-*
2081
2082 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2083 M:      Shawn Guo <[email protected]>
2084 M:      Sascha Hauer <[email protected]>
2085 R:      Pengutronix Kernel Team <[email protected]>
2086 R:      Stefan Agner <[email protected]>
2087 L:      [email protected] (moderated for non-subscribers)
2088 S:      Maintained
2089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2090 F:      arch/arm/boot/dts/vf*
2091 F:      arch/arm/mach-imx/*vf610*
2092
2093 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2094 M:      Lennert Buytenhek <[email protected]>
2095 L:      [email protected] (moderated for non-subscribers)
2096 S:      Maintained
2097
2098 ARM/GUMSTIX MACHINE SUPPORT
2099 M:      Steve Sakoman <[email protected]>
2100 L:      [email protected] (moderated for non-subscribers)
2101 S:      Maintained
2102
2103 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2104 M:      Philipp Zabel <[email protected]>
2105 M:      Paul Parsons <[email protected]>
2106 L:      [email protected] (moderated for non-subscribers)
2107 S:      Maintained
2108 F:      arch/arm/mach-pxa/hx4700.c
2109 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2110 F:      sound/soc/pxa/hx4700.c
2111
2112 ARM/HISILICON SOC SUPPORT
2113 M:      Wei Xu <[email protected]>
2114 L:      [email protected] (moderated for non-subscribers)
2115 S:      Supported
2116 W:      http://www.hisilicon.com
2117 T:      git git://github.com/hisilicon/linux-hisi.git
2118 F:      arch/arm/boot/dts/hi3*
2119 F:      arch/arm/boot/dts/hip*
2120 F:      arch/arm/boot/dts/hisi*
2121 F:      arch/arm/mach-hisi/
2122 F:      arch/arm64/boot/dts/hisilicon/
2123
2124 ARM/HP JORNADA 7XX MACHINE SUPPORT
2125 M:      Kristoffer Ericson <[email protected]>
2126 S:      Maintained
2127 W:      www.jlime.com
2128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2129 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2130 F:      arch/arm/mach-sa1100/jornada720.c
2131
2132 ARM/IGEP MACHINE SUPPORT
2133 M:      Enric Balletbo i Serra <[email protected]>
2134 M:      Javier Martinez Canillas <[email protected]>
2135 L:      [email protected]
2136 L:      [email protected] (moderated for non-subscribers)
2137 S:      Maintained
2138 F:      arch/arm/boot/dts/omap3-igep*
2139
2140 ARM/INCOME PXA270 SUPPORT
2141 M:      Marek Vasut <[email protected]>
2142 L:      [email protected] (moderated for non-subscribers)
2143 S:      Maintained
2144 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2145
2146 ARM/INTEL IOP32X ARM ARCHITECTURE
2147 M:      Lennert Buytenhek <[email protected]>
2148 L:      [email protected] (moderated for non-subscribers)
2149 S:      Maintained
2150
2151 ARM/INTEL IQ81342EX MACHINE SUPPORT
2152 M:      Lennert Buytenhek <[email protected]>
2153 L:      [email protected] (moderated for non-subscribers)
2154 S:      Maintained
2155
2156 ARM/INTEL IXDP2850 MACHINE SUPPORT
2157 M:      Lennert Buytenhek <[email protected]>
2158 L:      [email protected] (moderated for non-subscribers)
2159 S:      Maintained
2160
2161 ARM/INTEL IXP4XX ARM ARCHITECTURE
2162 M:      Linus Walleij <[email protected]>
2163 M:      Imre Kaloz <[email protected]>
2164 M:      Krzysztof Halasa <[email protected]>
2165 L:      [email protected] (moderated for non-subscribers)
2166 S:      Maintained
2167 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2168 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2169 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2170 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2171 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2172 F:      arch/arm/mach-ixp4xx/
2173 F:      drivers/bus/intel-ixp4xx-eb.c
2174 F:      drivers/clocksource/timer-ixp4xx.c
2175 F:      drivers/crypto/ixp4xx_crypto.c
2176 F:      drivers/gpio/gpio-ixp4xx.c
2177 F:      drivers/irqchip/irq-ixp4xx.c
2178 F:      include/linux/irqchip/irq-ixp4xx.h
2179 F:      include/linux/platform_data/timer-ixp4xx.h
2180
2181 ARM/INTEL KEEMBAY ARCHITECTURE
2182 M:      Paul J. Murphy <[email protected]>
2183 M:      Daniele Alessandrelli <[email protected]>
2184 S:      Maintained
2185 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2186 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2187 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2188
2189 ARM/INTEL XSC3 (MANZANO) ARM CORE
2190 M:      Lennert Buytenhek <[email protected]>
2191 L:      [email protected] (moderated for non-subscribers)
2192 S:      Maintained
2193
2194 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2195 M:      Lennert Buytenhek <[email protected]>
2196 L:      [email protected] (moderated for non-subscribers)
2197 S:      Maintained
2198
2199 ARM/LG1K ARCHITECTURE
2200 M:      Chanho Min <[email protected]>
2201 L:      [email protected] (moderated for non-subscribers)
2202 S:      Maintained
2203 F:      arch/arm64/boot/dts/lg/
2204
2205 ARM/LOGICPD PXA270 MACHINE SUPPORT
2206 M:      Lennert Buytenhek <[email protected]>
2207 L:      [email protected] (moderated for non-subscribers)
2208 S:      Maintained
2209
2210 ARM/LPC18XX ARCHITECTURE
2211 M:      Vladimir Zapolskiy <[email protected]>
2212 L:      [email protected] (moderated for non-subscribers)
2213 S:      Maintained
2214 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2215 F:      arch/arm/boot/dts/lpc43*
2216 F:      drivers/i2c/busses/i2c-lpc2k.c
2217 F:      drivers/memory/pl172.c
2218 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2219 F:      drivers/rtc/rtc-lpc24xx.c
2220 N:      lpc18xx
2221
2222 ARM/LPC32XX SOC SUPPORT
2223 M:      Vladimir Zapolskiy <[email protected]>
2224 L:      [email protected] (moderated for non-subscribers)
2225 S:      Maintained
2226 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2227 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2228 F:      arch/arm/boot/dts/lpc32*
2229 F:      arch/arm/mach-lpc32xx/
2230 F:      drivers/i2c/busses/i2c-pnx.c
2231 F:      drivers/net/ethernet/nxp/lpc_eth.c
2232 F:      drivers/usb/host/ohci-nxp.c
2233 F:      drivers/watchdog/pnx4008_wdt.c
2234 N:      lpc32xx
2235
2236 ARM/MAGICIAN MACHINE SUPPORT
2237 M:      Philipp Zabel <[email protected]>
2238 S:      Maintained
2239
2240 ARM/Marvell Dove/MV78xx0/Orion SOC support
2241 M:      Andrew Lunn <[email protected]>
2242 M:      Sebastian Hesselbarth <[email protected]>
2243 M:      Gregory Clement <[email protected]>
2244 L:      [email protected] (moderated for non-subscribers)
2245 S:      Maintained
2246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2247 F:      Documentation/devicetree/bindings/soc/dove/
2248 F:      arch/arm/boot/dts/dove*
2249 F:      arch/arm/boot/dts/orion5x*
2250 F:      arch/arm/mach-dove/
2251 F:      arch/arm/mach-mv78xx0/
2252 F:      arch/arm/mach-orion5x/
2253 F:      arch/arm/plat-orion/
2254 F:      drivers/soc/dove/
2255
2256 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2257 M:      Andrew Lunn <[email protected]>
2258 M:      Gregory Clement <[email protected]>
2259 M:      Sebastian Hesselbarth <[email protected]>
2260 L:      [email protected] (moderated for non-subscribers)
2261 S:      Maintained
2262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2263 F:      arch/arm/boot/dts/armada*
2264 F:      arch/arm/boot/dts/kirkwood*
2265 F:      arch/arm/configs/mvebu_*_defconfig
2266 F:      arch/arm/mach-mvebu/
2267 F:      arch/arm64/boot/dts/marvell/armada*
2268 F:      arch/arm64/boot/dts/marvell/cn913*
2269 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2270 F:      drivers/cpufreq/armada-8k-cpufreq.c
2271 F:      drivers/cpufreq/mvebu-cpufreq.c
2272 F:      drivers/irqchip/irq-armada-370-xp.c
2273 F:      drivers/irqchip/irq-mvebu-*
2274 F:      drivers/pinctrl/mvebu/
2275 F:      drivers/rtc/rtc-armada38x.c
2276
2277 ARM/Mediatek RTC DRIVER
2278 M:      Eddie Huang <[email protected]>
2279 M:      Sean Wang <[email protected]>
2280 L:      [email protected] (moderated for non-subscribers)
2281 L:      [email protected] (moderated for non-subscribers)
2282 S:      Maintained
2283 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2284 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2285 F:      drivers/rtc/rtc-mt2712.c
2286 F:      drivers/rtc/rtc-mt6397.c
2287 F:      drivers/rtc/rtc-mt7622.c
2288
2289 ARM/Mediatek SoC support
2290 M:      Matthias Brugger <[email protected]>
2291 L:      [email protected] (moderated for non-subscribers)
2292 L:      [email protected] (moderated for non-subscribers)
2293 S:      Maintained
2294 W:      https://mtk.wiki.kernel.org/
2295 C:      irc://chat.freenode.net/linux-mediatek
2296 F:      arch/arm/boot/dts/mt6*
2297 F:      arch/arm/boot/dts/mt7*
2298 F:      arch/arm/boot/dts/mt8*
2299 F:      arch/arm/mach-mediatek/
2300 F:      arch/arm64/boot/dts/mediatek/
2301 F:      drivers/soc/mediatek/
2302 N:      mtk
2303 N:      mt[678]
2304 K:      mediatek
2305
2306 ARM/Mediatek USB3 PHY DRIVER
2307 M:      Chunfeng Yun <[email protected]>
2308 L:      [email protected] (moderated for non-subscribers)
2309 L:      [email protected] (moderated for non-subscribers)
2310 S:      Maintained
2311 F:      Documentation/devicetree/bindings/phy/mediatek,*
2312 F:      drivers/phy/mediatek/
2313
2314 ARM/Microchip (AT91) SoC support
2315 M:      Nicolas Ferre <[email protected]>
2316 M:      Alexandre Belloni <[email protected]>
2317 M:      Claudiu Beznea <[email protected]>
2318 L:      [email protected] (moderated for non-subscribers)
2319 S:      Supported
2320 W:      http://www.linux4sam.org
2321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2322 F:      arch/arm/boot/dts/at91*.dts
2323 F:      arch/arm/boot/dts/at91*.dtsi
2324 F:      arch/arm/boot/dts/sama*.dts
2325 F:      arch/arm/boot/dts/sama*.dtsi
2326 F:      arch/arm/include/debug/at91.S
2327 F:      arch/arm/mach-at91/
2328 F:      drivers/memory/atmel*
2329 F:      drivers/watchdog/sama5d4_wdt.c
2330 F:      include/soc/at91/
2331 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2332 X:      drivers/net/wireless/atmel/
2333 N:      at91
2334 N:      atmel
2335
2336 ARM/Microchip Sparx5 SoC support
2337 M:      Lars Povlsen <[email protected]>
2338 M:      Steen Hegelund <[email protected]>
2339 M:      [email protected]
2340 L:      [email protected] (moderated for non-subscribers)
2341 S:      Supported
2342 T:      git git://github.com/microchip-ung/linux-upstream.git
2343 F:      arch/arm64/boot/dts/microchip/
2344 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2345 N:      sparx5
2346
2347 Microchip Timer Counter Block (TCB) Capture Driver
2348 M:      Kamel Bouhara <[email protected]>
2349 L:      [email protected] (moderated for non-subscribers)
2350 L:      [email protected]
2351 S:      Maintained
2352 F:      drivers/counter/microchip-tcb-capture.c
2353
2354 ARM/MILBEAUT ARCHITECTURE
2355 M:      Taichi Sugaya <[email protected]>
2356 M:      Takao Orito <[email protected]>
2357 L:      [email protected] (moderated for non-subscribers)
2358 S:      Maintained
2359 F:      arch/arm/boot/dts/milbeaut*
2360 F:      arch/arm/mach-milbeaut/
2361 N:      milbeaut
2362
2363 ARM/MIOA701 MACHINE SUPPORT
2364 M:      Robert Jarzmik <[email protected]>
2365 L:      [email protected] (moderated for non-subscribers)
2366 S:      Maintained
2367 F:      arch/arm/mach-pxa/mioa701.c
2368
2369 ARM/MStar/Sigmastar Armv7 SoC support
2370 M:      Daniel Palmer <[email protected]>
2371 M:      Romain Perier <[email protected]>
2372 L:      [email protected] (moderated for non-subscribers)
2373 S:      Maintained
2374 W:      http://linux-chenxing.org/
2375 T:      git git://github.com/linux-chenxing/linux.git
2376 F:      Documentation/devicetree/bindings/arm/mstar/*
2377 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2378 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2379 F:      arch/arm/boot/dts/mstar-*
2380 F:      arch/arm/mach-mstar/
2381 F:      drivers/clk/mstar/
2382 F:      drivers/clocksource/timer-msc313e.c
2383 F:      drivers/gpio/gpio-msc313.c
2384 F:      drivers/rtc/rtc-msc313.c
2385 F:      drivers/watchdog/msc313e_wdt.c
2386 F:      include/dt-bindings/clock/mstar-*
2387 F:      include/dt-bindings/gpio/msc313-gpio.h
2388
2389 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2390 M:      Michael Petchkovsky <[email protected]>
2391 S:      Maintained
2392
2393 ARM/NOMADIK/Ux500 ARCHITECTURES
2394 M:      Linus Walleij <[email protected]>
2395 L:      [email protected] (moderated for non-subscribers)
2396 S:      Maintained
2397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2398 F:      Documentation/devicetree/bindings/arm/ste-*
2399 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2400 F:      Documentation/devicetree/bindings/arm/ux500/
2401 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2402 F:      arch/arm/boot/dts/ste-*
2403 F:      arch/arm/mach-nomadik/
2404 F:      arch/arm/mach-ux500/
2405 F:      drivers/clk/clk-nomadik.c
2406 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2407 F:      drivers/dma/ste_dma40*
2408 F:      drivers/hwspinlock/u8500_hsem.c
2409 F:      drivers/i2c/busses/i2c-nomadik.c
2410 F:      drivers/iio/adc/ab8500-gpadc.c
2411 F:      drivers/mfd/ab8500*
2412 F:      drivers/mfd/abx500*
2413 F:      drivers/mfd/db8500*
2414 F:      drivers/pinctrl/nomadik/
2415 F:      drivers/rtc/rtc-ab8500.c
2416 F:      drivers/rtc/rtc-pl031.c
2417 F:      drivers/soc/ux500/
2418
2419 ARM/NUVOTON NPCM ARCHITECTURE
2420 M:      Avi Fishman <[email protected]>
2421 M:      Tomer Maimon <[email protected]>
2422 M:      Tali Perry <[email protected]>
2423 R:      Patrick Venture <[email protected]>
2424 R:      Nancy Yuen <[email protected]>
2425 R:      Benjamin Fair <[email protected]>
2426 L:      [email protected] (moderated for non-subscribers)
2427 S:      Supported
2428 F:      Documentation/devicetree/bindings/*/*/*npcm*
2429 F:      Documentation/devicetree/bindings/*/*npcm*
2430 F:      Documentation/devicetree/bindings/arm/npcm/*
2431 F:      arch/arm/boot/dts/nuvoton-npcm*
2432 F:      arch/arm/mach-npcm/
2433 F:      drivers/*/*npcm*
2434 F:      drivers/*/*/*npcm*
2435 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2436
2437 ARM/NUVOTON WPCM450 ARCHITECTURE
2438 M:      Jonathan Neuschäfer <[email protected]>
2439 L:      [email protected] (moderated for non-subscribers)
2440 S:      Maintained
2441 W:      https://github.com/neuschaefer/wpcm450/wiki
2442 F:      Documentation/devicetree/bindings/*/*wpcm*
2443 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2444 F:      arch/arm/mach-npcm/wpcm450.c
2445 F:      drivers/*/*/*wpcm*
2446 F:      drivers/*/*wpcm*
2447
2448 ARM/NXP S32G ARCHITECTURE
2449 M:      Chester Lin <[email protected]>
2450 R:      Andreas Färber <[email protected]>
2451 R:      Matthias Brugger <[email protected]>
2452 L:      [email protected] (moderated for non-subscribers)
2453 S:      Maintained
2454 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2455
2456 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2457 L:      [email protected] (subscribers-only)
2458 S:      Orphan
2459 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2460 F:      arch/arm/mach-s3c/gta02.h
2461 F:      arch/arm/mach-s3c/mach-gta02.c
2462
2463 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2464 M:      Alexander Clouter <[email protected]>
2465 L:      [email protected] (moderated for non-subscribers)
2466 S:      Maintained
2467 W:      http://www.digriz.org.uk/ts78xx/kernel
2468 F:      arch/arm/mach-orion5x/ts78xx-*
2469
2470 ARM/OXNAS platform support
2471 M:      Neil Armstrong <[email protected]>
2472 L:      [email protected] (moderated for non-subscribers)
2473 L:      [email protected] (moderated for non-subscribers)
2474 S:      Maintained
2475 F:      arch/arm/boot/dts/ox8*.dts*
2476 F:      arch/arm/mach-oxnas/
2477 F:      drivers/power/reset/oxnas-restart.c
2478 N:      oxnas
2479
2480 ARM/PALM TREO SUPPORT
2481 M:      Tomas Cech <[email protected]>
2482 L:      [email protected] (moderated for non-subscribers)
2483 S:      Maintained
2484 W:      http://hackndev.com
2485 F:      arch/arm/mach-pxa/palmtreo.*
2486
2487 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2488 M:      Marek Vasut <[email protected]>
2489 L:      [email protected] (moderated for non-subscribers)
2490 S:      Maintained
2491 W:      http://hackndev.com
2492 F:      arch/arm/mach-pxa/include/mach/palmld.h
2493 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2494 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2495 F:      arch/arm/mach-pxa/palmld.c
2496 F:      arch/arm/mach-pxa/palmt5.*
2497 F:      arch/arm/mach-pxa/palmtc.c
2498 F:      arch/arm/mach-pxa/palmte2.*
2499 F:      arch/arm/mach-pxa/palmtx.c
2500
2501 ARM/PALMZ72 SUPPORT
2502 M:      Sergey Lapin <[email protected]>
2503 L:      [email protected] (moderated for non-subscribers)
2504 S:      Maintained
2505 W:      http://hackndev.com
2506 F:      arch/arm/mach-pxa/palmz72.*
2507
2508 ARM/PLEB SUPPORT
2509 M:      Peter Chubb <[email protected]>
2510 S:      Maintained
2511 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2512
2513 ARM/PT DIGITAL BOARD PORT
2514 M:      Stefan Eletzhofer <[email protected]>
2515 L:      [email protected] (moderated for non-subscribers)
2516 S:      Maintained
2517 W:      http://www.armlinux.org.uk/
2518
2519 ARM/QUALCOMM SUPPORT
2520 M:      Andy Gross <[email protected]>
2521 M:      Bjorn Andersson <[email protected]>
2522 L:      [email protected]
2523 S:      Maintained
2524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2525 F:      Documentation/devicetree/bindings/*/qcom*
2526 F:      Documentation/devicetree/bindings/soc/qcom/
2527 F:      arch/arm/boot/dts/qcom-*.dts
2528 F:      arch/arm/boot/dts/qcom-*.dtsi
2529 F:      arch/arm/mach-qcom/
2530 F:      arch/arm64/boot/dts/qcom/
2531 F:      drivers/*/*/qcom*
2532 F:      drivers/*/*/qcom/
2533 F:      drivers/*/pm8???-*
2534 F:      drivers/*/qcom*
2535 F:      drivers/*/qcom/
2536 F:      drivers/bluetooth/btqcomsmd.c
2537 F:      drivers/clocksource/timer-qcom.c
2538 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2539 F:      drivers/extcon/extcon-qcom*
2540 F:      drivers/i2c/busses/i2c-qcom-geni.c
2541 F:      drivers/i2c/busses/i2c-qup.c
2542 F:      drivers/iommu/msm*
2543 F:      drivers/mfd/ssbi.c
2544 F:      drivers/mmc/host/mmci_qcom*
2545 F:      drivers/mmc/host/sdhci-msm.c
2546 F:      drivers/pci/controller/dwc/pcie-qcom.c
2547 F:      drivers/phy/qualcomm/
2548 F:      drivers/power/*/msm*
2549 F:      drivers/reset/reset-qcom-*
2550 F:      drivers/scsi/ufs/ufs-qcom*
2551 F:      drivers/spi/spi-geni-qcom.c
2552 F:      drivers/spi/spi-qcom-qspi.c
2553 F:      drivers/spi/spi-qup.c
2554 F:      drivers/tty/serial/msm_serial.c
2555 F:      drivers/usb/dwc3/dwc3-qcom.c
2556 F:      include/dt-bindings/*/qcom*
2557 F:      include/linux/*/qcom*
2558 F:      include/linux/soc/qcom/
2559
2560 ARM/RADISYS ENP2611 MACHINE SUPPORT
2561 M:      Lennert Buytenhek <[email protected]>
2562 L:      [email protected] (moderated for non-subscribers)
2563 S:      Maintained
2564
2565 ARM/RDA MICRO ARCHITECTURE
2566 M:      Manivannan Sadhasivam <[email protected]>
2567 L:      [email protected] (moderated for non-subscribers)
2568 L:      [email protected] (moderated for non-subscribers)
2569 S:      Maintained
2570 F:      Documentation/devicetree/bindings/arm/rda.yaml
2571 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2572 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2573 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2574 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2575 F:      arch/arm/boot/dts/rda8810pl-*
2576 F:      drivers/clocksource/timer-rda.c
2577 F:      drivers/gpio/gpio-rda.c
2578 F:      drivers/irqchip/irq-rda-intc.c
2579 F:      drivers/tty/serial/rda-uart.c
2580
2581 ARM/REALTEK ARCHITECTURE
2582 M:      Andreas Färber <[email protected]>
2583 L:      [email protected] (moderated for non-subscribers)
2584 L:      [email protected] (moderated for non-subscribers)
2585 S:      Maintained
2586 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2587 F:      arch/arm/boot/dts/rtd*
2588 F:      arch/arm/mach-realtek/
2589 F:      arch/arm64/boot/dts/realtek/
2590
2591 ARM/RENESAS ARM64 ARCHITECTURE
2592 M:      Geert Uytterhoeven <[email protected]>
2593 M:      Magnus Damm <[email protected]>
2594 L:      [email protected]
2595 S:      Supported
2596 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2597 C:      irc://irc.libera.chat/renesas-soc
2598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2599 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2600 F:      arch/arm64/boot/dts/renesas/
2601 F:      drivers/soc/renesas/
2602 F:      include/linux/soc/renesas/
2603
2604 ARM/RISCPC ARCHITECTURE
2605 M:      Russell King <[email protected]>
2606 L:      [email protected] (moderated for non-subscribers)
2607 S:      Maintained
2608 W:      http://www.armlinux.org.uk/
2609 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2610 F:      arch/arm/include/asm/hardware/ioc.h
2611 F:      arch/arm/include/asm/hardware/iomd.h
2612 F:      arch/arm/include/asm/hardware/memc.h
2613 F:      arch/arm/mach-rpc/
2614 F:      drivers/net/ethernet/8390/etherh.c
2615 F:      drivers/net/ethernet/i825xx/ether1*
2616 F:      drivers/net/ethernet/seeq/ether3*
2617 F:      drivers/scsi/arm/
2618
2619 ARM/Rockchip SoC support
2620 M:      Heiko Stuebner <[email protected]>
2621 L:      [email protected] (moderated for non-subscribers)
2622 L:      [email protected]
2623 S:      Maintained
2624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2625 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2626 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2627 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2628 F:      arch/arm/boot/dts/rk3*
2629 F:      arch/arm/boot/dts/rv1108*
2630 F:      arch/arm/mach-rockchip/
2631 F:      drivers/*/*/*rockchip*
2632 F:      drivers/*/*rockchip*
2633 F:      drivers/clk/rockchip/
2634 F:      drivers/i2c/busses/i2c-rk3x.c
2635 F:      sound/soc/rockchip/
2636 N:      rockchip
2637
2638 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2639 M:      Krzysztof Kozlowski <[email protected]>
2640 R:      Alim Akhtar <[email protected]>
2641 L:      [email protected] (moderated for non-subscribers)
2642 L:      [email protected]
2643 S:      Maintained
2644 C:      irc://irc.libera.chat/linux-exynos
2645 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2647 F:      Documentation/arm/samsung/
2648 F:      Documentation/devicetree/bindings/arm/samsung/
2649 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2650 F:      Documentation/devicetree/bindings/soc/samsung/
2651 F:      arch/arm/boot/dts/exynos*
2652 F:      arch/arm/boot/dts/s3c*
2653 F:      arch/arm/boot/dts/s5p*
2654 F:      arch/arm/mach-exynos*/
2655 F:      arch/arm/mach-s3c/
2656 F:      arch/arm/mach-s5p*/
2657 F:      arch/arm64/boot/dts/exynos/
2658 F:      drivers/*/*/*s3c24*
2659 F:      drivers/*/*s3c24*
2660 F:      drivers/*/*s3c64xx*
2661 F:      drivers/*/*s5pv210*
2662 F:      drivers/clocksource/samsung_pwm_timer.c
2663 F:      drivers/memory/samsung/
2664 F:      drivers/pwm/pwm-samsung.c
2665 F:      drivers/soc/samsung/
2666 F:      drivers/tty/serial/samsung*
2667 F:      include/clocksource/samsung_pwm.h
2668 F:      include/linux/platform_data/*s3c*
2669 F:      include/linux/serial_s3c.h
2670 F:      include/linux/soc/samsung/
2671 N:      exynos
2672 N:      s3c2410
2673 N:      s3c64xx
2674 N:      s5pv210
2675
2676 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2677 M:      Łukasz Stelmach <[email protected]>
2678 L:      [email protected] (moderated for non-subscribers)
2679 L:      [email protected]
2680 S:      Maintained
2681 F:      drivers/media/platform/samsung/s5p-g2d/
2682
2683 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2684 M:      Marek Szyprowski <[email protected]>
2685 L:      [email protected]
2686 L:      [email protected]
2687 S:      Maintained
2688 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2689 F:      drivers/media/cec/platform/s5p/
2690
2691 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2692 M:      Andrzej Pietrasiewicz <[email protected]>
2693 M:      Jacek Anaszewski <[email protected]>
2694 M:      Sylwester Nawrocki <[email protected]>
2695 L:      [email protected] (moderated for non-subscribers)
2696 L:      [email protected]
2697 S:      Maintained
2698 F:      drivers/media/platform/samsung/s5p-jpeg/
2699
2700 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2701 M:      Marek Szyprowski <[email protected]>
2702 M:      Andrzej Hajda <[email protected]>
2703 L:      [email protected] (moderated for non-subscribers)
2704 L:      [email protected]
2705 S:      Maintained
2706 F:      drivers/media/platform/samsung/s5p-mfc/
2707
2708 ARM/SHMOBILE ARM ARCHITECTURE
2709 M:      Geert Uytterhoeven <[email protected]>
2710 M:      Magnus Damm <[email protected]>
2711 L:      [email protected]
2712 S:      Supported
2713 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2714 C:      irc://irc.libera.chat/renesas-soc
2715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2716 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2717 F:      arch/arm/boot/dts/emev2*
2718 F:      arch/arm/boot/dts/gr-peach*
2719 F:      arch/arm/boot/dts/iwg20d-q7*
2720 F:      arch/arm/boot/dts/r7s*
2721 F:      arch/arm/boot/dts/r8a*
2722 F:      arch/arm/boot/dts/r9a*
2723 F:      arch/arm/boot/dts/sh*
2724 F:      arch/arm/configs/shmobile_defconfig
2725 F:      arch/arm/include/debug/renesas-scif.S
2726 F:      arch/arm/mach-shmobile/
2727 F:      drivers/soc/renesas/
2728 F:      include/linux/soc/renesas/
2729
2730 ARM/SOCFPGA ARCHITECTURE
2731 M:      Dinh Nguyen <[email protected]>
2732 S:      Maintained
2733 W:      http://www.rocketboards.org
2734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2735 F:      arch/arm/boot/dts/socfpga*
2736 F:      arch/arm/configs/socfpga_defconfig
2737 F:      arch/arm/mach-socfpga/
2738 F:      arch/arm64/boot/dts/altera/
2739 F:      arch/arm64/boot/dts/intel/
2740
2741 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2742 M:      Dinh Nguyen <[email protected]>
2743 S:      Maintained
2744 F:      drivers/clk/socfpga/
2745
2746 ARM/SOCFPGA EDAC SUPPORT
2747 M:      Dinh Nguyen <[email protected]>
2748 S:      Maintained
2749 F:      drivers/edac/altera_edac.[ch]
2750
2751 ARM/SPREADTRUM SoC SUPPORT
2752 M:      Orson Zhai <[email protected]>
2753 M:      Baolin Wang <[email protected]>
2754 M:      Chunyan Zhang <[email protected]>
2755 S:      Maintained
2756 F:      arch/arm64/boot/dts/sprd
2757 N:      sprd
2758 N:      sc27xx
2759 N:      sc2731
2760
2761 ARM/STI ARCHITECTURE
2762 M:      Patrice Chotard <[email protected]>
2763 L:      [email protected] (moderated for non-subscribers)
2764 S:      Maintained
2765 W:      http://www.stlinux.com
2766 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2767 F:      arch/arm/boot/dts/sti*
2768 F:      arch/arm/mach-sti/
2769 F:      drivers/ata/ahci_st.c
2770 F:      drivers/char/hw_random/st-rng.c
2771 F:      drivers/clocksource/arm_global_timer.c
2772 F:      drivers/clocksource/clksrc_st_lpc.c
2773 F:      drivers/cpufreq/sti-cpufreq.c
2774 F:      drivers/dma/st_fdma*
2775 F:      drivers/i2c/busses/i2c-st.c
2776 F:      drivers/media/platform/st/sti/c8sectpfe/
2777 F:      drivers/media/rc/st_rc.c
2778 F:      drivers/mmc/host/sdhci-st.c
2779 F:      drivers/phy/st/phy-miphy28lp.c
2780 F:      drivers/phy/st/phy-stih407-usb.c
2781 F:      drivers/pinctrl/pinctrl-st.c
2782 F:      drivers/remoteproc/st_remoteproc.c
2783 F:      drivers/remoteproc/st_slim_rproc.c
2784 F:      drivers/reset/sti/
2785 F:      drivers/rtc/rtc-st-lpc.c
2786 F:      drivers/tty/serial/st-asc.c
2787 F:      drivers/usb/dwc3/dwc3-st.c
2788 F:      drivers/usb/host/ehci-st.c
2789 F:      drivers/usb/host/ohci-st.c
2790 F:      drivers/watchdog/st_lpc_wdt.c
2791 F:      include/linux/remoteproc/st_slim_rproc.h
2792
2793 ARM/STM32 ARCHITECTURE
2794 M:      Maxime Coquelin <[email protected]>
2795 M:      Alexandre Torgue <[email protected]>
2796 L:      [email protected] (moderated for non-subscribers)
2797 L:      [email protected] (moderated for non-subscribers)
2798 S:      Maintained
2799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2800 F:      arch/arm/boot/dts/stm32*
2801 F:      arch/arm/mach-stm32/
2802 F:      drivers/clocksource/armv7m_systick.c
2803 N:      stm32
2804 N:      stm
2805
2806 ARM/Synaptics SoC support
2807 M:      Jisheng Zhang <[email protected]>
2808 M:      Sebastian Hesselbarth <[email protected]>
2809 L:      [email protected] (moderated for non-subscribers)
2810 S:      Maintained
2811 F:      arch/arm/boot/dts/berlin*
2812 F:      arch/arm/mach-berlin/
2813 F:      arch/arm64/boot/dts/synaptics/
2814
2815 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2816 M:      Lennert Buytenhek <[email protected]>
2817 L:      [email protected] (moderated for non-subscribers)
2818 S:      Maintained
2819
2820 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2821 M:      Hans Verkuil <[email protected]>
2822 L:      [email protected]
2823 L:      [email protected]
2824 S:      Maintained
2825 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2826 F:      drivers/media/cec/platform/tegra/
2827
2828 ARM/TESLA FSD SoC SUPPORT
2829 M:      Alim Akhtar <[email protected]>
2830 M:      [email protected]
2831 L:      [email protected] (moderated for non-subscribers)
2832 L:      [email protected]
2833 S:      Maintained
2834 F:      arch/arm64/boot/dts/tesla*
2835
2836 ARM/TETON BGA MACHINE SUPPORT
2837 M:      "Mark F. Brown" <[email protected]>
2838 L:      [email protected] (moderated for non-subscribers)
2839 S:      Maintained
2840
2841 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2842 M:      Santosh Shilimkar <[email protected]>
2843 L:      [email protected]
2844 S:      Maintained
2845 F:      drivers/memory/*emif*
2846
2847 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2848 M:      Nishanth Menon <[email protected]>
2849 M:      Santosh Shilimkar <[email protected]>
2850 L:      [email protected] (moderated for non-subscribers)
2851 S:      Maintained
2852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2853 F:      arch/arm/boot/dts/keystone-*
2854 F:      arch/arm/mach-keystone/
2855
2856 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2857 M:      Santosh Shilimkar <[email protected]>
2858 L:      [email protected]
2859 S:      Maintained
2860 F:      drivers/clk/keystone/
2861
2862 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2863 M:      Santosh Shilimkar <[email protected]>
2864 L:      [email protected] (moderated for non-subscribers)
2865 L:      [email protected]
2866 S:      Maintained
2867 F:      drivers/clocksource/timer-keystone.c
2868
2869 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2870 M:      Santosh Shilimkar <[email protected]>
2871 L:      [email protected]
2872 S:      Maintained
2873 F:      drivers/power/reset/keystone-reset.c
2874
2875 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2876 M:      Nishanth Menon <[email protected]>
2877 M:      Vignesh Raghavendra <[email protected]>
2878 M:      Tero Kristo <[email protected]>
2879 L:      [email protected] (moderated for non-subscribers)
2880 S:      Supported
2881 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2882 F:      arch/arm64/boot/dts/ti/Makefile
2883 F:      arch/arm64/boot/dts/ti/k3-*
2884 F:      include/dt-bindings/pinctrl/k3.h
2885
2886 ARM/THECUS N2100 MACHINE SUPPORT
2887 M:      Lennert Buytenhek <[email protected]>
2888 L:      [email protected] (moderated for non-subscribers)
2889 S:      Maintained
2890
2891 ARM/TOSA MACHINE SUPPORT
2892 M:      Dmitry Eremin-Solenikov <[email protected]>
2893 M:      Dirk Opfer <[email protected]>
2894 S:      Maintained
2895
2896 ARM/TOSHIBA VISCONTI ARCHITECTURE
2897 M:      Nobuhiro Iwamatsu <[email protected]>
2898 L:      [email protected] (moderated for non-subscribers)
2899 S:      Supported
2900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2901 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2902 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2903 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2904 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2905 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2906 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2907 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2908 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2909 F:      arch/arm64/boot/dts/toshiba/
2910 F:      drivers/clk/visconti/
2911 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2912 F:      drivers/gpio/gpio-visconti.c
2913 F:      drivers/pci/controller/dwc/pcie-visconti.c
2914 F:      drivers/pinctrl/visconti/
2915 F:      drivers/watchdog/visconti_wdt.c
2916 N:      visconti
2917
2918 ARM/UNIPHIER ARCHITECTURE
2919 M:      Kunihiko Hayashi <[email protected]>
2920 M:      Masami Hiramatsu <[email protected]>
2921 L:      [email protected] (moderated for non-subscribers)
2922 S:      Maintained
2923 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2924 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2925 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2926 F:      arch/arm/boot/dts/uniphier*
2927 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2928 F:      arch/arm/mach-uniphier/
2929 F:      arch/arm/mm/cache-uniphier.c
2930 F:      arch/arm64/boot/dts/socionext/uniphier*
2931 F:      drivers/bus/uniphier-system-bus.c
2932 F:      drivers/clk/uniphier/
2933 F:      drivers/dma/uniphier-mdmac.c
2934 F:      drivers/gpio/gpio-uniphier.c
2935 F:      drivers/i2c/busses/i2c-uniphier*
2936 F:      drivers/irqchip/irq-uniphier-aidet.c
2937 F:      drivers/mmc/host/uniphier-sd.c
2938 F:      drivers/pinctrl/uniphier/
2939 F:      drivers/reset/reset-uniphier.c
2940 F:      drivers/tty/serial/8250/8250_uniphier.c
2941 N:      uniphier
2942
2943 ARM/VERSATILE EXPRESS PLATFORM
2944 M:      Liviu Dudau <[email protected]>
2945 M:      Sudeep Holla <[email protected]>
2946 M:      Lorenzo Pieralisi <[email protected]>
2947 L:      [email protected] (moderated for non-subscribers)
2948 S:      Maintained
2949 F:      */*/*/vexpress*
2950 F:      */*/vexpress*
2951 F:      arch/arm/boot/dts/vexpress*
2952 F:      arch/arm/mach-vexpress/
2953 F:      arch/arm64/boot/dts/arm/
2954 F:      drivers/clk/versatile/clk-vexpress-osc.c
2955 F:      drivers/clocksource/timer-versatile.c
2956 N:      mps2
2957
2958 ARM/VFP SUPPORT
2959 M:      Russell King <[email protected]>
2960 L:      [email protected] (moderated for non-subscribers)
2961 S:      Maintained
2962 W:      http://www.armlinux.org.uk/
2963 F:      arch/arm/vfp/
2964
2965 ARM/VOIPAC PXA270 SUPPORT
2966 M:      Marek Vasut <[email protected]>
2967 L:      [email protected] (moderated for non-subscribers)
2968 S:      Maintained
2969 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2970 F:      arch/arm/mach-pxa/vpac270.c
2971
2972 ARM/VT8500 ARM ARCHITECTURE
2973 L:      [email protected] (moderated for non-subscribers)
2974 S:      Orphan
2975 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2976 F:      arch/arm/mach-vt8500/
2977 F:      drivers/clocksource/timer-vt8500.c
2978 F:      drivers/i2c/busses/i2c-wmt.c
2979 F:      drivers/mmc/host/wmt-sdmmc.c
2980 F:      drivers/pwm/pwm-vt8500.c
2981 F:      drivers/rtc/rtc-vt8500.c
2982 F:      drivers/tty/serial/vt8500_serial.c
2983 F:      drivers/usb/host/ehci-platform.c
2984 F:      drivers/usb/host/uhci-platform.c
2985 F:      drivers/video/fbdev/vt8500lcdfb.*
2986 F:      drivers/video/fbdev/wm8505fb*
2987 F:      drivers/video/fbdev/wmt_ge_rops.*
2988
2989 ARM/ZIPIT Z2 SUPPORT
2990 M:      Marek Vasut <[email protected]>
2991 L:      [email protected] (moderated for non-subscribers)
2992 S:      Maintained
2993 F:      arch/arm/mach-pxa/include/mach/z2.h
2994 F:      arch/arm/mach-pxa/z2.c
2995
2996 ARM/ZYNQ ARCHITECTURE
2997 M:      Michal Simek <[email protected]>
2998 L:      [email protected] (moderated for non-subscribers)
2999 S:      Supported
3000 W:      http://wiki.xilinx.com
3001 T:      git https://github.com/Xilinx/linux-xlnx.git
3002 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3003 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3004 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3005 F:      arch/arm/mach-zynq/
3006 F:      drivers/clocksource/timer-cadence-ttc.c
3007 F:      drivers/cpuidle/cpuidle-zynq.c
3008 F:      drivers/edac/synopsys_edac.c
3009 F:      drivers/i2c/busses/i2c-cadence.c
3010 F:      drivers/i2c/busses/i2c-xiic.c
3011 F:      drivers/mmc/host/sdhci-of-arasan.c
3012 N:      zynq
3013 N:      xilinx
3014
3015 ARM64 PORT (AARCH64 ARCHITECTURE)
3016 M:      Catalin Marinas <[email protected]>
3017 M:      Will Deacon <[email protected]>
3018 L:      [email protected] (moderated for non-subscribers)
3019 S:      Maintained
3020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3021 F:      Documentation/arm64/
3022 F:      arch/arm64/
3023 F:      tools/testing/selftests/arm64/
3024 X:      arch/arm64/boot/dts/
3025
3026 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3027 M:      George McCollister <[email protected]>
3028 L:      [email protected]
3029 S:      Maintained
3030 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3031 F:      drivers/net/dsa/xrs700x/*
3032 F:      net/dsa/tag_xrs700x.c
3033
3034 AS3645A LED FLASH CONTROLLER DRIVER
3035 M:      Sakari Ailus <[email protected]>
3036 L:      [email protected]
3037 S:      Maintained
3038 F:      drivers/leds/flash/leds-as3645a.c
3039
3040 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3041 M:      Tianshu Qiu <[email protected]>
3042 L:      [email protected]
3043 S:      Maintained
3044 T:      git git://linuxtv.org/media_tree.git
3045 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3046 F:      drivers/media/i2c/ak7375.c
3047
3048 ASAHI KASEI AK8974 DRIVER
3049 M:      Linus Walleij <[email protected]>
3050 L:      [email protected]
3051 S:      Supported
3052 W:      http://www.akm.com/
3053 F:      drivers/iio/magnetometer/ak8974.c
3054
3055 ASC7621 HARDWARE MONITOR DRIVER
3056 M:      George Joseph <[email protected]>
3057 L:      [email protected]
3058 S:      Maintained
3059 F:      Documentation/hwmon/asc7621.rst
3060 F:      drivers/hwmon/asc7621.c
3061
3062 ASIX AX88796C SPI ETHERNET ADAPTER
3063 M:      Łukasz Stelmach <[email protected]>
3064 S:      Maintained
3065 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3066 F:      drivers/net/ethernet/asix/ax88796c_*
3067
3068 ASPEED PECI CONTROLLER
3069 M:      Iwona Winiarska <[email protected]>
3070 L:      [email protected] (moderated for non-subscribers)
3071 L:      [email protected] (moderated for non-subscribers)
3072 S:      Supported
3073 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3074 F:      drivers/peci/controller/peci-aspeed.c
3075
3076 ASPEED PINCTRL DRIVERS
3077 M:      Andrew Jeffery <[email protected]>
3078 L:      [email protected] (moderated for non-subscribers)
3079 L:      [email protected] (moderated for non-subscribers)
3080 L:      [email protected]
3081 S:      Maintained
3082 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3083 F:      drivers/pinctrl/aspeed/
3084
3085 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3086 M:      Eddie James <[email protected]>
3087 L:      [email protected] (moderated for non-subscribers)
3088 S:      Maintained
3089 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3090 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3091 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3092
3093 ASPEED SD/MMC DRIVER
3094 M:      Andrew Jeffery <[email protected]>
3095 L:      [email protected] (moderated for non-subscribers)
3096 L:      [email protected] (moderated for non-subscribers)
3097 L:      [email protected]
3098 S:      Maintained
3099 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3100 F:      drivers/mmc/host/sdhci-of-aspeed*
3101
3102 ASPEED VIDEO ENGINE DRIVER
3103 M:      Eddie James <[email protected]>
3104 L:      [email protected]
3105 L:      [email protected] (moderated for non-subscribers)
3106 S:      Maintained
3107 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3108 F:      drivers/media/platform/aspeed/
3109
3110 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3111 M:      Corentin Chary <[email protected]>
3112 L:      [email protected]
3113 L:      [email protected]
3114 S:      Maintained
3115 W:      http://acpi4asus.sf.net
3116 F:      drivers/platform/x86/asus*.c
3117 F:      drivers/platform/x86/eeepc*.c
3118
3119 ASUS TF103C DOCK DRIVER
3120 M:      Hans de Goede <[email protected]>
3121 L:      [email protected]
3122 S:      Maintained
3123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3124 F:      drivers/platform/x86/asus-tf103c-dock.c
3125
3126 ASUS WMI HARDWARE MONITOR DRIVER
3127 M:      Ed Brindley <[email protected]>
3128 M:      Denis Pauk <[email protected]>
3129 L:      [email protected]
3130 S:      Maintained
3131 F:      drivers/hwmon/asus_wmi_sensors.c
3132
3133 ASUS WMI EC HARDWARE MONITOR DRIVER
3134 M:      Eugene Shalygin <[email protected]>
3135 M:      Denis Pauk <[email protected]>
3136 L:      [email protected]
3137 S:      Maintained
3138 F:      drivers/hwmon/asus_wmi_ec_sensors.c
3139
3140 ASUS EC HARDWARE MONITOR DRIVER
3141 M:      Eugene Shalygin <[email protected]>
3142 L:      [email protected]
3143 S:      Maintained
3144 F:      drivers/hwmon/asus-ec-sensors.c
3145
3146 ASUS WIRELESS RADIO CONTROL DRIVER
3147 M:      João Paulo Rechi Vita <[email protected]>
3148 L:      [email protected]
3149 S:      Maintained
3150 F:      drivers/platform/x86/asus-wireless.c
3151
3152 ASYMMETRIC KEYS
3153 M:      David Howells <[email protected]>
3154 L:      [email protected]
3155 S:      Maintained
3156 F:      Documentation/crypto/asymmetric-keys.rst
3157 F:      crypto/asymmetric_keys/
3158 F:      include/crypto/pkcs7.h
3159 F:      include/crypto/public_key.h
3160 F:      include/linux/verification.h
3161
3162 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3163 R:      Dan Williams <[email protected]>
3164 S:      Odd fixes
3165 W:      http://sourceforge.net/projects/xscaleiop
3166 F:      Documentation/crypto/async-tx-api.rst
3167 F:      crypto/async_tx/
3168 F:      include/linux/async_tx.h
3169
3170 AT24 EEPROM DRIVER
3171 M:      Bartosz Golaszewski <[email protected]>
3172 L:      [email protected]
3173 S:      Maintained
3174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3175 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3176 F:      drivers/misc/eeprom/at24.c
3177
3178 ATA OVER ETHERNET (AOE) DRIVER
3179 M:      "Justin Sanders" <[email protected]>
3180 S:      Supported
3181 W:      http://www.openaoe.org/
3182 F:      Documentation/admin-guide/aoe/
3183 F:      drivers/block/aoe/
3184
3185 ATC260X PMIC MFD DRIVER
3186 M:      Manivannan Sadhasivam <[email protected]>
3187 M:      Cristian Ciocaltea <[email protected]>
3188 L:      [email protected]
3189 S:      Maintained
3190 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3191 F:      drivers/input/misc/atc260x-onkey.c
3192 F:      drivers/mfd/atc260*
3193 F:      drivers/power/reset/atc260x-poweroff.c
3194 F:      drivers/regulator/atc260x-regulator.c
3195 F:      include/linux/mfd/atc260x/*
3196
3197 ATHEROS 71XX/9XXX GPIO DRIVER
3198 M:      Alban Bedel <[email protected]>
3199 S:      Maintained
3200 W:      https://github.com/AlbanBedel/linux
3201 T:      git git://github.com/AlbanBedel/linux
3202 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3203 F:      drivers/gpio/gpio-ath79.c
3204
3205 ATHEROS 71XX/9XXX USB PHY DRIVER
3206 M:      Alban Bedel <[email protected]>
3207 S:      Maintained
3208 W:      https://github.com/AlbanBedel/linux
3209 T:      git git://github.com/AlbanBedel/linux
3210 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3211 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3212
3213 ATHEROS ATH GENERIC UTILITIES
3214 M:      Kalle Valo <[email protected]>
3215 L:      [email protected]
3216 S:      Supported
3217 F:      drivers/net/wireless/ath/*
3218
3219 ATHEROS ATH5K WIRELESS DRIVER
3220 M:      Jiri Slaby <[email protected]>
3221 M:      Nick Kossifidis <[email protected]>
3222 M:      Luis Chamberlain <[email protected]>
3223 L:      [email protected]
3224 S:      Maintained
3225 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3226 F:      drivers/net/wireless/ath/ath5k/
3227
3228 ATHEROS ATH6KL WIRELESS DRIVER
3229 L:      [email protected]
3230 S:      Orphan
3231 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3232 F:      drivers/net/wireless/ath/ath6kl/
3233
3234 ATI_REMOTE2 DRIVER
3235 M:      Ville Syrjala <[email protected]>
3236 S:      Maintained
3237 F:      drivers/input/misc/ati_remote2.c
3238
3239 ATK0110 HWMON DRIVER
3240 M:      Luca Tettamanti <[email protected]>
3241 L:      [email protected]
3242 S:      Maintained
3243 F:      drivers/hwmon/asus_atk0110.c
3244
3245 ATLX ETHERNET DRIVERS
3246 M:      Chris Snook <[email protected]>
3247 L:      [email protected]
3248 S:      Maintained
3249 W:      http://sourceforge.net/projects/atl1
3250 W:      http://atl1.sourceforge.net
3251 F:      drivers/net/ethernet/atheros/
3252
3253 ATM
3254 M:      Chas Williams <[email protected]>
3255 L:      [email protected] (moderated for non-subscribers)
3256 L:      [email protected]
3257 S:      Maintained
3258 W:      http://linux-atm.sourceforge.net
3259 F:      drivers/atm/
3260 F:      include/linux/atm*
3261 F:      include/uapi/linux/atm*
3262
3263 ATMEL MACB ETHERNET DRIVER
3264 M:      Nicolas Ferre <[email protected]>
3265 M:      Claudiu Beznea <[email protected]>
3266 S:      Supported
3267 F:      drivers/net/ethernet/cadence/
3268
3269 ATMEL MAXTOUCH DRIVER
3270 M:      Nick Dyer <[email protected]>
3271 S:      Maintained
3272 T:      git git://github.com/ndyer/linux.git
3273 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3274 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3275
3276 ATMEL WIRELESS DRIVER
3277 M:      Simon Kelley <[email protected]>
3278 L:      [email protected]
3279 S:      Maintained
3280 W:      http://www.thekelleys.org.uk/atmel
3281 W:      http://atmelwlandriver.sourceforge.net/
3282 F:      drivers/net/wireless/atmel/atmel*
3283
3284 ATOMIC INFRASTRUCTURE
3285 M:      Will Deacon <[email protected]>
3286 M:      Peter Zijlstra <[email protected]>
3287 R:      Boqun Feng <[email protected]>
3288 R:      Mark Rutland <[email protected]>
3289 L:      [email protected]
3290 S:      Maintained
3291 F:      arch/*/include/asm/atomic*.h
3292 F:      include/*/atomic*.h
3293 F:      include/linux/refcount.h
3294 F:      Documentation/atomic_*.txt
3295 F:      scripts/atomic/
3296
3297 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3298 M:      Bradley Grove <[email protected]>
3299 L:      [email protected]
3300 S:      Supported
3301 W:      http://www.attotech.com
3302 F:      drivers/scsi/esas2r
3303
3304 ATUSB IEEE 802.15.4 RADIO DRIVER
3305 M:      Stefan Schmidt <[email protected]>
3306 L:      [email protected]
3307 S:      Maintained
3308 F:      drivers/net/ieee802154/at86rf230.h
3309 F:      drivers/net/ieee802154/atusb.c
3310 F:      drivers/net/ieee802154/atusb.h
3311
3312 AUDIT SUBSYSTEM
3313 M:      Paul Moore <[email protected]>
3314 M:      Eric Paris <[email protected]>
3315 L:      [email protected] (moderated for non-subscribers)
3316 S:      Supported
3317 W:      https://github.com/linux-audit
3318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3319 F:      include/asm-generic/audit_*.h
3320 F:      include/linux/audit.h
3321 F:      include/linux/audit_arch.h
3322 F:      include/uapi/linux/audit.h
3323 F:      kernel/audit*
3324 F:      lib/*audit.c
3325
3326 AUXILIARY DISPLAY DRIVERS
3327 M:      Miguel Ojeda <[email protected]>
3328 S:      Maintained
3329 F:      Documentation/devicetree/bindings/auxdisplay/
3330 F:      drivers/auxdisplay/
3331 F:      include/linux/cfag12864b.h
3332
3333 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3334 M:      Andreas Klinger <[email protected]>
3335 L:      [email protected]
3336 S:      Maintained
3337 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3338 F:      drivers/iio/adc/hx711.c
3339
3340 AX.25 NETWORK LAYER
3341 M:      Ralf Baechle <[email protected]>
3342 L:      [email protected]
3343 S:      Maintained
3344 W:      http://www.linux-ax25.org/
3345 F:      include/net/ax25.h
3346 F:      include/uapi/linux/ax25.h
3347 F:      net/ax25/
3348
3349 AXENTIA ARM DEVICES
3350 M:      Peter Rosin <[email protected]>
3351 L:      [email protected] (moderated for non-subscribers)
3352 S:      Maintained
3353 F:      arch/arm/boot/dts/at91-linea.dtsi
3354 F:      arch/arm/boot/dts/at91-natte.dtsi
3355 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3356 F:      arch/arm/boot/dts/at91-tse850-3.dts
3357
3358 AXENTIA ASOC DRIVERS
3359 M:      Peter Rosin <[email protected]>
3360 L:      [email protected] (moderated for non-subscribers)
3361 S:      Maintained
3362 F:      Documentation/devicetree/bindings/sound/axentia,*
3363 F:      sound/soc/atmel/tse850-pcm5142.c
3364
3365 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3366 M:      Nuno Sá <[email protected]>
3367 L:      [email protected]
3368 S:      Supported
3369 W:      https://ez.analog.com/linux-software-drivers
3370 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3371 F:      drivers/hwmon/axi-fan-control.c
3372
3373 AXXIA I2C CONTROLLER
3374 M:      Krzysztof Adamski <[email protected]>
3375 L:      [email protected]
3376 S:      Maintained
3377 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3378 F:      drivers/i2c/busses/i2c-axxia.c
3379
3380 AZ6007 DVB DRIVER
3381 M:      Mauro Carvalho Chehab <[email protected]>
3382 L:      [email protected]
3383 S:      Maintained
3384 W:      https://linuxtv.org
3385 T:      git git://linuxtv.org/media_tree.git
3386 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3387
3388 AZTECH FM RADIO RECEIVER DRIVER
3389 M:      Hans Verkuil <[email protected]>
3390 L:      [email protected]
3391 S:      Maintained
3392 W:      https://linuxtv.org
3393 T:      git git://linuxtv.org/media_tree.git
3394 F:      drivers/media/radio/radio-aztech*
3395
3396 B43 WIRELESS DRIVER
3397 L:      [email protected]
3398 L:      [email protected]
3399 S:      Odd Fixes
3400 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3401 F:      drivers/net/wireless/broadcom/b43/
3402
3403 B43LEGACY WIRELESS DRIVER
3404 M:      Larry Finger <[email protected]>
3405 L:      [email protected]
3406 L:      [email protected]
3407 S:      Maintained
3408 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3409 F:      drivers/net/wireless/broadcom/b43legacy/
3410
3411 BACKLIGHT CLASS/SUBSYSTEM
3412 M:      Lee Jones <[email protected]>
3413 M:      Daniel Thompson <[email protected]>
3414 M:      Jingoo Han <[email protected]>
3415 L:      [email protected]
3416 S:      Maintained
3417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3418 F:      Documentation/ABI/stable/sysfs-class-backlight
3419 F:      Documentation/ABI/testing/sysfs-class-backlight
3420 F:      Documentation/devicetree/bindings/leds/backlight
3421 F:      drivers/video/backlight/
3422 F:      include/linux/backlight.h
3423 F:      include/linux/pwm_backlight.h
3424
3425 BARCO P50 GPIO DRIVER
3426 M:      Santosh Kumar Yadav <[email protected]>
3427 M:      Peter Korsgaard <[email protected]>
3428 S:      Maintained
3429 F:      drivers/platform/x86/barco-p50-gpio.c
3430
3431 BATMAN ADVANCED
3432 M:      Marek Lindner <[email protected]>
3433 M:      Simon Wunderlich <[email protected]>
3434 M:      Antonio Quartulli <[email protected]>
3435 M:      Sven Eckelmann <[email protected]>
3436 L:      [email protected] (moderated for non-subscribers)
3437 S:      Maintained
3438 W:      https://www.open-mesh.org/
3439 Q:      https://patchwork.open-mesh.org/project/batman/list/
3440 B:      https://www.open-mesh.org/projects/batman-adv/issues
3441 C:      ircs://irc.hackint.org/batadv
3442 T:      git https://git.open-mesh.org/linux-merge.git
3443 F:      Documentation/networking/batman-adv.rst
3444 F:      include/uapi/linux/batadv_packet.h
3445 F:      include/uapi/linux/batman_adv.h
3446 F:      net/batman-adv/
3447
3448 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3449 M:      Thomas Sailer <[email protected]>
3450 L:      [email protected]
3451 S:      Maintained
3452 W:      http://www.baycom.org/~tom/ham/ham.html
3453 F:      drivers/net/hamradio/baycom*
3454
3455 BCACHE (BLOCK LAYER CACHE)
3456 M:      Coly Li <[email protected]>
3457 M:      Kent Overstreet <[email protected]>
3458 L:      [email protected]
3459 S:      Maintained
3460 W:      http://bcache.evilpiepirate.org
3461 C:      irc://irc.oftc.net/bcache
3462 F:      drivers/md/bcache/
3463
3464 BDISP ST MEDIA DRIVER
3465 M:      Fabien Dessenne <[email protected]>
3466 L:      [email protected]
3467 S:      Supported
3468 W:      https://linuxtv.org
3469 T:      git git://linuxtv.org/media_tree.git
3470 F:      drivers/media/platform/st/sti/bdisp
3471
3472 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3473 M:      Dariusz Marcinkiewicz <[email protected]>
3474 L:      [email protected]
3475 S:      Maintained
3476 F:      drivers/net/ethernet/ec_bhf.c
3477
3478 BEFS FILE SYSTEM
3479 M:      Luis de Bethencourt <[email protected]>
3480 M:      Salah Triki <[email protected]>
3481 S:      Maintained
3482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3483 F:      Documentation/filesystems/befs.rst
3484 F:      fs/befs/
3485
3486 BFQ I/O SCHEDULER
3487 M:      Paolo Valente <[email protected]>
3488 M:      Jens Axboe <[email protected]>
3489 L:      [email protected]
3490 S:      Maintained
3491 F:      Documentation/block/bfq-iosched.rst
3492 F:      block/bfq-*
3493
3494 BFS FILE SYSTEM
3495 M:      "Tigran A. Aivazian" <[email protected]>
3496 S:      Maintained
3497 F:      Documentation/filesystems/bfs.rst
3498 F:      fs/bfs/
3499 F:      include/uapi/linux/bfs_fs.h
3500
3501 BITMAP API
3502 M:      Yury Norov <[email protected]>
3503 R:      Andy Shevchenko <[email protected]>
3504 R:      Rasmus Villemoes <[email protected]>
3505 S:      Maintained
3506 F:      include/linux/bitmap.h
3507 F:      include/linux/find.h
3508 F:      lib/bitmap.c
3509 F:      lib/find_bit.c
3510 F:      lib/find_bit_benchmark.c
3511 F:      lib/test_bitmap.c
3512 F:      tools/include/linux/bitmap.h
3513 F:      tools/include/linux/find.h
3514 F:      tools/lib/bitmap.c
3515 F:      tools/lib/find_bit.c
3516
3517 BLINKM RGB LED DRIVER
3518 M:      Jan-Simon Moeller <[email protected]>
3519 S:      Maintained
3520 F:      drivers/leds/leds-blinkm.c
3521
3522 BLOCK LAYER
3523 M:      Jens Axboe <[email protected]>
3524 L:      [email protected]
3525 S:      Maintained
3526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3527 F:      Documentation/ABI/stable/sysfs-block
3528 F:      Documentation/block/
3529 F:      block/
3530 F:      drivers/block/
3531 F:      include/linux/bio.h
3532 F:      include/linux/blk*
3533 F:      kernel/trace/blktrace.c
3534 F:      lib/sbitmap.c
3535
3536 BLOCK2MTD DRIVER
3537 M:      Joern Engel <[email protected]>
3538 L:      [email protected]
3539 S:      Maintained
3540 F:      drivers/mtd/devices/block2mtd.c
3541
3542 BLUETOOTH DRIVERS
3543 M:      Marcel Holtmann <[email protected]>
3544 M:      Johan Hedberg <[email protected]>
3545 M:      Luiz Augusto von Dentz <[email protected]>
3546 L:      [email protected]
3547 S:      Supported
3548 W:      http://www.bluez.org/
3549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3551 F:      drivers/bluetooth/
3552
3553 BLUETOOTH SUBSYSTEM
3554 M:      Marcel Holtmann <[email protected]>
3555 M:      Johan Hedberg <[email protected]>
3556 M:      Luiz Augusto von Dentz <[email protected]>
3557 L:      [email protected]
3558 S:      Supported
3559 W:      http://www.bluez.org/
3560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3562 F:      include/net/bluetooth/
3563 F:      net/bluetooth/
3564
3565 BONDING DRIVER
3566 M:      Jay Vosburgh <[email protected]>
3567 M:      Veaceslav Falico <[email protected]>
3568 M:      Andy Gospodarek <[email protected]>
3569 L:      [email protected]
3570 S:      Supported
3571 W:      http://sourceforge.net/projects/bonding/
3572 F:      drivers/net/bonding/
3573 F:      include/net/bonding.h
3574 F:      include/uapi/linux/if_bonding.h
3575
3576 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3577 M:      Dan Robertson <[email protected]>
3578 L:      [email protected]
3579 S:      Maintained
3580 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3581 F:      drivers/iio/accel/bma400*
3582
3583 BPF (Safe dynamic programs and tools)
3584 M:      Alexei Starovoitov <[email protected]>
3585 M:      Daniel Borkmann <[email protected]>
3586 M:      Andrii Nakryiko <[email protected]>
3587 R:      Martin KaFai Lau <[email protected]>
3588 R:      Song Liu <[email protected]>
3589 R:      Yonghong Song <[email protected]>
3590 R:      John Fastabend <[email protected]>
3591 R:      KP Singh <[email protected]>
3592 L:      [email protected]
3593 L:      [email protected]
3594 S:      Supported
3595 W:      https://bpf.io/
3596 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3599 F:      Documentation/bpf/
3600 F:      Documentation/networking/filter.rst
3601 F:      Documentation/userspace-api/ebpf/
3602 F:      arch/*/net/*
3603 F:      include/linux/bpf*
3604 F:      include/linux/btf*
3605 F:      include/linux/filter.h
3606 F:      include/trace/events/xdp.h
3607 F:      include/uapi/linux/bpf*
3608 F:      include/uapi/linux/btf*
3609 F:      include/uapi/linux/filter.h
3610 F:      kernel/bpf/
3611 F:      kernel/trace/bpf_trace.c
3612 F:      lib/test_bpf.c
3613 F:      net/bpf/
3614 F:      net/core/filter.c
3615 F:      net/sched/act_bpf.c
3616 F:      net/sched/cls_bpf.c
3617 F:      samples/bpf/
3618 F:      scripts/bpf_doc.py
3619 F:      scripts/pahole-flags.sh
3620 F:      scripts/pahole-version.sh
3621 F:      tools/bpf/
3622 F:      tools/lib/bpf/
3623 F:      tools/testing/selftests/bpf/
3624 N:      bpf
3625 K:      bpf
3626
3627 BPF JIT for ARM
3628 M:      Shubham Bansal <[email protected]>
3629 L:      [email protected]
3630 L:      [email protected]
3631 S:      Maintained
3632 F:      arch/arm/net/
3633
3634 BPF JIT for ARM64
3635 M:      Daniel Borkmann <[email protected]>
3636 M:      Alexei Starovoitov <[email protected]>
3637 M:      Zi Shen Lim <[email protected]>
3638 L:      [email protected]
3639 L:      [email protected]
3640 S:      Supported
3641 F:      arch/arm64/net/
3642
3643 BPF JIT for MIPS (32-BIT AND 64-BIT)
3644 M:      Johan Almbladh <[email protected]>
3645 M:      Paul Burton <[email protected]>
3646 L:      [email protected]
3647 L:      [email protected]
3648 S:      Maintained
3649 F:      arch/mips/net/
3650
3651 BPF JIT for NFP NICs
3652 M:      Jakub Kicinski <[email protected]>
3653 L:      [email protected]
3654 L:      [email protected]
3655 S:      Supported
3656 F:      drivers/net/ethernet/netronome/nfp/bpf/
3657
3658 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3659 M:      Naveen N. Rao <[email protected]>
3660 L:      [email protected]
3661 L:      [email protected]
3662 S:      Maintained
3663 F:      arch/powerpc/net/
3664
3665 BPF JIT for RISC-V (32-bit)
3666 M:      Luke Nelson <[email protected]>
3667 M:      Xi Wang <[email protected]>
3668 L:      [email protected]
3669 L:      [email protected]
3670 S:      Maintained
3671 F:      arch/riscv/net/
3672 X:      arch/riscv/net/bpf_jit_comp64.c
3673
3674 BPF JIT for RISC-V (64-bit)
3675 M:      Björn Töpel <[email protected]>
3676 L:      [email protected]
3677 L:      [email protected]
3678 S:      Maintained
3679 F:      arch/riscv/net/
3680 X:      arch/riscv/net/bpf_jit_comp32.c
3681
3682 BPF JIT for S390
3683 M:      Ilya Leoshkevich <[email protected]>
3684 M:      Heiko Carstens <[email protected]>
3685 M:      Vasily Gorbik <[email protected]>
3686 L:      [email protected]
3687 L:      [email protected]
3688 S:      Maintained
3689 F:      arch/s390/net/
3690 X:      arch/s390/net/pnet.c
3691
3692 BPF JIT for SPARC (32-BIT AND 64-BIT)
3693 M:      David S. Miller <[email protected]>
3694 L:      [email protected]
3695 L:      [email protected]
3696 S:      Maintained
3697 F:      arch/sparc/net/
3698
3699 BPF JIT for X86 32-BIT
3700 M:      Wang YanQing <[email protected]>
3701 L:      [email protected]
3702 L:      [email protected]
3703 S:      Maintained
3704 F:      arch/x86/net/bpf_jit_comp32.c
3705
3706 BPF JIT for X86 64-BIT
3707 M:      Alexei Starovoitov <[email protected]>
3708 M:      Daniel Borkmann <[email protected]>
3709 L:      [email protected]
3710 L:      [email protected]
3711 S:      Supported
3712 F:      arch/x86/net/
3713 X:      arch/x86/net/bpf_jit_comp32.c
3714
3715 BPF LSM (Security Audit and Enforcement using BPF)
3716 M:      KP Singh <[email protected]>
3717 R:      Florent Revest <[email protected]>
3718 R:      Brendan Jackman <[email protected]>
3719 L:      [email protected]
3720 S:      Maintained
3721 F:      Documentation/bpf/prog_lsm.rst
3722 F:      include/linux/bpf_lsm.h
3723 F:      kernel/bpf/bpf_lsm.c
3724 F:      security/bpf/
3725
3726 BROADCOM B44 10/100 ETHERNET DRIVER
3727 M:      Michael Chan <[email protected]>
3728 L:      [email protected]
3729 S:      Supported
3730 F:      drivers/net/ethernet/broadcom/b44.*
3731
3732 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3733 M:      Florian Fainelli <[email protected]>
3734 L:      [email protected]
3735 L:      [email protected] (subscribers-only)
3736 S:      Supported
3737 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3738 F:      drivers/net/dsa/b53/*
3739 F:      drivers/net/dsa/bcm_sf2*
3740 F:      include/linux/dsa/brcm.h
3741 F:      include/linux/platform_data/b53.h
3742
3743 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3744 M:      Nicolas Saenz Julienne <[email protected]>
3745 L:      [email protected]
3746 L:      [email protected] (moderated for non-subscribers)
3747 L:      [email protected] (moderated for non-subscribers)
3748 S:      Maintained
3749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3750 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3751 F:      drivers/pci/controller/pcie-brcmstb.c
3752 F:      drivers/staging/vc04_services
3753 N:      bcm2711
3754 N:      bcm283*
3755
3756 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3757 M:      Florian Fainelli <[email protected]>
3758 M:      Ray Jui <[email protected]>
3759 M:      Scott Branden <[email protected]>
3760 M:      [email protected]
3761 S:      Maintained
3762 T:      git git://github.com/broadcom/mach-bcm
3763 F:      arch/arm/mach-bcm/
3764 N:      bcm281*
3765 N:      bcm113*
3766 N:      bcm216*
3767 N:      kona
3768
3769 BROADCOM BCM47XX MIPS ARCHITECTURE
3770 M:      Hauke Mehrtens <[email protected]>
3771 M:      Rafał Miłecki <[email protected]>
3772 L:      [email protected]
3773 S:      Maintained
3774 F:      Documentation/devicetree/bindings/mips/brcm/
3775 F:      arch/mips/bcm47xx/*
3776 F:      arch/mips/include/asm/mach-bcm47xx/*
3777
3778 BROADCOM BCM4908 ETHERNET DRIVER
3779 M:      Rafał Miłecki <[email protected]>
3780 M:      [email protected]
3781 L:      [email protected]
3782 S:      Maintained
3783 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3784 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3785 F:      drivers/net/ethernet/broadcom/unimac.h
3786
3787 BROADCOM BCM4908 PINMUX DRIVER
3788 M:      Rafał Miłecki <[email protected]>
3789 M:      [email protected]
3790 L:      [email protected]
3791 S:      Maintained
3792 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3793 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3794
3795 BROADCOM BCM5301X ARM ARCHITECTURE
3796 M:      Florian Fainelli <[email protected]>
3797 M:      Hauke Mehrtens <[email protected]>
3798 M:      Rafał Miłecki <[email protected]>
3799 M:      [email protected]
3800 L:      [email protected] (moderated for non-subscribers)
3801 S:      Maintained
3802 F:      arch/arm/boot/dts/bcm470*
3803 F:      arch/arm/boot/dts/bcm5301*
3804 F:      arch/arm/boot/dts/bcm953012*
3805 F:      arch/arm/mach-bcm/bcm_5301x.c
3806
3807 BROADCOM BCM53573 ARM ARCHITECTURE
3808 M:      Florian Fainelli <[email protected]>
3809 M:      Rafał Miłecki <[email protected]>
3810 L:      [email protected]
3811 L:      [email protected] (moderated for non-subscribers)
3812 S:      Maintained
3813 F:      arch/arm/boot/dts/bcm47189*
3814 F:      arch/arm/boot/dts/bcm53573*
3815
3816 BROADCOM BCM63XX ARM ARCHITECTURE
3817 M:      Florian Fainelli <[email protected]>
3818 M:      [email protected]
3819 L:      [email protected] (moderated for non-subscribers)
3820 S:      Maintained
3821 T:      git git://github.com/broadcom/stblinux.git
3822 N:      bcm63xx
3823
3824 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3825 M:      Kevin Cernekee <[email protected]>
3826 L:      [email protected]
3827 S:      Maintained
3828 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3829
3830 BROADCOM BCM7XXX ARM ARCHITECTURE
3831 M:      Florian Fainelli <[email protected]>
3832 M:      [email protected]
3833 L:      [email protected] (moderated for non-subscribers)
3834 S:      Maintained
3835 T:      git git://github.com/broadcom/stblinux.git
3836 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3837 F:      arch/arm/boot/dts/bcm7*.dts*
3838 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3839 F:      arch/arm/mach-bcm/*brcmstb*
3840 F:      arch/arm/mm/cache-b15-rac.c
3841 F:      drivers/bus/brcmstb_gisb.c
3842 F:      drivers/pci/controller/pcie-brcmstb.c
3843 N:      brcmstb
3844 N:      bcm7038
3845 N:      bcm7120
3846
3847 BROADCOM BDC DRIVER
3848 M:      Al Cooper <[email protected]>
3849 L:      [email protected]
3850 L:      [email protected]
3851 S:      Maintained
3852 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
3853 F:      drivers/usb/gadget/udc/bdc/
3854
3855 BROADCOM BMIPS CPUFREQ DRIVER
3856 M:      Markus Mayer <[email protected]>
3857 M:      [email protected]
3858 L:      [email protected]
3859 S:      Maintained
3860 F:      drivers/cpufreq/bmips-cpufreq.c
3861
3862 BROADCOM BMIPS MIPS ARCHITECTURE
3863 M:      Florian Fainelli <[email protected]>
3864 L:      [email protected]
3865 L:      [email protected]
3866 S:      Maintained
3867 T:      git git://github.com/broadcom/stblinux.git
3868 F:      arch/mips/bmips/*
3869 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3870 F:      arch/mips/include/asm/mach-bmips/*
3871 F:      arch/mips/kernel/*bmips*
3872 F:      drivers/soc/bcm/bcm63xx
3873 F:      drivers/irqchip/irq-bcm63*
3874 F:      drivers/irqchip/irq-bcm7*
3875 F:      drivers/irqchip/irq-brcmstb*
3876 F:      include/linux/bcm963xx_nvram.h
3877 F:      include/linux/bcm963xx_tag.h
3878
3879 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3880 M:      Rasesh Mody <[email protected]>
3881 M:      [email protected]
3882 L:      [email protected]
3883 S:      Supported
3884 F:      drivers/net/ethernet/broadcom/bnx2.*
3885 F:      drivers/net/ethernet/broadcom/bnx2_*
3886
3887 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3888 M:      Saurav Kashyap <[email protected]>
3889 M:      Javed Hasan <[email protected]>
3890 M:      [email protected]
3891 L:      [email protected]
3892 S:      Supported
3893 F:      drivers/scsi/bnx2fc/
3894
3895 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3896 M:      Nilesh Javali <[email protected]>
3897 M:      Manish Rangankar <[email protected]>
3898 M:      [email protected]
3899 L:      [email protected]
3900 S:      Supported
3901 F:      drivers/scsi/bnx2i/
3902
3903 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3904 M:      Ariel Elior <[email protected]>
3905 M:      Sudarsana Kalluru <[email protected]>
3906 M:      Manish Chopra <[email protected]>
3907 L:      [email protected]
3908 S:      Supported
3909 F:      drivers/net/ethernet/broadcom/bnx2x/
3910
3911 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3912 M:      Michael Chan <[email protected]>
3913 L:      [email protected]
3914 S:      Supported
3915 F:      drivers/net/ethernet/broadcom/bnxt/
3916
3917 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3918 M:      Arend van Spriel <[email protected]>
3919 M:      Franky Lin <[email protected]>
3920 M:      Hante Meuleman <[email protected]>
3921 L:      [email protected]
3922 L:      [email protected]
3923 L:      [email protected]
3924 S:      Supported
3925 F:      drivers/net/wireless/broadcom/brcm80211/
3926
3927 BROADCOM BRCMSTB GPIO DRIVER
3928 M:      Doug Berger <[email protected]>
3929 M:      Florian Fainelli <[email protected]>
3930 L:      [email protected]
3931 S:      Supported
3932 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
3933 F:      drivers/gpio/gpio-brcmstb.c
3934
3935 BROADCOM BRCMSTB I2C DRIVER
3936 M:      Kamal Dasu <[email protected]>
3937 L:      [email protected]
3938 L:      [email protected]
3939 S:      Supported
3940 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3941 F:      drivers/i2c/busses/i2c-brcmstb.c
3942
3943 BROADCOM BRCMSTB UART DRIVER
3944 M:      Al Cooper <[email protected]>
3945 L:      [email protected]
3946 L:      [email protected]
3947 S:      Maintained
3948 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3949 F:      drivers/tty/serial/8250/8250_bcm7271.c
3950
3951 BROADCOM BRCMSTB USB EHCI DRIVER
3952 M:      Al Cooper <[email protected]>
3953 L:      [email protected]
3954 L:      [email protected]
3955 S:      Maintained
3956 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3957 F:      drivers/usb/host/ehci-brcm.*
3958
3959 BROADCOM BRCMSTB USB PIN MAP DRIVER
3960 M:      Al Cooper <[email protected]>
3961 L:      [email protected]
3962 L:      [email protected]
3963 S:      Maintained
3964 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3965 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3966
3967 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3968 M:      Al Cooper <[email protected]>
3969 L:      [email protected]
3970 L:      [email protected]
3971 S:      Maintained
3972 F:      drivers/phy/broadcom/phy-brcm-usb*
3973
3974 BROADCOM ETHERNET PHY DRIVERS
3975 M:      Florian Fainelli <[email protected]>
3976 L:      [email protected]
3977 L:      [email protected]
3978 S:      Supported
3979 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3980 F:      drivers/net/phy/bcm*.[ch]
3981 F:      drivers/net/phy/broadcom.c
3982 F:      include/linux/brcmphy.h
3983
3984 BROADCOM GENET ETHERNET DRIVER
3985 M:      Doug Berger <[email protected]>
3986 M:      Florian Fainelli <[email protected]>
3987 L:      [email protected]
3988 L:      [email protected]
3989 S:      Supported
3990 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
3991 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
3992 F:      drivers/net/ethernet/broadcom/genet/
3993 F:      drivers/net/ethernet/broadcom/unimac.h
3994 F:      drivers/net/mdio/mdio-bcm-unimac.c
3995 F:      include/linux/platform_data/bcmgenet.h
3996 F:      include/linux/platform_data/mdio-bcm-unimac.h
3997
3998 BROADCOM IPROC ARM ARCHITECTURE
3999 M:      Ray Jui <[email protected]>
4000 M:      Scott Branden <[email protected]>
4001 M:      [email protected]
4002 L:      [email protected] (moderated for non-subscribers)
4003 S:      Maintained
4004 T:      git git://github.com/broadcom/stblinux.git
4005 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4006 F:      arch/arm64/boot/dts/broadcom/stingray/*
4007 F:      drivers/clk/bcm/clk-ns*
4008 F:      drivers/clk/bcm/clk-sr*
4009 F:      drivers/pinctrl/bcm/pinctrl-ns*
4010 F:      include/dt-bindings/clock/bcm-sr*
4011 N:      iproc
4012 N:      cygnus
4013 N:      bcm[-_]nsp
4014 N:      bcm9113*
4015 N:      bcm9583*
4016 N:      bcm9585*
4017 N:      bcm9586*
4018 N:      bcm988312
4019 N:      bcm113*
4020 N:      bcm583*
4021 N:      bcm585*
4022 N:      bcm586*
4023 N:      bcm88312
4024 N:      hr2
4025 N:      stingray
4026
4027 BROADCOM IPROC GBIT ETHERNET DRIVER
4028 M:      Rafał Miłecki <[email protected]>
4029 M:      [email protected]
4030 L:      [email protected]
4031 S:      Maintained
4032 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4033 F:      drivers/net/ethernet/broadcom/bgmac*
4034 F:      drivers/net/ethernet/broadcom/unimac.h
4035
4036 BROADCOM KONA GPIO DRIVER
4037 M:      Ray Jui <[email protected]>
4038 L:      [email protected]
4039 S:      Supported
4040 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4041 F:      drivers/gpio/gpio-bcm-kona.c
4042
4043 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4044 M:      Sathya Prakash Veerichetty <[email protected]>
4045 M:      Kashyap Desai <[email protected]>
4046 M:      Sumit Saxena <[email protected]>
4047 M:      Sreekanth Reddy <[email protected]>
4048 L:      [email protected]
4049 L:      [email protected]
4050 S:      Supported
4051 W:      https://www.broadcom.com/support/storage
4052 F:      drivers/scsi/mpi3mr/
4053
4054 BROADCOM NETXTREME-E ROCE DRIVER
4055 M:      Selvin Xavier <[email protected]>
4056 L:      [email protected]
4057 S:      Supported
4058 W:      http://www.broadcom.com
4059 F:      drivers/infiniband/hw/bnxt_re/
4060 F:      include/uapi/rdma/bnxt_re-abi.h
4061
4062 BROADCOM NVRAM DRIVER
4063 M:      Rafał Miłecki <[email protected]>
4064 L:      [email protected]
4065 S:      Maintained
4066 F:      drivers/firmware/broadcom/*
4067
4068 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4069 M:      Rafał Miłecki <[email protected]>
4070 M:      Florian Fainelli <[email protected]>
4071 M:      [email protected]
4072 L:      [email protected]
4073 S:      Maintained
4074 T:      git git://github.com/broadcom/stblinux.git
4075 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4076 F:      include/dt-bindings/soc/bcm-pmb.h
4077
4078 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4079 M:      Rafał Miłecki <[email protected]>
4080 L:      [email protected]
4081 S:      Maintained
4082 F:      drivers/bcma/
4083 F:      include/linux/bcma/
4084
4085 BROADCOM SPI DRIVER
4086 M:      Kamal Dasu <[email protected]>
4087 M:      [email protected]
4088 S:      Maintained
4089 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4090 F:      drivers/spi/spi-bcm-qspi.*
4091 F:      drivers/spi/spi-brcmstb-qspi.c
4092 F:      drivers/spi/spi-iproc-qspi.c
4093
4094 BROADCOM STB AVS CPUFREQ DRIVER
4095 M:      Markus Mayer <[email protected]>
4096 M:      [email protected]
4097 L:      [email protected]
4098 S:      Maintained
4099 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4100 F:      drivers/cpufreq/brcmstb*
4101
4102 BROADCOM STB AVS TMON DRIVER
4103 M:      Markus Mayer <[email protected]>
4104 M:      [email protected]
4105 L:      [email protected]
4106 S:      Maintained
4107 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4108 F:      drivers/thermal/broadcom/brcmstb*
4109
4110 BROADCOM STB DPFE DRIVER
4111 M:      Markus Mayer <[email protected]>
4112 M:      [email protected]
4113 L:      [email protected] (moderated for non-subscribers)
4114 S:      Maintained
4115 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4116 F:      drivers/memory/brcmstb_dpfe.c
4117
4118 BROADCOM STB NAND FLASH DRIVER
4119 M:      Brian Norris <[email protected]>
4120 M:      Kamal Dasu <[email protected]>
4121 L:      [email protected]
4122 L:      [email protected]
4123 S:      Maintained
4124 F:      drivers/mtd/nand/raw/brcmnand/
4125 F:      include/linux/platform_data/brcmnand.h
4126
4127 BROADCOM STB PCIE DRIVER
4128 M:      Jim Quinlan <[email protected]>
4129 M:      Nicolas Saenz Julienne <[email protected]>
4130 M:      Florian Fainelli <[email protected]>
4131 M:      [email protected]
4132 L:      [email protected]
4133 S:      Maintained
4134 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4135 F:      drivers/pci/controller/pcie-brcmstb.c
4136
4137 BROADCOM SYSTEMPORT ETHERNET DRIVER
4138 M:      Florian Fainelli <[email protected]>
4139 L:      [email protected]
4140 L:      [email protected]
4141 S:      Supported
4142 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4143 F:      drivers/net/ethernet/broadcom/unimac.h
4144 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4145
4146 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4147 M:      Siva Reddy Kallam <[email protected]>
4148 M:      Prashant Sreedharan <[email protected]>
4149 M:      Michael Chan <[email protected]>
4150 L:      [email protected]
4151 S:      Supported
4152 F:      drivers/net/ethernet/broadcom/tg3.*
4153
4154 BROADCOM VK DRIVER
4155 M:      Scott Branden <[email protected]>
4156 L:      [email protected]
4157 S:      Supported
4158 F:      drivers/misc/bcm-vk/
4159 F:      include/uapi/linux/misc/bcm_vk.h
4160
4161 BROCADE BFA FC SCSI DRIVER
4162 M:      Anil Gurumurthy <[email protected]>
4163 M:      Sudarsana Kalluru <[email protected]>
4164 L:      [email protected]
4165 S:      Supported
4166 F:      drivers/scsi/bfa/
4167
4168 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4169 M:      Rasesh Mody <[email protected]>
4170 M:      Sudarsana Kalluru <[email protected]>
4171 M:      [email protected]
4172 L:      [email protected]
4173 S:      Supported
4174 F:      drivers/net/ethernet/brocade/bna/
4175
4176 BSG (block layer generic sg v4 driver)
4177 M:      FUJITA Tomonori <[email protected]>
4178 L:      [email protected]
4179 S:      Supported
4180 F:      block/bsg.c
4181 F:      include/linux/bsg.h
4182 F:      include/uapi/linux/bsg.h
4183
4184 BT87X AUDIO DRIVER
4185 M:      Clemens Ladisch <[email protected]>
4186 L:      [email protected] (moderated for non-subscribers)
4187 S:      Maintained
4188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4189 F:      Documentation/sound/cards/bt87x.rst
4190 F:      sound/pci/bt87x.c
4191
4192 BT8XXGPIO DRIVER
4193 M:      Michael Buesch <[email protected]>
4194 S:      Maintained
4195 W:      http://bu3sch.de/btgpio.php
4196 F:      drivers/gpio/gpio-bt8xx.c
4197
4198 BTRFS FILE SYSTEM
4199 M:      Chris Mason <[email protected]>
4200 M:      Josef Bacik <[email protected]>
4201 M:      David Sterba <[email protected]>
4202 L:      [email protected]
4203 S:      Maintained
4204 W:      http://btrfs.wiki.kernel.org/
4205 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4206 C:      irc://irc.libera.chat/btrfs
4207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4208 F:      Documentation/filesystems/btrfs.rst
4209 F:      fs/btrfs/
4210 F:      include/linux/btrfs*
4211 F:      include/uapi/linux/btrfs*
4212
4213 BTTV VIDEO4LINUX DRIVER
4214 M:      Mauro Carvalho Chehab <[email protected]>
4215 L:      [email protected]
4216 S:      Odd fixes
4217 W:      https://linuxtv.org
4218 T:      git git://linuxtv.org/media_tree.git
4219 F:      Documentation/driver-api/media/drivers/bttv*
4220 F:      drivers/media/pci/bt8xx/bttv*
4221
4222 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4223 M:      Chanwoo Choi <[email protected]>
4224 L:      [email protected]
4225 L:      [email protected]
4226 S:      Maintained
4227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4228 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4229 F:      drivers/devfreq/exynos-bus.c
4230
4231 BUSLOGIC SCSI DRIVER
4232 M:      Khalid Aziz <[email protected]>
4233 L:      [email protected]
4234 S:      Maintained
4235 F:      drivers/scsi/BusLogic.*
4236 F:      drivers/scsi/FlashPoint.*
4237
4238 C-MEDIA CMI8788 DRIVER
4239 M:      Clemens Ladisch <[email protected]>
4240 L:      [email protected] (moderated for non-subscribers)
4241 S:      Maintained
4242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4243 F:      sound/pci/oxygen/
4244
4245 C-SKY ARCHITECTURE
4246 M:      Guo Ren <[email protected]>
4247 L:      [email protected]
4248 S:      Supported
4249 T:      git https://github.com/c-sky/csky-linux.git
4250 F:      Documentation/devicetree/bindings/csky/
4251 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4252 F:      Documentation/devicetree/bindings/timer/csky,*
4253 F:      arch/csky/
4254 F:      drivers/clocksource/timer-gx6605s.c
4255 F:      drivers/clocksource/timer-mp-csky.c
4256 F:      drivers/irqchip/irq-csky-*
4257 N:      csky
4258 K:      csky
4259
4260 CA8210 IEEE-802.15.4 RADIO DRIVER
4261 L:      [email protected]
4262 S:      Orphan
4263 W:      https://github.com/Cascoda/ca8210-linux.git
4264 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4265 F:      drivers/net/ieee802154/ca8210.c
4266
4267 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4268 M:      Damien Le Moal <[email protected]>
4269 L:      [email protected]
4270 L:      [email protected] (pinctrl driver)
4271 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4272 F:      drivers/pinctrl/pinctrl-k210.c
4273
4274 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4275 M:      Damien Le Moal <[email protected]>
4276 L:      [email protected]
4277 L:      [email protected]
4278 S:      Maintained
4279 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4280 F:      drivers/reset/reset-k210.c
4281
4282 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4283 M:      Damien Le Moal <[email protected]>
4284 L:      [email protected]
4285 S:      Maintained
4286 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4287 F:      drivers/soc/canaan/
4288 F:      include/soc/canaan/
4289
4290 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4291 M:      David Howells <[email protected]>
4292 L:      [email protected] (moderated for non-subscribers)
4293 S:      Supported
4294 F:      Documentation/filesystems/caching/cachefiles.rst
4295 F:      fs/cachefiles/
4296
4297 CADENCE MIPI-CSI2 BRIDGES
4298 M:      Maxime Ripard <[email protected]>
4299 L:      [email protected]
4300 S:      Maintained
4301 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4302 F:      drivers/media/platform/cadence/cdns-csi2*
4303
4304 CADENCE NAND DRIVER
4305 L:      [email protected]
4306 S:      Orphan
4307 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4308 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4309
4310 CADENCE USB3 DRD IP DRIVER
4311 M:      Peter Chen <[email protected]>
4312 M:      Pawel Laszczak <[email protected]>
4313 R:      Roger Quadros <[email protected]>
4314 R:      Aswath Govindraju <[email protected]>
4315 L:      [email protected]
4316 S:      Maintained
4317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4318 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4319 F:      drivers/usb/cdns3/
4320 X:      drivers/usb/cdns3/cdnsp*
4321
4322 CADENCE USBSSP DRD IP DRIVER
4323 M:      Pawel Laszczak <[email protected]>
4324 L:      [email protected]
4325 S:      Maintained
4326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4327 F:      drivers/usb/cdns3/
4328 X:      drivers/usb/cdns3/cdns3*
4329
4330 CADET FM/AM RADIO RECEIVER DRIVER
4331 M:      Hans Verkuil <[email protected]>
4332 L:      [email protected]
4333 S:      Maintained
4334 W:      https://linuxtv.org
4335 T:      git git://linuxtv.org/media_tree.git
4336 F:      drivers/media/radio/radio-cadet*
4337
4338 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4339 L:      [email protected]
4340 S:      Orphan
4341 T:      git git://linuxtv.org/media_tree.git
4342 F:      Documentation/admin-guide/media/cafe_ccic*
4343 F:      drivers/media/platform/marvell/
4344
4345 CAIF NETWORK LAYER
4346 L:      [email protected]
4347 S:      Orphan
4348 F:      Documentation/networking/caif/
4349 F:      drivers/net/caif/
4350 F:      include/net/caif/
4351 F:      include/uapi/linux/caif/
4352 F:      net/caif/
4353
4354 CAKE QDISC
4355 M:      Toke Høiland-Jørgensen <[email protected]>
4356 L:      [email protected] (moderated for non-subscribers)
4357 S:      Maintained
4358 F:      net/sched/sch_cake.c
4359
4360 CAN NETWORK DRIVERS
4361 M:      Wolfgang Grandegger <[email protected]>
4362 M:      Marc Kleine-Budde <[email protected]>
4363 L:      [email protected]
4364 S:      Maintained
4365 W:      https://github.com/linux-can
4366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4368 F:      Documentation/devicetree/bindings/net/can/
4369 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4370 F:      drivers/net/can/
4371 F:      drivers/phy/phy-can-transceiver.c
4372 F:      include/linux/can/bittiming.h
4373 F:      include/linux/can/dev.h
4374 F:      include/linux/can/led.h
4375 F:      include/linux/can/length.h
4376 F:      include/linux/can/platform/
4377 F:      include/linux/can/rx-offload.h
4378 F:      include/uapi/linux/can/error.h
4379 F:      include/uapi/linux/can/netlink.h
4380 F:      include/uapi/linux/can/vxcan.h
4381
4382 CAN NETWORK LAYER
4383 M:      Oliver Hartkopp <[email protected]>
4384 M:      Marc Kleine-Budde <[email protected]>
4385 L:      [email protected]
4386 S:      Maintained
4387 W:      https://github.com/linux-can
4388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4390 F:      Documentation/networking/can.rst
4391 F:      include/linux/can/can-ml.h
4392 F:      include/linux/can/core.h
4393 F:      include/linux/can/skb.h
4394 F:      include/net/netns/can.h
4395 F:      include/uapi/linux/can.h
4396 F:      include/uapi/linux/can/bcm.h
4397 F:      include/uapi/linux/can/gw.h
4398 F:      include/uapi/linux/can/isotp.h
4399 F:      include/uapi/linux/can/raw.h
4400 F:      net/can/
4401
4402 CAN-J1939 NETWORK LAYER
4403 M:      Robin van der Gracht <[email protected]>
4404 M:      Oleksij Rempel <[email protected]>
4405 R:      [email protected]
4406 L:      [email protected]
4407 S:      Maintained
4408 F:      Documentation/networking/j1939.rst
4409 F:      include/uapi/linux/can/j1939.h
4410 F:      net/can/j1939/
4411
4412 CAPABILITIES
4413 M:      Serge Hallyn <[email protected]>
4414 L:      [email protected]
4415 S:      Supported
4416 F:      include/linux/capability.h
4417 F:      include/uapi/linux/capability.h
4418 F:      kernel/capability.c
4419 F:      security/commoncap.c
4420
4421 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4422 M:      Kevin Tsai <[email protected]>
4423 S:      Maintained
4424 F:      drivers/iio/light/cm*
4425
4426 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4427 M:      Christian Lamparter <[email protected]>
4428 L:      [email protected]
4429 S:      Maintained
4430 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4431 F:      drivers/net/wireless/ath/carl9170/
4432
4433 CAVIUM I2C DRIVER
4434 M:      Robert Richter <[email protected]>
4435 S:      Odd Fixes
4436 W:      http://www.marvell.com
4437 F:      drivers/i2c/busses/i2c-octeon*
4438 F:      drivers/i2c/busses/i2c-thunderx*
4439
4440 CAVIUM LIQUIDIO NETWORK DRIVER
4441 M:      Derek Chickles <[email protected]>
4442 M:      Satanand Burla <[email protected]>
4443 M:      Felix Manlunas <[email protected]>
4444 L:      [email protected]
4445 S:      Supported
4446 W:      http://www.marvell.com
4447 F:      drivers/net/ethernet/cavium/liquidio/
4448
4449 CAVIUM MMC DRIVER
4450 M:      Robert Richter <[email protected]>
4451 S:      Odd Fixes
4452 W:      http://www.marvell.com
4453 F:      drivers/mmc/host/cavium*
4454
4455 CAVIUM OCTEON-TX CRYPTO DRIVER
4456 M:      George Cherian <[email protected]>
4457 L:      [email protected]
4458 S:      Supported
4459 W:      http://www.marvell.com
4460 F:      drivers/crypto/cavium/cpt/
4461
4462 CAVIUM THUNDERX2 ARM64 SOC
4463 M:      Robert Richter <[email protected]>
4464 L:      [email protected] (moderated for non-subscribers)
4465 S:      Odd Fixes
4466 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4467 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4468
4469 CBS/ETF/TAPRIO QDISCS
4470 M:      Vinicius Costa Gomes <[email protected]>
4471 S:      Maintained
4472 L:      [email protected]
4473 F:      net/sched/sch_cbs.c
4474 F:      net/sched/sch_etf.c
4475 F:      net/sched/sch_taprio.c
4476
4477 CC2520 IEEE-802.15.4 RADIO DRIVER
4478 M:      Varka Bhadram <[email protected]>
4479 L:      [email protected]
4480 S:      Maintained
4481 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4482 F:      drivers/net/ieee802154/cc2520.c
4483 F:      include/linux/spi/cc2520.h
4484
4485 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4486 M:      Gilad Ben-Yossef <[email protected]>
4487 L:      [email protected]
4488 S:      Supported
4489 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4490 F:      drivers/crypto/ccree/
4491
4492 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4493 M:      Hadar Gat <[email protected]>
4494 L:      [email protected]
4495 S:      Supported
4496 F:      drivers/char/hw_random/cctrng.c
4497 F:      drivers/char/hw_random/cctrng.h
4498 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4499 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4500
4501 CEC FRAMEWORK
4502 M:      Hans Verkuil <[email protected]>
4503 L:      [email protected]
4504 S:      Supported
4505 W:      http://linuxtv.org
4506 T:      git git://linuxtv.org/media_tree.git
4507 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4508 F:      Documentation/devicetree/bindings/media/cec.txt
4509 F:      Documentation/driver-api/media/cec-core.rst
4510 F:      Documentation/userspace-api/media/cec
4511 F:      drivers/media/cec/
4512 F:      drivers/media/rc/keymaps/rc-cec.c
4513 F:      include/media/cec-notifier.h
4514 F:      include/media/cec.h
4515 F:      include/uapi/linux/cec-funcs.h
4516 F:      include/uapi/linux/cec.h
4517
4518 CEC GPIO DRIVER
4519 M:      Hans Verkuil <[email protected]>
4520 L:      [email protected]
4521 S:      Supported
4522 W:      http://linuxtv.org
4523 T:      git git://linuxtv.org/media_tree.git
4524 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4525 F:      drivers/media/cec/platform/cec-gpio/
4526
4527 CELL BROADBAND ENGINE ARCHITECTURE
4528 M:      Arnd Bergmann <[email protected]>
4529 L:      [email protected]
4530 S:      Supported
4531 W:      http://www.ibm.com/developerworks/power/cell/
4532 F:      arch/powerpc/include/asm/cell*.h
4533 F:      arch/powerpc/include/asm/spu*.h
4534 F:      arch/powerpc/include/uapi/asm/spu*.h
4535 F:      arch/powerpc/platforms/cell/
4536
4537 CELLWISE CW2015 BATTERY DRIVER
4538 M:      Tobias Schrammm <[email protected]>
4539 S:      Maintained
4540 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4541 F:      drivers/power/supply/cw2015_battery.c
4542
4543 CEPH COMMON CODE (LIBCEPH)
4544 M:      Ilya Dryomov <[email protected]>
4545 M:      Jeff Layton <[email protected]>
4546 M:      Xiubo Li <[email protected]>
4547 L:      [email protected]
4548 S:      Supported
4549 W:      http://ceph.com/
4550 T:      git git://github.com/ceph/ceph-client.git
4551 F:      include/linux/ceph/
4552 F:      include/linux/crush/
4553 F:      net/ceph/
4554
4555 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4556 M:      Jeff Layton <[email protected]>
4557 M:      Xiubo Li <[email protected]>
4558 M:      Ilya Dryomov <[email protected]>
4559 L:      [email protected]
4560 S:      Supported
4561 W:      http://ceph.com/
4562 T:      git git://github.com/ceph/ceph-client.git
4563 F:      Documentation/filesystems/ceph.rst
4564 F:      fs/ceph/
4565
4566 CERTIFICATE HANDLING
4567 M:      David Howells <[email protected]>
4568 M:      David Woodhouse <[email protected]>
4569 L:      [email protected]
4570 S:      Maintained
4571 F:      Documentation/admin-guide/module-signing.rst
4572 F:      certs/
4573 F:      scripts/sign-file.c
4574
4575 CFAG12864B LCD DRIVER
4576 M:      Miguel Ojeda <[email protected]>
4577 S:      Maintained
4578 F:      drivers/auxdisplay/cfag12864b.c
4579 F:      include/linux/cfag12864b.h
4580
4581 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4582 M:      Miguel Ojeda <[email protected]>
4583 S:      Maintained
4584 F:      drivers/auxdisplay/cfag12864bfb.c
4585 F:      include/linux/cfag12864b.h
4586
4587 CHAR and MISC DRIVERS
4588 M:      Arnd Bergmann <[email protected]>
4589 M:      Greg Kroah-Hartman <[email protected]>
4590 S:      Supported
4591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4592 F:      drivers/char/
4593 F:      drivers/misc/
4594 F:      include/linux/miscdevice.h
4595 X:      drivers/char/agp/
4596 X:      drivers/char/hw_random/
4597 X:      drivers/char/ipmi/
4598 X:      drivers/char/random.c
4599 X:      drivers/char/tpm/
4600
4601 CHECKPATCH
4602 M:      Andy Whitcroft <[email protected]>
4603 M:      Joe Perches <[email protected]>
4604 R:      Dwaipayan Ray <[email protected]>
4605 R:      Lukas Bulwahn <[email protected]>
4606 S:      Maintained
4607 F:      scripts/checkpatch.pl
4608
4609 CHECKPATCH DOCUMENTATION
4610 M:      Dwaipayan Ray <[email protected]>
4611 M:      Lukas Bulwahn <[email protected]>
4612 R:      Joe Perches <[email protected]>
4613 S:      Maintained
4614 F:      Documentation/dev-tools/checkpatch.rst
4615
4616 CHINESE DOCUMENTATION
4617 M:      Alex Shi <[email protected]>
4618 S:      Maintained
4619 F:      Documentation/translations/zh_CN/
4620
4621 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4622 M:      Peter Chen <[email protected]>
4623 L:      [email protected]
4624 S:      Maintained
4625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4626 F:      drivers/usb/chipidea/
4627
4628 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4629 M:      Hans de Goede <[email protected]>
4630 L:      [email protected]
4631 S:      Maintained
4632 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4633 F:      drivers/input/touchscreen/chipone_icn8318.c
4634
4635 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4636 M:      Hans de Goede <[email protected]>
4637 L:      [email protected]
4638 S:      Maintained
4639 F:      drivers/input/touchscreen/chipone_icn8505.c
4640
4641 CHROME HARDWARE PLATFORM SUPPORT
4642 M:      Benson Leung <[email protected]>
4643 L:      [email protected]
4644 S:      Maintained
4645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4646 F:      drivers/platform/chrome/
4647
4648 CHROMEOS EC CODEC DRIVER
4649 M:      Cheng-Yi Chiang <[email protected]>
4650 M:      Tzung-Bi Shih <[email protected]>
4651 R:      Guenter Roeck <[email protected]>
4652 L:      [email protected]
4653 S:      Maintained
4654 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4655 F:      sound/soc/codecs/cros_ec_codec.*
4656
4657 CHROMEOS EC SUBDRIVERS
4658 M:      Benson Leung <[email protected]>
4659 R:      Guenter Roeck <[email protected]>
4660 L:      [email protected]
4661 S:      Maintained
4662 F:      drivers/power/supply/cros_usbpd-charger.c
4663 N:      cros_ec
4664 N:      cros-ec
4665
4666 CHROMEOS EC USB TYPE-C DRIVER
4667 M:      Prashant Malani <[email protected]>
4668 L:      [email protected]
4669 S:      Maintained
4670 F:      drivers/platform/chrome/cros_ec_typec.c
4671
4672 CHROMEOS EC USB PD NOTIFY DRIVER
4673 M:      Prashant Malani <[email protected]>
4674 L:      [email protected]
4675 S:      Maintained
4676 F:      drivers/platform/chrome/cros_usbpd_notify.c
4677 F:      include/linux/platform_data/cros_usbpd_notify.h
4678
4679 CHRONTEL CH7322 CEC DRIVER
4680 M:      Joe Tessler <[email protected]>
4681 L:      [email protected]
4682 S:      Maintained
4683 T:      git git://linuxtv.org/media_tree.git
4684 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4685 F:      drivers/media/cec/i2c/ch7322.c
4686
4687 CIRRUS LOGIC AUDIO CODEC DRIVERS
4688 M:      James Schulman <[email protected]>
4689 M:      David Rhodes <[email protected]>
4690 M:      Lucas Tanure <[email protected]>
4691 L:      [email protected] (moderated for non-subscribers)
4692 L:      [email protected]
4693 S:      Maintained
4694 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4695 F:      sound/pci/hda/cs*
4696 F:      sound/soc/codecs/cs*
4697
4698 CIRRUS LOGIC DSP FIRMWARE DRIVER
4699 M:      Simon Trimmer <[email protected]>
4700 M:      Charles Keepax <[email protected]>
4701 M:      Richard Fitzgerald <[email protected]>
4702 L:      [email protected]
4703 S:      Supported
4704 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4705 T:      git https://github.com/CirrusLogic/linux-drivers.git
4706 F:      drivers/firmware/cirrus/*
4707 F:      include/linux/firmware/cirrus/*
4708
4709 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4710 M:      Hartley Sweeten <[email protected]>
4711 L:      [email protected]
4712 S:      Maintained
4713 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4714
4715 CIRRUS LOGIC LOCHNAGAR DRIVER
4716 M:      Charles Keepax <[email protected]>
4717 M:      Richard Fitzgerald <[email protected]>
4718 L:      [email protected]
4719 S:      Supported
4720 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4721 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4722 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4723 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4724 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4725 F:      Documentation/hwmon/lochnagar.rst
4726 F:      drivers/clk/clk-lochnagar.c
4727 F:      drivers/hwmon/lochnagar-hwmon.c
4728 F:      drivers/mfd/lochnagar-i2c.c
4729 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4730 F:      drivers/regulator/lochnagar-regulator.c
4731 F:      include/dt-bindings/clk/lochnagar.h
4732 F:      include/dt-bindings/pinctrl/lochnagar.h
4733 F:      include/linux/mfd/lochnagar*
4734 F:      sound/soc/codecs/lochnagar-sc.c
4735
4736 CIRRUS LOGIC MADERA CODEC DRIVERS
4737 M:      Charles Keepax <[email protected]>
4738 M:      Richard Fitzgerald <[email protected]>
4739 L:      [email protected] (moderated for non-subscribers)
4740 L:      [email protected]
4741 S:      Supported
4742 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4743 T:      git https://github.com/CirrusLogic/linux-drivers.git
4744 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4745 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4746 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4747 F:      drivers/gpio/gpio-madera*
4748 F:      drivers/irqchip/irq-madera*
4749 F:      drivers/mfd/cs47l*
4750 F:      drivers/mfd/madera*
4751 F:      drivers/pinctrl/cirrus/*
4752 F:      include/dt-bindings/sound/madera*
4753 F:      include/linux/irqchip/irq-madera*
4754 F:      include/linux/mfd/madera/*
4755 F:      include/sound/madera*
4756 F:      sound/soc/codecs/cs47l*
4757 F:      sound/soc/codecs/madera*
4758
4759 CISCO FCOE HBA DRIVER
4760 M:      Satish Kharat <[email protected]>
4761 M:      Sesidhar Baddela <[email protected]>
4762 M:      Karan Tilak Kumar <[email protected]>
4763 L:      [email protected]
4764 S:      Supported
4765 F:      drivers/scsi/fnic/
4766
4767 CISCO SCSI HBA DRIVER
4768 M:      Karan Tilak Kumar <[email protected]>
4769 M:      Sesidhar Baddela <[email protected]>
4770 L:      [email protected]
4771 S:      Supported
4772 F:      drivers/scsi/snic/
4773
4774 CISCO VIC ETHERNET NIC DRIVER
4775 M:      Christian Benvenuti <[email protected]>
4776 M:      Govindarajulu Varadarajan <[email protected]>
4777 S:      Supported
4778 F:      drivers/net/ethernet/cisco/enic/
4779
4780 CISCO VIC LOW LATENCY NIC DRIVER
4781 M:      Christian Benvenuti <[email protected]>
4782 M:      Nelson Escobar <[email protected]>
4783 S:      Supported
4784 F:      drivers/infiniband/hw/usnic/
4785
4786 CLANG-FORMAT FILE
4787 M:      Miguel Ojeda <[email protected]>
4788 S:      Maintained
4789 F:      .clang-format
4790
4791 CLANG/LLVM BUILD SUPPORT
4792 M:      Nathan Chancellor <[email protected]>
4793 M:      Nick Desaulniers <[email protected]>
4794 L:      [email protected]
4795 S:      Supported
4796 W:      https://clangbuiltlinux.github.io/
4797 B:      https://github.com/ClangBuiltLinux/linux/issues
4798 C:      irc://irc.libera.chat/clangbuiltlinux
4799 F:      Documentation/kbuild/llvm.rst
4800 F:      include/linux/compiler-clang.h
4801 F:      scripts/Makefile.clang
4802 F:      scripts/clang-tools/
4803 K:      \b(?i:clang|llvm)\b
4804
4805 CLANG CONTROL FLOW INTEGRITY SUPPORT
4806 M:      Sami Tolvanen <[email protected]>
4807 M:      Kees Cook <[email protected]>
4808 R:      Nathan Chancellor <[email protected]>
4809 R:      Nick Desaulniers <[email protected]>
4810 L:      [email protected]
4811 S:      Supported
4812 B:      https://github.com/ClangBuiltLinux/linux/issues
4813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4814 F:      include/linux/cfi.h
4815 F:      kernel/cfi.c
4816
4817 CLK API
4818 M:      Russell King <[email protected]>
4819 L:      [email protected]
4820 S:      Maintained
4821 F:      include/linux/clk.h
4822
4823 CLOCKSOURCE, CLOCKEVENT DRIVERS
4824 M:      Daniel Lezcano <[email protected]>
4825 M:      Thomas Gleixner <[email protected]>
4826 L:      [email protected]
4827 S:      Supported
4828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4829 F:      Documentation/devicetree/bindings/timer/
4830 F:      drivers/clocksource/
4831
4832 CMPC ACPI DRIVER
4833 M:      Thadeu Lima de Souza Cascardo <[email protected]>
4834 M:      Daniel Oliveira Nascimento <[email protected]>
4835 L:      [email protected]
4836 S:      Supported
4837 F:      drivers/platform/x86/classmate-laptop.c
4838
4839 COBALT MEDIA DRIVER
4840 M:      Hans Verkuil <[email protected]>
4841 L:      [email protected]
4842 S:      Supported
4843 W:      https://linuxtv.org
4844 T:      git git://linuxtv.org/media_tree.git
4845 F:      drivers/media/pci/cobalt/
4846
4847 COCCINELLE/Semantic Patches (SmPL)
4848 M:      Julia Lawall <[email protected]>
4849 M:      Nicolas Palix <[email protected]>
4850 L:      [email protected] (moderated for non-subscribers)
4851 S:      Supported
4852 W:      https://coccinelle.gitlabpages.inria.fr/website/
4853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
4854 F:      Documentation/dev-tools/coccinelle.rst
4855 F:      scripts/coccicheck
4856 F:      scripts/coccinelle/
4857
4858 CODA FILE SYSTEM
4859 M:      Jan Harkes <[email protected]>
4860 M:      [email protected]
4861 L:      [email protected]
4862 S:      Maintained
4863 W:      http://www.coda.cs.cmu.edu/
4864 F:      Documentation/filesystems/coda.rst
4865 F:      fs/coda/
4866 F:      include/linux/coda*.h
4867 F:      include/uapi/linux/coda*.h
4868
4869 CODA V4L2 MEM2MEM DRIVER
4870 M:      Philipp Zabel <[email protected]>
4871 L:      [email protected]
4872 S:      Maintained
4873 F:      Documentation/devicetree/bindings/media/coda.yaml
4874 F:      drivers/media/platform/chips-media/
4875
4876 CODE OF CONDUCT
4877 M:      Greg Kroah-Hartman <[email protected]>
4878 S:      Supported
4879 F:      Documentation/process/code-of-conduct-interpretation.rst
4880 F:      Documentation/process/code-of-conduct.rst
4881
4882 COMEDI DRIVERS
4883 M:      Ian Abbott <[email protected]>
4884 M:      H Hartley Sweeten <[email protected]>
4885 S:      Odd Fixes
4886 F:      drivers/comedi/
4887 F:      include/linux/comedi/
4888 F:      include/uapi/linux/comedi.h
4889
4890 COMMON CLK FRAMEWORK
4891 M:      Michael Turquette <[email protected]>
4892 M:      Stephen Boyd <[email protected]>
4893 L:      [email protected]
4894 S:      Maintained
4895 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4897 F:      Documentation/devicetree/bindings/clock/
4898 F:      drivers/clk/
4899 F:      include/linux/clk-pr*
4900 F:      include/linux/clk/
4901 F:      include/linux/of_clk.h
4902 X:      drivers/clk/clkdev.c
4903
4904 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4905 M:      Steve French <[email protected]>
4906 L:      [email protected]
4907 L:      [email protected] (moderated for non-subscribers)
4908 S:      Supported
4909 W:      http://linux-cifs.samba.org/
4910 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4911 F:      Documentation/admin-guide/cifs/
4912 F:      fs/cifs/
4913 F:      fs/smbfs_common/
4914
4915 COMPACTPCI HOTPLUG CORE
4916 M:      Scott Murray <[email protected]>
4917 L:      [email protected]
4918 S:      Maintained
4919 F:      drivers/pci/hotplug/cpci_hotplug*
4920
4921 COMPACTPCI HOTPLUG GENERIC DRIVER
4922 M:      Scott Murray <[email protected]>
4923 L:      [email protected]
4924 S:      Maintained
4925 F:      drivers/pci/hotplug/cpcihp_generic.c
4926
4927 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4928 M:      Scott Murray <[email protected]>
4929 L:      [email protected]
4930 S:      Maintained
4931 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4932
4933 COMPAL LAPTOP SUPPORT
4934 M:      Cezary Jackiewicz <[email protected]>
4935 L:      [email protected]
4936 S:      Maintained
4937 F:      drivers/platform/x86/compal-laptop.c
4938
4939 COMPILER ATTRIBUTES
4940 M:      Miguel Ojeda <[email protected]>
4941 R:      Nick Desaulniers <[email protected]>
4942 S:      Maintained
4943 F:      include/linux/compiler_attributes.h
4944
4945 COMPUTE EXPRESS LINK (CXL)
4946 M:      Alison Schofield <[email protected]>
4947 M:      Vishal Verma <[email protected]>
4948 M:      Ira Weiny <[email protected]>
4949 M:      Ben Widawsky <[email protected]>
4950 M:      Dan Williams <[email protected]>
4951 L:      [email protected]
4952 S:      Maintained
4953 F:      drivers/cxl/
4954 F:      include/uapi/linux/cxl_mem.h
4955
4956 CONEXANT ACCESSRUNNER USB DRIVER
4957 L:      [email protected]
4958 S:      Orphan
4959 W:      http://accessrunner.sourceforge.net/
4960 F:      drivers/usb/atm/cxacru.c
4961
4962 CONFIGFS
4963 M:      Joel Becker <[email protected]>
4964 M:      Christoph Hellwig <[email protected]>
4965 S:      Supported
4966 T:      git git://git.infradead.org/users/hch/configfs.git
4967 F:      fs/configfs/
4968 F:      include/linux/configfs.h
4969 F:      samples/configfs/
4970
4971 CONSOLE SUBSYSTEM
4972 M:      Greg Kroah-Hartman <[email protected]>
4973 S:      Supported
4974 F:      drivers/video/console/
4975 F:      include/linux/console*
4976
4977 CONTEXT TRACKING
4978 M:      Frederic Weisbecker <[email protected]>
4979 S:      Maintained
4980 F:      kernel/context_tracking.c
4981 F:      include/linux/context_tracking*
4982
4983 CONTROL GROUP (CGROUP)
4984 M:      Tejun Heo <[email protected]>
4985 M:      Zefan Li <[email protected]>
4986 M:      Johannes Weiner <[email protected]>
4987 L:      [email protected]
4988 S:      Maintained
4989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4990 F:      Documentation/admin-guide/cgroup-v1/
4991 F:      Documentation/admin-guide/cgroup-v2.rst
4992 F:      include/linux/cgroup*
4993 F:      kernel/cgroup/
4994
4995 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4996 M:      Tejun Heo <[email protected]>
4997 M:      Jens Axboe <[email protected]>
4998 L:      [email protected]
4999 L:      [email protected]
5000 T:      git git://git.kernel.dk/linux-block
5001 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5002 F:      block/bfq-cgroup.c
5003 F:      block/blk-cgroup.c
5004 F:      block/blk-iolatency.c
5005 F:      block/blk-throttle.c
5006 F:      include/linux/blk-cgroup.h
5007
5008 CONTROL GROUP - CPUSET
5009 M:      Zefan Li <[email protected]>
5010 L:      [email protected]
5011 S:      Maintained
5012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5013 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5014 F:      include/linux/cpuset.h
5015 F:      kernel/cgroup/cpuset.c
5016
5017 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5018 M:      Johannes Weiner <[email protected]>
5019 M:      Michal Hocko <[email protected]>
5020 M:      Roman Gushchin <[email protected]>
5021 M:      Shakeel Butt <[email protected]>
5022 L:      [email protected]
5023 L:      [email protected]
5024 S:      Maintained
5025 F:      mm/memcontrol.c
5026 F:      mm/swap_cgroup.c
5027
5028 CORETEMP HARDWARE MONITORING DRIVER
5029 M:      Fenghua Yu <[email protected]>
5030 L:      [email protected]
5031 S:      Maintained
5032 F:      Documentation/hwmon/coretemp.rst
5033 F:      drivers/hwmon/coretemp.c
5034
5035 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5036 M:      Marius Zachmann <[email protected]>
5037 L:      [email protected]
5038 S:      Maintained
5039 F:      drivers/hwmon/corsair-cpro.c
5040
5041 CORSAIR-PSU HARDWARE MONITOR DRIVER
5042 M:      Wilken Gottwalt <[email protected]>
5043 L:      [email protected]
5044 S:      Maintained
5045 F:      Documentation/hwmon/corsair-psu.rst
5046 F:      drivers/hwmon/corsair-psu.c
5047
5048 COSA/SRP SYNC SERIAL DRIVER
5049 M:      Jan "Yenya" Kasprzak <[email protected]>
5050 S:      Maintained
5051 W:      http://www.fi.muni.cz/~kas/cosa/
5052 F:      drivers/net/wan/cosa*
5053
5054 COUNTER SUBSYSTEM
5055 M:      William Breathitt Gray <[email protected]>
5056 L:      [email protected]
5057 S:      Maintained
5058 T:      git [email protected]:vilhelmgray/counter.git
5059 F:      Documentation/ABI/testing/sysfs-bus-counter
5060 F:      Documentation/driver-api/generic-counter.rst
5061 F:      drivers/counter/
5062 F:      include/linux/counter.h
5063 F:      include/uapi/linux/counter.h
5064 F:      tools/counter/
5065
5066 CP2615 I2C DRIVER
5067 M:      Bence Csókás <[email protected]>
5068 S:      Maintained
5069 F:      drivers/i2c/busses/i2c-cp2615.c
5070
5071 CPMAC ETHERNET DRIVER
5072 M:      Florian Fainelli <[email protected]>
5073 L:      [email protected]
5074 S:      Maintained
5075 F:      drivers/net/ethernet/ti/cpmac.c
5076
5077 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5078 M:      Viresh Kumar <[email protected]>
5079 M:      Sudeep Holla <[email protected]>
5080 L:      [email protected]
5081 S:      Maintained
5082 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5083 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5084
5085 CPU FREQUENCY SCALING FRAMEWORK
5086 M:      "Rafael J. Wysocki" <[email protected]>
5087 M:      Viresh Kumar <[email protected]>
5088 L:      [email protected]
5089 S:      Maintained
5090 B:      https://bugzilla.kernel.org
5091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5093 F:      Documentation/admin-guide/pm/cpufreq.rst
5094 F:      Documentation/admin-guide/pm/intel_pstate.rst
5095 F:      Documentation/cpu-freq/
5096 F:      Documentation/devicetree/bindings/cpufreq/
5097 F:      drivers/cpufreq/
5098 F:      include/linux/cpufreq.h
5099 F:      include/linux/sched/cpufreq.h
5100 F:      kernel/sched/cpufreq*.c
5101 F:      tools/testing/selftests/cpufreq/
5102
5103 CPU IDLE TIME MANAGEMENT FRAMEWORK
5104 M:      "Rafael J. Wysocki" <[email protected]>
5105 M:      Daniel Lezcano <[email protected]>
5106 L:      [email protected]
5107 S:      Maintained
5108 B:      https://bugzilla.kernel.org
5109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5110 F:      Documentation/admin-guide/pm/cpuidle.rst
5111 F:      Documentation/driver-api/pm/cpuidle.rst
5112 F:      drivers/cpuidle/
5113 F:      include/linux/cpuidle.h
5114
5115 CPU POWER MONITORING SUBSYSTEM
5116 M:      Thomas Renninger <[email protected]>
5117 M:      Shuah Khan <[email protected]>
5118 M:      Shuah Khan <[email protected]>
5119 L:      [email protected]
5120 S:      Maintained
5121 F:      tools/power/cpupower/
5122
5123 CPUID/MSR DRIVER
5124 M:      "H. Peter Anvin" <[email protected]>
5125 S:      Maintained
5126 F:      arch/x86/kernel/cpuid.c
5127 F:      arch/x86/kernel/msr.c
5128
5129 CPUIDLE DRIVER - ARM BIG LITTLE
5130 M:      Lorenzo Pieralisi <[email protected]>
5131 M:      Daniel Lezcano <[email protected]>
5132 L:      [email protected]
5133 L:      [email protected] (moderated for non-subscribers)
5134 S:      Maintained
5135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5136 F:      drivers/cpuidle/cpuidle-big_little.c
5137
5138 CPUIDLE DRIVER - ARM EXYNOS
5139 M:      Bartlomiej Zolnierkiewicz <[email protected]>
5140 M:      Daniel Lezcano <[email protected]>
5141 M:      Kukjin Kim <[email protected]>
5142 L:      [email protected]
5143 L:      [email protected]
5144 S:      Supported
5145 F:      arch/arm/mach-exynos/pm.c
5146 F:      drivers/cpuidle/cpuidle-exynos.c
5147 F:      include/linux/platform_data/cpuidle-exynos.h
5148
5149 CPUIDLE DRIVER - ARM PSCI
5150 M:      Lorenzo Pieralisi <[email protected]>
5151 M:      Sudeep Holla <[email protected]>
5152 L:      [email protected]
5153 L:      [email protected] (moderated for non-subscribers)
5154 S:      Supported
5155 F:      drivers/cpuidle/cpuidle-psci.c
5156
5157 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5158 M:      Ulf Hansson <[email protected]>
5159 L:      [email protected]
5160 L:      [email protected] (moderated for non-subscribers)
5161 S:      Supported
5162 F:      drivers/cpuidle/cpuidle-psci.h
5163 F:      drivers/cpuidle/cpuidle-psci-domain.c
5164
5165 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5166 M:      Ulf Hansson <[email protected]>
5167 L:      [email protected]
5168 S:      Supported
5169 F:      drivers/cpuidle/dt_idle_genpd.c
5170 F:      drivers/cpuidle/dt_idle_genpd.h
5171
5172 CPUIDLE DRIVER - RISC-V SBI
5173 M:      Anup Patel <[email protected]>
5174 L:      [email protected]
5175 L:      [email protected]
5176 S:      Maintained
5177 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5178
5179 CRAMFS FILESYSTEM
5180 M:      Nicolas Pitre <[email protected]>
5181 S:      Maintained
5182 F:      Documentation/filesystems/cramfs.rst
5183 F:      fs/cramfs/
5184
5185 CREATIVE SB0540
5186 M:      Bastien Nocera <[email protected]>
5187 L:      [email protected]
5188 S:      Maintained
5189 F:      drivers/hid/hid-creative-sb0540.c
5190
5191 CRYPTO API
5192 M:      Herbert Xu <[email protected]>
5193 M:      "David S. Miller" <[email protected]>
5194 L:      [email protected]
5195 S:      Maintained
5196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5198 F:      Documentation/crypto/
5199 F:      Documentation/devicetree/bindings/crypto/
5200 F:      arch/*/crypto/
5201 F:      crypto/
5202 F:      drivers/crypto/
5203 F:      include/crypto/
5204 F:      include/linux/crypto*
5205 F:      lib/crypto/
5206
5207 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5208 M:      Neil Horman <[email protected]>
5209 L:      [email protected]
5210 S:      Maintained
5211 F:      crypto/ansi_cprng.c
5212 F:      crypto/rng.c
5213
5214 CS3308 MEDIA DRIVER
5215 M:      Hans Verkuil <[email protected]>
5216 L:      [email protected]
5217 S:      Odd Fixes
5218 W:      http://linuxtv.org
5219 T:      git git://linuxtv.org/media_tree.git
5220 F:      drivers/media/i2c/cs3308.c
5221
5222 CS5535 Audio ALSA driver
5223 M:      Jaya Kumar <[email protected]>
5224 S:      Maintained
5225 F:      sound/pci/cs5535audio/
5226
5227 CSI DRIVERS FOR ALLWINNER V3s
5228 M:      Yong Deng <[email protected]>
5229 L:      [email protected]
5230 S:      Maintained
5231 T:      git git://linuxtv.org/media_tree.git
5232 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5233 F:      drivers/media/platform/sunxi/sun6i-csi/
5234
5235 CW1200 WLAN driver
5236 M:      Solomon Peachy <[email protected]>
5237 S:      Maintained
5238 F:      drivers/net/wireless/st/cw1200/
5239
5240 CX18 VIDEO4LINUX DRIVER
5241 M:      Andy Walls <[email protected]>
5242 L:      [email protected]
5243 S:      Maintained
5244 W:      https://linuxtv.org
5245 T:      git git://linuxtv.org/media_tree.git
5246 F:      drivers/media/pci/cx18/
5247 F:      include/uapi/linux/ivtv*
5248
5249 CX2341X MPEG ENCODER HELPER MODULE
5250 M:      Hans Verkuil <[email protected]>
5251 L:      [email protected]
5252 S:      Maintained
5253 W:      https://linuxtv.org
5254 T:      git git://linuxtv.org/media_tree.git
5255 F:      drivers/media/common/cx2341x*
5256 F:      include/media/drv-intf/cx2341x.h
5257
5258 CX24120 MEDIA DRIVER
5259 M:      Jemma Denson <[email protected]>
5260 M:      Patrick Boettcher <[email protected]>
5261 L:      [email protected]
5262 S:      Maintained
5263 W:      https://linuxtv.org
5264 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5265 F:      drivers/media/dvb-frontends/cx24120*
5266
5267 CX88 VIDEO4LINUX DRIVER
5268 M:      Mauro Carvalho Chehab <[email protected]>
5269 L:      [email protected]
5270 S:      Odd fixes
5271 W:      https://linuxtv.org
5272 T:      git git://linuxtv.org/media_tree.git
5273 F:      Documentation/driver-api/media/drivers/cx88*
5274 F:      drivers/media/pci/cx88/
5275
5276 CXD2820R MEDIA DRIVER
5277 M:      Antti Palosaari <[email protected]>
5278 L:      [email protected]
5279 S:      Maintained
5280 W:      https://linuxtv.org
5281 W:      http://palosaari.fi/linux/
5282 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5283 T:      git git://linuxtv.org/anttip/media_tree.git
5284 F:      drivers/media/dvb-frontends/cxd2820r*
5285
5286 CXGB3 ETHERNET DRIVER (CXGB3)
5287 M:      Raju Rangoju <[email protected]>
5288 L:      [email protected]
5289 S:      Supported
5290 W:      http://www.chelsio.com
5291 F:      drivers/net/ethernet/chelsio/cxgb3/
5292
5293 CXGB3 ISCSI DRIVER (CXGB3I)
5294 M:      Karen Xie <[email protected]>
5295 L:      [email protected]
5296 S:      Supported
5297 W:      http://www.chelsio.com
5298 F:      drivers/scsi/cxgbi/cxgb3i
5299
5300 CXGB4 CRYPTO DRIVER (chcr)
5301 M:      Ayush Sawal <[email protected]>
5302 M:      Vinay Kumar Yadav <[email protected]>
5303 M:      Rohit Maheshwari <[email protected]>
5304 L:      [email protected]
5305 S:      Supported
5306 W:      http://www.chelsio.com
5307 F:      drivers/crypto/chelsio
5308
5309 CXGB4 INLINE CRYPTO DRIVER
5310 M:      Ayush Sawal <[email protected]>
5311 M:      Vinay Kumar Yadav <[email protected]>
5312 M:      Rohit Maheshwari <[email protected]>
5313 L:      [email protected]
5314 S:      Supported
5315 W:      http://www.chelsio.com
5316 F:      drivers/net/ethernet/chelsio/inline_crypto/
5317
5318 CXGB4 ETHERNET DRIVER (CXGB4)
5319 M:      Raju Rangoju <[email protected]>
5320 L:      [email protected]
5321 S:      Supported
5322 W:      http://www.chelsio.com
5323 F:      drivers/net/ethernet/chelsio/cxgb4/
5324
5325 CXGB4 ISCSI DRIVER (CXGB4I)
5326 M:      Karen Xie <[email protected]>
5327 L:      [email protected]
5328 S:      Supported
5329 W:      http://www.chelsio.com
5330 F:      drivers/scsi/cxgbi/cxgb4i
5331
5332 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5333 M:      Potnuri Bharat Teja <[email protected]>
5334 L:      [email protected]
5335 S:      Supported
5336 W:      http://www.openfabrics.org
5337 F:      drivers/infiniband/hw/cxgb4/
5338 F:      include/uapi/rdma/cxgb4-abi.h
5339
5340 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5341 M:      Raju Rangoju <[email protected]>
5342 L:      [email protected]
5343 S:      Supported
5344 W:      http://www.chelsio.com
5345 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5346
5347 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5348 M:      Frederic Barrat <[email protected]>
5349 M:      Andrew Donnellan <[email protected]>
5350 L:      [email protected]
5351 S:      Supported
5352 F:      Documentation/ABI/testing/sysfs-class-cxl
5353 F:      Documentation/powerpc/cxl.rst
5354 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5355 F:      drivers/misc/cxl/
5356 F:      include/misc/cxl*
5357 F:      include/uapi/misc/cxl.h
5358
5359 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5360 M:      Manoj N. Kumar <[email protected]>
5361 M:      Matthew R. Ochs <[email protected]>
5362 M:      Uma Krishnan <[email protected]>
5363 L:      [email protected]
5364 S:      Supported
5365 F:      Documentation/powerpc/cxlflash.rst
5366 F:      drivers/scsi/cxlflash/
5367 F:      include/uapi/scsi/cxlflash_ioctl.h
5368
5369 CYBERPRO FB DRIVER
5370 M:      Russell King <[email protected]>
5371 L:      [email protected] (moderated for non-subscribers)
5372 S:      Maintained
5373 W:      http://www.armlinux.org.uk/
5374 F:      drivers/video/fbdev/cyber2000fb.*
5375
5376 CYCLADES PC300 DRIVER
5377 S:      Orphan
5378 F:      drivers/net/wan/pc300*
5379
5380 CYPRESS_FIRMWARE MEDIA DRIVER
5381 M:      Antti Palosaari <[email protected]>
5382 L:      [email protected]
5383 S:      Maintained
5384 W:      https://linuxtv.org
5385 W:      http://palosaari.fi/linux/
5386 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5387 T:      git git://linuxtv.org/anttip/media_tree.git
5388 F:      drivers/media/common/cypress_firmware*
5389
5390 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5391 M:      Linus Walleij <[email protected]>
5392 L:      [email protected]
5393 S:      Maintained
5394 F:      drivers/input/touchscreen/cy8ctma140.c
5395
5396 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5397 M:      Yassine Oudjana <[email protected]>
5398 L:      [email protected]
5399 S:      Maintained
5400 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5401 F:      drivers/input/keyboard/cypress-sf.c
5402
5403 CYTTSP TOUCHSCREEN DRIVER
5404 M:      Linus Walleij <[email protected]>
5405 L:      [email protected]
5406 S:      Maintained
5407 F:      drivers/input/touchscreen/cyttsp*
5408
5409 D-LINK DIR-685 TOUCHKEYS DRIVER
5410 M:      Linus Walleij <[email protected]>
5411 L:      [email protected]
5412 S:      Supported
5413 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5414
5415 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5416 M:      Joshua Kinard <[email protected]>
5417 S:      Maintained
5418 F:      drivers/rtc/rtc-ds1685.c
5419 F:      include/linux/rtc/ds1685.h
5420
5421 DAMA SLAVE for AX.25
5422 M:      Joerg Reuter <[email protected]>
5423 L:      [email protected]
5424 S:      Maintained
5425 W:      http://yaina.de/jreuter/
5426 W:      http://www.qsl.net/dl1bke/
5427 F:      net/ax25/af_ax25.c
5428 F:      net/ax25/ax25_dev.c
5429 F:      net/ax25/ax25_ds_*
5430 F:      net/ax25/ax25_in.c
5431 F:      net/ax25/ax25_out.c
5432 F:      net/ax25/ax25_timer.c
5433 F:      net/ax25/sysctl_net_ax25.c
5434
5435 DATA ACCESS MONITOR
5436 M:      SeongJae Park <[email protected]>
5437 L:      [email protected]
5438 S:      Maintained
5439 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5440 F:      Documentation/admin-guide/mm/damon/
5441 F:      Documentation/vm/damon/
5442 F:      include/linux/damon.h
5443 F:      include/trace/events/damon.h
5444 F:      mm/damon/
5445 F:      tools/testing/selftests/damon/
5446
5447 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5448 L:      [email protected]
5449 S:      Orphan
5450 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5451 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5452
5453 DC390/AM53C974 SCSI driver
5454 M:      Hannes Reinecke <[email protected]>
5455 L:      [email protected]
5456 S:      Maintained
5457 F:      drivers/scsi/am53c974.c
5458
5459 DC395x SCSI driver
5460 M:      Oliver Neukum <[email protected]>
5461 M:      Ali Akcaagac <[email protected]>
5462 M:      Jamie Lenehan <[email protected]>
5463 L:      [email protected]
5464 S:      Maintained
5465 W:      http://twibble.org/dist/dc395x/
5466 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5467 F:      Documentation/scsi/dc395x.rst
5468 F:      drivers/scsi/dc395x.*
5469
5470 DCCP PROTOCOL
5471 L:      [email protected]
5472 S:      Orphan
5473 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5474 F:      include/linux/dccp.h
5475 F:      include/linux/tfrc.h
5476 F:      include/uapi/linux/dccp.h
5477 F:      net/dccp/
5478
5479 DECnet NETWORK LAYER
5480 L:      [email protected]
5481 S:      Orphan
5482 W:      http://linux-decnet.sourceforge.net
5483 F:      Documentation/networking/decnet.rst
5484 F:      net/decnet/
5485
5486 DECSTATION PLATFORM SUPPORT
5487 M:      "Maciej W. Rozycki" <[email protected]>
5488 L:      [email protected]
5489 S:      Maintained
5490 W:      http://www.linux-mips.org/wiki/DECstation
5491 F:      arch/mips/dec/
5492 F:      arch/mips/include/asm/dec/
5493 F:      arch/mips/include/asm/mach-dec/
5494
5495 DEFXX FDDI NETWORK DRIVER
5496 M:      "Maciej W. Rozycki" <[email protected]>
5497 S:      Maintained
5498 F:      drivers/net/fddi/defxx.*
5499
5500 DEFZA FDDI NETWORK DRIVER
5501 M:      "Maciej W. Rozycki" <[email protected]>
5502 S:      Maintained
5503 F:      drivers/net/fddi/defza.*
5504
5505 DEINTERLACE DRIVERS FOR ALLWINNER H3
5506 M:      Jernej Skrabec <[email protected]>
5507 L:      [email protected]
5508 S:      Maintained
5509 T:      git git://linuxtv.org/media_tree.git
5510 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5511 F:      drivers/media/platform/sunxi/sun8i-di/
5512
5513 DELL LAPTOP DRIVER
5514 M:      Matthew Garrett <[email protected]>
5515 M:      Pali Rohár <[email protected]>
5516 L:      [email protected]
5517 S:      Maintained
5518 F:      drivers/platform/x86/dell/dell-laptop.c
5519
5520 DELL LAPTOP FREEFALL DRIVER
5521 M:      Pali Rohár <[email protected]>
5522 S:      Maintained
5523 F:      drivers/platform/x86/dell/dell-smo8800.c
5524
5525 DELL LAPTOP RBTN DRIVER
5526 M:      Pali Rohár <[email protected]>
5527 S:      Maintained
5528 F:      drivers/platform/x86/dell/dell-rbtn.*
5529
5530 DELL LAPTOP SMM DRIVER
5531 M:      Pali Rohár <[email protected]>
5532 S:      Maintained
5533 F:      Documentation/ABI/obsolete/procfs-i8k
5534 F:      drivers/hwmon/dell-smm-hwmon.c
5535 F:      include/uapi/linux/i8k.h
5536
5537 DELL REMOTE BIOS UPDATE DRIVER
5538 M:      Stuart Hayes <[email protected]>
5539 L:      [email protected]
5540 S:      Maintained
5541 F:      drivers/platform/x86/dell/dell_rbu.c
5542
5543 DELL SMBIOS DRIVER
5544 M:      Pali Rohár <[email protected]>
5545 L:      [email protected]
5546 L:      [email protected]
5547 S:      Maintained
5548 F:      drivers/platform/x86/dell/dell-smbios.*
5549
5550 DELL SMBIOS SMM DRIVER
5551 L:      [email protected]
5552 L:      [email protected]
5553 S:      Maintained
5554 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5555
5556 DELL SMBIOS WMI DRIVER
5557 L:      [email protected]
5558 L:      [email protected]
5559 S:      Maintained
5560 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5561 F:      tools/wmi/dell-smbios-example.c
5562
5563 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5564 M:      Stuart Hayes <[email protected]>
5565 L:      [email protected]
5566 S:      Maintained
5567 F:      Documentation/driver-api/dcdbas.rst
5568 F:      drivers/platform/x86/dell/dcdbas.*
5569
5570 DELL WMI DESCRIPTOR DRIVER
5571 L:      [email protected]
5572 S:      Maintained
5573 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5574
5575 DELL WMI SYSMAN DRIVER
5576 M:      Divya Bharathi <[email protected]>
5577 M:      Prasanth Ksr <[email protected]>
5578 L:      [email protected]
5579 L:      [email protected]
5580 S:      Maintained
5581 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5582 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5583
5584 DELL WMI NOTIFICATIONS DRIVER
5585 M:      Matthew Garrett <[email protected]>
5586 M:      Pali Rohár <[email protected]>
5587 S:      Maintained
5588 F:      drivers/platform/x86/dell/dell-wmi-base.c
5589
5590 DELL WMI HARDWARE PRIVACY SUPPORT
5591 M:      Perry Yuan <[email protected]>
5592 L:      [email protected]
5593 L:      [email protected]
5594 S:      Maintained
5595 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5596
5597 DELTA ST MEDIA DRIVER
5598 M:      Hugues Fruchet <[email protected]>
5599 L:      [email protected]
5600 S:      Supported
5601 W:      https://linuxtv.org
5602 T:      git git://linuxtv.org/media_tree.git
5603 F:      drivers/media/platform/st/sti/delta
5604
5605 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5606 M:      Zev Weiss <[email protected]>
5607 L:      [email protected]
5608 S:      Maintained
5609 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5610
5611 DELTA DPS920AB PSU DRIVER
5612 M:      Robert Marko <[email protected]>
5613 L:      [email protected]
5614 S:      Maintained
5615 F:      Documentation/hwmon/dps920ab.rst
5616 F:      drivers/hwmon/pmbus/dps920ab.c
5617
5618 DELTA NETWORKS TN48M CPLD DRIVERS
5619 M:      Robert Marko <[email protected]>
5620 S:      Maintained
5621 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5622 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5623 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5624 F:      drivers/gpio/gpio-tn48m.c
5625 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5626
5627 DENALI NAND DRIVER
5628 L:      [email protected]
5629 S:      Orphan
5630 F:      drivers/mtd/nand/raw/denali*
5631
5632 DESIGNWARE EDMA CORE IP DRIVER
5633 M:      Gustavo Pimentel <[email protected]>
5634 L:      [email protected]
5635 S:      Maintained
5636 F:      drivers/dma/dw-edma/
5637 F:      include/linux/dma/edma.h
5638
5639 DESIGNWARE XDATA IP DRIVER
5640 M:      Gustavo Pimentel <[email protected]>
5641 L:      [email protected]
5642 S:      Maintained
5643 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5644 F:      drivers/misc/dw-xdata-pcie.c
5645
5646 DESIGNWARE USB2 DRD IP DRIVER
5647 M:      Minas Harutyunyan <[email protected]>
5648 L:      [email protected]
5649 S:      Maintained
5650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5651 F:      drivers/usb/dwc2/
5652
5653 DESIGNWARE USB3 DRD IP DRIVER
5654 M:      Felipe Balbi <[email protected]>
5655 L:      [email protected]
5656 S:      Maintained
5657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5658 F:      drivers/usb/dwc3/
5659
5660 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5661 M:      Andreas Klinger <[email protected]>
5662 L:      [email protected]
5663 S:      Maintained
5664 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5665 F:      drivers/iio/proximity/srf*.c
5666
5667 DEVICE COREDUMP (DEV_COREDUMP)
5668 M:      Johannes Berg <[email protected]>
5669 L:      [email protected]
5670 S:      Maintained
5671 F:      drivers/base/devcoredump.c
5672 F:      include/linux/devcoredump.h
5673
5674 DEVICE DEPENDENCY HELPER SCRIPT
5675 M:      Saravana Kannan <[email protected]>
5676 L:      [email protected]
5677 S:      Maintained
5678 F:      scripts/dev-needs.sh
5679
5680 DEVICE DIRECT ACCESS (DAX)
5681 M:      Dan Williams <[email protected]>
5682 M:      Vishal Verma <[email protected]>
5683 M:      Dave Jiang <[email protected]>
5684 L:      [email protected]
5685 S:      Supported
5686 F:      drivers/dax/
5687
5688 DEVICE FREQUENCY (DEVFREQ)
5689 M:      MyungJoo Ham <[email protected]>
5690 M:      Kyungmin Park <[email protected]>
5691 M:      Chanwoo Choi <[email protected]>
5692 L:      [email protected]
5693 S:      Maintained
5694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5695 F:      Documentation/devicetree/bindings/devfreq/
5696 F:      drivers/devfreq/
5697 F:      include/linux/devfreq.h
5698 F:      include/trace/events/devfreq.h
5699
5700 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5701 M:      Chanwoo Choi <[email protected]>
5702 L:      [email protected]
5703 S:      Supported
5704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5705 F:      Documentation/devicetree/bindings/devfreq/event/
5706 F:      drivers/devfreq/devfreq-event.c
5707 F:      drivers/devfreq/event/
5708 F:      include/dt-bindings/pmu/exynos_ppmu.h
5709 F:      include/linux/devfreq-event.h
5710
5711 DEVICE NUMBER REGISTRY
5712 M:      Torben Mathiasen <[email protected]>
5713 S:      Maintained
5714 W:      http://lanana.org/docs/device-list/index.html
5715
5716 DEVICE RESOURCE MANAGEMENT HELPERS
5717 M:      Hans de Goede <[email protected]>
5718 R:      Matti Vaittinen <[email protected]>
5719 S:      Maintained
5720 F:      include/linux/devm-helpers.h
5721
5722 DEVICE-MAPPER  (LVM)
5723 M:      Alasdair Kergon <[email protected]>
5724 M:      Mike Snitzer <[email protected]>
5725 M:      [email protected]
5726 L:      [email protected]
5727 S:      Maintained
5728 W:      http://sources.redhat.com/dm
5729 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5731 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5732 F:      Documentation/admin-guide/device-mapper/
5733 F:      drivers/md/Kconfig
5734 F:      drivers/md/Makefile
5735 F:      drivers/md/dm*
5736 F:      drivers/md/persistent-data/
5737 F:      include/linux/device-mapper.h
5738 F:      include/linux/dm-*.h
5739 F:      include/uapi/linux/dm-*.h
5740
5741 DEVLINK
5742 M:      Jiri Pirko <[email protected]>
5743 L:      [email protected]
5744 S:      Supported
5745 F:      Documentation/networking/devlink
5746 F:      include/net/devlink.h
5747 F:      include/uapi/linux/devlink.h
5748 F:      net/core/devlink.c
5749
5750 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5751 M:      Christoph Niedermaier <[email protected]>
5752 L:      [email protected]
5753 S:      Maintained
5754 F:      arch/arm/boot/dts/imx6*-dhcom-*
5755
5756 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5757 M:      Marek Vasut <[email protected]>
5758 L:      [email protected]
5759 S:      Maintained
5760 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5761 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5762
5763 DIALOG SEMICONDUCTOR DRIVERS
5764 M:      Support Opensource <[email protected]>
5765 S:      Supported
5766 W:      http://www.dialog-semiconductor.com/products
5767 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5768 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5769 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5770 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5771 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5772 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5773 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5774 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5775 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5776 F:      Documentation/hwmon/da90??.rst
5777 F:      drivers/gpio/gpio-da90??.c
5778 F:      drivers/hwmon/da90??-hwmon.c
5779 F:      drivers/iio/adc/da91??-*.c
5780 F:      drivers/input/misc/da72??.[ch]
5781 F:      drivers/input/misc/da90??_onkey.c
5782 F:      drivers/input/touchscreen/da9052_tsi.c
5783 F:      drivers/leds/leds-da90??.c
5784 F:      drivers/mfd/da903x.c
5785 F:      drivers/mfd/da90??-*.c
5786 F:      drivers/mfd/da91??-*.c
5787 F:      drivers/pinctrl/pinctrl-da90??.c
5788 F:      drivers/power/supply/da9052-battery.c
5789 F:      drivers/power/supply/da91??-*.c
5790 F:      drivers/regulator/da9???-regulator.[ch]
5791 F:      drivers/regulator/slg51000-regulator.[ch]
5792 F:      drivers/rtc/rtc-da90??.c
5793 F:      drivers/thermal/da90??-thermal.c
5794 F:      drivers/video/backlight/da90??_bl.c
5795 F:      drivers/watchdog/da90??_wdt.c
5796 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5797 F:      include/linux/mfd/da903x.h
5798 F:      include/linux/mfd/da9052/
5799 F:      include/linux/mfd/da9055/
5800 F:      include/linux/mfd/da9062/
5801 F:      include/linux/mfd/da9063/
5802 F:      include/linux/mfd/da9150/
5803 F:      include/linux/regulator/da9211.h
5804 F:      include/sound/da[79]*.h
5805 F:      sound/soc/codecs/da[79]*.[ch]
5806
5807 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5808 M:      William Breathitt Gray <[email protected]>
5809 L:      [email protected]
5810 S:      Maintained
5811 F:      drivers/gpio/gpio-gpio-mm.c
5812
5813 DIOLAN U2C-12 I2C DRIVER
5814 M:      Guenter Roeck <[email protected]>
5815 L:      [email protected]
5816 S:      Maintained
5817 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5818
5819 DIRECTORY NOTIFICATION (DNOTIFY)
5820 M:      Jan Kara <[email protected]>
5821 R:      Amir Goldstein <[email protected]>
5822 L:      [email protected]
5823 S:      Maintained
5824 F:      Documentation/filesystems/dnotify.rst
5825 F:      fs/notify/dnotify/
5826 F:      include/linux/dnotify.h
5827
5828 DISK GEOMETRY AND PARTITION HANDLING
5829 M:      Andries Brouwer <[email protected]>
5830 S:      Maintained
5831 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5832 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5833 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5834
5835 DISKQUOTA
5836 M:      Jan Kara <[email protected]>
5837 S:      Maintained
5838 F:      Documentation/filesystems/quota.rst
5839 F:      fs/quota/
5840 F:      include/linux/quota*.h
5841 F:      include/uapi/linux/quota*.h
5842
5843 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5844 M:      Bernie Thompson <[email protected]>
5845 L:      [email protected]
5846 S:      Maintained
5847 W:      http://plugable.com/category/projects/udlfb/
5848 F:      Documentation/fb/udlfb.rst
5849 F:      drivers/video/fbdev/udlfb.c
5850 F:      include/video/udlfb.h
5851
5852 DISTRIBUTED LOCK MANAGER (DLM)
5853 M:      Christine Caulfield <[email protected]>
5854 M:      David Teigland <[email protected]>
5855 L:      [email protected]
5856 S:      Supported
5857 W:      http://sources.redhat.com/cluster/
5858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5859 F:      fs/dlm/
5860
5861 DMA BUFFER SHARING FRAMEWORK
5862 M:      Sumit Semwal <[email protected]>
5863 M:      Christian König <[email protected]>
5864 L:      [email protected]
5865 L:      [email protected]
5866 L:      [email protected] (moderated for non-subscribers)
5867 S:      Maintained
5868 T:      git git://anongit.freedesktop.org/drm/drm-misc
5869 F:      Documentation/driver-api/dma-buf.rst
5870 F:      drivers/dma-buf/
5871 F:      include/linux/*fence.h
5872 F:      include/linux/dma-buf.h
5873 F:      include/linux/dma-resv.h
5874 K:      \bdma_(?:buf|fence|resv)\b
5875
5876 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5877 M:      Vinod Koul <[email protected]>
5878 L:      [email protected]
5879 S:      Maintained
5880 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5882 F:      Documentation/devicetree/bindings/dma/
5883 F:      Documentation/driver-api/dmaengine/
5884 F:      drivers/dma/
5885 F:      include/linux/dma/
5886 F:      include/linux/dmaengine.h
5887 F:      include/linux/of_dma.h
5888
5889 DMA MAPPING HELPERS
5890 M:      Christoph Hellwig <[email protected]>
5891 M:      Marek Szyprowski <[email protected]>
5892 R:      Robin Murphy <[email protected]>
5893 L:      [email protected]
5894 S:      Supported
5895 W:      http://git.infradead.org/users/hch/dma-mapping.git
5896 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5897 F:      include/asm-generic/dma-mapping.h
5898 F:      include/linux/dma-direct.h
5899 F:      include/linux/dma-mapping.h
5900 F:      include/linux/dma-map-ops.h
5901 F:      kernel/dma/
5902
5903 DMA MAPPING BENCHMARK
5904 M:      Xiang Chen <[email protected]>
5905 L:      [email protected]
5906 F:      kernel/dma/map_benchmark.c
5907 F:      tools/testing/selftests/dma/
5908
5909 DMA-BUF HEAPS FRAMEWORK
5910 M:      Sumit Semwal <[email protected]>
5911 R:      Benjamin Gaignard <[email protected]>
5912 R:      Liam Mark <[email protected]>
5913 R:      Laura Abbott <[email protected]>
5914 R:      Brian Starkey <[email protected]>
5915 R:      John Stultz <[email protected]>
5916 L:      [email protected]
5917 L:      [email protected]
5918 L:      [email protected] (moderated for non-subscribers)
5919 S:      Maintained
5920 T:      git git://anongit.freedesktop.org/drm/drm-misc
5921 F:      drivers/dma-buf/dma-heap.c
5922 F:      drivers/dma-buf/heaps/*
5923 F:      include/linux/dma-heap.h
5924 F:      include/uapi/linux/dma-heap.h
5925
5926 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5927 M:      Lukasz Luba <[email protected]>
5928 L:      [email protected]
5929 L:      [email protected]
5930 S:      Maintained
5931 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5932 F:      drivers/memory/samsung/exynos5422-dmc.c
5933
5934 DME1737 HARDWARE MONITOR DRIVER
5935 M:      Juerg Haefliger <[email protected]>
5936 L:      [email protected]
5937 S:      Maintained
5938 F:      Documentation/hwmon/dme1737.rst
5939 F:      drivers/hwmon/dme1737.c
5940
5941 DMI/SMBIOS SUPPORT
5942 M:      Jean Delvare <[email protected]>
5943 S:      Maintained
5944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5945 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5946 F:      drivers/firmware/dmi-id.c
5947 F:      drivers/firmware/dmi_scan.c
5948 F:      include/linux/dmi.h
5949
5950 DOCUMENTATION
5951 M:      Jonathan Corbet <[email protected]>
5952 L:      [email protected]
5953 S:      Maintained
5954 P:      Documentation/doc-guide/maintainer-profile.rst
5955 T:      git git://git.lwn.net/linux.git docs-next
5956 F:      Documentation/
5957 F:      scripts/documentation-file-ref-check
5958 F:      scripts/kernel-doc
5959 F:      scripts/sphinx-pre-install
5960 X:      Documentation/ABI/
5961 X:      Documentation/admin-guide/media/
5962 X:      Documentation/devicetree/
5963 X:      Documentation/driver-api/media/
5964 X:      Documentation/firmware-guide/acpi/
5965 X:      Documentation/i2c/
5966 X:      Documentation/power/
5967 X:      Documentation/spi/
5968 X:      Documentation/userspace-api/media/
5969
5970 DOCUMENTATION REPORTING ISSUES
5971 M:      Thorsten Leemhuis <[email protected]>
5972 L:      [email protected]
5973 S:      Maintained
5974 F:      Documentation/admin-guide/reporting-issues.rst
5975
5976 DOCUMENTATION SCRIPTS
5977 M:      Mauro Carvalho Chehab <[email protected]>
5978 L:      [email protected]
5979 S:      Maintained
5980 F:      Documentation/sphinx/parse-headers.pl
5981 F:      scripts/documentation-file-ref-check
5982 F:      scripts/sphinx-pre-install
5983
5984 DOCUMENTATION/ITALIAN
5985 M:      Federico Vaga <[email protected]>
5986 L:      [email protected]
5987 S:      Maintained
5988 F:      Documentation/translations/it_IT
5989
5990 DONGWOON DW9714 LENS VOICE COIL DRIVER
5991 M:      Sakari Ailus <[email protected]>
5992 L:      [email protected]
5993 S:      Maintained
5994 T:      git git://linuxtv.org/media_tree.git
5995 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5996 F:      drivers/media/i2c/dw9714.c
5997
5998 DONGWOON DW9768 LENS VOICE COIL DRIVER
5999 M:      Dongchun Zhu <[email protected]>
6000 L:      [email protected]
6001 S:      Maintained
6002 T:      git git://linuxtv.org/media_tree.git
6003 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6004 F:      drivers/media/i2c/dw9768.c
6005
6006 DONGWOON DW9807 LENS VOICE COIL DRIVER
6007 M:      Sakari Ailus <[email protected]>
6008 L:      [email protected]
6009 S:      Maintained
6010 T:      git git://linuxtv.org/media_tree.git
6011 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
6012 F:      drivers/media/i2c/dw9807-vcm.c
6013
6014 DOUBLETALK DRIVER
6015 M:      "James R. Van Zandt" <[email protected]>
6016 L:      [email protected]
6017 S:      Maintained
6018 F:      drivers/char/dtlk.c
6019 F:      include/linux/dtlk.h
6020
6021 DPAA2 DATAPATH I/O (DPIO) DRIVER
6022 M:      Roy Pledge <[email protected]>
6023 L:      [email protected]
6024 S:      Maintained
6025 F:      drivers/soc/fsl/dpio
6026
6027 DPAA2 ETHERNET DRIVER
6028 M:      Ioana Ciornei <[email protected]>
6029 L:      [email protected]
6030 S:      Maintained
6031 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6032 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6033 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6034 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6035 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6036 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6037 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6038 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6039 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6040
6041 DPAA2 ETHERNET SWITCH DRIVER
6042 M:      Ioana Ciornei <[email protected]>
6043 L:      [email protected]
6044 S:      Maintained
6045 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6046 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6047 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6048
6049 DPT_I2O SCSI RAID DRIVER
6050 M:      Adaptec OEM Raid Solutions <[email protected]>
6051 L:      [email protected]
6052 S:      Maintained
6053 W:      http://www.adaptec.com/
6054 F:      drivers/scsi/dpt*
6055 F:      drivers/scsi/dpt/
6056
6057 DRBD DRIVER
6058 M:      Philipp Reisner <[email protected]>
6059 M:      Lars Ellenberg <[email protected]>
6060 M:      Christoph Böhmwalder <[email protected]>
6061 L:      [email protected]
6062 S:      Supported
6063 W:      http://www.drbd.org
6064 T:      git git://git.linbit.com/linux-drbd.git
6065 T:      git git://git.linbit.com/drbd-8.4.git
6066 F:      Documentation/admin-guide/blockdev/
6067 F:      drivers/block/drbd/
6068 F:      lib/lru_cache.c
6069
6070 DRIVER COMPONENT FRAMEWORK
6071 L:      [email protected]
6072 F:      drivers/base/component.c
6073 F:      include/linux/component.h
6074
6075 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6076 M:      Greg Kroah-Hartman <[email protected]>
6077 R:      "Rafael J. Wysocki" <[email protected]>
6078 S:      Supported
6079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6080 F:      Documentation/core-api/kobject.rst
6081 F:      drivers/base/
6082 F:      fs/debugfs/
6083 F:      fs/sysfs/
6084 F:      include/linux/debugfs.h
6085 F:      include/linux/kobj*
6086 F:      lib/kobj*
6087
6088 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6089 M:      Nishanth Menon <[email protected]>
6090 L:      [email protected]
6091 S:      Maintained
6092 F:      drivers/soc/ti/smartreflex.c
6093 F:      include/linux/power/smartreflex.h
6094
6095 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6096 M:      Maxime Ripard <[email protected]>
6097 M:      Chen-Yu Tsai <[email protected]>
6098 R:      Jernej Skrabec <[email protected]>
6099 L:      [email protected]
6100 S:      Supported
6101 T:      git git://anongit.freedesktop.org/drm/drm-misc
6102 F:      drivers/gpu/drm/sun4i/sun8i*
6103
6104 DRM DRIVER FOR ARM PL111 CLCD
6105 M:      Emma Anholt <[email protected]>
6106 S:      Supported
6107 T:      git git://anongit.freedesktop.org/drm/drm-misc
6108 F:      drivers/gpu/drm/pl111/
6109
6110 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6111 M:      Linus Walleij <[email protected]>
6112 S:      Maintained
6113 T:      git git://anongit.freedesktop.org/drm/drm-misc
6114 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6115 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6116
6117 DRM DRIVER FOR ASPEED BMC GFX
6118 M:      Joel Stanley <[email protected]>
6119 L:      [email protected] (moderated for non-subscribers)
6120 S:      Supported
6121 T:      git git://anongit.freedesktop.org/drm/drm-misc
6122 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6123 F:      drivers/gpu/drm/aspeed/
6124
6125 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6126 M:      Dave Airlie <[email protected]>
6127 R:      Thomas Zimmermann <[email protected]>
6128 L:      [email protected]
6129 S:      Supported
6130 T:      git git://anongit.freedesktop.org/drm/drm-misc
6131 F:      drivers/gpu/drm/ast/
6132
6133 DRM DRIVER FOR BOCHS VIRTUAL GPU
6134 M:      Gerd Hoffmann <[email protected]>
6135 L:      [email protected]
6136 S:      Maintained
6137 T:      git git://anongit.freedesktop.org/drm/drm-misc
6138 F:      drivers/gpu/drm/tiny/bochs.c
6139
6140 DRM DRIVER FOR BOE HIMAX8279D PANELS
6141 M:      Jerry Han <[email protected]>
6142 S:      Maintained
6143 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6144 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6145
6146 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6147 M:      Jagan Teki <[email protected]>
6148 S:      Maintained
6149 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6150 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6151
6152 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6153 M:      Linus Walleij <[email protected]>
6154 S:      Maintained
6155 T:      git git://anongit.freedesktop.org/drm/drm-misc
6156 F:      drivers/gpu/drm/tve200/
6157
6158 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6159 M:      Icenowy Zheng <[email protected]>
6160 S:      Maintained
6161 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6162 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6163
6164 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6165 M:      Jagan Teki <[email protected]>
6166 S:      Maintained
6167 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6168 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6169
6170 DRM DRIVER FOR GENERIC USB DISPLAY
6171 M:      Noralf Trønnes <[email protected]>
6172 S:      Maintained
6173 W:      https://github.com/notro/gud/wiki
6174 T:      git git://anongit.freedesktop.org/drm/drm-misc
6175 F:      drivers/gpu/drm/gud/
6176 F:      include/drm/gud.h
6177
6178 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6179 M:      Hans de Goede <[email protected]>
6180 S:      Maintained
6181 T:      git git://anongit.freedesktop.org/drm/drm-misc
6182 F:      drivers/gpu/drm/tiny/gm12u320.c
6183
6184 DRM DRIVER FOR HX8357D PANELS
6185 M:      Emma Anholt <[email protected]>
6186 S:      Maintained
6187 T:      git git://anongit.freedesktop.org/drm/drm-misc
6188 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6189 F:      drivers/gpu/drm/tiny/hx8357d.c
6190
6191 DRM DRIVER FOR ILITEK ILI9225 PANELS
6192 M:      David Lechner <[email protected]>
6193 S:      Maintained
6194 T:      git git://anongit.freedesktop.org/drm/drm-misc
6195 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6196 F:      drivers/gpu/drm/tiny/ili9225.c
6197
6198 DRM DRIVER FOR ILITEK ILI9486 PANELS
6199 M:      Kamlesh Gurudasani <[email protected]>
6200 S:      Maintained
6201 T:      git git://anongit.freedesktop.org/drm/drm-misc
6202 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6203 F:      drivers/gpu/drm/tiny/ili9486.c
6204
6205 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6206 S:      Orphan / Obsolete
6207 F:      drivers/gpu/drm/i810/
6208 F:      include/uapi/drm/i810_drm.h
6209
6210 DRM DRIVER FOR LVDS PANELS
6211 M:      Laurent Pinchart <[email protected]>
6212 L:      [email protected]
6213 T:      git git://anongit.freedesktop.org/drm/drm-misc
6214 S:      Maintained
6215 F:      drivers/gpu/drm/panel/panel-lvds.c
6216 F:      Documentation/devicetree/bindings/display/lvds.yaml
6217 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6218
6219 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6220 M:      Guido Günther <[email protected]>
6221 R:      Purism Kernel Team <[email protected]>
6222 S:      Maintained
6223 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6224 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6225
6226 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6227 S:      Orphan / Obsolete
6228 F:      drivers/gpu/drm/mga/
6229 F:      include/uapi/drm/mga_drm.h
6230
6231 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6232 M:      Dave Airlie <[email protected]>
6233 R:      Thomas Zimmermann <[email protected]>
6234 L:      [email protected]
6235 S:      Supported
6236 T:      git git://anongit.freedesktop.org/drm/drm-misc
6237 F:      drivers/gpu/drm/mgag200/
6238
6239 DRM DRIVER FOR MI0283QT
6240 M:      Noralf Trønnes <[email protected]>
6241 S:      Maintained
6242 T:      git git://anongit.freedesktop.org/drm/drm-misc
6243 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6244 F:      drivers/gpu/drm/tiny/mi0283qt.c
6245
6246 DRM DRIVER FOR MIPI DBI compatible panels
6247 M:      Noralf Trønnes <[email protected]>
6248 S:      Maintained
6249 W:      https://github.com/notro/panel-mipi-dbi/wiki
6250 T:      git git://anongit.freedesktop.org/drm/drm-misc
6251 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6252 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6253
6254 DRM DRIVER FOR MSM ADRENO GPU
6255 M:      Rob Clark <[email protected]>
6256 M:      Sean Paul <[email protected]>
6257 R:      Abhinav Kumar <[email protected]>
6258 L:      [email protected]
6259 L:      [email protected]
6260 L:      [email protected]
6261 S:      Maintained
6262 T:      git https://gitlab.freedesktop.org/drm/msm.git
6263 F:      Documentation/devicetree/bindings/display/msm/
6264 F:      drivers/gpu/drm/msm/
6265 F:      include/uapi/drm/msm_drm.h
6266
6267 DRM DRIVER FOR NOVATEK NT35510 PANELS
6268 M:      Linus Walleij <[email protected]>
6269 S:      Maintained
6270 T:      git git://anongit.freedesktop.org/drm/drm-misc
6271 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6272 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6273
6274 DRM DRIVER FOR NOVATEK NT35560 PANELS
6275 M:      Linus Walleij <[email protected]>
6276 S:      Maintained
6277 T:      git git://anongit.freedesktop.org/drm/drm-misc
6278 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6279 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6280
6281 DRM DRIVER FOR NOVATEK NT36672A PANELS
6282 M:      Sumit Semwal <[email protected]>
6283 S:      Maintained
6284 T:      git git://anongit.freedesktop.org/drm/drm-misc
6285 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6286 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6287
6288 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6289 M:      Ben Skeggs <[email protected]>
6290 M:      Karol Herbst <[email protected]>
6291 M:      Lyude Paul <[email protected]>
6292 L:      [email protected]
6293 L:      [email protected]
6294 S:      Supported
6295 W:      https://nouveau.freedesktop.org/
6296 Q:      https://patchwork.freedesktop.org/project/nouveau/
6297 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6298 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6299 C:      irc://irc.oftc.net/nouveau
6300 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6301 F:      drivers/gpu/drm/nouveau/
6302 F:      include/uapi/drm/nouveau_drm.h
6303
6304 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6305 M:      Stefan Mavrodiev <[email protected]>
6306 S:      Maintained
6307 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6308 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6309
6310 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6311 R:      Douglas Anderson <[email protected]>
6312 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6313 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6314
6315 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6316 M:      Noralf Trønnes <[email protected]>
6317 S:      Maintained
6318 T:      git git://anongit.freedesktop.org/drm/drm-misc
6319 F:      Documentation/devicetree/bindings/display/repaper.txt
6320 F:      drivers/gpu/drm/tiny/repaper.c
6321
6322 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6323 M:      Javier Martinez Canillas <[email protected]>
6324 S:      Maintained
6325 T:      git git://anongit.freedesktop.org/drm/drm-misc
6326 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6327 F:      drivers/gpu/drm/solomon/ssd130x*
6328
6329 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6330 M:      Dave Airlie <[email protected]>
6331 M:      Gerd Hoffmann <[email protected]>
6332 L:      [email protected]
6333 S:      Obsolete
6334 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6335 T:      git git://anongit.freedesktop.org/drm/drm-misc
6336 F:      drivers/gpu/drm/tiny/cirrus.c
6337
6338 DRM DRIVER FOR QXL VIRTUAL GPU
6339 M:      Dave Airlie <[email protected]>
6340 M:      Gerd Hoffmann <[email protected]>
6341 L:      [email protected]
6342 L:      [email protected]
6343 S:      Maintained
6344 T:      git git://anongit.freedesktop.org/drm/drm-misc
6345 F:      drivers/gpu/drm/qxl/
6346 F:      include/uapi/drm/qxl_drm.h
6347
6348 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6349 S:      Orphan / Obsolete
6350 F:      drivers/gpu/drm/r128/
6351 F:      include/uapi/drm/r128_drm.h
6352
6353 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6354 M:      Robert Chiras <[email protected]>
6355 S:      Maintained
6356 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6357 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6358
6359 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6360 M:      Linus Walleij <[email protected]>
6361 S:      Maintained
6362 T:      git git://anongit.freedesktop.org/drm/drm-misc
6363 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6364 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6365
6366 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6367 M:      Markuss Broks <[email protected]>
6368 S:      Maintained
6369 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6370 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6371
6372 DRM DRIVER FOR SITRONIX ST7703 PANELS
6373 M:      Guido Günther <[email protected]>
6374 R:      Purism Kernel Team <[email protected]>
6375 R:      Ondrej Jirman <[email protected]>
6376 S:      Maintained
6377 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6378 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6379
6380 DRM DRIVER FOR SAVAGE VIDEO CARDS
6381 S:      Orphan / Obsolete
6382 F:      drivers/gpu/drm/savage/
6383 F:      include/uapi/drm/savage_drm.h
6384
6385 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6386 M:      Thomas Zimmermann <[email protected]>
6387 L:      [email protected]
6388 S:      Maintained
6389 T:      git git://anongit.freedesktop.org/drm/drm-misc
6390 F:      drivers/gpu/drm/tiny/simpledrm.c
6391
6392 DRM DRIVER FOR SIS VIDEO CARDS
6393 S:      Orphan / Obsolete
6394 F:      drivers/gpu/drm/sis/
6395 F:      include/uapi/drm/sis_drm.h
6396
6397 DRM DRIVER FOR SITRONIX ST7586 PANELS
6398 M:      David Lechner <[email protected]>
6399 S:      Maintained
6400 T:      git git://anongit.freedesktop.org/drm/drm-misc
6401 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6402 F:      drivers/gpu/drm/tiny/st7586.c
6403
6404 DRM DRIVER FOR SITRONIX ST7701 PANELS
6405 M:      Jagan Teki <[email protected]>
6406 S:      Maintained
6407 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6408 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6409
6410 DRM DRIVER FOR SITRONIX ST7735R PANELS
6411 M:      David Lechner <[email protected]>
6412 S:      Maintained
6413 T:      git git://anongit.freedesktop.org/drm/drm-misc
6414 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6415 F:      drivers/gpu/drm/tiny/st7735r.c
6416
6417 DRM DRIVER FOR ST-ERICSSON MCDE
6418 M:      Linus Walleij <[email protected]>
6419 S:      Maintained
6420 T:      git git://anongit.freedesktop.org/drm/drm-misc
6421 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6422 F:      drivers/gpu/drm/mcde/
6423
6424 DRM DRIVER FOR TDFX VIDEO CARDS
6425 S:      Orphan / Obsolete
6426 F:      drivers/gpu/drm/tdfx/
6427
6428 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6429 R:      Douglas Anderson <[email protected]>
6430 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6431 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6432
6433 DRM DRIVER FOR TPO TPG110 PANELS
6434 M:      Linus Walleij <[email protected]>
6435 S:      Maintained
6436 T:      git git://anongit.freedesktop.org/drm/drm-misc
6437 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6438 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6439
6440 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6441 M:      Dave Airlie <[email protected]>
6442 R:      Sean Paul <[email protected]>
6443 R:      Thomas Zimmermann <[email protected]>
6444 L:      [email protected]
6445 S:      Supported
6446 T:      git git://anongit.freedesktop.org/drm/drm-misc
6447 F:      drivers/gpu/drm/udl/
6448
6449 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6450 M:      Rodrigo Siqueira <[email protected]>
6451 M:      Melissa Wen <[email protected]>
6452 R:      Haneen Mohammed <[email protected]>
6453 R:      Daniel Vetter <[email protected]>
6454 L:      [email protected]
6455 S:      Maintained
6456 T:      git git://anongit.freedesktop.org/drm/drm-misc
6457 F:      Documentation/gpu/vkms.rst
6458 F:      drivers/gpu/drm/vkms/
6459
6460 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6461 M:      Hans de Goede <[email protected]>
6462 L:      [email protected]
6463 S:      Maintained
6464 T:      git git://anongit.freedesktop.org/drm/drm-misc
6465 F:      drivers/gpu/drm/vboxvideo/
6466
6467 DRM DRIVER FOR VMWARE VIRTUAL GPU
6468 M:      Zack Rusin <[email protected]>
6469 R:      VMware Graphics Reviewers <[email protected]>
6470 L:      [email protected]
6471 S:      Supported
6472 T:      git git://anongit.freedesktop.org/drm/drm-misc
6473 F:      drivers/gpu/drm/vmwgfx/
6474 F:      include/uapi/drm/vmwgfx_drm.h
6475
6476 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6477 M:      Linus Walleij <[email protected]>
6478 S:      Maintained
6479 T:      git git://anongit.freedesktop.org/drm/drm-misc
6480 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6481 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6482
6483 DRM DRIVERS
6484 M:      David Airlie <[email protected]>
6485 M:      Daniel Vetter <[email protected]>
6486 L:      [email protected]
6487 S:      Maintained
6488 B:      https://gitlab.freedesktop.org/drm
6489 C:      irc://irc.oftc.net/dri-devel
6490 T:      git git://anongit.freedesktop.org/drm/drm
6491 F:      Documentation/devicetree/bindings/display/
6492 F:      Documentation/devicetree/bindings/gpu/
6493 F:      Documentation/gpu/
6494 F:      drivers/gpu/
6495 F:      include/drm/
6496 F:      include/linux/vga*
6497 F:      include/uapi/drm/
6498
6499 DRM DRIVERS AND MISC GPU PATCHES
6500 M:      Maarten Lankhorst <[email protected]>
6501 M:      Maxime Ripard <[email protected]>
6502 M:      Thomas Zimmermann <[email protected]>
6503 S:      Maintained
6504 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6505 T:      git git://anongit.freedesktop.org/drm/drm-misc
6506 F:      Documentation/gpu/
6507 F:      drivers/gpu/drm/*
6508 F:      drivers/gpu/vga/
6509 F:      include/drm/drm*
6510 F:      include/linux/vga*
6511 F:      include/uapi/drm/drm*
6512
6513 DRM DRIVERS FOR ALLWINNER A10
6514 M:      Maxime Ripard <[email protected]>
6515 M:      Chen-Yu Tsai <[email protected]>
6516 L:      [email protected]
6517 S:      Supported
6518 T:      git git://anongit.freedesktop.org/drm/drm-misc
6519 F:      Documentation/devicetree/bindings/display/allwinner*
6520 F:      drivers/gpu/drm/sun4i/
6521
6522 DRM DRIVERS FOR AMLOGIC SOCS
6523 M:      Neil Armstrong <[email protected]>
6524 L:      [email protected]
6525 L:      [email protected]
6526 S:      Supported
6527 W:      http://linux-meson.com/
6528 T:      git git://anongit.freedesktop.org/drm/drm-misc
6529 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6530 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6531 F:      Documentation/gpu/meson.rst
6532 F:      drivers/gpu/drm/meson/
6533
6534 DRM DRIVERS FOR ATMEL HLCDC
6535 M:      Sam Ravnborg <[email protected]>
6536 M:      Boris Brezillon <[email protected]>
6537 L:      [email protected]
6538 S:      Supported
6539 T:      git git://anongit.freedesktop.org/drm/drm-misc
6540 F:      Documentation/devicetree/bindings/display/atmel/
6541 F:      drivers/gpu/drm/atmel-hlcdc/
6542
6543 DRM DRIVERS FOR BRIDGE CHIPS
6544 M:      Andrzej Hajda <[email protected]>
6545 M:      Neil Armstrong <[email protected]>
6546 M:      Robert Foss <[email protected]>
6547 R:      Laurent Pinchart <[email protected]>
6548 R:      Jonas Karlman <[email protected]>
6549 R:      Jernej Skrabec <[email protected]>
6550 S:      Maintained
6551 T:      git git://anongit.freedesktop.org/drm/drm-misc
6552 F:      Documentation/devicetree/bindings/display/bridge/
6553 F:      drivers/gpu/drm/bridge/
6554
6555 DRM DRIVERS FOR EXYNOS
6556 M:      Inki Dae <[email protected]>
6557 M:      Joonyoung Shim <[email protected]>
6558 M:      Seung-Woo Kim <[email protected]>
6559 M:      Kyungmin Park <[email protected]>
6560 L:      [email protected]
6561 S:      Supported
6562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6563 F:      Documentation/devicetree/bindings/display/exynos/
6564 F:      Documentation/devicetree/bindings/display/samsung/
6565 F:      drivers/gpu/drm/exynos/
6566 F:      include/uapi/drm/exynos_drm.h
6567
6568 DRM DRIVERS FOR FREESCALE DCU
6569 M:      Stefan Agner <[email protected]>
6570 M:      Alison Wang <[email protected]>
6571 L:      [email protected]
6572 S:      Supported
6573 T:      git git://anongit.freedesktop.org/drm/drm-misc
6574 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6575 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6576 F:      drivers/gpu/drm/fsl-dcu/
6577
6578 DRM DRIVERS FOR FREESCALE IMX
6579 M:      Philipp Zabel <[email protected]>
6580 L:      [email protected]
6581 S:      Maintained
6582 F:      Documentation/devicetree/bindings/display/imx/
6583 F:      drivers/gpu/drm/imx/
6584 F:      drivers/gpu/ipu-v3/
6585
6586 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6587 M:      Patrik Jakobsson <[email protected]>
6588 L:      [email protected]
6589 S:      Maintained
6590 T:      git git://github.com/patjak/drm-gma500
6591 F:      drivers/gpu/drm/gma500/
6592
6593 DRM DRIVERS FOR HISILICON
6594 M:      Xinliang Liu <[email protected]>
6595 M:      Tian Tao  <[email protected]>
6596 R:      John Stultz <[email protected]>
6597 R:      Xinwei Kong <[email protected]>
6598 R:      Chen Feng <[email protected]>
6599 L:      [email protected]
6600 S:      Maintained
6601 T:      git git://anongit.freedesktop.org/drm/drm-misc
6602 F:      Documentation/devicetree/bindings/display/hisilicon/
6603 F:      drivers/gpu/drm/hisilicon/
6604
6605 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6606 M:      Deepak Rawat <[email protected]>
6607 L:      [email protected]
6608 L:      [email protected]
6609 S:      Maintained
6610 T:      git git://anongit.freedesktop.org/drm/drm-misc
6611 F:      drivers/gpu/drm/hyperv
6612
6613 DRM DRIVERS FOR LIMA
6614 M:      Qiang Yu <[email protected]>
6615 L:      [email protected]
6616 L:      [email protected] (moderated for non-subscribers)
6617 S:      Maintained
6618 T:      git git://anongit.freedesktop.org/drm/drm-misc
6619 F:      drivers/gpu/drm/lima/
6620 F:      include/uapi/drm/lima_drm.h
6621
6622 DRM DRIVERS FOR MEDIATEK
6623 M:      Chun-Kuang Hu <[email protected]>
6624 M:      Philipp Zabel <[email protected]>
6625 L:      [email protected]
6626 L:      [email protected] (moderated for non-subscribers)
6627 S:      Supported
6628 F:      Documentation/devicetree/bindings/display/mediatek/
6629 F:      drivers/gpu/drm/mediatek/
6630 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6631 F:      drivers/phy/mediatek/phy-mtk-mipi*
6632
6633 DRM DRIVERS FOR NVIDIA TEGRA
6634 M:      Thierry Reding <[email protected]>
6635 L:      [email protected]
6636 L:      [email protected]
6637 S:      Supported
6638 T:      git git://anongit.freedesktop.org/tegra/linux.git
6639 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6640 F:      Documentation/devicetree/bindings/gpu/host1x/
6641 F:      drivers/gpu/drm/tegra/
6642 F:      drivers/gpu/host1x/
6643 F:      include/linux/host1x.h
6644 F:      include/uapi/drm/tegra_drm.h
6645
6646 DRM DRIVERS FOR RENESAS
6647 M:      Laurent Pinchart <[email protected]>
6648 M:      Kieran Bingham <[email protected]>
6649 L:      [email protected]
6650 L:      [email protected]
6651 S:      Supported
6652 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6653 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6654 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6655 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6656 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6657 F:      drivers/gpu/drm/rcar-du/
6658 F:      drivers/gpu/drm/shmobile/
6659 F:      include/linux/platform_data/shmob_drm.h
6660
6661 DRM DRIVERS FOR ROCKCHIP
6662 M:      Sandy Huang <[email protected]>
6663 M:      Heiko Stübner <[email protected]>
6664 L:      [email protected]
6665 S:      Maintained
6666 T:      git git://anongit.freedesktop.org/drm/drm-misc
6667 F:      Documentation/devicetree/bindings/display/rockchip/
6668 F:      drivers/gpu/drm/rockchip/
6669
6670 DRM DRIVERS FOR STI
6671 M:      Alain Volmat <[email protected]>
6672 L:      [email protected]
6673 S:      Maintained
6674 T:      git git://anongit.freedesktop.org/drm/drm-misc
6675 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6676 F:      drivers/gpu/drm/sti
6677
6678 DRM DRIVERS FOR STM
6679 M:      Yannick Fertre <[email protected]>
6680 M:      Raphael Gallais-Pou <[email protected]>
6681 M:      Philippe Cornu <[email protected]>
6682 L:      [email protected]
6683 S:      Maintained
6684 T:      git git://anongit.freedesktop.org/drm/drm-misc
6685 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6686 F:      drivers/gpu/drm/stm
6687
6688 DRM DRIVERS FOR TI KEYSTONE
6689 M:      Jyri Sarha <[email protected]>
6690 M:      Tomi Valkeinen <[email protected]>
6691 L:      [email protected]
6692 S:      Maintained
6693 T:      git git://anongit.freedesktop.org/drm/drm-misc
6694 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6695 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6696 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6697 F:      drivers/gpu/drm/tidss/
6698
6699 DRM DRIVERS FOR TI LCDC
6700 M:      Jyri Sarha <[email protected]>
6701 R:      Tomi Valkeinen <[email protected]>
6702 L:      [email protected]
6703 S:      Maintained
6704 F:      Documentation/devicetree/bindings/display/tilcdc/
6705 F:      drivers/gpu/drm/tilcdc/
6706
6707 DRM DRIVERS FOR TI OMAP
6708 M:      Tomi Valkeinen <[email protected]>
6709 L:      [email protected]
6710 S:      Maintained
6711 F:      Documentation/devicetree/bindings/display/ti/
6712 F:      drivers/gpu/drm/omapdrm/
6713
6714 DRM DRIVERS FOR V3D
6715 M:      Emma Anholt <[email protected]>
6716 S:      Supported
6717 T:      git git://anongit.freedesktop.org/drm/drm-misc
6718 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6719 F:      drivers/gpu/drm/v3d/
6720 F:      include/uapi/drm/v3d_drm.h
6721
6722 DRM DRIVERS FOR VC4
6723 M:      Emma Anholt <[email protected]>
6724 M:      Maxime Ripard <[email protected]>
6725 S:      Supported
6726 T:      git git://github.com/anholt/linux
6727 T:      git git://anongit.freedesktop.org/drm/drm-misc
6728 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6729 F:      drivers/gpu/drm/vc4/
6730 F:      include/uapi/drm/vc4_drm.h
6731
6732 DRM DRIVERS FOR VIVANTE GPU IP
6733 M:      Lucas Stach <[email protected]>
6734 R:      Russell King <[email protected]>
6735 R:      Christian Gmeiner <[email protected]>
6736 L:      [email protected] (moderated for non-subscribers)
6737 L:      [email protected]
6738 S:      Maintained
6739 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6740 F:      drivers/gpu/drm/etnaviv/
6741 F:      include/uapi/drm/etnaviv_drm.h
6742
6743 DRM DRIVERS FOR XEN
6744 M:      Oleksandr Andrushchenko <[email protected]>
6745 L:      [email protected]
6746 L:      [email protected] (moderated for non-subscribers)
6747 S:      Supported
6748 T:      git git://anongit.freedesktop.org/drm/drm-misc
6749 F:      Documentation/gpu/xen-front.rst
6750 F:      drivers/gpu/drm/xen/
6751
6752 DRM DRIVERS FOR XILINX
6753 M:      Hyun Kwon <[email protected]>
6754 M:      Laurent Pinchart <[email protected]>
6755 L:      [email protected]
6756 S:      Maintained
6757 T:      git git://anongit.freedesktop.org/drm/drm-misc
6758 F:      Documentation/devicetree/bindings/display/xlnx/
6759 F:      drivers/gpu/drm/xlnx/
6760
6761 DRM PANEL DRIVERS
6762 M:      Thierry Reding <[email protected]>
6763 R:      Sam Ravnborg <[email protected]>
6764 L:      [email protected]
6765 S:      Maintained
6766 T:      git git://anongit.freedesktop.org/drm/drm-misc
6767 F:      Documentation/devicetree/bindings/display/panel/
6768 F:      drivers/gpu/drm/drm_panel.c
6769 F:      drivers/gpu/drm/panel/
6770 F:      include/drm/drm_panel.h
6771
6772 DRM PRIVACY-SCREEN CLASS
6773 M:      Hans de Goede <[email protected]>
6774 L:      [email protected]
6775 S:      Maintained
6776 T:      git git://anongit.freedesktop.org/drm/drm-misc
6777 F:      drivers/gpu/drm/drm_privacy_screen*
6778 F:      include/drm/drm_privacy_screen*
6779
6780 DRM TTM SUBSYSTEM
6781 M:      Christian Koenig <[email protected]>
6782 M:      Huang Rui <[email protected]>
6783 L:      [email protected]
6784 S:      Maintained
6785 T:      git git://anongit.freedesktop.org/drm/drm-misc
6786 F:      drivers/gpu/drm/ttm/
6787 F:      include/drm/ttm/
6788
6789 DRM GPU SCHEDULER
6790 M:      Andrey Grodzovsky <[email protected]>
6791 L:      [email protected]
6792 S:      Maintained
6793 T:      git git://anongit.freedesktop.org/drm/drm-misc
6794 F:      drivers/gpu/drm/scheduler/
6795 F:      include/drm/gpu_scheduler.h
6796
6797 DSBR100 USB FM RADIO DRIVER
6798 M:      Alexey Klimov <[email protected]>
6799 L:      [email protected]
6800 S:      Maintained
6801 T:      git git://linuxtv.org/media_tree.git
6802 F:      drivers/media/radio/dsbr100.c
6803
6804 DT3155 MEDIA DRIVER
6805 M:      Hans Verkuil <[email protected]>
6806 L:      [email protected]
6807 S:      Odd Fixes
6808 W:      https://linuxtv.org
6809 T:      git git://linuxtv.org/media_tree.git
6810 F:      drivers/media/pci/dt3155/
6811
6812 DVB_USB_AF9015 MEDIA DRIVER
6813 M:      Antti Palosaari <[email protected]>
6814 L:      [email protected]
6815 S:      Maintained
6816 W:      https://linuxtv.org
6817 W:      http://palosaari.fi/linux/
6818 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6819 T:      git git://linuxtv.org/anttip/media_tree.git
6820 F:      drivers/media/usb/dvb-usb-v2/af9015*
6821
6822 DVB_USB_AF9035 MEDIA DRIVER
6823 M:      Antti Palosaari <[email protected]>
6824 L:      [email protected]
6825 S:      Maintained
6826 W:      https://linuxtv.org
6827 W:      http://palosaari.fi/linux/
6828 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6829 T:      git git://linuxtv.org/anttip/media_tree.git
6830 F:      drivers/media/usb/dvb-usb-v2/af9035*
6831
6832 DVB_USB_ANYSEE MEDIA DRIVER
6833 M:      Antti Palosaari <[email protected]>
6834 L:      [email protected]
6835 S:      Maintained
6836 W:      https://linuxtv.org
6837 W:      http://palosaari.fi/linux/
6838 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6839 T:      git git://linuxtv.org/anttip/media_tree.git
6840 F:      drivers/media/usb/dvb-usb-v2/anysee*
6841
6842 DVB_USB_AU6610 MEDIA DRIVER
6843 M:      Antti Palosaari <[email protected]>
6844 L:      [email protected]
6845 S:      Maintained
6846 W:      https://linuxtv.org
6847 W:      http://palosaari.fi/linux/
6848 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6849 T:      git git://linuxtv.org/anttip/media_tree.git
6850 F:      drivers/media/usb/dvb-usb-v2/au6610*
6851
6852 DVB_USB_CE6230 MEDIA DRIVER
6853 M:      Antti Palosaari <[email protected]>
6854 L:      [email protected]
6855 S:      Maintained
6856 W:      https://linuxtv.org
6857 W:      http://palosaari.fi/linux/
6858 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6859 T:      git git://linuxtv.org/anttip/media_tree.git
6860 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6861
6862 DVB_USB_CXUSB MEDIA DRIVER
6863 M:      Michael Krufky <[email protected]>
6864 L:      [email protected]
6865 S:      Maintained
6866 W:      https://linuxtv.org
6867 W:      http://github.com/mkrufky
6868 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6869 T:      git git://linuxtv.org/media_tree.git
6870 F:      drivers/media/usb/dvb-usb/cxusb*
6871
6872 DVB_USB_EC168 MEDIA DRIVER
6873 M:      Antti Palosaari <[email protected]>
6874 L:      [email protected]
6875 S:      Maintained
6876 W:      https://linuxtv.org
6877 W:      http://palosaari.fi/linux/
6878 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6879 T:      git git://linuxtv.org/anttip/media_tree.git
6880 F:      drivers/media/usb/dvb-usb-v2/ec168*
6881
6882 DVB_USB_GL861 MEDIA DRIVER
6883 M:      Antti Palosaari <[email protected]>
6884 L:      [email protected]
6885 S:      Maintained
6886 W:      https://linuxtv.org
6887 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6888 T:      git git://linuxtv.org/anttip/media_tree.git
6889 F:      drivers/media/usb/dvb-usb-v2/gl861*
6890
6891 DVB_USB_MXL111SF MEDIA DRIVER
6892 M:      Michael Krufky <[email protected]>
6893 L:      [email protected]
6894 S:      Maintained
6895 W:      https://linuxtv.org
6896 W:      http://github.com/mkrufky
6897 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6898 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6899 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6900
6901 DVB_USB_RTL28XXU MEDIA DRIVER
6902 M:      Antti Palosaari <[email protected]>
6903 L:      [email protected]
6904 S:      Maintained
6905 W:      https://linuxtv.org
6906 W:      http://palosaari.fi/linux/
6907 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6908 T:      git git://linuxtv.org/anttip/media_tree.git
6909 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6910
6911 DVB_USB_V2 MEDIA DRIVER
6912 M:      Antti Palosaari <[email protected]>
6913 L:      [email protected]
6914 S:      Maintained
6915 W:      https://linuxtv.org
6916 W:      http://palosaari.fi/linux/
6917 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6918 T:      git git://linuxtv.org/anttip/media_tree.git
6919 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6920 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6921
6922 DYNAMIC DEBUG
6923 M:      Jason Baron <[email protected]>
6924 S:      Maintained
6925 F:      include/linux/dynamic_debug.h
6926 F:      lib/dynamic_debug.c
6927
6928 DYNAMIC INTERRUPT MODERATION
6929 M:      Tal Gilboa <[email protected]>
6930 S:      Maintained
6931 F:      Documentation/networking/net_dim.rst
6932 F:      include/linux/dim.h
6933 F:      lib/dim/
6934
6935 DZ DECSTATION DZ11 SERIAL DRIVER
6936 M:      "Maciej W. Rozycki" <[email protected]>
6937 S:      Maintained
6938 F:      drivers/tty/serial/dz.*
6939
6940 E3X0 POWER BUTTON DRIVER
6941 M:      Moritz Fischer <[email protected]>
6942 L:      [email protected]
6943 S:      Supported
6944 W:      http://www.ettus.com
6945 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6946 F:      drivers/input/misc/e3x0-button.c
6947
6948 E4000 MEDIA DRIVER
6949 M:      Antti Palosaari <[email protected]>
6950 L:      [email protected]
6951 S:      Maintained
6952 W:      https://linuxtv.org
6953 W:      http://palosaari.fi/linux/
6954 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6955 T:      git git://linuxtv.org/anttip/media_tree.git
6956 F:      drivers/media/tuners/e4000*
6957
6958 EARTH_PT1 MEDIA DRIVER
6959 M:      Akihiro Tsukada <[email protected]>
6960 L:      [email protected]
6961 S:      Odd Fixes
6962 F:      drivers/media/pci/pt1/
6963
6964 EARTH_PT3 MEDIA DRIVER
6965 M:      Akihiro Tsukada <[email protected]>
6966 L:      [email protected]
6967 S:      Odd Fixes
6968 F:      drivers/media/pci/pt3/
6969
6970 EC100 MEDIA DRIVER
6971 M:      Antti Palosaari <[email protected]>
6972 L:      [email protected]
6973 S:      Maintained
6974 W:      https://linuxtv.org
6975 W:      http://palosaari.fi/linux/
6976 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6977 T:      git git://linuxtv.org/anttip/media_tree.git
6978 F:      drivers/media/dvb-frontends/ec100*
6979
6980 ECRYPT FILE SYSTEM
6981 M:      Tyler Hicks <[email protected]>
6982 L:      [email protected]
6983 S:      Odd Fixes
6984 W:      http://ecryptfs.org
6985 W:      https://launchpad.net/ecryptfs
6986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6987 F:      Documentation/filesystems/ecryptfs.rst
6988 F:      fs/ecryptfs/
6989
6990 EDAC-AMD64
6991 M:      Yazen Ghannam <[email protected]>
6992 L:      [email protected]
6993 S:      Supported
6994 F:      drivers/edac/amd64_edac*
6995 F:      drivers/edac/mce_amd*
6996
6997 EDAC-ARMADA
6998 M:      Jan Luebbe <[email protected]>
6999 L:      [email protected]
7000 S:      Maintained
7001 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7002 F:      drivers/edac/armada_xp_*
7003
7004 EDAC-AST2500
7005 M:      Stefan Schaeckeler <[email protected]>
7006 S:      Supported
7007 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7008 F:      drivers/edac/aspeed_edac.c
7009
7010 EDAC-BLUEFIELD
7011 M:      Shravan Kumar Ramani <[email protected]>
7012 S:      Supported
7013 F:      drivers/edac/bluefield_edac.c
7014
7015 EDAC-CALXEDA
7016 M:      Andre Przywara <[email protected]>
7017 L:      [email protected]
7018 S:      Maintained
7019 F:      drivers/edac/highbank*
7020
7021 EDAC-CAVIUM OCTEON
7022 M:      Ralf Baechle <[email protected]>
7023 L:      [email protected]
7024 L:      [email protected]
7025 S:      Supported
7026 F:      drivers/edac/octeon_edac*
7027
7028 EDAC-CAVIUM THUNDERX
7029 M:      Robert Richter <[email protected]>
7030 L:      [email protected]
7031 S:      Odd Fixes
7032 F:      drivers/edac/thunderx_edac*
7033
7034 EDAC-CORE
7035 M:      Borislav Petkov <[email protected]>
7036 M:      Mauro Carvalho Chehab <[email protected]>
7037 M:      Tony Luck <[email protected]>
7038 R:      James Morse <[email protected]>
7039 R:      Robert Richter <[email protected]>
7040 L:      [email protected]
7041 S:      Supported
7042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7043 F:      Documentation/admin-guide/ras.rst
7044 F:      Documentation/driver-api/edac.rst
7045 F:      drivers/edac/
7046 F:      include/linux/edac.h
7047
7048 EDAC-DMC520
7049 M:      Lei Wang <[email protected]>
7050 L:      [email protected]
7051 S:      Supported
7052 F:      drivers/edac/dmc520_edac.c
7053
7054 EDAC-E752X
7055 M:      Mark Gross <[email protected]>
7056 L:      [email protected]
7057 S:      Maintained
7058 F:      drivers/edac/e752x_edac.c
7059
7060 EDAC-E7XXX
7061 L:      [email protected]
7062 S:      Maintained
7063 F:      drivers/edac/e7xxx_edac.c
7064
7065 EDAC-FSL_DDR
7066 M:      York Sun <[email protected]>
7067 L:      [email protected]
7068 S:      Maintained
7069 F:      drivers/edac/fsl_ddr_edac.*
7070
7071 EDAC-GHES
7072 M:      Mauro Carvalho Chehab <[email protected]>
7073 L:      [email protected]
7074 S:      Maintained
7075 F:      drivers/edac/ghes_edac.c
7076
7077 EDAC-I10NM
7078 M:      Tony Luck <[email protected]>
7079 L:      [email protected]
7080 S:      Maintained
7081 F:      drivers/edac/i10nm_base.c
7082
7083 EDAC-I3000
7084 L:      [email protected]
7085 S:      Orphan
7086 F:      drivers/edac/i3000_edac.c
7087
7088 EDAC-I5000
7089 L:      [email protected]
7090 S:      Maintained
7091 F:      drivers/edac/i5000_edac.c
7092
7093 EDAC-I5400
7094 M:      Mauro Carvalho Chehab <[email protected]>
7095 L:      [email protected]
7096 S:      Maintained
7097 F:      drivers/edac/i5400_edac.c
7098
7099 EDAC-I7300
7100 M:      Mauro Carvalho Chehab <[email protected]>
7101 L:      [email protected]
7102 S:      Maintained
7103 F:      drivers/edac/i7300_edac.c
7104
7105 EDAC-I7CORE
7106 M:      Mauro Carvalho Chehab <[email protected]>
7107 L:      [email protected]
7108 S:      Maintained
7109 F:      drivers/edac/i7core_edac.c
7110
7111 EDAC-I82443BXGX
7112 M:      Tim Small <[email protected]>
7113 L:      [email protected]
7114 S:      Maintained
7115 F:      drivers/edac/i82443bxgx_edac.c
7116
7117 EDAC-I82975X
7118 M:      "Arvind R." <[email protected]>
7119 L:      [email protected]
7120 S:      Maintained
7121 F:      drivers/edac/i82975x_edac.c
7122
7123 EDAC-IE31200
7124 M:      Jason Baron <[email protected]>
7125 L:      [email protected]
7126 S:      Maintained
7127 F:      drivers/edac/ie31200_edac.c
7128
7129 EDAC-IGEN6
7130 M:      Tony Luck <[email protected]>
7131 R:      Qiuxu Zhuo <[email protected]>
7132 L:      [email protected]
7133 S:      Maintained
7134 F:      drivers/edac/igen6_edac.c
7135
7136 EDAC-MPC85XX
7137 M:      Johannes Thumshirn <[email protected]>
7138 L:      [email protected]
7139 S:      Maintained
7140 F:      drivers/edac/mpc85xx_edac.[ch]
7141
7142 EDAC-PASEMI
7143 M:      Egor Martovetsky <[email protected]>
7144 L:      [email protected]
7145 S:      Maintained
7146 F:      drivers/edac/pasemi_edac.c
7147
7148 EDAC-PND2
7149 M:      Tony Luck <[email protected]>
7150 L:      [email protected]
7151 S:      Maintained
7152 F:      drivers/edac/pnd2_edac.[ch]
7153
7154 EDAC-QCOM
7155 M:      Channagoud Kadabi <[email protected]>
7156 M:      Venkata Narendra Kumar Gutta <[email protected]>
7157 L:      [email protected]
7158 L:      [email protected]
7159 S:      Maintained
7160 F:      drivers/edac/qcom_edac.c
7161
7162 EDAC-R82600
7163 M:      Tim Small <[email protected]>
7164 L:      [email protected]
7165 S:      Maintained
7166 F:      drivers/edac/r82600_edac.c
7167
7168 EDAC-SBRIDGE
7169 M:      Tony Luck <[email protected]>
7170 R:      Qiuxu Zhuo <[email protected]>
7171 L:      [email protected]
7172 S:      Maintained
7173 F:      drivers/edac/sb_edac.c
7174
7175 EDAC-SKYLAKE
7176 M:      Tony Luck <[email protected]>
7177 L:      [email protected]
7178 S:      Maintained
7179 F:      drivers/edac/skx_*.[ch]
7180
7181 EDAC-TI
7182 M:      Tero Kristo <[email protected]>
7183 L:      [email protected]
7184 S:      Odd Fixes
7185 F:      drivers/edac/ti_edac.c
7186
7187 EDIROL UA-101/UA-1000 DRIVER
7188 M:      Clemens Ladisch <[email protected]>
7189 L:      [email protected] (moderated for non-subscribers)
7190 S:      Maintained
7191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7192 F:      sound/usb/misc/ua101.c
7193
7194 EFI TEST DRIVER
7195 M:      Ivan Hu <[email protected]>
7196 M:      Ard Biesheuvel <[email protected]>
7197 L:      [email protected]
7198 S:      Maintained
7199 F:      drivers/firmware/efi/test/
7200
7201 EFI VARIABLE FILESYSTEM
7202 M:      Matthew Garrett <[email protected]>
7203 M:      Jeremy Kerr <[email protected]>
7204 M:      Ard Biesheuvel <[email protected]>
7205 L:      [email protected]
7206 S:      Maintained
7207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7208 F:      fs/efivarfs/
7209
7210 EFIFB FRAMEBUFFER DRIVER
7211 M:      Peter Jones <[email protected]>
7212 L:      [email protected]
7213 S:      Maintained
7214 F:      drivers/video/fbdev/efifb.c
7215
7216 EFS FILESYSTEM
7217 S:      Orphan
7218 W:      http://aeschi.ch.eu.org/efs/
7219 F:      fs/efs/
7220
7221 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7222 M:      Douglas Miller <[email protected]>
7223 L:      [email protected]
7224 S:      Maintained
7225 F:      drivers/net/ethernet/ibm/ehea/
7226
7227 EM28XX VIDEO4LINUX DRIVER
7228 M:      Mauro Carvalho Chehab <[email protected]>
7229 L:      [email protected]
7230 S:      Maintained
7231 W:      https://linuxtv.org
7232 T:      git git://linuxtv.org/media_tree.git
7233 F:      Documentation/admin-guide/media/em28xx*
7234 F:      drivers/media/usb/em28xx/
7235
7236 EMBEDDED LINUX
7237 M:      Matt Mackall <[email protected]>
7238 M:      David Woodhouse <[email protected]>
7239 L:      [email protected]
7240 S:      Maintained
7241
7242 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7243 M:      Adrian Hunter <[email protected]>
7244 M:      Ritesh Harjani <[email protected]>
7245 M:      Asutosh Das <[email protected]>
7246 L:      [email protected]
7247 S:      Maintained
7248 F:      drivers/mmc/host/cqhci*
7249
7250 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7251 M:      Ketan Mukadam <[email protected]>
7252 L:      [email protected]
7253 S:      Supported
7254 W:      http://www.broadcom.com
7255 F:      drivers/scsi/be2iscsi/
7256
7257 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7258 M:      Ajit Khaparde <[email protected]>
7259 M:      Sriharsha Basavapatna <[email protected]>
7260 M:      Somnath Kotur <[email protected]>
7261 L:      [email protected]
7262 S:      Supported
7263 W:      http://www.emulex.com
7264 F:      drivers/net/ethernet/emulex/benet/
7265
7266 EMULEX ONECONNECT ROCE DRIVER
7267 M:      Selvin Xavier <[email protected]>
7268 L:      [email protected]
7269 S:      Odd Fixes
7270 W:      http://www.broadcom.com
7271 F:      drivers/infiniband/hw/ocrdma/
7272 F:      include/uapi/rdma/ocrdma-abi.h
7273
7274 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7275 M:      James Smart <[email protected]>
7276 M:      Dick Kennedy <[email protected]>
7277 L:      [email protected]
7278 S:      Supported
7279 W:      http://www.broadcom.com
7280 F:      drivers/scsi/lpfc/
7281
7282 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7283 M:      James Smart <[email protected]>
7284 M:      Ram Vegesna <[email protected]>
7285 L:      [email protected]
7286 L:      [email protected]
7287 S:      Supported
7288 W:      http://www.broadcom.com
7289 F:      drivers/scsi/elx/
7290
7291 ENE CB710 FLASH CARD READER DRIVER
7292 M:      Michał Mirosław <[email protected]>
7293 S:      Maintained
7294 F:      drivers/misc/cb710/
7295 F:      drivers/mmc/host/cb710-mmc.*
7296 F:      include/linux/cb710.h
7297
7298 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7299 M:      Maxim Levitsky <[email protected]>
7300 S:      Maintained
7301 F:      drivers/media/rc/ene_ir.*
7302
7303 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7304 M:      Laurentiu Tudor <[email protected]>
7305 L:      [email protected]
7306 S:      Maintained
7307 F:      drivers/tty/ehv_bytechan.c
7308
7309 EPSON S1D13XXX FRAMEBUFFER DRIVER
7310 M:      Kristoffer Ericson <[email protected]>
7311 S:      Maintained
7312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7313 F:      drivers/video/fbdev/s1d13xxxfb.c
7314 F:      include/video/s1d13xxxfb.h
7315
7316 EROFS FILE SYSTEM
7317 M:      Gao Xiang <[email protected]>
7318 M:      Chao Yu <[email protected]>
7319 L:      [email protected]
7320 S:      Maintained
7321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7322 F:      Documentation/filesystems/erofs.rst
7323 F:      fs/erofs/
7324 F:      include/trace/events/erofs.h
7325
7326 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7327 M:      Jeff Layton <[email protected]>
7328 S:      Maintained
7329 F:      include/linux/errseq.h
7330 F:      lib/errseq.c
7331
7332 ET131X NETWORK DRIVER
7333 M:      Mark Einon <[email protected]>
7334 S:      Odd Fixes
7335 F:      drivers/net/ethernet/agere/
7336
7337 ETAS ES58X CAN/USB DRIVER
7338 M:      Vincent Mailhol <[email protected]>
7339 L:      [email protected]
7340 S:      Maintained
7341 F:      drivers/net/can/usb/etas_es58x/
7342
7343 ETHERNET BRIDGE
7344 M:      Roopa Prabhu <[email protected]>
7345 M:      Nikolay Aleksandrov <[email protected]>
7346 L:      [email protected] (moderated for non-subscribers)
7347 L:      [email protected]
7348 S:      Maintained
7349 W:      http://www.linuxfoundation.org/en/Net:Bridge
7350 F:      include/linux/netfilter_bridge/
7351 F:      net/bridge/
7352
7353 ETHERNET PHY LIBRARY
7354 M:      Andrew Lunn <[email protected]>
7355 M:      Heiner Kallweit <[email protected]>
7356 R:      Russell King <[email protected]>
7357 L:      [email protected]
7358 S:      Maintained
7359 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7360 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7361 F:      Documentation/devicetree/bindings/net/mdio*
7362 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7363 F:      Documentation/networking/phy.rst
7364 F:      drivers/net/mdio/
7365 F:      drivers/net/mdio/acpi_mdio.c
7366 F:      drivers/net/mdio/fwnode_mdio.c
7367 F:      drivers/net/mdio/of_mdio.c
7368 F:      drivers/net/pcs/
7369 F:      drivers/net/phy/
7370 F:      include/dt-bindings/net/qca-ar803x.h
7371 F:      include/linux/linkmode.h
7372 F:      include/linux/*mdio*.h
7373 F:      include/linux/mdio/*.h
7374 F:      include/linux/mii.h
7375 F:      include/linux/of_net.h
7376 F:      include/linux/phy.h
7377 F:      include/linux/phy_fixed.h
7378 F:      include/linux/platform_data/mdio-bcm-unimac.h
7379 F:      include/linux/platform_data/mdio-gpio.h
7380 F:      include/trace/events/mdio.h
7381 F:      include/uapi/linux/mdio.h
7382 F:      include/uapi/linux/mii.h
7383 F:      net/core/of_net.c
7384
7385 EXEC & BINFMT API
7386 R:      Eric Biederman <[email protected]>
7387 R:      Kees Cook <[email protected]>
7388 L:      [email protected]
7389 S:      Supported
7390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7391 F:      arch/alpha/kernel/binfmt_loader.c
7392 F:      arch/x86/ia32/ia32_aout.c
7393 F:      fs/*binfmt_*.c
7394 F:      fs/exec.c
7395 F:      include/linux/binfmts.h
7396 F:      include/linux/elf.h
7397 F:      include/uapi/linux/binfmts.h
7398 F:      include/uapi/linux/elf.h
7399 F:      tools/testing/selftests/exec/
7400 N:      asm/elf.h
7401 N:      binfmt
7402
7403 EXFAT FILE SYSTEM
7404 M:      Namjae Jeon <[email protected]>
7405 M:      Sungjong Seo <[email protected]>
7406 L:      [email protected]
7407 S:      Maintained
7408 F:      fs/exfat/
7409
7410 EXT2 FILE SYSTEM
7411 M:      Jan Kara <[email protected]>
7412 L:      [email protected]
7413 S:      Maintained
7414 F:      Documentation/filesystems/ext2.rst
7415 F:      fs/ext2/
7416 F:      include/linux/ext2*
7417
7418 EXT4 FILE SYSTEM
7419 M:      "Theodore Ts'o" <[email protected]>
7420 M:      Andreas Dilger <[email protected]>
7421 L:      [email protected]
7422 S:      Maintained
7423 W:      http://ext4.wiki.kernel.org
7424 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7426 F:      Documentation/filesystems/ext4/
7427 F:      fs/ext4/
7428 F:      include/trace/events/ext4.h
7429
7430 Extended Verification Module (EVM)
7431 M:      Mimi Zohar <[email protected]>
7432 L:      [email protected]
7433 S:      Supported
7434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7435 F:      security/integrity/evm/
7436 F:      security/integrity/
7437
7438 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7439 M:      Ard Biesheuvel <[email protected]>
7440 L:      [email protected]
7441 S:      Maintained
7442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7443 F:      Documentation/admin-guide/efi-stub.rst
7444 F:      arch/*/include/asm/efi.h
7445 F:      arch/*/kernel/efi.c
7446 F:      arch/arm/boot/compressed/efi-header.S
7447 F:      arch/arm64/kernel/efi-entry.S
7448 F:      arch/x86/platform/efi/
7449 F:      drivers/firmware/efi/
7450 F:      include/linux/efi*.h
7451
7452 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7453 M:      MyungJoo Ham <[email protected]>
7454 M:      Chanwoo Choi <[email protected]>
7455 L:      [email protected]
7456 S:      Maintained
7457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7458 F:      Documentation/devicetree/bindings/extcon/
7459 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7460 F:      drivers/extcon/
7461 F:      include/linux/extcon.h
7462 F:      include/linux/extcon/
7463
7464 EXTRA BOOT CONFIG
7465 M:      Masami Hiramatsu <[email protected]>
7466 S:      Maintained
7467 F:      Documentation/admin-guide/bootconfig.rst
7468 F:      fs/proc/bootconfig.c
7469 F:      include/linux/bootconfig.h
7470 F:      lib/bootconfig.c
7471 F:      tools/bootconfig/*
7472 F:      tools/bootconfig/scripts/*
7473
7474 EXYNOS DP DRIVER
7475 M:      Jingoo Han <[email protected]>
7476 L:      [email protected]
7477 S:      Maintained
7478 F:      drivers/gpu/drm/exynos/exynos_dp*
7479
7480 EXYNOS SYSMMU (IOMMU) driver
7481 M:      Marek Szyprowski <[email protected]>
7482 L:      [email protected]
7483 S:      Maintained
7484 F:      drivers/iommu/exynos-iommu.c
7485
7486 F2FS FILE SYSTEM
7487 M:      Jaegeuk Kim <[email protected]>
7488 M:      Chao Yu <[email protected]>
7489 L:      [email protected]
7490 S:      Maintained
7491 W:      https://f2fs.wiki.kernel.org/
7492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7493 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7494 F:      Documentation/filesystems/f2fs.rst
7495 F:      fs/f2fs/
7496 F:      include/linux/f2fs_fs.h
7497 F:      include/trace/events/f2fs.h
7498 F:      include/uapi/linux/f2fs.h
7499
7500 F71805F HARDWARE MONITORING DRIVER
7501 M:      Jean Delvare <[email protected]>
7502 L:      [email protected]
7503 S:      Maintained
7504 F:      Documentation/hwmon/f71805f.rst
7505 F:      drivers/hwmon/f71805f.c
7506
7507 FADDR2LINE
7508 M:      Josh Poimboeuf <[email protected]>
7509 S:      Maintained
7510 F:      scripts/faddr2line
7511
7512 FAILOVER MODULE
7513 M:      Sridhar Samudrala <[email protected]>
7514 L:      [email protected]
7515 S:      Supported
7516 F:      Documentation/networking/failover.rst
7517 F:      include/net/failover.h
7518 F:      net/core/failover.c
7519
7520 FANOTIFY
7521 M:      Jan Kara <[email protected]>
7522 R:      Amir Goldstein <[email protected]>
7523 R:      Matthew Bobrowski <[email protected]>
7524 L:      [email protected]
7525 S:      Maintained
7526 F:      fs/notify/fanotify/
7527 F:      include/linux/fanotify.h
7528 F:      include/uapi/linux/fanotify.h
7529
7530 FARSYNC SYNCHRONOUS DRIVER
7531 M:      Kevin Curtis <[email protected]>
7532 S:      Supported
7533 W:      http://www.farsite.co.uk/
7534 F:      drivers/net/wan/farsync.*
7535
7536 FAULT INJECTION SUPPORT
7537 M:      Akinobu Mita <[email protected]>
7538 S:      Supported
7539 F:      Documentation/fault-injection/
7540 F:      lib/fault-inject.c
7541
7542 FBTFT Framebuffer drivers
7543 L:      [email protected]
7544 L:      [email protected]
7545 S:      Orphan
7546 F:      drivers/staging/fbtft/
7547
7548 FC0011 TUNER DRIVER
7549 M:      Michael Buesch <[email protected]>
7550 L:      [email protected]
7551 S:      Maintained
7552 F:      drivers/media/tuners/fc0011.c
7553 F:      drivers/media/tuners/fc0011.h
7554
7555 FC2580 MEDIA DRIVER
7556 M:      Antti Palosaari <[email protected]>
7557 L:      [email protected]
7558 S:      Maintained
7559 W:      https://linuxtv.org
7560 W:      http://palosaari.fi/linux/
7561 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7562 T:      git git://linuxtv.org/anttip/media_tree.git
7563 F:      drivers/media/tuners/fc2580*
7564
7565 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7566 M:      Hannes Reinecke <[email protected]>
7567 L:      [email protected]
7568 S:      Supported
7569 W:      www.Open-FCoE.org
7570 F:      drivers/scsi/fcoe/
7571 F:      drivers/scsi/libfc/
7572 F:      include/scsi/fc/
7573 F:      include/scsi/libfc.h
7574 F:      include/scsi/libfcoe.h
7575 F:      include/uapi/scsi/fc/
7576
7577 FILE LOCKING (flock() and fcntl()/lockf())
7578 M:      Jeff Layton <[email protected]>
7579 L:      [email protected]
7580 S:      Maintained
7581 F:      fs/fcntl.c
7582 F:      fs/locks.c
7583 F:      include/linux/fcntl.h
7584 F:      include/uapi/linux/fcntl.h
7585
7586 FILESYSTEM DIRECT ACCESS (DAX)
7587 M:      Dan Williams <[email protected]>
7588 R:      Matthew Wilcox <[email protected]>
7589 R:      Jan Kara <[email protected]>
7590 L:      [email protected]
7591 L:      [email protected]
7592 S:      Supported
7593 F:      fs/dax.c
7594 F:      include/linux/dax.h
7595 F:      include/trace/events/fs_dax.h
7596
7597 FILESYSTEMS (VFS and infrastructure)
7598 M:      Alexander Viro <[email protected]>
7599 L:      [email protected]
7600 S:      Maintained
7601 F:      fs/*
7602 F:      include/linux/fs.h
7603 F:      include/linux/fs_types.h
7604 F:      include/uapi/linux/fs.h
7605 F:      include/uapi/linux/openat2.h
7606 X:      fs/io-wq.c
7607 X:      fs/io-wq.h
7608 X:      fs/io_uring.c
7609
7610 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7611 M:      Riku Voipio <[email protected]>
7612 L:      [email protected]
7613 S:      Maintained
7614 F:      drivers/hwmon/f75375s.c
7615 F:      include/linux/f75375s.h
7616
7617 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7618 M:      Clemens Ladisch <[email protected]>
7619 M:      Takashi Sakamoto <[email protected]>
7620 L:      [email protected] (moderated for non-subscribers)
7621 S:      Maintained
7622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7623 F:      include/uapi/sound/firewire.h
7624 F:      sound/firewire/
7625
7626 FIREWIRE MEDIA DRIVERS (firedtv)
7627 M:      Stefan Richter <[email protected]>
7628 L:      [email protected]
7629 L:      [email protected]
7630 S:      Maintained
7631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7632 F:      drivers/media/firewire/
7633
7634 FIREWIRE SBP-2 TARGET
7635 M:      Chris Boot <[email protected]>
7636 L:      [email protected]
7637 L:      [email protected]
7638 L:      [email protected]
7639 S:      Maintained
7640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7641 F:      drivers/target/sbp/
7642
7643 FIREWIRE SUBSYSTEM
7644 M:      Stefan Richter <[email protected]>
7645 L:      [email protected]
7646 S:      Maintained
7647 W:      http://ieee1394.wiki.kernel.org/
7648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7649 F:      drivers/firewire/
7650 F:      include/linux/firewire.h
7651 F:      include/uapi/linux/firewire*.h
7652 F:      tools/firewire/
7653
7654 FIRMWARE FRAMEWORK FOR ARMV8-A
7655 M:      Sudeep Holla <[email protected]>
7656 L:      [email protected] (moderated for non-subscribers)
7657 S:      Maintained
7658 F:      drivers/firmware/arm_ffa/
7659 F:      include/linux/arm_ffa.h
7660
7661 FIRMWARE LOADER (request_firmware)
7662 M:      Luis Chamberlain <[email protected]>
7663 L:      [email protected]
7664 S:      Maintained
7665 F:      Documentation/firmware_class/
7666 F:      drivers/base/firmware_loader/
7667 F:      include/linux/firmware.h
7668
7669 FLEXTIMER FTM-QUADDEC DRIVER
7670 M:      Patrick Havelange <[email protected]>
7671 L:      [email protected]
7672 S:      Maintained
7673 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7674 F:      drivers/counter/ftm-quaddec.c
7675
7676 FLOPPY DRIVER
7677 M:      Denis Efremov <[email protected]>
7678 L:      [email protected]
7679 S:      Odd Fixes
7680 F:      drivers/block/floppy.c
7681
7682 FLYSKY FSIA6B RC RECEIVER
7683 M:      Markus Koch <[email protected]>
7684 L:      [email protected]
7685 S:      Maintained
7686 F:      drivers/input/joystick/fsia6b.c
7687
7688 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7689 M:      Geoffrey D. Bennett <[email protected]>
7690 L:      [email protected] (moderated for non-subscribers)
7691 S:      Maintained
7692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7693 F:      sound/usb/mixer_scarlett_gen2.c
7694
7695 FORCEDETH GIGABIT ETHERNET DRIVER
7696 M:      Rain River <[email protected]>
7697 M:      Zhu Yanjun <[email protected]>
7698 L:      [email protected]
7699 S:      Maintained
7700 F:      drivers/net/ethernet/nvidia/*
7701
7702 FORTIFY_SOURCE
7703 M:      Kees Cook <[email protected]>
7704 L:      [email protected]
7705 S:      Supported
7706 F:      include/linux/fortify-string.h
7707 F:      lib/test_fortify/*
7708 F:      scripts/test_fortify.sh
7709 K:      \b__NO_FORTIFY\b
7710
7711 FPGA DFL DRIVERS
7712 M:      Wu Hao <[email protected]>
7713 R:      Tom Rix <[email protected]>
7714 L:      [email protected]
7715 S:      Maintained
7716 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7717 F:      Documentation/fpga/dfl.rst
7718 F:      drivers/fpga/dfl*
7719 F:      drivers/uio/uio_dfl.c
7720 F:      include/linux/dfl.h
7721 F:      include/uapi/linux/fpga-dfl.h
7722
7723 FPGA MANAGER FRAMEWORK
7724 M:      Moritz Fischer <[email protected]>
7725 M:      Wu Hao <[email protected]>
7726 M:      Xu Yilun <[email protected]>
7727 R:      Tom Rix <[email protected]>
7728 L:      [email protected]
7729 S:      Maintained
7730 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7732 F:      Documentation/devicetree/bindings/fpga/
7733 F:      Documentation/driver-api/fpga/
7734 F:      Documentation/fpga/
7735 F:      drivers/fpga/
7736 F:      include/linux/fpga/
7737
7738 FPU EMULATOR
7739 M:      Bill Metzenthen <[email protected]>
7740 S:      Maintained
7741 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7742 F:      arch/x86/math-emu/
7743
7744 FRAMEBUFFER CORE
7745 M:      Daniel Vetter <[email protected]>
7746 F:      drivers/video/fbdev/core/
7747 S:      Odd Fixes
7748 T:      git git://anongit.freedesktop.org/drm/drm-misc
7749
7750 FRAMEBUFFER LAYER
7751 M:      Helge Deller <[email protected]>
7752 L:      [email protected]
7753 L:      [email protected]
7754 S:      Maintained
7755 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
7757 F:      Documentation/fb/
7758 F:      drivers/video/
7759 F:      include/linux/fb.h
7760 F:      include/uapi/linux/fb.h
7761 F:      include/uapi/video/
7762 F:      include/video/
7763
7764 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7765 M:      Horia Geantă <[email protected]>
7766 M:      Pankaj Gupta <[email protected]>
7767 M:      Gaurav Jain <[email protected]>
7768 L:      [email protected]
7769 S:      Maintained
7770 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7771 F:      drivers/crypto/caam/
7772
7773 FREESCALE COLDFIRE M5441X MMC DRIVER
7774 M:      Angelo Dureghello <[email protected]>
7775 L:      [email protected]
7776 S:      Maintained
7777 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7778 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7779
7780 FREESCALE DIU FRAMEBUFFER DRIVER
7781 M:      Timur Tabi <[email protected]>
7782 L:      [email protected]
7783 S:      Maintained
7784 F:      drivers/video/fbdev/fsl-diu-fb.*
7785
7786 FREESCALE DMA DRIVER
7787 M:      Li Yang <[email protected]>
7788 M:      Zhang Wei <[email protected]>
7789 L:      [email protected]
7790 S:      Maintained
7791 F:      drivers/dma/fsldma.*
7792
7793 FREESCALE DSPI DRIVER
7794 M:      Vladimir Oltean <[email protected]>
7795 L:      [email protected]
7796 S:      Maintained
7797 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7798 F:      drivers/spi/spi-fsl-dspi.c
7799 F:      include/linux/spi/spi-fsl-dspi.h
7800
7801 FREESCALE ENETC ETHERNET DRIVERS
7802 M:      Claudiu Manoil <[email protected]>
7803 L:      [email protected]
7804 S:      Maintained
7805 F:      drivers/net/ethernet/freescale/enetc/
7806
7807 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7808 M:      Claudiu Manoil <[email protected]>
7809 L:      [email protected]
7810 S:      Maintained
7811 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7812 F:      drivers/net/ethernet/freescale/gianfar*
7813
7814 FREESCALE GPMI NAND DRIVER
7815 M:      Han Xu <[email protected]>
7816 L:      [email protected]
7817 S:      Maintained
7818 F:      drivers/mtd/nand/raw/gpmi-nand/*
7819
7820 FREESCALE I2C CPM DRIVER
7821 M:      Jochen Friedrich <[email protected]>
7822 L:      [email protected]
7823 L:      [email protected]
7824 S:      Maintained
7825 F:      drivers/i2c/busses/i2c-cpm.c
7826
7827 FREESCALE IMX / MXC FEC DRIVER
7828 M:      Joakim Zhang <[email protected]>
7829 L:      [email protected]
7830 S:      Maintained
7831 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7832 F:      drivers/net/ethernet/freescale/fec.h
7833 F:      drivers/net/ethernet/freescale/fec_main.c
7834 F:      drivers/net/ethernet/freescale/fec_ptp.c
7835
7836 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7837 M:      Sascha Hauer <[email protected]>
7838 R:      Pengutronix Kernel Team <[email protected]>
7839 L:      [email protected]
7840 L:      [email protected] (moderated for non-subscribers)
7841 S:      Maintained
7842 F:      drivers/video/fbdev/imxfb.c
7843 F:      include/linux/platform_data/video-imxfb.h
7844
7845 FREESCALE IMX DDR PMU DRIVER
7846 M:      Frank Li <[email protected]>
7847 L:      [email protected] (moderated for non-subscribers)
7848 S:      Maintained
7849 F:      Documentation/admin-guide/perf/imx-ddr.rst
7850 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7851 F:      drivers/perf/fsl_imx8_ddr_perf.c
7852
7853 FREESCALE IMX I2C DRIVER
7854 M:      Oleksij Rempel <[email protected]>
7855 R:      Pengutronix Kernel Team <[email protected]>
7856 L:      [email protected]
7857 S:      Maintained
7858 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7859 F:      drivers/i2c/busses/i2c-imx.c
7860
7861 FREESCALE IMX LPI2C DRIVER
7862 M:      Dong Aisheng <[email protected]>
7863 L:      [email protected]
7864 L:      [email protected]
7865 S:      Maintained
7866 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7867 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7868
7869 FREESCALE MPC I2C DRIVER
7870 M:      Chris Packham <[email protected]>
7871 L:      [email protected]
7872 S:      Maintained
7873 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7874 F:      drivers/i2c/busses/i2c-mpc.c
7875
7876 FREESCALE QORIQ DPAA ETHERNET DRIVER
7877 M:      Madalin Bucur <[email protected]>
7878 L:      [email protected]
7879 S:      Maintained
7880 F:      drivers/net/ethernet/freescale/dpaa
7881
7882 FREESCALE QORIQ DPAA FMAN DRIVER
7883 M:      Madalin Bucur <[email protected]>
7884 L:      [email protected]
7885 S:      Maintained
7886 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7887 F:      drivers/net/ethernet/freescale/fman
7888
7889 FREESCALE QORIQ PTP CLOCK DRIVER
7890 M:      Yangbo Lu <[email protected]>
7891 L:      [email protected]
7892 S:      Maintained
7893 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7894 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7895 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7896 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7897 F:      drivers/ptp/ptp_qoriq.c
7898 F:      drivers/ptp/ptp_qoriq_debugfs.c
7899 F:      include/linux/fsl/ptp_qoriq.h
7900
7901 FREESCALE QUAD SPI DRIVER
7902 M:      Han Xu <[email protected]>
7903 L:      [email protected]
7904 S:      Maintained
7905 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7906 F:      drivers/spi/spi-fsl-qspi.c
7907
7908 FREESCALE QUICC ENGINE LIBRARY
7909 M:      Qiang Zhao <[email protected]>
7910 L:      [email protected]
7911 S:      Maintained
7912 F:      drivers/soc/fsl/qe/
7913 F:      include/soc/fsl/qe/
7914
7915 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7916 M:      Li Yang <[email protected]>
7917 L:      [email protected]
7918 L:      [email protected]
7919 S:      Maintained
7920 F:      drivers/net/ethernet/freescale/ucc_geth*
7921
7922 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7923 M:      Zhao Qiang <[email protected]>
7924 L:      [email protected]
7925 L:      [email protected]
7926 S:      Maintained
7927 F:      drivers/net/wan/fsl_ucc_hdlc*
7928
7929 FREESCALE QUICC ENGINE UCC UART DRIVER
7930 M:      Timur Tabi <[email protected]>
7931 L:      [email protected]
7932 S:      Maintained
7933 F:      drivers/tty/serial/ucc_uart.c
7934
7935 FREESCALE SOC DRIVERS
7936 M:      Li Yang <[email protected]>
7937 L:      [email protected]
7938 L:      [email protected] (moderated for non-subscribers)
7939 S:      Maintained
7940 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7941 F:      Documentation/devicetree/bindings/soc/fsl/
7942 F:      drivers/soc/fsl/
7943 F:      include/linux/fsl/
7944 F:      include/soc/fsl/
7945
7946 FREESCALE SOC FS_ENET DRIVER
7947 M:      Pantelis Antoniou <[email protected]>
7948 L:      [email protected]
7949 L:      [email protected]
7950 S:      Maintained
7951 F:      drivers/net/ethernet/freescale/fs_enet/
7952 F:      include/linux/fs_enet_pd.h
7953
7954 FREESCALE SOC SOUND DRIVERS
7955 M:      Shengjiu Wang <[email protected]>
7956 M:      Xiubo Li <[email protected]>
7957 R:      Fabio Estevam <[email protected]>
7958 R:      Nicolin Chen <[email protected]>
7959 L:      [email protected] (moderated for non-subscribers)
7960 L:      [email protected]
7961 S:      Maintained
7962 F:      sound/soc/fsl/fsl*
7963 F:      sound/soc/fsl/imx*
7964 F:      sound/soc/fsl/mpc8610_hpcd.c
7965
7966 FREESCALE USB PERIPHERAL DRIVERS
7967 M:      Li Yang <[email protected]>
7968 L:      [email protected]
7969 L:      [email protected]
7970 S:      Maintained
7971 F:      drivers/usb/gadget/udc/fsl*
7972
7973 FREESCALE USB PHY DRIVER
7974 M:      Ran Wang <[email protected]>
7975 L:      [email protected]
7976 L:      [email protected]
7977 S:      Maintained
7978 F:      drivers/usb/phy/phy-fsl-usb*
7979
7980 FREEVXFS FILESYSTEM
7981 M:      Christoph Hellwig <[email protected]>
7982 S:      Maintained
7983 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7984 F:      fs/freevxfs/
7985
7986 FREEZER
7987 M:      "Rafael J. Wysocki" <[email protected]>
7988 M:      Pavel Machek <[email protected]>
7989 L:      [email protected]
7990 S:      Supported
7991 F:      Documentation/power/freezing-of-tasks.rst
7992 F:      include/linux/freezer.h
7993 F:      kernel/freezer.c
7994
7995 FRONTSWAP API
7996 M:      Konrad Rzeszutek Wilk <[email protected]>
7997 L:      [email protected]
7998 S:      Maintained
7999 F:      include/linux/frontswap.h
8000 F:      mm/frontswap.c
8001
8002 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8003 M:      David Howells <[email protected]>
8004 L:      [email protected] (moderated for non-subscribers)
8005 S:      Supported
8006 F:      Documentation/filesystems/caching/
8007 F:      fs/fscache/
8008 F:      include/linux/fscache*.h
8009
8010 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8011 M:      Theodore Y. Ts'o <[email protected]>
8012 M:      Jaegeuk Kim <[email protected]>
8013 M:      Eric Biggers <[email protected]>
8014 L:      [email protected]
8015 S:      Supported
8016 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8017 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
8018 F:      Documentation/filesystems/fscrypt.rst
8019 F:      fs/crypto/
8020 F:      include/linux/fscrypt*.h
8021 F:      include/uapi/linux/fscrypt.h
8022
8023 FSI SUBSYSTEM
8024 M:      Jeremy Kerr <[email protected]>
8025 M:      Joel Stanley <[email protected]>
8026 R:      Alistar Popple <[email protected]>
8027 R:      Eddie James <[email protected]>
8028 L:      [email protected]
8029 S:      Supported
8030 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8032 F:      drivers/fsi/
8033 F:      include/linux/fsi*.h
8034 F:      include/trace/events/fsi*.h
8035
8036 FSI-ATTACHED I2C DRIVER
8037 M:      Eddie James <[email protected]>
8038 L:      [email protected]
8039 L:      [email protected] (moderated for non-subscribers)
8040 S:      Maintained
8041 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8042 F:      drivers/i2c/busses/i2c-fsi.c
8043
8044 FSI-ATTACHED SPI DRIVER
8045 M:      Eddie James <[email protected]>
8046 L:      [email protected]
8047 S:      Maintained
8048 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8049 F:      drivers/spi/spi-fsi.c
8050
8051 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8052 M:      Jan Kara <[email protected]>
8053 R:      Amir Goldstein <[email protected]>
8054 L:      [email protected]
8055 S:      Maintained
8056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8057 F:      fs/notify/
8058 F:      include/linux/fsnotify*.h
8059
8060 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8061 M:      Eric Biggers <[email protected]>
8062 M:      Theodore Y. Ts'o <[email protected]>
8063 L:      [email protected]
8064 S:      Supported
8065 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8066 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
8067 F:      Documentation/filesystems/fsverity.rst
8068 F:      fs/verity/
8069 F:      include/linux/fsverity.h
8070 F:      include/uapi/linux/fsverity.h
8071
8072 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8073 M:      Michael Zaidman <[email protected]>
8074 L:      [email protected]
8075 L:      [email protected]
8076 S:      Maintained
8077 F:      drivers/hid/hid-ft260.c
8078
8079 FUJITSU LAPTOP EXTRAS
8080 M:      Jonathan Woithe <[email protected]>
8081 L:      [email protected]
8082 S:      Maintained
8083 F:      drivers/platform/x86/fujitsu-laptop.c
8084
8085 FUJITSU M-5MO LS CAMERA ISP DRIVER
8086 M:      Kyungmin Park <[email protected]>
8087 M:      Heungjun Kim <[email protected]>
8088 L:      [email protected]
8089 S:      Maintained
8090 F:      drivers/media/i2c/m5mols/
8091 F:      include/media/i2c/m5mols.h
8092
8093 FUJITSU TABLET EXTRAS
8094 M:      Robert Gerlach <[email protected]>
8095 L:      [email protected]
8096 S:      Maintained
8097 F:      drivers/platform/x86/fujitsu-tablet.c
8098
8099 FUNGIBLE ETHERNET DRIVERS
8100 M:      Dimitris Michailidis <[email protected]>
8101 L:      [email protected]
8102 S:      Supported
8103 F:      drivers/net/ethernet/fungible/
8104
8105 FUSE: FILESYSTEM IN USERSPACE
8106 M:      Miklos Szeredi <[email protected]>
8107 L:      [email protected]
8108 S:      Maintained
8109 W:      https://github.com/libfuse/
8110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8111 F:      Documentation/filesystems/fuse.rst
8112 F:      fs/fuse/
8113 F:      include/uapi/linux/fuse.h
8114
8115 FUTEX SUBSYSTEM
8116 M:      Thomas Gleixner <[email protected]>
8117 M:      Ingo Molnar <[email protected]>
8118 R:      Peter Zijlstra <[email protected]>
8119 R:      Darren Hart <[email protected]>
8120 R:      Davidlohr Bueso <[email protected]>
8121 R:      André Almeida <[email protected]>
8122 L:      [email protected]
8123 S:      Maintained
8124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8125 F:      Documentation/locking/*futex*
8126 F:      include/asm-generic/futex.h
8127 F:      include/linux/futex.h
8128 F:      include/uapi/linux/futex.h
8129 F:      kernel/futex/*
8130 F:      tools/perf/bench/futex*
8131 F:      tools/testing/selftests/futex/
8132
8133 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8134 M:      Tim Harvey <[email protected]>
8135 M:      Robert Jones <[email protected]>
8136 S:      Maintained
8137 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8138 F:      drivers/mfd/gateworks-gsc.c
8139 F:      include/linux/mfd/gsc.h
8140 F:      Documentation/hwmon/gsc-hwmon.rst
8141 F:      drivers/hwmon/gsc-hwmon.c
8142 F:      include/linux/platform_data/gsc_hwmon.h
8143
8144 GCC PLUGINS
8145 M:      Kees Cook <[email protected]>
8146 L:      [email protected]
8147 S:      Maintained
8148 F:      Documentation/kbuild/gcc-plugins.rst
8149 F:      scripts/Makefile.gcc-plugins
8150 F:      scripts/gcc-plugins/
8151
8152 GCOV BASED KERNEL PROFILING
8153 M:      Peter Oberparleiter <[email protected]>
8154 S:      Maintained
8155 F:      Documentation/dev-tools/gcov.rst
8156 F:      kernel/gcov/
8157
8158 GDB KERNEL DEBUGGING HELPER SCRIPTS
8159 M:      Jan Kiszka <[email protected]>
8160 M:      Kieran Bingham <[email protected]>
8161 S:      Supported
8162 F:      scripts/gdb/
8163
8164 GEMINI CRYPTO DRIVER
8165 M:      Corentin Labbe <[email protected]>
8166 L:      [email protected]
8167 S:      Maintained
8168 F:      drivers/crypto/gemini/
8169
8170 GEMTEK FM RADIO RECEIVER DRIVER
8171 M:      Hans Verkuil <[email protected]>
8172 L:      [email protected]
8173 S:      Maintained
8174 W:      https://linuxtv.org
8175 T:      git git://linuxtv.org/media_tree.git
8176 F:      drivers/media/radio/radio-gemtek*
8177
8178 GENERIC ARCHITECTURE TOPOLOGY
8179 M:      Sudeep Holla <[email protected]>
8180 L:      [email protected]
8181 S:      Maintained
8182 F:      drivers/base/arch_topology.c
8183 F:      include/linux/arch_topology.h
8184
8185 GENERIC ENTRY CODE
8186 M:      Thomas Gleixner <[email protected]>
8187 M:      Peter Zijlstra <[email protected]>
8188 M:      Andy Lutomirski <[email protected]>
8189 L:      [email protected]
8190 S:      Maintained
8191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8192 F:      include/linux/entry-common.h
8193 F:      include/linux/entry-kvm.h
8194 F:      kernel/entry/
8195
8196 GENERIC GPIO I2C DRIVER
8197 M:      Wolfram Sang <[email protected]>
8198 S:      Supported
8199 F:      drivers/i2c/busses/i2c-gpio.c
8200 F:      include/linux/platform_data/i2c-gpio.h
8201
8202 GENERIC GPIO I2C MULTIPLEXER DRIVER
8203 M:      Peter Korsgaard <[email protected]>
8204 L:      [email protected]
8205 S:      Supported
8206 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8207 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8208 F:      include/linux/platform_data/i2c-mux-gpio.h
8209
8210 GENERIC HDLC (WAN) DRIVERS
8211 M:      Krzysztof Halasa <[email protected]>
8212 S:      Maintained
8213 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8214 F:      drivers/net/wan/c101.c
8215 F:      drivers/net/wan/hd6457*
8216 F:      drivers/net/wan/hdlc*
8217 F:      drivers/net/wan/n2.c
8218 F:      drivers/net/wan/pc300too.c
8219 F:      drivers/net/wan/pci200syn.c
8220 F:      drivers/net/wan/wanxl*
8221
8222 GENERIC INCLUDE/ASM HEADER FILES
8223 M:      Arnd Bergmann <[email protected]>
8224 L:      [email protected]
8225 S:      Maintained
8226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8227 F:      include/asm-generic/
8228 F:      include/uapi/asm-generic/
8229
8230 GENERIC PHY FRAMEWORK
8231 M:      Kishon Vijay Abraham I <[email protected]>
8232 M:      Vinod Koul <[email protected]>
8233 L:      [email protected]
8234 S:      Supported
8235 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8237 F:      Documentation/devicetree/bindings/phy/
8238 F:      drivers/phy/
8239 F:      include/linux/phy/
8240
8241 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8242 M:      Wolfram Sang <[email protected]>
8243 S:      Supported
8244 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8245
8246 GENERIC PM DOMAINS
8247 M:      "Rafael J. Wysocki" <[email protected]>
8248 M:      Kevin Hilman <[email protected]>
8249 M:      Ulf Hansson <[email protected]>
8250 L:      [email protected]
8251 S:      Supported
8252 F:      Documentation/devicetree/bindings/power/power?domain*
8253 F:      drivers/base/power/domain*.c
8254 F:      include/linux/pm_domain.h
8255
8256 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8257 M:      Eugen Hristev <[email protected]>
8258 L:      [email protected]
8259 S:      Maintained
8260 F:      drivers/input/touchscreen/resistive-adc-touch.c
8261
8262 GENERIC STRING LIBRARY
8263 R:      Andy Shevchenko <[email protected]>
8264 S:      Maintained
8265 F:      lib/string.c
8266 F:      lib/string_helpers.c
8267 F:      lib/test_string.c
8268 F:      lib/test-string_helpers.c
8269
8270 GENERIC UIO DRIVER FOR PCI DEVICES
8271 M:      "Michael S. Tsirkin" <[email protected]>
8272 L:      [email protected]
8273 S:      Supported
8274 F:      drivers/uio/uio_pci_generic.c
8275
8276 GENERIC VDSO LIBRARY
8277 M:      Andy Lutomirski <[email protected]>
8278 M:      Thomas Gleixner <[email protected]>
8279 M:      Vincenzo Frascino <[email protected]>
8280 L:      [email protected]
8281 S:      Maintained
8282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8283 F:      include/asm-generic/vdso/vsyscall.h
8284 F:      include/vdso/
8285 F:      kernel/time/vsyscall.c
8286 F:      lib/vdso/
8287
8288 GENWQE (IBM Generic Workqueue Card)
8289 M:      Frank Haverkamp <[email protected]>
8290 S:      Supported
8291 F:      drivers/misc/genwqe/
8292
8293 GET_MAINTAINER SCRIPT
8294 M:      Joe Perches <[email protected]>
8295 S:      Maintained
8296 F:      scripts/get_maintainer.pl
8297
8298 GFS2 FILE SYSTEM
8299 M:      Bob Peterson <[email protected]>
8300 M:      Andreas Gruenbacher <[email protected]>
8301 L:      [email protected]
8302 S:      Supported
8303 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8305 F:      Documentation/filesystems/gfs2*
8306 F:      fs/gfs2/
8307 F:      include/uapi/linux/gfs2_ondisk.h
8308
8309 GIGABYTE WMI DRIVER
8310 M:      Thomas Weißschuh <[email protected]>
8311 L:      [email protected]
8312 S:      Maintained
8313 F:      drivers/platform/x86/gigabyte-wmi.c
8314
8315 GNSS SUBSYSTEM
8316 M:      Johan Hovold <[email protected]>
8317 S:      Maintained
8318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8319 F:      Documentation/ABI/testing/sysfs-class-gnss
8320 F:      Documentation/devicetree/bindings/gnss/
8321 F:      drivers/gnss/
8322 F:      include/linux/gnss.h
8323
8324 GO7007 MPEG CODEC
8325 M:      Hans Verkuil <[email protected]>
8326 L:      [email protected]
8327 S:      Maintained
8328 F:      drivers/media/usb/go7007/
8329
8330 GOODIX TOUCHSCREEN
8331 M:      Bastien Nocera <[email protected]>
8332 M:      Hans de Goede <[email protected]>
8333 L:      [email protected]
8334 S:      Maintained
8335 F:      drivers/input/touchscreen/goodix*
8336
8337 GOOGLE ETHERNET DRIVERS
8338 M:      Jeroen de Borst <[email protected]>
8339 R:      Catherine Sullivan <[email protected]>
8340 R:      David Awogbemila <[email protected]>
8341 L:      [email protected]
8342 S:      Supported
8343 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8344 F:      drivers/net/ethernet/google
8345
8346 GPD POCKET FAN DRIVER
8347 M:      Hans de Goede <[email protected]>
8348 L:      [email protected]
8349 S:      Maintained
8350 F:      drivers/platform/x86/gpd-pocket-fan.c
8351
8352 GPIO ACPI SUPPORT
8353 M:      Mika Westerberg <[email protected]>
8354 M:      Andy Shevchenko <[email protected]>
8355 L:      [email protected]
8356 L:      [email protected]
8357 S:      Maintained
8358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8359 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8360 F:      drivers/gpio/gpiolib-acpi.c
8361 F:      drivers/gpio/gpiolib-acpi.h
8362
8363 GPIO AGGREGATOR
8364 M:      Geert Uytterhoeven <[email protected]>
8365 L:      [email protected]
8366 S:      Supported
8367 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8368 F:      drivers/gpio/gpio-aggregator.c
8369
8370 GPIO IR Transmitter
8371 M:      Sean Young <[email protected]>
8372 L:      [email protected]
8373 S:      Maintained
8374 F:      drivers/media/rc/gpio-ir-tx.c
8375
8376 GPIO MOCKUP DRIVER
8377 M:      Bamvor Jian Zhang <[email protected]>
8378 L:      [email protected]
8379 S:      Maintained
8380 F:      drivers/gpio/gpio-mockup.c
8381 F:      tools/testing/selftests/gpio/
8382
8383 GPIO REGMAP
8384 R:      Michael Walle <[email protected]>
8385 S:      Maintained
8386 F:      drivers/gpio/gpio-regmap.c
8387 F:      include/linux/gpio/regmap.h
8388
8389 GPIO SUBSYSTEM
8390 M:      Linus Walleij <[email protected]>
8391 M:      Bartosz Golaszewski <[email protected]>
8392 L:      [email protected]
8393 S:      Maintained
8394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8395 F:      Documentation/ABI/obsolete/sysfs-gpio
8396 F:      Documentation/ABI/testing/gpio-cdev
8397 F:      Documentation/admin-guide/gpio/
8398 F:      Documentation/devicetree/bindings/gpio/
8399 F:      Documentation/driver-api/gpio/
8400 F:      drivers/gpio/
8401 F:      include/asm-generic/gpio.h
8402 F:      include/linux/gpio.h
8403 F:      include/linux/gpio/
8404 F:      include/linux/of_gpio.h
8405 F:      include/uapi/linux/gpio.h
8406 F:      tools/gpio/
8407
8408 GRE DEMULTIPLEXER DRIVER
8409 M:      Dmitry Kozlov <[email protected]>
8410 L:      [email protected]
8411 S:      Maintained
8412 F:      include/net/gre.h
8413 F:      net/ipv4/gre_demux.c
8414 F:      net/ipv4/gre_offload.c
8415
8416 GRETH 10/100/1G Ethernet MAC device driver
8417 M:      Andreas Larsson <[email protected]>
8418 L:      [email protected]
8419 S:      Maintained
8420 F:      drivers/net/ethernet/aeroflex/
8421
8422 GREYBUS AUDIO PROTOCOLS DRIVERS
8423 M:      Vaibhav Agarwal <[email protected]>
8424 M:      Mark Greer <[email protected]>
8425 S:      Maintained
8426 F:      drivers/staging/greybus/audio_apbridgea.c
8427 F:      drivers/staging/greybus/audio_apbridgea.h
8428 F:      drivers/staging/greybus/audio_codec.c
8429 F:      drivers/staging/greybus/audio_codec.h
8430 F:      drivers/staging/greybus/audio_gb.c
8431 F:      drivers/staging/greybus/audio_manager.c
8432 F:      drivers/staging/greybus/audio_manager.h
8433 F:      drivers/staging/greybus/audio_manager_module.c
8434 F:      drivers/staging/greybus/audio_manager_private.h
8435 F:      drivers/staging/greybus/audio_manager_sysfs.c
8436 F:      drivers/staging/greybus/audio_module.c
8437 F:      drivers/staging/greybus/audio_topology.c
8438
8439 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8440 M:      Viresh Kumar <[email protected]>
8441 S:      Maintained
8442 F:      drivers/staging/greybus/authentication.c
8443 F:      drivers/staging/greybus/bootrom.c
8444 F:      drivers/staging/greybus/firmware.h
8445 F:      drivers/staging/greybus/fw-core.c
8446 F:      drivers/staging/greybus/fw-download.c
8447 F:      drivers/staging/greybus/fw-management.c
8448 F:      drivers/staging/greybus/greybus_authentication.h
8449 F:      drivers/staging/greybus/greybus_firmware.h
8450 F:      drivers/staging/greybus/hid.c
8451 F:      drivers/staging/greybus/i2c.c
8452 F:      drivers/staging/greybus/spi.c
8453 F:      drivers/staging/greybus/spilib.c
8454 F:      drivers/staging/greybus/spilib.h
8455
8456 GREYBUS LOOPBACK DRIVER
8457 M:      Bryan O'Donoghue <[email protected]>
8458 S:      Maintained
8459 F:      drivers/staging/greybus/loopback.c
8460
8461 GREYBUS PLATFORM DRIVERS
8462 M:      Vaibhav Hiremath <[email protected]>
8463 S:      Maintained
8464 F:      drivers/staging/greybus/arche-apb-ctrl.c
8465 F:      drivers/staging/greybus/arche-platform.c
8466 F:      drivers/staging/greybus/arche_platform.h
8467
8468 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8469 M:      Rui Miguel Silva <[email protected]>
8470 S:      Maintained
8471 F:      drivers/staging/greybus/gpio.c
8472 F:      drivers/staging/greybus/light.c
8473 F:      drivers/staging/greybus/power_supply.c
8474 F:      drivers/staging/greybus/sdio.c
8475 F:      drivers/staging/greybus/spi.c
8476 F:      drivers/staging/greybus/spilib.c
8477
8478 GREYBUS SUBSYSTEM
8479 M:      Johan Hovold <[email protected]>
8480 M:      Alex Elder <[email protected]>
8481 M:      Greg Kroah-Hartman <[email protected]>
8482 L:      [email protected] (moderated for non-subscribers)
8483 S:      Maintained
8484 F:      drivers/greybus/
8485 F:      drivers/staging/greybus/
8486 F:      include/linux/greybus.h
8487 F:      include/linux/greybus/
8488
8489 GREYBUS UART PROTOCOLS DRIVERS
8490 M:      David Lin <[email protected]>
8491 S:      Maintained
8492 F:      drivers/staging/greybus/log.c
8493 F:      drivers/staging/greybus/uart.c
8494
8495 GS1662 VIDEO SERIALIZER
8496 M:      Charles-Antoine Couret <[email protected]>
8497 L:      [email protected]
8498 S:      Maintained
8499 T:      git git://linuxtv.org/media_tree.git
8500 F:      drivers/media/spi/gs1662.c
8501
8502 GSPCA FINEPIX SUBDRIVER
8503 M:      Frank Zago <[email protected]>
8504 L:      [email protected]
8505 S:      Maintained
8506 T:      git git://linuxtv.org/media_tree.git
8507 F:      drivers/media/usb/gspca/finepix.c
8508
8509 GSPCA GL860 SUBDRIVER
8510 M:      Olivier Lorin <[email protected]>
8511 L:      [email protected]
8512 S:      Maintained
8513 T:      git git://linuxtv.org/media_tree.git
8514 F:      drivers/media/usb/gspca/gl860/
8515
8516 GSPCA M5602 SUBDRIVER
8517 M:      Erik Andren <[email protected]>
8518 L:      [email protected]
8519 S:      Maintained
8520 T:      git git://linuxtv.org/media_tree.git
8521 F:      drivers/media/usb/gspca/m5602/
8522
8523 GSPCA PAC207 SONIXB SUBDRIVER
8524 M:      Hans Verkuil <[email protected]>
8525 L:      [email protected]
8526 S:      Odd Fixes
8527 T:      git git://linuxtv.org/media_tree.git
8528 F:      drivers/media/usb/gspca/pac207.c
8529
8530 GSPCA SN9C20X SUBDRIVER
8531 M:      Brian Johnson <[email protected]>
8532 L:      [email protected]
8533 S:      Maintained
8534 T:      git git://linuxtv.org/media_tree.git
8535 F:      drivers/media/usb/gspca/sn9c20x.c
8536
8537 GSPCA T613 SUBDRIVER
8538 M:      Leandro Costantino <[email protected]>
8539 L:      [email protected]
8540 S:      Maintained
8541 T:      git git://linuxtv.org/media_tree.git
8542 F:      drivers/media/usb/gspca/t613.c
8543
8544 GSPCA USB WEBCAM DRIVER
8545 M:      Hans Verkuil <[email protected]>
8546 L:      [email protected]
8547 S:      Odd Fixes
8548 T:      git git://linuxtv.org/media_tree.git
8549 F:      drivers/media/usb/gspca/
8550
8551 GTP (GPRS Tunneling Protocol)
8552 M:      Pablo Neira Ayuso <[email protected]>
8553 M:      Harald Welte <[email protected]>
8554 L:      [email protected]
8555 S:      Maintained
8556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8557 F:      drivers/net/gtp.c
8558
8559 GUID PARTITION TABLE (GPT)
8560 M:      Davidlohr Bueso <[email protected]>
8561 L:      [email protected]
8562 S:      Maintained
8563 F:      block/partitions/efi.*
8564
8565 H8/300 ARCHITECTURE
8566 M:      Yoshinori Sato <[email protected]>
8567 L:      [email protected] (moderated for non-subscribers)
8568 S:      Maintained
8569 W:      http://uclinux-h8.sourceforge.jp
8570 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8571 F:      arch/h8300/
8572 F:      drivers/clk/h8300/
8573 F:      drivers/clocksource/h8300_*.c
8574 F:      drivers/irqchip/irq-renesas-h8*.c
8575
8576 HABANALABS PCI DRIVER
8577 M:      Oded Gabbay <[email protected]>
8578 S:      Supported
8579 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8580 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8581 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8582 F:      drivers/misc/habanalabs/
8583 F:      include/uapi/misc/habanalabs.h
8584
8585 HACKRF MEDIA DRIVER
8586 M:      Antti Palosaari <[email protected]>
8587 L:      [email protected]
8588 S:      Maintained
8589 W:      https://linuxtv.org
8590 W:      http://palosaari.fi/linux/
8591 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8592 T:      git git://linuxtv.org/anttip/media_tree.git
8593 F:      drivers/media/usb/hackrf/
8594
8595 HANTRO VPU CODEC DRIVER
8596 M:      Ezequiel Garcia <[email protected]>
8597 M:      Philipp Zabel <[email protected]>
8598 L:      [email protected]
8599 L:      [email protected]
8600 S:      Maintained
8601 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8602 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8603 F:      drivers/staging/media/hantro/
8604
8605 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8606 M:      Frank Seidel <[email protected]>
8607 L:      [email protected]
8608 S:      Maintained
8609 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8610 F:      drivers/platform/x86/hdaps.c
8611
8612 HARDWARE MONITORING
8613 M:      Jean Delvare <[email protected]>
8614 M:      Guenter Roeck <[email protected]>
8615 L:      [email protected]
8616 S:      Maintained
8617 W:      http://hwmon.wiki.kernel.org/
8618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8619 F:      Documentation/ABI/testing/sysfs-class-hwmon
8620 F:      Documentation/devicetree/bindings/hwmon/
8621 F:      Documentation/hwmon/
8622 F:      drivers/hwmon/
8623 F:      include/linux/hwmon*.h
8624 F:      include/trace/events/hwmon*.h
8625 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8626
8627 HARDWARE RANDOM NUMBER GENERATOR CORE
8628 M:      Matt Mackall <[email protected]>
8629 M:      Herbert Xu <[email protected]>
8630 L:      [email protected]
8631 S:      Odd fixes
8632 F:      Documentation/admin-guide/hw_random.rst
8633 F:      Documentation/devicetree/bindings/rng/
8634 F:      drivers/char/hw_random/
8635 F:      include/linux/hw_random.h
8636
8637 HARDWARE SPINLOCK CORE
8638 M:      Ohad Ben-Cohen <[email protected]>
8639 M:      Bjorn Andersson <[email protected]>
8640 R:      Baolin Wang <[email protected]>
8641 L:      [email protected]
8642 S:      Maintained
8643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8644 F:      Documentation/devicetree/bindings/hwlock/
8645 F:      Documentation/locking/hwspinlock.rst
8646 F:      drivers/hwspinlock/
8647 F:      include/linux/hwspinlock.h
8648
8649 HARDWARE TRACING FACILITIES
8650 M:      Alexander Shishkin <[email protected]>
8651 S:      Maintained
8652 F:      drivers/hwtracing/
8653
8654 HARMONY SOUND DRIVER
8655 L:      [email protected]
8656 S:      Maintained
8657 F:      sound/parisc/harmony.*
8658
8659 HDPVR USB VIDEO ENCODER DRIVER
8660 M:      Hans Verkuil <[email protected]>
8661 L:      [email protected]
8662 S:      Odd Fixes
8663 W:      https://linuxtv.org
8664 T:      git git://linuxtv.org/media_tree.git
8665 F:      drivers/media/usb/hdpvr/
8666
8667 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8668 M:      Matt Hsiao <[email protected]>
8669 S:      Supported
8670 F:      drivers/misc/hpilo.[ch]
8671
8672 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8673 M:      Jerry Hoemann <[email protected]>
8674 S:      Supported
8675 F:      Documentation/watchdog/hpwdt.rst
8676 F:      drivers/watchdog/hpwdt.c
8677
8678 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8679 M:      Don Brace <[email protected]>
8680 L:      [email protected]
8681 L:      [email protected]
8682 S:      Supported
8683 F:      Documentation/scsi/hpsa.rst
8684 F:      drivers/scsi/hpsa*.[ch]
8685 F:      include/linux/cciss*.h
8686 F:      include/uapi/linux/cciss*.h
8687
8688 HFI1 DRIVER
8689 M:      Mike Marciniszyn <[email protected]>
8690 M:      Dennis Dalessandro <[email protected]>
8691 L:      [email protected]
8692 S:      Supported
8693 F:      drivers/infiniband/hw/hfi1
8694
8695 HFS FILESYSTEM
8696 L:      [email protected]
8697 S:      Orphan
8698 F:      Documentation/filesystems/hfs.rst
8699 F:      fs/hfs/
8700
8701 HFSPLUS FILESYSTEM
8702 L:      [email protected]
8703 S:      Orphan
8704 F:      Documentation/filesystems/hfsplus.rst
8705 F:      fs/hfsplus/
8706
8707 HGA FRAMEBUFFER DRIVER
8708 M:      Ferenc Bakonyi <[email protected]>
8709 L:      [email protected]
8710 S:      Maintained
8711 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8712 F:      drivers/video/fbdev/hgafb.c
8713
8714 HIBERNATION (aka Software Suspend, aka swsusp)
8715 M:      "Rafael J. Wysocki" <[email protected]>
8716 M:      Pavel Machek <[email protected]>
8717 L:      [email protected]
8718 S:      Supported
8719 B:      https://bugzilla.kernel.org
8720 F:      arch/*/include/asm/suspend*.h
8721 F:      arch/x86/power/
8722 F:      drivers/base/power/
8723 F:      include/linux/freezer.h
8724 F:      include/linux/pm.h
8725 F:      include/linux/suspend.h
8726 F:      kernel/power/
8727
8728 HID CORE LAYER
8729 M:      Jiri Kosina <[email protected]>
8730 M:      Benjamin Tissoires <[email protected]>
8731 L:      [email protected]
8732 S:      Maintained
8733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8734 F:      drivers/hid/
8735 F:      include/linux/hid*
8736 F:      include/uapi/linux/hid*
8737
8738 HID LOGITECH DRIVERS
8739 R:      Filipe Laíns <[email protected]>
8740 L:      [email protected]
8741 S:      Maintained
8742 F:      drivers/hid/hid-logitech-*
8743
8744 HID PLAYSTATION DRIVER
8745 M:      Roderick Colenbrander <[email protected]>
8746 L:      [email protected]
8747 S:      Supported
8748 F:      drivers/hid/hid-playstation.c
8749
8750 HID SENSOR HUB DRIVERS
8751 M:      Jiri Kosina <[email protected]>
8752 M:      Jonathan Cameron <[email protected]>
8753 M:      Srinivas Pandruvada <[email protected]>
8754 L:      [email protected]
8755 L:      [email protected]
8756 S:      Maintained
8757 F:      Documentation/hid/hid-sensor*
8758 F:      drivers/hid/hid-sensor-*
8759 F:      drivers/iio/*/hid-*
8760 F:      include/linux/hid-sensor-*
8761
8762 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8763 M:      Thomas Gleixner <[email protected]>
8764 L:      [email protected]
8765 S:      Maintained
8766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8767 F:      Documentation/timers/
8768 F:      include/linux/clockchips.h
8769 F:      include/linux/hrtimer.h
8770 F:      kernel/time/clockevents.c
8771 F:      kernel/time/hrtimer.c
8772 F:      kernel/time/timer_*.c
8773
8774 HIGH-SPEED SCC DRIVER FOR AX.25
8775 L:      [email protected]
8776 S:      Orphan
8777 F:      drivers/net/hamradio/dmascc.c
8778 F:      drivers/net/hamradio/scc.c
8779
8780 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8781 M:      HighPoint Linux Team <[email protected]>
8782 S:      Supported
8783 W:      http://www.highpoint-tech.com
8784 F:      Documentation/scsi/hptiop.rst
8785 F:      drivers/scsi/hptiop.c
8786
8787 HIPPI
8788 M:      Jes Sorensen <[email protected]>
8789 L:      [email protected]
8790 S:      Maintained
8791 F:      drivers/net/hippi/
8792 F:      include/linux/hippidevice.h
8793 F:      include/uapi/linux/if_hippi.h
8794 F:      net/802/hippi.c
8795
8796 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8797 M:      Kurt Kanzenbach <[email protected]>
8798 L:      [email protected]
8799 S:      Maintained
8800 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8801 F:      drivers/net/dsa/hirschmann/*
8802 F:      include/linux/platform_data/hirschmann-hellcreek.h
8803 F:      net/dsa/tag_hellcreek.c
8804
8805 HISILICON DMA DRIVER
8806 M:      Zhou Wang <[email protected]>
8807 L:      [email protected]
8808 S:      Maintained
8809 F:      drivers/dma/hisi_dma.c
8810
8811 HISILICON GPIO DRIVER
8812 M:      Luo Jiaxing <[email protected]>
8813 L:      [email protected]
8814 S:      Maintained
8815 F:      drivers/gpio/gpio-hisi.c
8816
8817 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8818 M:      Longfang Liu <[email protected]>
8819 L:      [email protected]
8820 S:      Maintained
8821 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8822 F:      drivers/crypto/hisilicon/hpre/hpre.h
8823 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8824 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8825
8826 HISILICON I2C CONTROLLER DRIVER
8827 M:      Yicong Yang <[email protected]>
8828 L:      [email protected]
8829 S:      Maintained
8830 W:      https://www.hisilicon.com
8831 F:      drivers/i2c/busses/i2c-hisi.c
8832
8833 HISILICON LPC BUS DRIVER
8834 M:      [email protected]
8835 S:      Maintained
8836 W:      http://www.hisilicon.com
8837 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8838 F:      drivers/bus/hisi_lpc.c
8839
8840 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8841 M:      Yisen Zhuang <[email protected]>
8842 M:      Salil Mehta <[email protected]>
8843 L:      [email protected]
8844 S:      Maintained
8845 W:      http://www.hisilicon.com
8846 F:      drivers/net/ethernet/hisilicon/hns3/
8847
8848 HISILICON NETWORK SUBSYSTEM DRIVER
8849 M:      Yisen Zhuang <[email protected]>
8850 M:      Salil Mehta <[email protected]>
8851 L:      [email protected]
8852 S:      Maintained
8853 W:      http://www.hisilicon.com
8854 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8855 F:      drivers/net/ethernet/hisilicon/
8856
8857 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8858 M:      John Stultz <[email protected]>
8859 L:      [email protected]
8860 S:      Maintained
8861 F:      drivers/misc/hisi_hikey_usb.c
8862
8863 HISILICON PMU DRIVER
8864 M:      Shaokun Zhang <[email protected]>
8865 M:      Qi Liu <[email protected]>
8866 S:      Supported
8867 W:      http://www.hisilicon.com
8868 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
8869 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8870 F:      drivers/perf/hisilicon
8871
8872 HISILICON QM AND ZIP Controller DRIVER
8873 M:      Zhou Wang <[email protected]>
8874 L:      [email protected]
8875 S:      Maintained
8876 F:      Documentation/ABI/testing/debugfs-hisi-zip
8877 F:      drivers/crypto/hisilicon/qm.c
8878 F:      drivers/crypto/hisilicon/sgl.c
8879 F:      drivers/crypto/hisilicon/zip/
8880 F:      include/linux/hisi_acc_qm.h
8881
8882 HISILICON ROCE DRIVER
8883 M:      Wenpeng Liang <[email protected]>
8884 M:      Weihang Li <[email protected]>
8885 L:      [email protected]
8886 S:      Maintained
8887 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8888 F:      drivers/infiniband/hw/hns/
8889
8890 HISILICON SAS Controller
8891 M:      John Garry <[email protected]>
8892 S:      Supported
8893 W:      http://www.hisilicon.com
8894 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8895 F:      drivers/scsi/hisi_sas/
8896
8897 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8898 M:      Kai Ye <[email protected]>
8899 M:      Longfang Liu <[email protected]>
8900 L:      [email protected]
8901 S:      Maintained
8902 F:      Documentation/ABI/testing/debugfs-hisi-sec
8903 F:      drivers/crypto/hisilicon/sec2/sec.h
8904 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8905 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8906 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8907
8908 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8909 M:      Jay Fang <[email protected]>
8910 L:      [email protected]
8911 S:      Maintained
8912 W:      http://www.hisilicon.com
8913 F:      drivers/spi/spi-hisi-kunpeng.c
8914
8915 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8916 M:      Mauro Carvalho Chehab <[email protected]>
8917 L:      [email protected]
8918 S:      Maintained
8919 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8920 F:      drivers/spmi/hisi-spmi-controller.c
8921
8922 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8923 M:      Mauro Carvalho Chehab <[email protected]>
8924 L:      [email protected]
8925 S:      Maintained
8926 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8927 F:      drivers/mfd/hi6421-spmi-pmic.c
8928
8929 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8930 M:      Weili Qian <[email protected]>
8931 S:      Maintained
8932 F:      drivers/crypto/hisilicon/trng/trng.c
8933
8934 HISILICON V3XX SPI NOR FLASH Controller Driver
8935 M:      John Garry <[email protected]>
8936 S:      Maintained
8937 W:      http://www.hisilicon.com
8938 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8939
8940 HMM - Heterogeneous Memory Management
8941 M:      Jérôme Glisse <[email protected]>
8942 L:      [email protected]
8943 S:      Maintained
8944 F:      Documentation/vm/hmm.rst
8945 F:      include/linux/hmm*
8946 F:      lib/test_hmm*
8947 F:      mm/hmm*
8948 F:      tools/testing/selftests/vm/*hmm*
8949
8950 HOST AP DRIVER
8951 M:      Jouni Malinen <[email protected]>
8952 L:      [email protected]
8953 S:      Obsolete
8954 W:      http://w1.fi/hostap-driver.html
8955 F:      drivers/net/wireless/intersil/hostap/
8956
8957 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8958 L:      [email protected]
8959 S:      Orphan
8960 F:      drivers/platform/x86/tc1100-wmi.c
8961
8962 HPET:   High Precision Event Timers driver
8963 M:      Clemens Ladisch <[email protected]>
8964 S:      Maintained
8965 F:      Documentation/timers/hpet.rst
8966 F:      drivers/char/hpet.c
8967 F:      include/linux/hpet.h
8968 F:      include/uapi/linux/hpet.h
8969
8970 HPET:   x86
8971 S:      Orphan
8972 F:      arch/x86/include/asm/hpet.h
8973 F:      arch/x86/kernel/hpet.c
8974
8975 HPFS FILESYSTEM
8976 M:      Mikulas Patocka <[email protected]>
8977 S:      Maintained
8978 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8979 F:      fs/hpfs/
8980
8981 HSI SUBSYSTEM
8982 M:      Sebastian Reichel <[email protected]>
8983 S:      Maintained
8984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8985 F:      Documentation/ABI/testing/sysfs-bus-hsi
8986 F:      Documentation/driver-api/hsi.rst
8987 F:      drivers/hsi/
8988 F:      include/linux/hsi/
8989 F:      include/uapi/linux/hsi/
8990
8991 HSO 3G MODEM DRIVER
8992 L:      [email protected]
8993 S:      Orphan
8994 F:      drivers/net/usb/hso.c
8995
8996 HSR NETWORK PROTOCOL
8997 L:      [email protected]
8998 S:      Orphan
8999 F:      net/hsr/
9000
9001 HT16K33 LED CONTROLLER DRIVER
9002 M:      Robin van der Gracht <[email protected]>
9003 S:      Maintained
9004 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9005 F:      drivers/auxdisplay/ht16k33.c
9006
9007 HTCPEN TOUCHSCREEN DRIVER
9008 M:      Pau Oliva Fora <[email protected]>
9009 L:      [email protected]
9010 S:      Maintained
9011 F:      drivers/input/touchscreen/htcpen.c
9012
9013 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9014 M:      Lorenzo Bianconi <[email protected]>
9015 L:      [email protected]
9016 S:      Maintained
9017 W:      http://www.st.com/
9018 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9019 F:      drivers/iio/humidity/hts221*
9020
9021 HUAWEI ETHERNET DRIVER
9022 L:      [email protected]
9023 S:      Orphan
9024 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9025 F:      drivers/net/ethernet/huawei/hinic/
9026
9027 HUGETLB FILESYSTEM
9028 M:      Mike Kravetz <[email protected]>
9029 L:      [email protected]
9030 S:      Maintained
9031 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9032 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9033 F:      Documentation/vm/hugetlbfs_reserv.rst
9034 F:      fs/hugetlbfs/
9035 F:      include/linux/hugetlb.h
9036 F:      mm/hugetlb.c
9037
9038 HVA ST MEDIA DRIVER
9039 M:      Jean-Christophe Trotin <[email protected]>
9040 L:      [email protected]
9041 S:      Supported
9042 W:      https://linuxtv.org
9043 T:      git git://linuxtv.org/media_tree.git
9044 F:      drivers/media/platform/st/sti/hva
9045
9046 HWPOISON MEMORY FAILURE HANDLING
9047 M:      Naoya Horiguchi <[email protected]>
9048 L:      [email protected]
9049 S:      Maintained
9050 F:      mm/hwpoison-inject.c
9051 F:      mm/memory-failure.c
9052
9053 HYCON HY46XX TOUCHSCREEN SUPPORT
9054 M:      Giulio Benetti <[email protected]>
9055 L:      [email protected]
9056 S:      Maintained
9057 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9058 F:      drivers/input/touchscreen/hycon-hy46xx.c
9059
9060 HYGON PROCESSOR SUPPORT
9061 M:      Pu Wen <[email protected]>
9062 L:      [email protected]
9063 S:      Maintained
9064 F:      arch/x86/kernel/cpu/hygon.c
9065
9066 HYNIX HI556 SENSOR DRIVER
9067 M:      Shawn Tu <[email protected]>
9068 L:      [email protected]
9069 S:      Maintained
9070 T:      git git://linuxtv.org/media_tree.git
9071 F:      drivers/media/i2c/hi556.c
9072
9073 HYNIX HI846 SENSOR DRIVER
9074 M:      Martin Kepplinger <[email protected]>
9075 L:      [email protected]
9076 S:      Maintained
9077 F:      drivers/media/i2c/hi846.c
9078
9079 HYNIX HI847 SENSOR DRIVER
9080 M:      Shawn Tu <[email protected]>
9081 L:      [email protected]
9082 S:      Maintained
9083 F:      drivers/media/i2c/hi847.c
9084
9085 Hyper-V/Azure CORE AND DRIVERS
9086 M:      "K. Y. Srinivasan" <[email protected]>
9087 M:      Haiyang Zhang <[email protected]>
9088 M:      Stephen Hemminger <[email protected]>
9089 M:      Wei Liu <[email protected]>
9090 M:      Dexuan Cui <[email protected]>
9091 L:      [email protected]
9092 S:      Supported
9093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9094 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9095 F:      Documentation/ABI/testing/debugfs-hyperv
9096 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9097 F:      arch/arm64/hyperv
9098 F:      arch/arm64/include/asm/hyperv-tlfs.h
9099 F:      arch/arm64/include/asm/mshyperv.h
9100 F:      arch/x86/hyperv
9101 F:      arch/x86/include/asm/hyperv-tlfs.h
9102 F:      arch/x86/include/asm/mshyperv.h
9103 F:      arch/x86/include/asm/trace/hyperv.h
9104 F:      arch/x86/kernel/cpu/mshyperv.c
9105 F:      drivers/clocksource/hyperv_timer.c
9106 F:      drivers/hid/hid-hyperv.c
9107 F:      drivers/hv/
9108 F:      drivers/input/serio/hyperv-keyboard.c
9109 F:      drivers/iommu/hyperv-iommu.c
9110 F:      drivers/net/ethernet/microsoft/
9111 F:      drivers/net/hyperv/
9112 F:      drivers/pci/controller/pci-hyperv-intf.c
9113 F:      drivers/pci/controller/pci-hyperv.c
9114 F:      drivers/scsi/storvsc_drv.c
9115 F:      drivers/uio/uio_hv_generic.c
9116 F:      drivers/video/fbdev/hyperv_fb.c
9117 F:      include/asm-generic/hyperv-tlfs.h
9118 F:      include/asm-generic/mshyperv.h
9119 F:      include/clocksource/hyperv_timer.h
9120 F:      include/linux/hyperv.h
9121 F:      include/uapi/linux/hyperv.h
9122 F:      net/vmw_vsock/hyperv_transport.c
9123 F:      tools/hv/
9124
9125 HYPERBUS SUPPORT
9126 M:      Vignesh Raghavendra <[email protected]>
9127 L:      [email protected]
9128 S:      Supported
9129 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9130 C:      irc://irc.oftc.net/mtd
9131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9132 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9133 F:      drivers/mtd/hyperbus/
9134 F:      include/linux/mtd/hyperbus.h
9135
9136 HYPERVISOR VIRTUAL CONSOLE DRIVER
9137 L:      [email protected]
9138 S:      Odd Fixes
9139 F:      drivers/tty/hvc/
9140
9141 I2C ACPI SUPPORT
9142 M:      Mika Westerberg <[email protected]>
9143 L:      [email protected]
9144 L:      [email protected]
9145 S:      Maintained
9146 F:      drivers/i2c/i2c-core-acpi.c
9147
9148 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9149 M:      Ajay Gupta <[email protected]>
9150 L:      [email protected]
9151 S:      Maintained
9152 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9153 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9154
9155 I2C MUXES
9156 M:      Peter Rosin <[email protected]>
9157 L:      [email protected]
9158 S:      Maintained
9159 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9160 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9161 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9162 F:      Documentation/i2c/i2c-topology.rst
9163 F:      Documentation/i2c/muxes/
9164 F:      drivers/i2c/i2c-mux.c
9165 F:      drivers/i2c/muxes/
9166 F:      include/linux/i2c-mux.h
9167
9168 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9169 M:      Gregory CLEMENT <[email protected]>
9170 L:      [email protected]
9171 S:      Maintained
9172 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9173 F:      drivers/i2c/busses/i2c-mv64xxx.c
9174
9175 I2C OVER PARALLEL PORT
9176 M:      Jean Delvare <[email protected]>
9177 L:      [email protected]
9178 S:      Maintained
9179 F:      Documentation/i2c/busses/i2c-parport.rst
9180 F:      drivers/i2c/busses/i2c-parport.c
9181
9182 I2C SUBSYSTEM
9183 M:      Wolfram Sang <[email protected]>
9184 L:      [email protected]
9185 S:      Maintained
9186 W:      https://i2c.wiki.kernel.org/
9187 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9189 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9190 F:      Documentation/i2c/
9191 F:      drivers/i2c/*
9192 F:      include/linux/i2c-dev.h
9193 F:      include/linux/i2c-smbus.h
9194 F:      include/linux/i2c.h
9195 F:      include/uapi/linux/i2c-*.h
9196 F:      include/uapi/linux/i2c.h
9197
9198 I2C SUBSYSTEM HOST DRIVERS
9199 L:      [email protected]
9200 S:      Odd Fixes
9201 W:      https://i2c.wiki.kernel.org/
9202 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9204 F:      Documentation/devicetree/bindings/i2c/
9205 F:      drivers/i2c/algos/
9206 F:      drivers/i2c/busses/
9207
9208 I2C-TAOS-EVM DRIVER
9209 M:      Jean Delvare <[email protected]>
9210 L:      [email protected]
9211 S:      Maintained
9212 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9213 F:      drivers/i2c/busses/i2c-taos-evm.c
9214
9215 I2C-TINY-USB DRIVER
9216 M:      Till Harbaum <[email protected]>
9217 L:      [email protected]
9218 S:      Maintained
9219 W:      http://www.harbaum.org/till/i2c_tiny_usb
9220 F:      drivers/i2c/busses/i2c-tiny-usb.c
9221
9222 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9223 M:      Jean Delvare <[email protected]>
9224 L:      [email protected]
9225 S:      Maintained
9226 F:      Documentation/i2c/busses/i2c-ali1535.rst
9227 F:      Documentation/i2c/busses/i2c-ali1563.rst
9228 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9229 F:      Documentation/i2c/busses/i2c-amd756.rst
9230 F:      Documentation/i2c/busses/i2c-amd8111.rst
9231 F:      Documentation/i2c/busses/i2c-i801.rst
9232 F:      Documentation/i2c/busses/i2c-nforce2.rst
9233 F:      Documentation/i2c/busses/i2c-piix4.rst
9234 F:      Documentation/i2c/busses/i2c-sis5595.rst
9235 F:      Documentation/i2c/busses/i2c-sis630.rst
9236 F:      Documentation/i2c/busses/i2c-sis96x.rst
9237 F:      Documentation/i2c/busses/i2c-via.rst
9238 F:      Documentation/i2c/busses/i2c-viapro.rst
9239 F:      drivers/i2c/busses/i2c-ali1535.c
9240 F:      drivers/i2c/busses/i2c-ali1563.c
9241 F:      drivers/i2c/busses/i2c-ali15x3.c
9242 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9243 F:      drivers/i2c/busses/i2c-amd756.c
9244 F:      drivers/i2c/busses/i2c-amd8111.c
9245 F:      drivers/i2c/busses/i2c-i801.c
9246 F:      drivers/i2c/busses/i2c-isch.c
9247 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9248 F:      drivers/i2c/busses/i2c-nforce2.c
9249 F:      drivers/i2c/busses/i2c-piix4.c
9250 F:      drivers/i2c/busses/i2c-sis5595.c
9251 F:      drivers/i2c/busses/i2c-sis630.c
9252 F:      drivers/i2c/busses/i2c-sis96x.c
9253 F:      drivers/i2c/busses/i2c-via.c
9254 F:      drivers/i2c/busses/i2c-viapro.c
9255
9256 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9257 M:      Hans de Goede <[email protected]>
9258 L:      [email protected]
9259 S:      Maintained
9260 F:      drivers/i2c/busses/i2c-cht-wc.c
9261
9262 I2C/SMBUS ISMT DRIVER
9263 M:      Seth Heasley <[email protected]>
9264 M:      Neil Horman <[email protected]>
9265 L:      [email protected]
9266 F:      Documentation/i2c/busses/i2c-ismt.rst
9267 F:      drivers/i2c/busses/i2c-ismt.c
9268
9269 I2C/SMBUS STUB DRIVER
9270 M:      Jean Delvare <[email protected]>
9271 L:      [email protected]
9272 S:      Maintained
9273 F:      drivers/i2c/i2c-stub.c
9274
9275 I3C DRIVER FOR CADENCE I3C MASTER IP
9276 M:      Przemysław Gaj <[email protected]>
9277 S:      Maintained
9278 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
9279 F:      drivers/i3c/master/i3c-master-cdns.c
9280
9281 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9282 M:      Vitor Soares <[email protected]>
9283 S:      Maintained
9284 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
9285 F:      drivers/i3c/master/dw*
9286
9287 I3C SUBSYSTEM
9288 M:      Alexandre Belloni <[email protected]>
9289 L:      [email protected] (moderated for non-subscribers)
9290 S:      Maintained
9291 C:      irc://chat.freenode.net/linux-i3c
9292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9293 F:      Documentation/ABI/testing/sysfs-bus-i3c
9294 F:      Documentation/devicetree/bindings/i3c/
9295 F:      Documentation/driver-api/i3c
9296 F:      drivers/i3c/
9297 F:      include/linux/i3c/
9298
9299 IA64 (Itanium) PLATFORM
9300 L:      [email protected]
9301 S:      Orphan
9302 F:      Documentation/ia64/
9303 F:      arch/ia64/
9304
9305 IBM Power 842 compression accelerator
9306 M:      Haren Myneni <[email protected]>
9307 S:      Supported
9308 F:      crypto/842.c
9309 F:      drivers/crypto/nx/Kconfig
9310 F:      drivers/crypto/nx/Makefile
9311 F:      drivers/crypto/nx/nx-842*
9312 F:      include/linux/sw842.h
9313 F:      lib/842/
9314
9315 IBM Power in-Nest Crypto Acceleration
9316 M:      Breno Leitão <[email protected]>
9317 M:      Nayna Jain <[email protected]>
9318 M:      Paulo Flabiano Smorigo <[email protected]>
9319 L:      [email protected]
9320 S:      Supported
9321 F:      drivers/crypto/nx/Kconfig
9322 F:      drivers/crypto/nx/Makefile
9323 F:      drivers/crypto/nx/nx-aes*
9324 F:      drivers/crypto/nx/nx-sha*
9325 F:      drivers/crypto/nx/nx.*
9326 F:      drivers/crypto/nx/nx_csbcpb.h
9327 F:      drivers/crypto/nx/nx_debugfs.c
9328
9329 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9330 M:      Tyrel Datwyler <[email protected]>
9331 L:      [email protected]
9332 L:      [email protected]
9333 S:      Supported
9334 F:      drivers/pci/hotplug/rpadlpar*
9335
9336 IBM Power Linux RAID adapter
9337 M:      Brian King <[email protected]>
9338 S:      Supported
9339 F:      drivers/scsi/ipr.*
9340
9341 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9342 M:      Tyrel Datwyler <[email protected]>
9343 L:      [email protected]
9344 L:      [email protected]
9345 S:      Supported
9346 F:      drivers/pci/hotplug/rpaphp*
9347
9348 IBM Power SRIOV Virtual NIC Device Driver
9349 M:      Dany Madden <[email protected]>
9350 M:      Sukadev Bhattiprolu <[email protected]>
9351 R:      Thomas Falcon <[email protected]>
9352 L:      [email protected]
9353 S:      Supported
9354 F:      drivers/net/ethernet/ibm/ibmvnic.*
9355
9356 IBM Power Virtual Accelerator Switchboard
9357 M:      Sukadev Bhattiprolu <[email protected]>
9358 L:      [email protected]
9359 S:      Supported
9360 F:      arch/powerpc/include/asm/vas.h
9361 F:      arch/powerpc/platforms/powernv/copy-paste.h
9362 F:      arch/powerpc/platforms/powernv/vas*
9363
9364 IBM Power Virtual Ethernet Device Driver
9365 M:      Cristobal Forno <[email protected]>
9366 L:      [email protected]
9367 S:      Supported
9368 F:      drivers/net/ethernet/ibm/ibmveth.*
9369
9370 IBM Power Virtual FC Device Drivers
9371 M:      Tyrel Datwyler <[email protected]>
9372 L:      [email protected]
9373 S:      Supported
9374 F:      drivers/scsi/ibmvscsi/ibmvfc*
9375
9376 IBM Power Virtual Management Channel Driver
9377 M:      Brad Warrum <[email protected]>
9378 M:      Ritu Agarwal <[email protected]>
9379 S:      Supported
9380 F:      drivers/misc/ibmvmc.*
9381
9382 IBM Power Virtual SCSI Device Drivers
9383 M:      Tyrel Datwyler <[email protected]>
9384 L:      [email protected]
9385 S:      Supported
9386 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9387 F:      include/scsi/viosrp.h
9388
9389 IBM Power Virtual SCSI Device Target Driver
9390 M:      Michael Cyr <[email protected]>
9391 L:      [email protected]
9392 L:      [email protected]
9393 S:      Supported
9394 F:      drivers/scsi/ibmvscsi_tgt/
9395
9396 IBM Power VMX Cryptographic instructions
9397 M:      Breno Leitão <[email protected]>
9398 M:      Nayna Jain <[email protected]>
9399 M:      Paulo Flabiano Smorigo <[email protected]>
9400 L:      [email protected]
9401 S:      Supported
9402 F:      drivers/crypto/vmx/Kconfig
9403 F:      drivers/crypto/vmx/Makefile
9404 F:      drivers/crypto/vmx/aes*
9405 F:      drivers/crypto/vmx/ghash*
9406 F:      drivers/crypto/vmx/ppc-xlate.pl
9407 F:      drivers/crypto/vmx/vmx.c
9408
9409 IBM ServeRAID RAID DRIVER
9410 S:      Orphan
9411 F:      drivers/scsi/ips.*
9412
9413 ICH LPC AND GPIO DRIVER
9414 M:      Peter Tyser <[email protected]>
9415 S:      Maintained
9416 F:      drivers/gpio/gpio-ich.c
9417 F:      drivers/mfd/lpc_ich.c
9418
9419 ICY I2C DRIVER
9420 M:      Max Staudt <[email protected]>
9421 L:      [email protected]
9422 S:      Maintained
9423 F:      drivers/i2c/busses/i2c-icy.c
9424
9425 IDEAPAD LAPTOP EXTRAS DRIVER
9426 M:      Ike Panhc <[email protected]>
9427 L:      [email protected]
9428 S:      Maintained
9429 W:      http://launchpad.net/ideapad-laptop
9430 F:      drivers/platform/x86/ideapad-laptop.c
9431
9432 IDEAPAD LAPTOP SLIDEBAR DRIVER
9433 M:      Andrey Moiseev <[email protected]>
9434 L:      [email protected]
9435 S:      Maintained
9436 W:      https://github.com/o2genum/ideapad-slidebar
9437 F:      drivers/input/misc/ideapad_slidebar.c
9438
9439 IDMAPPED MOUNTS
9440 M:      Christian Brauner <[email protected]>
9441 L:      [email protected]
9442 S:      Maintained
9443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
9444 F:      Documentation/filesystems/idmappings.rst
9445 F:      tools/testing/selftests/mount_setattr/
9446 F:      include/linux/mnt_idmapping.h
9447
9448 IDT VersaClock 5 CLOCK DRIVER
9449 M:      Luca Ceresoli <[email protected]>
9450 S:      Maintained
9451 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9452 F:      drivers/clk/clk-versaclock5.c
9453
9454 IEEE 802.15.4 SUBSYSTEM
9455 M:      Alexander Aring <[email protected]>
9456 M:      Stefan Schmidt <[email protected]>
9457 L:      [email protected]
9458 S:      Maintained
9459 W:      https://linux-wpan.org/
9460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9462 F:      Documentation/networking/ieee802154.rst
9463 F:      drivers/net/ieee802154/
9464 F:      include/linux/ieee802154.h
9465 F:      include/linux/nl802154.h
9466 F:      include/net/af_ieee802154.h
9467 F:      include/net/cfg802154.h
9468 F:      include/net/ieee802154_netdev.h
9469 F:      include/net/mac802154.h
9470 F:      include/net/nl802154.h
9471 F:      net/ieee802154/
9472 F:      net/mac802154/
9473
9474 IFE PROTOCOL
9475 M:      Yotam Gigi <[email protected]>
9476 M:      Jamal Hadi Salim <[email protected]>
9477 F:      include/net/ife.h
9478 F:      include/uapi/linux/ife.h
9479 F:      net/ife
9480
9481 IGORPLUG-USB IR RECEIVER
9482 M:      Sean Young <[email protected]>
9483 L:      [email protected]
9484 S:      Maintained
9485 F:      drivers/media/rc/igorplugusb.c
9486
9487 IGUANAWORKS USB IR TRANSCEIVER
9488 M:      Sean Young <[email protected]>
9489 L:      [email protected]
9490 S:      Maintained
9491 F:      drivers/media/rc/iguanair.c
9492
9493 IIO DIGITAL POTENTIOMETER DAC
9494 M:      Peter Rosin <[email protected]>
9495 L:      [email protected]
9496 S:      Maintained
9497 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9498 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9499 F:      drivers/iio/dac/dpot-dac.c
9500
9501 IIO ENVELOPE DETECTOR
9502 M:      Peter Rosin <[email protected]>
9503 L:      [email protected]
9504 S:      Maintained
9505 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9506 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9507 F:      drivers/iio/adc/envelope-detector.c
9508
9509 IIO MULTIPLEXER
9510 M:      Peter Rosin <[email protected]>
9511 L:      [email protected]
9512 S:      Maintained
9513 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9514 F:      drivers/iio/multiplexer/iio-mux.c
9515
9516 IIO SCMI BASED DRIVER
9517 M:      Jyoti Bhayana <[email protected]>
9518 L:      [email protected]
9519 S:      Maintained
9520 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9521
9522 IIO SUBSYSTEM AND DRIVERS
9523 M:      Jonathan Cameron <[email protected]>
9524 R:      Lars-Peter Clausen <[email protected]>
9525 L:      [email protected]
9526 S:      Maintained
9527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9528 F:      Documentation/ABI/testing/configfs-iio*
9529 F:      Documentation/ABI/testing/sysfs-bus-iio*
9530 F:      Documentation/devicetree/bindings/iio/
9531 F:      drivers/iio/
9532 F:      drivers/staging/iio/
9533 F:      include/linux/iio/
9534 F:      tools/iio/
9535
9536 IIO UNIT CONVERTER
9537 M:      Peter Rosin <[email protected]>
9538 L:      [email protected]
9539 S:      Maintained
9540 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9541 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9542 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9543 F:      drivers/iio/afe/iio-rescale.c
9544
9545 IKANOS/ADI EAGLE ADSL USB DRIVER
9546 M:      Matthieu Castet <[email protected]>
9547 M:      Stanislaw Gruszka <[email protected]>
9548 S:      Maintained
9549 F:      drivers/usb/atm/ueagle-atm.c
9550
9551 IMAGIS TOUCHSCREEN DRIVER
9552 M:      Markuss Broks <[email protected]>
9553 S:      Maintained
9554 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9555 F:      drivers/input/touchscreen/imagis.c
9556
9557 IMGTEC ASCII LCD DRIVER
9558 M:      Paul Burton <[email protected]>
9559 S:      Maintained
9560 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9561 F:      drivers/auxdisplay/img-ascii-lcd.c
9562
9563 IMGTEC IR DECODER DRIVER
9564 S:      Orphan
9565 F:      drivers/media/rc/img-ir/
9566
9567 IMON SOUNDGRAPH USB IR RECEIVER
9568 M:      Sean Young <[email protected]>
9569 L:      [email protected]
9570 S:      Maintained
9571 F:      drivers/media/rc/imon.c
9572 F:      drivers/media/rc/imon_raw.c
9573
9574 IMS TWINTURBO FRAMEBUFFER DRIVER
9575 L:      [email protected]
9576 S:      Orphan
9577 F:      drivers/video/fbdev/imsttfb.c
9578
9579 INA209 HARDWARE MONITOR DRIVER
9580 M:      Guenter Roeck <[email protected]>
9581 L:      [email protected]
9582 S:      Maintained
9583 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9584 F:      Documentation/hwmon/ina209.rst
9585 F:      drivers/hwmon/ina209.c
9586
9587 INA2XX HARDWARE MONITOR DRIVER
9588 M:      Guenter Roeck <[email protected]>
9589 L:      [email protected]
9590 S:      Maintained
9591 F:      Documentation/hwmon/ina2xx.rst
9592 F:      drivers/hwmon/ina2xx.c
9593 F:      include/linux/platform_data/ina2xx.h
9594
9595 INDUSTRY PACK SUBSYSTEM (IPACK)
9596 M:      Samuel Iglesias Gonsalvez <[email protected]>
9597 M:      Jens Taprogge <[email protected]>
9598 M:      Greg Kroah-Hartman <[email protected]>
9599 L:      [email protected]
9600 S:      Maintained
9601 W:      http://industrypack.sourceforge.net
9602 F:      drivers/ipack/
9603
9604 INFINEON DPS310 Driver
9605 M:      Eddie James <[email protected]>
9606 L:      [email protected]
9607 S:      Maintained
9608 F:      drivers/iio/pressure/dps310.c
9609
9610 INFINIBAND SUBSYSTEM
9611 M:      Jason Gunthorpe <[email protected]>
9612 L:      [email protected]
9613 S:      Supported
9614 W:      https://github.com/linux-rdma/rdma-core
9615 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9617 F:      Documentation/devicetree/bindings/infiniband/
9618 F:      Documentation/infiniband/
9619 F:      drivers/infiniband/
9620 F:      include/rdma/
9621 F:      include/trace/events/ib_mad.h
9622 F:      include/trace/events/ib_umad.h
9623 F:      include/uapi/linux/if_infiniband.h
9624 F:      include/uapi/rdma/
9625 F:      samples/bpf/ibumad_kern.c
9626 F:      samples/bpf/ibumad_user.c
9627
9628 INGENIC JZ4780 NAND DRIVER
9629 M:      Harvey Hunt <[email protected]>
9630 L:      [email protected]
9631 L:      [email protected]
9632 S:      Maintained
9633 F:      drivers/mtd/nand/raw/ingenic/
9634
9635 INGENIC JZ47xx SoCs
9636 M:      Paul Cercueil <[email protected]>
9637 L:      [email protected]
9638 S:      Maintained
9639 F:      arch/mips/boot/dts/ingenic/
9640 F:      arch/mips/generic/board-ingenic.c
9641 F:      arch/mips/include/asm/mach-ingenic/
9642 F:      arch/mips/ingenic/Kconfig
9643 F:      drivers/clk/ingenic/
9644 F:      drivers/dma/dma-jz4780.c
9645 F:      drivers/gpu/drm/ingenic/
9646 F:      drivers/i2c/busses/i2c-jz4780.c
9647 F:      drivers/iio/adc/ingenic-adc.c
9648 F:      drivers/irqchip/irq-ingenic.c
9649 F:      drivers/memory/jz4780-nemc.c
9650 F:      drivers/mmc/host/jz4740_mmc.c
9651 F:      drivers/mtd/nand/raw/ingenic/
9652 F:      drivers/pinctrl/pinctrl-ingenic.c
9653 F:      drivers/power/supply/ingenic-battery.c
9654 F:      drivers/pwm/pwm-jz4740.c
9655 F:      drivers/remoteproc/ingenic_rproc.c
9656 F:      drivers/rtc/rtc-jz4740.c
9657 F:      drivers/tty/serial/8250/8250_ingenic.c
9658 F:      drivers/usb/musb/jz4740.c
9659 F:      drivers/watchdog/jz4740_wdt.c
9660 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9661 F:      include/linux/mfd/ingenic-tcu.h
9662 F:      sound/soc/codecs/jz47*
9663 F:      sound/soc/jz4740/
9664
9665 INJOINIC IP5xxx POWER BANK IC DRIVER
9666 M:      Samuel Holland <[email protected]>
9667 S:      Maintained
9668 F:      drivers/power/supply/ip5xxx_power.c
9669
9670 INOTIFY
9671 M:      Jan Kara <[email protected]>
9672 R:      Amir Goldstein <[email protected]>
9673 L:      [email protected]
9674 S:      Maintained
9675 F:      Documentation/filesystems/inotify.rst
9676 F:      fs/notify/inotify/
9677 F:      include/linux/inotify.h
9678 F:      include/uapi/linux/inotify.h
9679
9680 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9681 M:      Dmitry Torokhov <[email protected]>
9682 L:      [email protected]
9683 S:      Maintained
9684 Q:      http://patchwork.kernel.org/project/linux-input/list/
9685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9686 F:      Documentation/devicetree/bindings/input/
9687 F:      Documentation/devicetree/bindings/serio/
9688 F:      Documentation/input/
9689 F:      drivers/input/
9690 F:      include/linux/input.h
9691 F:      include/linux/input/
9692 F:      include/uapi/linux/input-event-codes.h
9693 F:      include/uapi/linux/input.h
9694
9695 INPUT MULTITOUCH (MT) PROTOCOL
9696 M:      Henrik Rydberg <[email protected]>
9697 L:      [email protected]
9698 S:      Odd fixes
9699 F:      Documentation/input/multi-touch-protocol.rst
9700 F:      drivers/input/input-mt.c
9701 K:      \b(ABS|SYN)_MT_
9702
9703 INSIDE SECURE CRYPTO DRIVER
9704 M:      Antoine Tenart <[email protected]>
9705 L:      [email protected]
9706 S:      Maintained
9707 F:      drivers/crypto/inside-secure/
9708
9709 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9710 M:      Mimi Zohar <[email protected]>
9711 M:      Dmitry Kasatkin <[email protected]>
9712 L:      [email protected]
9713 S:      Supported
9714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9715 F:      security/integrity/ima/
9716 F:      security/integrity/
9717
9718 INTEL 810/815 FRAMEBUFFER DRIVER
9719 M:      Antonino Daplas <[email protected]>
9720 L:      [email protected]
9721 S:      Maintained
9722 F:      drivers/video/fbdev/i810/
9723
9724 INTEL ASoC DRIVERS
9725 M:      Cezary Rojewski <[email protected]>
9726 M:      Pierre-Louis Bossart <[email protected]>
9727 M:      Liam Girdwood <[email protected]>
9728 M:      Jie Yang <[email protected]>
9729 L:      [email protected] (moderated for non-subscribers)
9730 S:      Supported
9731 F:      sound/soc/intel/
9732
9733 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9734 M:      Hans de Goede <[email protected]>
9735 L:      [email protected]
9736 S:      Maintained
9737 F:      drivers/platform/x86/intel/atomisp2/pm.c
9738
9739 INTEL ATOMISP2 LED DRIVER
9740 M:      Hans de Goede <[email protected]>
9741 L:      [email protected]
9742 S:      Maintained
9743 F:      drivers/platform/x86/intel/atomisp2/led.c
9744
9745 INTEL BIOS SAR INT1092 DRIVER
9746 M:      Shravan Sudhakar <[email protected]>
9747 M:      Intel Corporation <[email protected]>
9748 L:      [email protected]
9749 S:      Maintained
9750 F:      drivers/platform/x86/intel/int1092/
9751
9752 INTEL BROXTON PMC DRIVER
9753 M:      Mika Westerberg <[email protected]>
9754 M:      Zha Qipeng <[email protected]>
9755 S:      Maintained
9756 F:      drivers/mfd/intel_pmc_bxt.c
9757 F:      include/linux/mfd/intel_pmc_bxt.h
9758
9759 INTEL C600 SERIES SAS CONTROLLER DRIVER
9760 M:      Artur Paszkiewicz <[email protected]>
9761 L:      [email protected]
9762 S:      Supported
9763 T:      git git://git.code.sf.net/p/intel-sas/isci
9764 F:      drivers/scsi/isci/
9765
9766 INTEL CPU family model numbers
9767 M:      Tony Luck <[email protected]>
9768 M:      [email protected]
9769 L:      [email protected]
9770 S:      Supported
9771 F:      arch/x86/include/asm/intel-family.h
9772
9773 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9774 M:      Jani Nikula <[email protected]>
9775 M:      Joonas Lahtinen <[email protected]>
9776 M:      Rodrigo Vivi <[email protected]>
9777 M:      Tvrtko Ursulin <[email protected]>
9778 L:      [email protected]
9779 S:      Supported
9780 W:      https://01.org/linuxgraphics/
9781 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9782 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9783 C:      irc://irc.oftc.net/intel-gfx
9784 T:      git git://anongit.freedesktop.org/drm-intel
9785 F:      Documentation/gpu/i915.rst
9786 F:      drivers/gpu/drm/i915/
9787 F:      include/drm/i915*
9788 F:      include/uapi/drm/i915_drm.h
9789
9790 INTEL ETHERNET DRIVERS
9791 M:      Jesse Brandeburg <[email protected]>
9792 M:      Tony Nguyen <[email protected]>
9793 L:      [email protected] (moderated for non-subscribers)
9794 S:      Supported
9795 W:      http://www.intel.com/support/feedback.htm
9796 W:      http://e1000.sourceforge.net/
9797 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9800 F:      Documentation/networking/device_drivers/ethernet/intel/
9801 F:      drivers/net/ethernet/intel/
9802 F:      drivers/net/ethernet/intel/*/
9803 F:      include/linux/avf/virtchnl.h
9804 F:      include/linux/net/intel/iidc.h
9805
9806 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9807 M:      Mustafa Ismail <[email protected]>
9808 M:      Shiraz Saleem <[email protected]>
9809 L:      [email protected]
9810 S:      Supported
9811 F:      drivers/infiniband/hw/irdma/
9812 F:      include/uapi/rdma/irdma-abi.h
9813
9814 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9815 M:      Maik Broemme <[email protected]>
9816 L:      [email protected]
9817 S:      Maintained
9818 F:      Documentation/fb/intelfb.rst
9819 F:      drivers/video/fbdev/intelfb/
9820
9821 INTEL GPIO DRIVERS
9822 M:      Andy Shevchenko <[email protected]>
9823 L:      [email protected]
9824 S:      Maintained
9825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9826 F:      drivers/gpio/gpio-ich.c
9827 F:      drivers/gpio/gpio-merrifield.c
9828 F:      drivers/gpio/gpio-ml-ioh.c
9829 F:      drivers/gpio/gpio-pch.c
9830 F:      drivers/gpio/gpio-sch.c
9831 F:      drivers/gpio/gpio-sodaville.c
9832
9833 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9834 M:      Zhenyu Wang <[email protected]>
9835 M:      Zhi Wang <[email protected]>
9836 L:      [email protected]
9837 L:      [email protected]
9838 S:      Supported
9839 W:      https://01.org/igvt-g
9840 T:      git https://github.com/intel/gvt-linux.git
9841 F:      drivers/gpu/drm/i915/gvt/
9842
9843 INTEL HID EVENT DRIVER
9844 M:      Alex Hung <[email protected]>
9845 L:      [email protected]
9846 S:      Maintained
9847 F:      drivers/platform/x86/intel/hid.c
9848
9849 INTEL I/OAT DMA DRIVER
9850 M:      Dave Jiang <[email protected]>
9851 R:      Dan Williams <[email protected]>
9852 L:      [email protected]
9853 S:      Supported
9854 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9855 F:      drivers/dma/ioat*
9856
9857 INTEL IADX DRIVER
9858 M:      Dave Jiang <[email protected]>
9859 L:      [email protected]
9860 S:      Supported
9861 F:      drivers/dma/idxd/*
9862 F:      include/uapi/linux/idxd.h
9863
9864 INTEL IDLE DRIVER
9865 M:      Jacob Pan <[email protected]>
9866 M:      Len Brown <[email protected]>
9867 L:      [email protected]
9868 S:      Supported
9869 B:      https://bugzilla.kernel.org
9870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9871 F:      drivers/idle/intel_idle.c
9872
9873 INTEL INTEGRATED SENSOR HUB DRIVER
9874 M:      Srinivas Pandruvada <[email protected]>
9875 M:      Jiri Kosina <[email protected]>
9876 L:      [email protected]
9877 S:      Maintained
9878 F:      drivers/hid/intel-ish-hid/
9879
9880 INTEL IOMMU (VT-d)
9881 M:      David Woodhouse <[email protected]>
9882 M:      Lu Baolu <[email protected]>
9883 L:      [email protected]
9884 S:      Supported
9885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9886 F:      drivers/iommu/intel/
9887 F:      include/linux/intel-iommu.h
9888 F:      include/linux/intel-svm.h
9889
9890 INTEL IOP-ADMA DMA DRIVER
9891 R:      Dan Williams <[email protected]>
9892 S:      Odd fixes
9893 F:      drivers/dma/iop-adma.c
9894
9895 INTEL IPU3 CSI-2 CIO2 DRIVER
9896 M:      Yong Zhi <[email protected]>
9897 M:      Sakari Ailus <[email protected]>
9898 M:      Bingbu Cao <[email protected]>
9899 M:      Dan Scally <[email protected]>
9900 R:      Tianshu Qiu <[email protected]>
9901 L:      [email protected]
9902 S:      Maintained
9903 T:      git git://linuxtv.org/media_tree.git
9904 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9905 F:      drivers/media/pci/intel/ipu3/
9906
9907 INTEL IPU3 CSI-2 IMGU DRIVER
9908 M:      Sakari Ailus <[email protected]>
9909 R:      Bingbu Cao <[email protected]>
9910 R:      Tianshu Qiu <[email protected]>
9911 L:      [email protected]
9912 S:      Maintained
9913 F:      Documentation/admin-guide/media/ipu3.rst
9914 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9915 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9916 F:      drivers/staging/media/ipu3/
9917
9918 INTEL IXP4XX CRYPTO SUPPORT
9919 M:      Corentin Labbe <[email protected]>
9920 L:      [email protected]
9921 S:      Maintained
9922 F:      drivers/crypto/ixp4xx_crypto.c
9923
9924 INTEL ISHTP ECLITE DRIVER
9925 M:      Sumesh K Naduvalath <[email protected]>
9926 L:      [email protected]
9927 S:      Supported
9928 F:      drivers/platform/x86/intel/ishtp_eclite.c
9929
9930 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9931 M:      Krzysztof Halasa <[email protected]>
9932 S:      Maintained
9933 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9934 F:      drivers/net/wan/ixp4xx_hss.c
9935 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9936 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9937 F:      include/linux/soc/ixp4xx/npe.h
9938 F:      include/linux/soc/ixp4xx/qmgr.h
9939
9940 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9941 M:      Deepak Saxena <[email protected]>
9942 S:      Maintained
9943 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9944 F:      drivers/char/hw_random/ixp4xx-rng.c
9945
9946 INTEL KEEM BAY DRM DRIVER
9947 M:      Anitha Chrisanthus <[email protected]>
9948 M:      Edmund Dea <[email protected]>
9949 S:      Maintained
9950 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
9951 F:      drivers/gpu/drm/kmb/
9952
9953 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9954 M:      Daniele Alessandrelli <[email protected]>
9955 S:      Maintained
9956 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9957 F:      drivers/crypto/keembay/Kconfig
9958 F:      drivers/crypto/keembay/Makefile
9959 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9960 F:      drivers/crypto/keembay/ocs-aes.c
9961 F:      drivers/crypto/keembay/ocs-aes.h
9962
9963 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9964 M:      Daniele Alessandrelli <[email protected]>
9965 M:      Prabhjot Khurana <[email protected]>
9966 M:      Mark Gross <[email protected]>
9967 S:      Maintained
9968 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9969 F:      drivers/crypto/keembay/Kconfig
9970 F:      drivers/crypto/keembay/Makefile
9971 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9972
9973 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9974 M:      Daniele Alessandrelli <[email protected]>
9975 M:      Declan Murphy <[email protected]>
9976 S:      Maintained
9977 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9978 F:      drivers/crypto/keembay/Kconfig
9979 F:      drivers/crypto/keembay/Makefile
9980 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9981 F:      drivers/crypto/keembay/ocs-hcu.c
9982 F:      drivers/crypto/keembay/ocs-hcu.h
9983
9984 INTEL THUNDER BAY EMMC PHY DRIVER
9985 M:      Nandhini Srikandan <[email protected]>
9986 M:      Rashmi A <[email protected]>
9987 S:      Maintained
9988 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
9989 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
9990
9991 INTEL MANAGEMENT ENGINE (mei)
9992 M:      Tomas Winkler <[email protected]>
9993 L:      [email protected]
9994 S:      Supported
9995 F:      Documentation/driver-api/mei/*
9996 F:      drivers/misc/mei/
9997 F:      drivers/watchdog/mei_wdt.c
9998 F:      include/linux/mei_cl_bus.h
9999 F:      include/uapi/linux/mei.h
10000 F:      samples/mei/*
10001
10002 INTEL MAX 10 BMC MFD DRIVER
10003 M:      Xu Yilun <[email protected]>
10004 R:      Tom Rix <[email protected]>
10005 S:      Maintained
10006 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10007 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10008 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10009 F:      drivers/mfd/intel-m10-bmc.c
10010 F:      include/linux/mfd/intel-m10-bmc.h
10011
10012 INTEL MENLOW THERMAL DRIVER
10013 M:      Sujith Thomas <[email protected]>
10014 L:      [email protected]
10015 S:      Supported
10016 W:      https://01.org/linux-acpi
10017 F:      drivers/thermal/intel/intel_menlow.c
10018
10019 INTEL P-Unit IPC DRIVER
10020 M:      Zha Qipeng <[email protected]>
10021 L:      [email protected]
10022 S:      Maintained
10023 F:      arch/x86/include/asm/intel_punit_ipc.h
10024 F:      drivers/platform/x86/intel/punit_ipc.c
10025
10026 INTEL PMC CORE DRIVER
10027 M:      Rajneesh Bhardwaj <[email protected]>
10028 M:      David E Box <[email protected]>
10029 L:      [email protected]
10030 S:      Maintained
10031 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10032 F:      drivers/platform/x86/intel/pmc/
10033
10034 INTEL PMIC GPIO DRIVERS
10035 M:      Andy Shevchenko <[email protected]>
10036 S:      Maintained
10037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10038 F:      drivers/gpio/gpio-*cove.c
10039
10040 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10041 M:      Andy Shevchenko <[email protected]>
10042 S:      Maintained
10043 F:      drivers/mfd/intel_soc_pmic*
10044 F:      include/linux/mfd/intel_soc_pmic*
10045
10046 INTEL PMT DRIVERS
10047 M:      David E. Box <[email protected]>
10048 S:      Supported
10049 F:      drivers/platform/x86/intel/pmt/
10050
10051 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10052 M:      Stanislav Yakovlev <[email protected]>
10053 L:      [email protected]
10054 S:      Maintained
10055 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10056 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10057 F:      drivers/net/wireless/intel/ipw2x00/
10058
10059 INTEL PSTATE DRIVER
10060 M:      Srinivas Pandruvada <[email protected]>
10061 M:      Len Brown <[email protected]>
10062 L:      [email protected]
10063 S:      Supported
10064 F:      drivers/cpufreq/intel_pstate.c
10065
10066 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10067 M:      Jarkko Nikula <[email protected]>
10068 L:      [email protected]
10069 F:      drivers/counter/intel-qep.c
10070
10071 INTEL SCU DRIVERS
10072 M:      Mika Westerberg <[email protected]>
10073 S:      Maintained
10074 F:      arch/x86/include/asm/intel_scu_ipc.h
10075 F:      drivers/platform/x86/intel_scu_*
10076
10077 INTEL SDSI DRIVER
10078 M:      David E. Box <[email protected]>
10079 S:      Supported
10080 F:      drivers/platform/x86/intel/sdsi.c
10081 F:      tools/arch/x86/intel_sdsi/
10082 F:      tools/testing/selftests/drivers/sdsi/
10083
10084 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10085 M:      Daniel Scally <[email protected]>
10086 S:      Maintained
10087 F:      drivers/platform/x86/intel/int3472/
10088
10089 INTEL SPEED SELECT TECHNOLOGY
10090 M:      Srinivas Pandruvada <[email protected]>
10091 L:      [email protected]
10092 S:      Maintained
10093 F:      drivers/platform/x86/intel/speed_select_if/
10094 F:      include/uapi/linux/isst_if.h
10095 F:      tools/power/x86/intel-speed-select/
10096
10097 INTEL STRATIX10 FIRMWARE DRIVERS
10098 M:      Dinh Nguyen <[email protected]>
10099 L:      [email protected]
10100 S:      Maintained
10101 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10102 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10103 F:      drivers/firmware/stratix10-rsu.c
10104 F:      drivers/firmware/stratix10-svc.c
10105 F:      include/linux/firmware/intel/stratix10-smc.h
10106 F:      include/linux/firmware/intel/stratix10-svc-client.h
10107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10108
10109 INTEL TELEMETRY DRIVER
10110 M:      Rajneesh Bhardwaj <[email protected]>
10111 M:      "David E. Box" <[email protected]>
10112 L:      [email protected]
10113 S:      Maintained
10114 F:      arch/x86/include/asm/intel_telemetry.h
10115 F:      drivers/platform/x86/intel/telemetry/
10116
10117 INTEL UNCORE FREQUENCY CONTROL
10118 M:      Srinivas Pandruvada <[email protected]>
10119 L:      [email protected]
10120 S:      Maintained
10121 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10122 F:      drivers/platform/x86/intel/uncore-frequency/
10123
10124 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10125 M:      David E. Box <[email protected]>
10126 S:      Supported
10127 F:      drivers/platform/x86/intel/vsec.*
10128
10129 INTEL VIRTUAL BUTTON DRIVER
10130 M:      AceLan Kao <[email protected]>
10131 L:      [email protected]
10132 S:      Maintained
10133 F:      drivers/platform/x86/intel/vbtn.c
10134
10135 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10136 M:      Stanislaw Gruszka <[email protected]>
10137 L:      [email protected]
10138 S:      Supported
10139 F:      drivers/net/wireless/intel/iwlegacy/
10140
10141 INTEL WIRELESS WIFI LINK (iwlwifi)
10142 M:      Luca Coelho <[email protected]>
10143 L:      [email protected]
10144 S:      Supported
10145 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10147 F:      drivers/net/wireless/intel/iwlwifi/
10148
10149 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10150 M:      Jithu Joseph <[email protected]>
10151 R:      Maurice Ma <[email protected]>
10152 S:      Maintained
10153 W:      https://slimbootloader.github.io/security/firmware-update.html
10154 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10155
10156 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10157 L:      [email protected]
10158 S:      Maintained
10159 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10160
10161 INTEL WWAN IOSM DRIVER
10162 M:      M Chetan Kumar <[email protected]>
10163 M:      Intel Corporation <[email protected]>
10164 L:      [email protected]
10165 S:      Maintained
10166 F:      drivers/net/wwan/iosm/
10167
10168 INTEL(R) TRACE HUB
10169 M:      Alexander Shishkin <[email protected]>
10170 S:      Supported
10171 F:      Documentation/trace/intel_th.rst
10172 F:      drivers/hwtracing/intel_th/
10173 F:      include/linux/intel_th.h
10174
10175 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10176 M:      Ning Sun <[email protected]>
10177 L:      [email protected]
10178 S:      Supported
10179 W:      http://tboot.sourceforge.net
10180 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10181 F:      Documentation/x86/intel_txt.rst
10182 F:      arch/x86/kernel/tboot.c
10183 F:      include/linux/tboot.h
10184
10185 INTEL SGX
10186 M:      Jarkko Sakkinen <[email protected]>
10187 R:      Dave Hansen <[email protected]>
10188 L:      [email protected]
10189 S:      Supported
10190 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10192 F:      Documentation/x86/sgx.rst
10193 F:      arch/x86/entry/vdso/vsgx.S
10194 F:      arch/x86/include/asm/sgx.h
10195 F:      arch/x86/include/uapi/asm/sgx.h
10196 F:      arch/x86/kernel/cpu/sgx/*
10197 F:      tools/testing/selftests/sgx/*
10198 K:      \bSGX_
10199
10200 INTERCONNECT API
10201 M:      Georgi Djakov <[email protected]>
10202 L:      [email protected]
10203 S:      Maintained
10204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10205 F:      Documentation/devicetree/bindings/interconnect/
10206 F:      Documentation/driver-api/interconnect.rst
10207 F:      drivers/interconnect/
10208 F:      include/dt-bindings/interconnect/
10209 F:      include/linux/interconnect-provider.h
10210 F:      include/linux/interconnect.h
10211
10212 INTERRUPT COUNTER DRIVER
10213 M:      Oleksij Rempel <[email protected]>
10214 R:      Pengutronix Kernel Team <[email protected]>
10215 L:      [email protected]
10216 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10217 F:      drivers/counter/interrupt-cnt.c
10218
10219 INTERSIL ISL7998X VIDEO DECODER DRIVER
10220 M:      Michael Tretter <[email protected]>
10221 R:      Pengutronix Kernel Team <[email protected]>
10222 L:      [email protected]
10223 S:      Maintained
10224 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10225 F:      drivers/media/i2c/isl7998x.c
10226
10227 INVENSENSE ICM-426xx IMU DRIVER
10228 M:      Jean-Baptiste Maneyrol <[email protected]>
10229 L:      [email protected]
10230 S:      Maintained
10231 W:      https://invensense.tdk.com/
10232 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10233 F:      drivers/iio/imu/inv_icm42600/
10234
10235 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10236 M:      Linus Walleij <[email protected]>
10237 L:      [email protected]
10238 S:      Maintained
10239 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10240 F:      drivers/iio/gyro/mpu3050*
10241
10242 IOC3 ETHERNET DRIVER
10243 M:      Ralf Baechle <[email protected]>
10244 L:      [email protected]
10245 S:      Maintained
10246 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10247
10248 IOMAP FILESYSTEM LIBRARY
10249 M:      Christoph Hellwig <[email protected]>
10250 M:      Darrick J. Wong <[email protected]>
10251 M:      [email protected]
10252 M:      [email protected]
10253 L:      [email protected]
10254 L:      [email protected]
10255 S:      Supported
10256 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10257 F:      fs/iomap/
10258 F:      include/linux/iomap.h
10259
10260 IOMMU DRIVERS
10261 M:      Joerg Roedel <[email protected]>
10262 M:      Will Deacon <[email protected]>
10263 L:      [email protected]
10264 S:      Maintained
10265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10266 F:      Documentation/devicetree/bindings/iommu/
10267 F:      Documentation/userspace-api/iommu.rst
10268 F:      drivers/iommu/
10269 F:      include/linux/iommu.h
10270 F:      include/linux/iova.h
10271 F:      include/linux/of_iommu.h
10272 F:      include/uapi/linux/iommu.h
10273
10274 IOSYS-MAP HELPERS
10275 M:      Thomas Zimmermann <[email protected]>
10276 L:      [email protected]
10277 S:      Maintained
10278 T:      git git://anongit.freedesktop.org/drm/drm-misc
10279 F:      include/linux/iosys-map.h
10280
10281 IO_URING
10282 M:      Jens Axboe <[email protected]>
10283 R:      Pavel Begunkov <[email protected]>
10284 L:      [email protected]
10285 S:      Maintained
10286 T:      git git://git.kernel.dk/linux-block
10287 T:      git git://git.kernel.dk/liburing
10288 F:      fs/io-wq.c
10289 F:      fs/io-wq.h
10290 F:      fs/io_uring.c
10291 F:      include/linux/io_uring.h
10292 F:      include/uapi/linux/io_uring.h
10293 F:      tools/io_uring/
10294
10295 IPMI SUBSYSTEM
10296 M:      Corey Minyard <[email protected]>
10297 L:      [email protected] (moderated for non-subscribers)
10298 S:      Supported
10299 W:      http://openipmi.sourceforge.net/
10300 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10301 F:      Documentation/driver-api/ipmi.rst
10302 F:      Documentation/devicetree/bindings/ipmi/
10303 F:      drivers/char/ipmi/
10304 F:      include/linux/ipmi*
10305 F:      include/uapi/linux/ipmi*
10306
10307 IPS SCSI RAID DRIVER
10308 M:      Adaptec OEM Raid Solutions <[email protected]>
10309 L:      [email protected]
10310 S:      Maintained
10311 W:      http://www.adaptec.com/
10312 F:      drivers/scsi/ips*
10313
10314 IPVS
10315 M:      Simon Horman <[email protected]>
10316 M:      Julian Anastasov <[email protected]>
10317 L:      [email protected]
10318 L:      [email protected]
10319 S:      Maintained
10320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10322 F:      Documentation/networking/ipvs-sysctl.rst
10323 F:      include/net/ip_vs.h
10324 F:      include/uapi/linux/ip_vs.h
10325 F:      net/netfilter/ipvs/
10326
10327 IPWIRELESS DRIVER
10328 M:      Jiri Kosina <[email protected]>
10329 M:      David Sterba <[email protected]>
10330 S:      Odd Fixes
10331 F:      drivers/tty/ipwireless/
10332
10333 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10334 M:      Marc Zyngier <[email protected]>
10335 S:      Maintained
10336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10337 F:      Documentation/core-api/irq/irq-domain.rst
10338 F:      include/linux/irqdomain.h
10339 F:      kernel/irq/irqdomain.c
10340 F:      kernel/irq/msi.c
10341
10342 IRQ SUBSYSTEM
10343 M:      Thomas Gleixner <[email protected]>
10344 L:      [email protected]
10345 S:      Maintained
10346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10347 F:      kernel/irq/
10348
10349 IRQCHIP DRIVERS
10350 M:      Thomas Gleixner <[email protected]>
10351 M:      Marc Zyngier <[email protected]>
10352 L:      [email protected]
10353 S:      Maintained
10354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10355 F:      Documentation/devicetree/bindings/interrupt-controller/
10356 F:      drivers/irqchip/
10357
10358 ISA
10359 M:      William Breathitt Gray <[email protected]>
10360 S:      Maintained
10361 F:      Documentation/driver-api/isa.rst
10362 F:      drivers/base/isa.c
10363 F:      include/linux/isa.h
10364
10365 ISA RADIO MODULE
10366 M:      Hans Verkuil <[email protected]>
10367 L:      [email protected]
10368 S:      Maintained
10369 W:      https://linuxtv.org
10370 T:      git git://linuxtv.org/media_tree.git
10371 F:      drivers/media/radio/radio-isa*
10372
10373 ISAPNP
10374 M:      Jaroslav Kysela <[email protected]>
10375 S:      Maintained
10376 F:      Documentation/driver-api/isapnp.rst
10377 F:      drivers/pnp/isapnp/
10378 F:      include/linux/isapnp.h
10379
10380 ISCSI
10381 M:      Lee Duncan <[email protected]>
10382 M:      Chris Leech <[email protected]>
10383 L:      [email protected]
10384 L:      [email protected]
10385 S:      Maintained
10386 W:      www.open-iscsi.com
10387 F:      drivers/scsi/*iscsi*
10388 F:      include/scsi/*iscsi*
10389
10390 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10391 M:      Peter Jones <[email protected]>
10392 M:      Konrad Rzeszutek Wilk <[email protected]>
10393 S:      Maintained
10394 F:      drivers/firmware/iscsi_ibft*
10395
10396 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10397 M:      Sagi Grimberg <[email protected]>
10398 M:      Max Gurtovoy <[email protected]>
10399 L:      [email protected]
10400 S:      Supported
10401 W:      http://www.openfabrics.org
10402 W:      www.open-iscsi.org
10403 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10404 F:      drivers/infiniband/ulp/iser/
10405
10406 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10407 M:      Sagi Grimberg <[email protected]>
10408 L:      [email protected]
10409 L:      [email protected]
10410 S:      Supported
10411 W:      http://www.linux-iscsi.org
10412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10413 F:      drivers/infiniband/ulp/isert
10414
10415 ISDN/CMTP OVER BLUETOOTH
10416 M:      Karsten Keil <[email protected]>
10417 L:      [email protected] (subscribers-only)
10418 L:      [email protected]
10419 S:      Odd Fixes
10420 W:      http://www.isdn4linux.de
10421 F:      Documentation/isdn/
10422 F:      drivers/isdn/capi/
10423 F:      include/linux/isdn/
10424 F:      include/uapi/linux/isdn/
10425 F:      net/bluetooth/cmtp/
10426
10427 ISDN/mISDN SUBSYSTEM
10428 M:      Karsten Keil <[email protected]>
10429 L:      [email protected] (subscribers-only)
10430 L:      [email protected]
10431 S:      Maintained
10432 W:      http://www.isdn4linux.de
10433 F:      drivers/isdn/Kconfig
10434 F:      drivers/isdn/Makefile
10435 F:      drivers/isdn/hardware/
10436 F:      drivers/isdn/mISDN/
10437
10438 IT87 HARDWARE MONITORING DRIVER
10439 M:      Jean Delvare <[email protected]>
10440 L:      [email protected]
10441 S:      Maintained
10442 F:      Documentation/hwmon/it87.rst
10443 F:      drivers/hwmon/it87.c
10444
10445 IT913X MEDIA DRIVER
10446 M:      Antti Palosaari <[email protected]>
10447 L:      [email protected]
10448 S:      Maintained
10449 W:      https://linuxtv.org
10450 W:      http://palosaari.fi/linux/
10451 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10452 T:      git git://linuxtv.org/anttip/media_tree.git
10453 F:      drivers/media/tuners/it913x*
10454
10455 ITE IT66121 HDMI BRIDGE DRIVER
10456 M:      Phong LE <[email protected]>
10457 M:      Neil Armstrong <[email protected]>
10458 S:      Maintained
10459 T:      git git://anongit.freedesktop.org/drm/drm-misc
10460 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10461 F:      drivers/gpu/drm/bridge/ite-it66121.c
10462
10463 IVTV VIDEO4LINUX DRIVER
10464 M:      Andy Walls <[email protected]>
10465 L:      [email protected]
10466 S:      Maintained
10467 W:      https://linuxtv.org
10468 T:      git git://linuxtv.org/media_tree.git
10469 F:      Documentation/admin-guide/media/ivtv*
10470 F:      drivers/media/pci/ivtv/
10471 F:      include/uapi/linux/ivtv*
10472
10473 IX2505V MEDIA DRIVER
10474 M:      Malcolm Priestley <[email protected]>
10475 L:      [email protected]
10476 S:      Maintained
10477 W:      https://linuxtv.org
10478 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10479 F:      drivers/media/dvb-frontends/ix2505v*
10480
10481 JAILHOUSE HYPERVISOR INTERFACE
10482 M:      Jan Kiszka <[email protected]>
10483 L:      [email protected]
10484 S:      Maintained
10485 F:      arch/x86/include/asm/jailhouse_para.h
10486 F:      arch/x86/kernel/jailhouse.c
10487
10488 JC42.4 TEMPERATURE SENSOR DRIVER
10489 M:      Guenter Roeck <[email protected]>
10490 L:      [email protected]
10491 S:      Maintained
10492 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10493 F:      Documentation/hwmon/jc42.rst
10494 F:      drivers/hwmon/jc42.c
10495
10496 JFS FILESYSTEM
10497 M:      Dave Kleikamp <[email protected]>
10498 L:      [email protected]
10499 S:      Maintained
10500 W:      http://jfs.sourceforge.net/
10501 T:      git git://github.com/kleikamp/linux-shaggy.git
10502 F:      Documentation/admin-guide/jfs.rst
10503 F:      fs/jfs/
10504
10505 JME NETWORK DRIVER
10506 M:      Guo-Fu Tseng <[email protected]>
10507 L:      [email protected]
10508 S:      Maintained
10509 F:      drivers/net/ethernet/jme.*
10510
10511 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10512 M:      David Woodhouse <[email protected]>
10513 M:      Richard Weinberger <[email protected]>
10514 L:      [email protected]
10515 S:      Odd Fixes
10516 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10517 T:      git git://git.infradead.org/ubifs-2.6.git
10518 F:      fs/jffs2/
10519 F:      include/uapi/linux/jffs2.h
10520
10521 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10522 M:      "Theodore Ts'o" <[email protected]>
10523 M:      Jan Kara <[email protected]>
10524 L:      [email protected]
10525 S:      Maintained
10526 F:      fs/jbd2/
10527 F:      include/linux/jbd2.h
10528
10529 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10530 M:      Mikhail Ulyanov <[email protected]>
10531 L:      [email protected]
10532 L:      [email protected]
10533 S:      Maintained
10534 F:      drivers/media/platform/renesas/rcar_jpu.c
10535
10536 JSM Neo PCI based serial card
10537 L:      [email protected]
10538 S:      Orphan
10539 F:      drivers/tty/serial/jsm/
10540
10541 K10TEMP HARDWARE MONITORING DRIVER
10542 M:      Clemens Ladisch <[email protected]>
10543 L:      [email protected]
10544 S:      Maintained
10545 F:      Documentation/hwmon/k10temp.rst
10546 F:      drivers/hwmon/k10temp.c
10547
10548 K8TEMP HARDWARE MONITORING DRIVER
10549 M:      Rudolf Marek <[email protected]>
10550 L:      [email protected]
10551 S:      Maintained
10552 F:      Documentation/hwmon/k8temp.rst
10553 F:      drivers/hwmon/k8temp.c
10554
10555 KASAN
10556 M:      Andrey Ryabinin <[email protected]>
10557 R:      Alexander Potapenko <[email protected]>
10558 R:      Andrey Konovalov <[email protected]>
10559 R:      Dmitry Vyukov <[email protected]>
10560 L:      [email protected]
10561 S:      Maintained
10562 F:      Documentation/dev-tools/kasan.rst
10563 F:      arch/*/include/asm/*kasan.h
10564 F:      arch/*/mm/kasan_init*
10565 F:      include/linux/kasan*.h
10566 F:      lib/Kconfig.kasan
10567 F:      lib/test_kasan*.c
10568 F:      mm/kasan/
10569 F:      scripts/Makefile.kasan
10570
10571 KCONFIG
10572 M:      Masahiro Yamada <[email protected]>
10573 L:      [email protected]
10574 S:      Maintained
10575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10576 F:      Documentation/kbuild/kconfig*
10577 F:      scripts/Kconfig.include
10578 F:      scripts/kconfig/
10579
10580 KCOV
10581 R:      Dmitry Vyukov <[email protected]>
10582 R:      Andrey Konovalov <[email protected]>
10583 L:      [email protected]
10584 S:      Maintained
10585 F:      Documentation/dev-tools/kcov.rst
10586 F:      include/linux/kcov.h
10587 F:      include/uapi/linux/kcov.h
10588 F:      kernel/kcov.c
10589 F:      scripts/Makefile.kcov
10590
10591 KCSAN
10592 M:      Marco Elver <[email protected]>
10593 R:      Dmitry Vyukov <[email protected]>
10594 L:      [email protected]
10595 S:      Maintained
10596 F:      Documentation/dev-tools/kcsan.rst
10597 F:      include/linux/kcsan*.h
10598 F:      kernel/kcsan/
10599 F:      lib/Kconfig.kcsan
10600 F:      scripts/Makefile.kcsan
10601
10602 KDUMP
10603 M:      Baoquan He <[email protected]>
10604 R:      Vivek Goyal <[email protected]>
10605 R:      Dave Young <[email protected]>
10606 L:      [email protected]
10607 S:      Maintained
10608 W:      http://lse.sourceforge.net/kdump/
10609 F:      Documentation/admin-guide/kdump/
10610 F:      fs/proc/vmcore.c
10611 F:      include/linux/crash_core.h
10612 F:      include/linux/crash_dump.h
10613 F:      include/uapi/linux/vmcore.h
10614 F:      kernel/crash_*.c
10615
10616 KEENE FM RADIO TRANSMITTER DRIVER
10617 M:      Hans Verkuil <[email protected]>
10618 L:      [email protected]
10619 S:      Maintained
10620 W:      https://linuxtv.org
10621 T:      git git://linuxtv.org/media_tree.git
10622 F:      drivers/media/radio/radio-keene*
10623
10624 KERNEL AUTOMOUNTER
10625 M:      Ian Kent <[email protected]>
10626 L:      [email protected]
10627 S:      Maintained
10628 F:      fs/autofs/
10629
10630 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10631 M:      Masahiro Yamada <[email protected]>
10632 M:      Michal Marek <[email protected]>
10633 R:      Nick Desaulniers <[email protected]>
10634 L:      [email protected]
10635 S:      Maintained
10636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10637 F:      Documentation/kbuild/
10638 F:      Makefile
10639 F:      scripts/*vmlinux*
10640 F:      scripts/Kbuild*
10641 F:      scripts/Makefile*
10642 F:      scripts/basic/
10643 F:      scripts/dummy-tools/
10644 F:      scripts/mk*
10645 F:      scripts/mod/
10646 F:      scripts/package/
10647
10648 KERNEL JANITORS
10649 L:      [email protected]
10650 S:      Odd Fixes
10651 W:      http://kernelnewbies.org/KernelJanitors
10652
10653 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10654 M:      Chuck Lever <[email protected]>
10655 L:      [email protected]
10656 S:      Supported
10657 W:      http://nfs.sourceforge.net/
10658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
10659 F:      fs/lockd/
10660 F:      fs/nfs_common/
10661 F:      fs/nfsd/
10662 F:      include/linux/lockd/
10663 F:      include/linux/sunrpc/
10664 F:      include/uapi/linux/nfsd/
10665 F:      include/uapi/linux/sunrpc/
10666 F:      net/sunrpc/
10667 F:      Documentation/filesystems/nfs/
10668
10669 KERNEL REGRESSIONS
10670 M:      Thorsten Leemhuis <[email protected]>
10671 L:      [email protected]
10672 S:      Supported
10673 F:      Documentation/admin-guide/reporting-regressions.rst
10674 F:      Documentation/process/handling-regressions.rst
10675
10676 KERNEL SELFTEST FRAMEWORK
10677 M:      Shuah Khan <[email protected]>
10678 M:      Shuah Khan <[email protected]>
10679 L:      [email protected]
10680 S:      Maintained
10681 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10683 F:      Documentation/dev-tools/kselftest*
10684 F:      tools/testing/selftests/
10685
10686 KERNEL SMB3 SERVER (KSMBD)
10687 M:      Namjae Jeon <[email protected]>
10688 M:      Steve French <[email protected]>
10689 M:      Hyunchul Lee <[email protected]>
10690 R:      Sergey Senozhatsky <[email protected]>
10691 L:      [email protected]
10692 S:      Maintained
10693 T:      git git://git.samba.org/ksmbd.git
10694 F:      fs/ksmbd/
10695 F:      fs/smbfs_common/
10696
10697 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10698 M:      Brendan Higgins <[email protected]>
10699 L:      [email protected]
10700 L:      [email protected]
10701 S:      Maintained
10702 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10703 F:      Documentation/dev-tools/kunit/
10704 F:      include/kunit/
10705 F:      lib/kunit/
10706 F:      tools/testing/kunit/
10707
10708 KERNEL USERMODE HELPER
10709 M:      Luis Chamberlain <[email protected]>
10710 L:      [email protected]
10711 S:      Maintained
10712 F:      include/linux/umh.h
10713 F:      kernel/umh.c
10714
10715 KERNEL VIRTUAL MACHINE (KVM)
10716 M:      Paolo Bonzini <[email protected]>
10717 L:      [email protected]
10718 S:      Supported
10719 W:      http://www.linux-kvm.org
10720 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10721 F:      Documentation/virt/kvm/
10722 F:      include/asm-generic/kvm*
10723 F:      include/kvm/iodev.h
10724 F:      include/linux/kvm*
10725 F:      include/trace/events/kvm.h
10726 F:      include/uapi/asm-generic/kvm*
10727 F:      include/uapi/linux/kvm*
10728 F:      tools/kvm/
10729 F:      tools/testing/selftests/kvm/
10730 F:      virt/kvm/*
10731
10732 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10733 M:      Marc Zyngier <[email protected]>
10734 R:      James Morse <[email protected]>
10735 R:      Alexandru Elisei <[email protected]>
10736 R:      Suzuki K Poulose <[email protected]>
10737 L:      [email protected] (moderated for non-subscribers)
10738 L:      [email protected] (moderated for non-subscribers)
10739 S:      Maintained
10740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10741 F:      arch/arm64/include/asm/kvm*
10742 F:      arch/arm64/include/uapi/asm/kvm*
10743 F:      arch/arm64/kvm/
10744 F:      include/kvm/arm_*
10745 F:      tools/testing/selftests/kvm/*/aarch64/
10746 F:      tools/testing/selftests/kvm/aarch64/
10747
10748 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10749 M:      Huacai Chen <[email protected]>
10750 M:      Aleksandar Markovic <[email protected]>
10751 L:      [email protected]
10752 L:      [email protected]
10753 S:      Maintained
10754 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10755 F:      arch/mips/include/asm/kvm*
10756 F:      arch/mips/include/uapi/asm/kvm*
10757 F:      arch/mips/kvm/
10758
10759 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10760 L:      [email protected]
10761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10762 F:      arch/powerpc/include/asm/kvm*
10763 F:      arch/powerpc/include/uapi/asm/kvm*
10764 F:      arch/powerpc/kernel/kvm*
10765 F:      arch/powerpc/kvm/
10766
10767 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10768 M:      Anup Patel <[email protected]>
10769 R:      Atish Patra <[email protected]>
10770 L:      [email protected]
10771 L:      [email protected]
10772 L:      [email protected]
10773 S:      Maintained
10774 T:      git git://github.com/kvm-riscv/linux.git
10775 F:      arch/riscv/include/asm/kvm*
10776 F:      arch/riscv/include/uapi/asm/kvm*
10777 F:      arch/riscv/kvm/
10778
10779 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10780 M:      Christian Borntraeger <[email protected]>
10781 M:      Janosch Frank <[email protected]>
10782 M:      Claudio Imbrenda <[email protected]>
10783 R:      David Hildenbrand <[email protected]>
10784 L:      [email protected]
10785 S:      Supported
10786 W:      http://www.ibm.com/developerworks/linux/linux390/
10787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10788 F:      Documentation/virt/kvm/s390*
10789 F:      arch/s390/include/asm/gmap.h
10790 F:      arch/s390/include/asm/kvm*
10791 F:      arch/s390/include/uapi/asm/kvm*
10792 F:      arch/s390/kernel/uv.c
10793 F:      arch/s390/kvm/
10794 F:      arch/s390/mm/gmap.c
10795 F:      tools/testing/selftests/kvm/*/s390x/
10796 F:      tools/testing/selftests/kvm/s390x/
10797
10798 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10799 M:      Paolo Bonzini <[email protected]>
10800 R:      Sean Christopherson <[email protected]>
10801 R:      Vitaly Kuznetsov <[email protected]>
10802 R:      Wanpeng Li <[email protected]>
10803 R:      Jim Mattson <[email protected]>
10804 R:      Joerg Roedel <[email protected]>
10805 L:      [email protected]
10806 S:      Supported
10807 W:      http://www.linux-kvm.org
10808 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10809 F:      arch/x86/include/asm/kvm*
10810 F:      arch/x86/include/asm/pvclock-abi.h
10811 F:      arch/x86/include/asm/svm.h
10812 F:      arch/x86/include/asm/vmx*.h
10813 F:      arch/x86/include/uapi/asm/kvm*
10814 F:      arch/x86/include/uapi/asm/svm.h
10815 F:      arch/x86/include/uapi/asm/vmx.h
10816 F:      arch/x86/kernel/kvm.c
10817 F:      arch/x86/kernel/kvmclock.c
10818 F:      arch/x86/kvm/
10819 F:      arch/x86/kvm/*/
10820
10821 KERNFS
10822 M:      Greg Kroah-Hartman <[email protected]>
10823 M:      Tejun Heo <[email protected]>
10824 S:      Supported
10825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10826 F:      fs/kernfs/
10827 F:      include/linux/kernfs.h
10828
10829 KEXEC
10830 M:      Eric Biederman <[email protected]>
10831 L:      [email protected]
10832 S:      Maintained
10833 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10834 F:      include/linux/kexec.h
10835 F:      include/uapi/linux/kexec.h
10836 F:      kernel/kexec*
10837
10838 KEYS-ENCRYPTED
10839 M:      Mimi Zohar <[email protected]>
10840 L:      [email protected]
10841 L:      [email protected]
10842 S:      Supported
10843 F:      Documentation/security/keys/trusted-encrypted.rst
10844 F:      include/keys/encrypted-type.h
10845 F:      security/keys/encrypted-keys/
10846
10847 KEYS-TRUSTED
10848 M:      James Bottomley <[email protected]>
10849 M:      Jarkko Sakkinen <[email protected]>
10850 M:      Mimi Zohar <[email protected]>
10851 L:      [email protected]
10852 L:      [email protected]
10853 S:      Supported
10854 F:      Documentation/security/keys/trusted-encrypted.rst
10855 F:      include/keys/trusted-type.h
10856 F:      include/keys/trusted_tpm.h
10857 F:      security/keys/trusted-keys/
10858
10859 KEYS-TRUSTED-TEE
10860 M:      Sumit Garg <[email protected]>
10861 L:      [email protected]
10862 L:      [email protected]
10863 S:      Supported
10864 F:      include/keys/trusted_tee.h
10865 F:      security/keys/trusted-keys/trusted_tee.c
10866
10867 KEYS/KEYRINGS
10868 M:      David Howells <[email protected]>
10869 M:      Jarkko Sakkinen <[email protected]>
10870 L:      [email protected]
10871 S:      Maintained
10872 F:      Documentation/security/keys/core.rst
10873 F:      include/keys/
10874 F:      include/linux/key-type.h
10875 F:      include/linux/key.h
10876 F:      include/linux/keyctl.h
10877 F:      include/uapi/linux/keyctl.h
10878 F:      security/keys/
10879
10880 KEYS/KEYRINGS_INTEGRITY
10881 M:      Jarkko Sakkinen <[email protected]>
10882 M:      Mimi Zohar <[email protected]>
10883 L:      [email protected]
10884 L:      [email protected]
10885 S:      Supported
10886 F:      security/integrity/platform_certs
10887
10888 KFENCE
10889 M:      Alexander Potapenko <[email protected]>
10890 M:      Marco Elver <[email protected]>
10891 R:      Dmitry Vyukov <[email protected]>
10892 L:      [email protected]
10893 S:      Maintained
10894 F:      Documentation/dev-tools/kfence.rst
10895 F:      arch/*/include/asm/kfence.h
10896 F:      include/linux/kfence.h
10897 F:      lib/Kconfig.kfence
10898 F:      mm/kfence/
10899
10900 KFIFO
10901 M:      Stefani Seibold <[email protected]>
10902 S:      Maintained
10903 F:      include/linux/kfifo.h
10904 F:      lib/kfifo.c
10905 F:      samples/kfifo/
10906
10907 KGDB / KDB /debug_core
10908 M:      Jason Wessel <[email protected]>
10909 M:      Daniel Thompson <[email protected]>
10910 R:      Douglas Anderson <[email protected]>
10911 L:      [email protected]
10912 S:      Maintained
10913 W:      http://kgdb.wiki.kernel.org/
10914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10915 F:      Documentation/dev-tools/kgdb.rst
10916 F:      drivers/misc/kgdbts.c
10917 F:      drivers/tty/serial/kgdboc.c
10918 F:      include/linux/kdb.h
10919 F:      include/linux/kgdb.h
10920 F:      kernel/debug/
10921
10922 KHADAS MCU MFD DRIVER
10923 M:      Neil Armstrong <[email protected]>
10924 L:      [email protected]
10925 S:      Maintained
10926 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10927 F:      drivers/mfd/khadas-mcu.c
10928 F:      include/linux/mfd/khadas-mcu.h
10929 F:      drivers/thermal/khadas_mcu_fan.c
10930
10931 KMEMLEAK
10932 M:      Catalin Marinas <[email protected]>
10933 S:      Maintained
10934 F:      Documentation/dev-tools/kmemleak.rst
10935 F:      include/linux/kmemleak.h
10936 F:      mm/kmemleak.c
10937 F:      samples/kmemleak/kmemleak-test.c
10938
10939 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10940 M:      Luis Chamberlain <[email protected]>
10941 L:      [email protected]
10942 L:      [email protected]
10943 S:      Maintained
10944 F:      include/linux/kmod.h
10945 F:      kernel/kmod.c
10946 F:      lib/test_kmod.c
10947 F:      tools/testing/selftests/kmod/
10948
10949 KPROBES
10950 M:      Naveen N. Rao <[email protected]>
10951 M:      Anil S Keshavamurthy <[email protected]>
10952 M:      "David S. Miller" <[email protected]>
10953 M:      Masami Hiramatsu <[email protected]>
10954 S:      Maintained
10955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10956 F:      Documentation/trace/kprobes.rst
10957 F:      include/asm-generic/kprobes.h
10958 F:      include/linux/kprobes.h
10959 F:      kernel/kprobes.c
10960 F:      lib/test_kprobes.c
10961 F:      samples/kprobes
10962
10963 KS0108 LCD CONTROLLER DRIVER
10964 M:      Miguel Ojeda <[email protected]>
10965 S:      Maintained
10966 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10967 F:      drivers/auxdisplay/ks0108.c
10968 F:      include/linux/ks0108.h
10969
10970 KTD253 BACKLIGHT DRIVER
10971 M:      Linus Walleij <[email protected]>
10972 S:      Maintained
10973 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10974 F:      drivers/video/backlight/ktd253-backlight.c
10975
10976 KTEST
10977 M:      Steven Rostedt <[email protected]>
10978 M:      John Hawley <[email protected]>
10979 S:      Maintained
10980 F:      tools/testing/ktest
10981
10982 L3MDEV
10983 M:      David Ahern <[email protected]>
10984 L:      [email protected]
10985 S:      Maintained
10986 F:      include/net/l3mdev.h
10987 F:      net/l3mdev
10988
10989 L7 BPF FRAMEWORK
10990 M:      John Fastabend <[email protected]>
10991 M:      Daniel Borkmann <[email protected]>
10992 M:      Jakub Sitnicki <[email protected]>
10993 L:      [email protected]
10994 L:      [email protected]
10995 S:      Maintained
10996 F:      include/linux/skmsg.h
10997 F:      net/core/skmsg.c
10998 F:      net/core/sock_map.c
10999 F:      net/ipv4/tcp_bpf.c
11000 F:      net/ipv4/udp_bpf.c
11001 F:      net/unix/unix_bpf.c
11002
11003 LANDLOCK SECURITY MODULE
11004 M:      Mickaël Salaün <[email protected]>
11005 L:      [email protected]
11006 S:      Supported
11007 W:      https://landlock.io
11008 T:      git https://github.com/landlock-lsm/linux.git
11009 F:      Documentation/security/landlock.rst
11010 F:      Documentation/userspace-api/landlock.rst
11011 F:      include/uapi/linux/landlock.h
11012 F:      samples/landlock/
11013 F:      security/landlock/
11014 F:      tools/testing/selftests/landlock/
11015 K:      landlock
11016 K:      LANDLOCK
11017
11018 LANTIQ / INTEL Ethernet drivers
11019 M:      Hauke Mehrtens <[email protected]>
11020 L:      [email protected]
11021 S:      Maintained
11022 F:      drivers/net/dsa/lantiq_gswip.c
11023 F:      drivers/net/dsa/lantiq_pce.h
11024 F:      drivers/net/ethernet/lantiq_xrx200.c
11025 F:      net/dsa/tag_gswip.c
11026
11027 LANTIQ MIPS ARCHITECTURE
11028 M:      John Crispin <[email protected]>
11029 L:      [email protected]
11030 S:      Maintained
11031 F:      arch/mips/lantiq
11032 F:      drivers/soc/lantiq
11033
11034 LASI 53c700 driver for PARISC
11035 M:      "James E.J. Bottomley" <[email protected]>
11036 L:      [email protected]
11037 S:      Maintained
11038 F:      Documentation/scsi/53c700.rst
11039 F:      drivers/scsi/53c700*
11040
11041 LEAKING_ADDRESSES
11042 M:      Tobin C. Harding <[email protected]>
11043 M:      Tycho Andersen <[email protected]>
11044 L:      [email protected]
11045 S:      Maintained
11046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11047 F:      scripts/leaking_addresses.pl
11048
11049 LED SUBSYSTEM
11050 M:      Pavel Machek <[email protected]>
11051 L:      [email protected]
11052 S:      Maintained
11053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11054 F:      Documentation/devicetree/bindings/leds/
11055 F:      drivers/leds/
11056 F:      include/linux/leds.h
11057
11058 LEGACY EEPROM DRIVER
11059 M:      Jean Delvare <[email protected]>
11060 S:      Maintained
11061 F:      Documentation/misc-devices/eeprom.rst
11062 F:      drivers/misc/eeprom/eeprom.c
11063
11064 LEGO MINDSTORMS EV3
11065 R:      David Lechner <[email protected]>
11066 S:      Maintained
11067 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11068 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11069 F:      drivers/power/supply/lego_ev3_battery.c
11070
11071 LEGO USB Tower driver
11072 M:      Juergen Stuber <[email protected]>
11073 L:      [email protected]
11074 S:      Maintained
11075 W:      http://legousb.sourceforge.net/
11076 F:      drivers/usb/misc/legousbtower.c
11077
11078 LETSKETCH HID TABLET DRIVER
11079 M:      Hans de Goede <[email protected]>
11080 L:      [email protected]
11081 S:      Maintained
11082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11083 F:      drivers/hid/hid-letsketch.c
11084
11085 LG LAPTOP EXTRAS
11086 M:      Matan Ziv-Av <[email protected]>
11087 L:      [email protected]
11088 S:      Maintained
11089 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11090 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11091 F:      drivers/platform/x86/lg-laptop.c
11092
11093 LG2160 MEDIA DRIVER
11094 M:      Michael Krufky <[email protected]>
11095 L:      [email protected]
11096 S:      Maintained
11097 W:      https://linuxtv.org
11098 W:      http://github.com/mkrufky
11099 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11100 T:      git git://linuxtv.org/mkrufky/tuners.git
11101 F:      drivers/media/dvb-frontends/lg2160.*
11102
11103 LGDT3305 MEDIA DRIVER
11104 M:      Michael Krufky <[email protected]>
11105 L:      [email protected]
11106 S:      Maintained
11107 W:      https://linuxtv.org
11108 W:      http://github.com/mkrufky
11109 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11110 T:      git git://linuxtv.org/mkrufky/tuners.git
11111 F:      drivers/media/dvb-frontends/lgdt3305.*
11112
11113 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11114 M:      Viresh Kumar <[email protected]>
11115 L:      [email protected]
11116 S:      Maintained
11117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11118 F:      drivers/ata/pata_arasan_cf.c
11119 F:      include/linux/pata_arasan_cf_data.h
11120
11121 LIBATA PATA DRIVERS
11122 R:      Sergey Shtylyov <[email protected]>
11123 L:      [email protected]
11124 F:      drivers/ata/ata_*.c
11125 F:      drivers/ata/pata_*.c
11126
11127 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11128 M:      Linus Walleij <[email protected]>
11129 L:      [email protected]
11130 S:      Maintained
11131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11132 F:      drivers/ata/pata_ftide010.c
11133 F:      drivers/ata/sata_gemini.c
11134 F:      drivers/ata/sata_gemini.h
11135
11136 LIBATA SATA AHCI PLATFORM devices support
11137 M:      Hans de Goede <[email protected]>
11138 M:      Jens Axboe <[email protected]>
11139 L:      [email protected]
11140 S:      Maintained
11141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11142 F:      drivers/ata/ahci_platform.c
11143 F:      drivers/ata/libahci_platform.c
11144 F:      include/linux/ahci_platform.h
11145
11146 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11147 M:      Mikael Pettersson <[email protected]>
11148 L:      [email protected]
11149 S:      Maintained
11150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11151 F:      drivers/ata/sata_promise.*
11152
11153 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11154 M:      Damien Le Moal <[email protected]>
11155 L:      [email protected]
11156 S:      Maintained
11157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11158 F:      Documentation/devicetree/bindings/ata/
11159 F:      drivers/ata/
11160 F:      include/linux/ata.h
11161 F:      include/linux/libata.h
11162
11163 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11164 M:      Vishal Verma <[email protected]>
11165 M:      Dan Williams <[email protected]>
11166 M:      Dave Jiang <[email protected]>
11167 L:      [email protected]
11168 S:      Supported
11169 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11170 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11171 F:      drivers/nvdimm/btt*
11172
11173 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11174 M:      Dan Williams <[email protected]>
11175 M:      Vishal Verma <[email protected]>
11176 M:      Dave Jiang <[email protected]>
11177 L:      [email protected]
11178 S:      Supported
11179 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11180 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11181 F:      drivers/nvdimm/pmem*
11182
11183 LIBNVDIMM: DEVICETREE BINDINGS
11184 M:      Oliver O'Halloran <[email protected]>
11185 L:      [email protected]
11186 S:      Supported
11187 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11188 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11189 F:      drivers/nvdimm/of_pmem.c
11190
11191 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11192 M:      Dan Williams <[email protected]>
11193 M:      Vishal Verma <[email protected]>
11194 M:      Dave Jiang <[email protected]>
11195 M:      Ira Weiny <[email protected]>
11196 L:      [email protected]
11197 S:      Supported
11198 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11199 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11201 F:      drivers/acpi/nfit/*
11202 F:      drivers/nvdimm/*
11203 F:      include/linux/libnvdimm.h
11204 F:      include/linux/nd.h
11205 F:      include/uapi/linux/ndctl.h
11206 F:      tools/testing/nvdimm/
11207
11208 LICENSES and SPDX stuff
11209 M:      Thomas Gleixner <[email protected]>
11210 M:      Greg Kroah-Hartman <[email protected]>
11211 L:      [email protected]
11212 S:      Maintained
11213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11214 F:      COPYING
11215 F:      Documentation/process/license-rules.rst
11216 F:      LICENSES/
11217 F:      scripts/spdxcheck-test.sh
11218 F:      scripts/spdxcheck.py
11219
11220 LINEAR RANGES HELPERS
11221 M:      Mark Brown <[email protected]>
11222 R:      Matti Vaittinen <[email protected]>
11223 F:      lib/linear_ranges.c
11224 F:      lib/test_linear_ranges.c
11225 F:      include/linux/linear_range.h
11226
11227 LINUX FOR POWER MACINTOSH
11228 M:      Benjamin Herrenschmidt <[email protected]>
11229 L:      [email protected]
11230 S:      Odd Fixes
11231 F:      arch/powerpc/platforms/powermac/
11232 F:      drivers/macintosh/
11233
11234 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11235 M:      Michael Ellerman <[email protected]>
11236 R:      Benjamin Herrenschmidt <[email protected]>
11237 R:      Paul Mackerras <[email protected]>
11238 L:      [email protected]
11239 S:      Supported
11240 W:      https://github.com/linuxppc/wiki/wiki
11241 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11243 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11244 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11245 F:      Documentation/devicetree/bindings/powerpc/
11246 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11247 F:      Documentation/powerpc/
11248 F:      arch/powerpc/
11249 F:      drivers/*/*/*pasemi*
11250 F:      drivers/*/*pasemi*
11251 F:      drivers/char/tpm/tpm_ibmvtpm*
11252 F:      drivers/crypto/nx/
11253 F:      drivers/crypto/vmx/
11254 F:      drivers/i2c/busses/i2c-opal.c
11255 F:      drivers/net/ethernet/ibm/ibmveth.*
11256 F:      drivers/net/ethernet/ibm/ibmvnic.*
11257 F:      drivers/pci/hotplug/pnv_php.c
11258 F:      drivers/pci/hotplug/rpa*
11259 F:      drivers/rtc/rtc-opal.c
11260 F:      drivers/scsi/ibmvscsi/
11261 F:      drivers/tty/hvc/hvc_opal.c
11262 F:      drivers/watchdog/wdrtas.c
11263 F:      tools/testing/selftests/powerpc
11264 N:      /pmac
11265 N:      powermac
11266 N:      powernv
11267 N:      [^a-z0-9]ps3
11268 N:      pseries
11269
11270 LINUX FOR POWERPC EMBEDDED MPC5XXX
11271 M:      Anatolij Gustschin <[email protected]>
11272 L:      [email protected]
11273 S:      Odd Fixes
11274 F:      arch/powerpc/platforms/512x/
11275 F:      arch/powerpc/platforms/52xx/
11276
11277 LINUX FOR POWERPC EMBEDDED PPC4XX
11278 L:      [email protected]
11279 S:      Orphan
11280 F:      arch/powerpc/platforms/40x/
11281 F:      arch/powerpc/platforms/44x/
11282
11283 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11284 M:      Scott Wood <[email protected]>
11285 L:      [email protected]
11286 S:      Odd fixes
11287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11288 F:      Documentation/devicetree/bindings/powerpc/fsl/
11289 F:      arch/powerpc/platforms/83xx/
11290 F:      arch/powerpc/platforms/85xx/
11291
11292 LINUX FOR POWERPC EMBEDDED PPC8XX
11293 M:      Christophe Leroy <[email protected]>
11294 L:      [email protected]
11295 S:      Maintained
11296 F:      arch/powerpc/platforms/8xx/
11297
11298 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11299 M:      Kees Cook <[email protected]>
11300 S:      Maintained
11301 F:      drivers/misc/lkdtm/*
11302 F:      tools/testing/selftests/lkdtm/*
11303
11304 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11305 M:      Alan Stern <[email protected]>
11306 M:      Andrea Parri <[email protected]>
11307 M:      Will Deacon <[email protected]>
11308 M:      Peter Zijlstra <[email protected]>
11309 M:      Boqun Feng <[email protected]>
11310 M:      Nicholas Piggin <[email protected]>
11311 M:      David Howells <[email protected]>
11312 M:      Jade Alglave <[email protected]>
11313 M:      Luc Maranget <[email protected]>
11314 M:      "Paul E. McKenney" <[email protected]>
11315 R:      Akira Yokosawa <[email protected]>
11316 R:      Daniel Lustig <[email protected]>
11317 R:      Joel Fernandes <[email protected]>
11318 L:      [email protected]
11319 L:      [email protected]
11320 S:      Supported
11321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11322 F:      Documentation/atomic_bitops.txt
11323 F:      Documentation/atomic_t.txt
11324 F:      Documentation/core-api/refcount-vs-atomic.rst
11325 F:      Documentation/litmus-tests/
11326 F:      Documentation/memory-barriers.txt
11327 F:      tools/memory-model/
11328
11329 LIS3LV02D ACCELEROMETER DRIVER
11330 M:      Eric Piel <[email protected]>
11331 S:      Maintained
11332 F:      Documentation/misc-devices/lis3lv02d.rst
11333 F:      drivers/misc/lis3lv02d/
11334 F:      drivers/platform/x86/hp_accel.c
11335
11336 LIST KUNIT TEST
11337 M:      David Gow <[email protected]>
11338 L:      [email protected]
11339 L:      [email protected]
11340 S:      Maintained
11341 F:      lib/list-test.c
11342
11343 LITEX PLATFORM
11344 M:      Karol Gugala <[email protected]>
11345 M:      Mateusz Holenko <[email protected]>
11346 M:      Gabriel Somlo <[email protected]>
11347 M:      Joel Stanley <[email protected]>
11348 S:      Maintained
11349 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11350 F:      arch/openrisc/boot/dts/or1klitex.dts
11351 F:      include/linux/litex.h
11352 F:      drivers/tty/serial/liteuart.c
11353 F:      drivers/soc/litex/*
11354 F:      drivers/net/ethernet/litex/*
11355 F:      drivers/mmc/host/litex_mmc.c
11356 N:      litex
11357
11358 LIVE PATCHING
11359 M:      Josh Poimboeuf <[email protected]>
11360 M:      Jiri Kosina <[email protected]>
11361 M:      Miroslav Benes <[email protected]>
11362 M:      Petr Mladek <[email protected]>
11363 R:      Joe Lawrence <[email protected]>
11364 L:      [email protected]
11365 S:      Maintained
11366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11367 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11368 F:      Documentation/livepatch/
11369 F:      arch/powerpc/include/asm/livepatch.h
11370 F:      arch/s390/include/asm/livepatch.h
11371 F:      arch/x86/include/asm/livepatch.h
11372 F:      include/linux/livepatch.h
11373 F:      kernel/livepatch/
11374 F:      lib/livepatch/
11375 F:      samples/livepatch/
11376 F:      tools/testing/selftests/livepatch/
11377
11378 LLC (802.2)
11379 L:      [email protected]
11380 S:      Odd fixes
11381 F:      include/linux/llc.h
11382 F:      include/net/llc*
11383 F:      include/uapi/linux/llc.h
11384 F:      net/llc/
11385
11386 LM73 HARDWARE MONITOR DRIVER
11387 M:      Guillaume Ligneul <[email protected]>
11388 L:      [email protected]
11389 S:      Maintained
11390 F:      drivers/hwmon/lm73.c
11391
11392 LM78 HARDWARE MONITOR DRIVER
11393 M:      Jean Delvare <[email protected]>
11394 L:      [email protected]
11395 S:      Maintained
11396 F:      Documentation/hwmon/lm78.rst
11397 F:      drivers/hwmon/lm78.c
11398
11399 LM83 HARDWARE MONITOR DRIVER
11400 M:      Jean Delvare <[email protected]>
11401 L:      [email protected]
11402 S:      Maintained
11403 F:      Documentation/hwmon/lm83.rst
11404 F:      drivers/hwmon/lm83.c
11405
11406 LM90 HARDWARE MONITOR DRIVER
11407 M:      Jean Delvare <[email protected]>
11408 L:      [email protected]
11409 S:      Maintained
11410 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11411 F:      Documentation/hwmon/lm90.rst
11412 F:      drivers/hwmon/lm90.c
11413 F:      include/dt-bindings/thermal/lm90.h
11414
11415 LM95234 HARDWARE MONITOR DRIVER
11416 M:      Guenter Roeck <[email protected]>
11417 L:      [email protected]
11418 S:      Maintained
11419 F:      Documentation/hwmon/lm95234.rst
11420 F:      drivers/hwmon/lm95234.c
11421
11422 LME2510 MEDIA DRIVER
11423 M:      Malcolm Priestley <[email protected]>
11424 L:      [email protected]
11425 S:      Maintained
11426 W:      https://linuxtv.org
11427 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11428 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11429
11430 LOADPIN SECURITY MODULE
11431 M:      Kees Cook <[email protected]>
11432 S:      Supported
11433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11434 F:      Documentation/admin-guide/LSM/LoadPin.rst
11435 F:      security/loadpin/
11436
11437 LOCKING PRIMITIVES
11438 M:      Peter Zijlstra <[email protected]>
11439 M:      Ingo Molnar <[email protected]>
11440 M:      Will Deacon <[email protected]>
11441 R:      Waiman Long <[email protected]>
11442 R:      Boqun Feng <[email protected]> (LOCKDEP)
11443 L:      [email protected]
11444 S:      Maintained
11445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11446 F:      Documentation/locking/
11447 F:      arch/*/include/asm/spinlock*.h
11448 F:      include/linux/lockdep.h
11449 F:      include/linux/mutex*.h
11450 F:      include/linux/rwlock*.h
11451 F:      include/linux/rwsem*.h
11452 F:      include/linux/seqlock.h
11453 F:      include/linux/spinlock*.h
11454 F:      kernel/locking/
11455 F:      lib/locking*.[ch]
11456 X:      kernel/locking/locktorture.c
11457
11458 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11459 M:      "Richard Russon (FlatCap)" <[email protected]>
11460 L:      [email protected]
11461 S:      Maintained
11462 W:      http://www.linux-ntfs.org/content/view/19/37/
11463 F:      Documentation/admin-guide/ldm.rst
11464 F:      block/partitions/ldm.*
11465
11466 LOGITECH HID GAMING KEYBOARDS
11467 M:      Hans de Goede <[email protected]>
11468 L:      [email protected]
11469 S:      Maintained
11470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11471 F:      drivers/hid/hid-lg-g15.c
11472
11473 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11474 M:      Adrien Grassein <[email protected]>
11475 S:      Maintained
11476 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11477 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11478
11479 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11480 M:      Sathya Prakash <[email protected]>
11481 M:      Sreekanth Reddy <[email protected]>
11482 M:      Suganath Prabu Subramani <[email protected]>
11483 L:      [email protected]
11484 L:      [email protected]
11485 S:      Supported
11486 W:      http://www.avagotech.com/support/
11487 F:      drivers/message/fusion/
11488 F:      drivers/scsi/mpt3sas/
11489
11490 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11491 M:      Matthew Wilcox <[email protected]>
11492 L:      [email protected]
11493 S:      Maintained
11494 F:      drivers/scsi/sym53c8xx_2/
11495
11496 LTC1660 DAC DRIVER
11497 M:      Marcus Folkesson <[email protected]>
11498 L:      [email protected]
11499 S:      Maintained
11500 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11501 F:      drivers/iio/dac/ltc1660.c
11502
11503 LTC2688 IIO DAC DRIVER
11504 M:      Nuno Sá <[email protected]>
11505 L:      [email protected]
11506 S:      Supported
11507 W:      http://ez.analog.com/community/linux-device-drivers
11508 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
11509 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
11510 F:      drivers/iio/dac/ltc2688.c
11511
11512 LTC2947 HARDWARE MONITOR DRIVER
11513 M:      Nuno Sá <[email protected]>
11514 L:      [email protected]
11515 S:      Supported
11516 W:      https://ez.analog.com/linux-software-drivers
11517 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11518 F:      drivers/hwmon/ltc2947-core.c
11519 F:      drivers/hwmon/ltc2947-i2c.c
11520 F:      drivers/hwmon/ltc2947-spi.c
11521 F:      drivers/hwmon/ltc2947.h
11522
11523 LTC2983 IIO TEMPERATURE DRIVER
11524 M:      Nuno Sá <[email protected]>
11525 L:      [email protected]
11526 S:      Supported
11527 W:      https://ez.analog.com/linux-software-drivers
11528 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11529 F:      drivers/iio/temperature/ltc2983.c
11530
11531 LTC4261 HARDWARE MONITOR DRIVER
11532 M:      Guenter Roeck <[email protected]>
11533 L:      [email protected]
11534 S:      Maintained
11535 F:      Documentation/hwmon/ltc4261.rst
11536 F:      drivers/hwmon/ltc4261.c
11537
11538 LTC4306 I2C MULTIPLEXER DRIVER
11539 M:      Michael Hennerich <[email protected]>
11540 L:      [email protected]
11541 S:      Supported
11542 W:      https://ez.analog.com/linux-software-drivers
11543 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11544 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11545
11546 LTP (Linux Test Project)
11547 M:      Mike Frysinger <[email protected]>
11548 M:      Cyril Hrubis <[email protected]>
11549 M:      Wanlong Gao <[email protected]>
11550 M:      Jan Stancek <[email protected]>
11551 M:      Stanislav Kholmanskikh <[email protected]>
11552 M:      Alexey Kodanev <[email protected]>
11553 L:      [email protected] (subscribers-only)
11554 S:      Maintained
11555 W:      http://linux-test-project.github.io/
11556 T:      git git://github.com/linux-test-project/ltp.git
11557
11558 LYNX 28G SERDES PHY DRIVER
11559 M:      Ioana Ciornei <[email protected]>
11560 L:      [email protected]
11561 S:      Supported
11562 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
11563 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
11564
11565 LYNX PCS MODULE
11566 M:      Ioana Ciornei <[email protected]>
11567 L:      [email protected]
11568 S:      Supported
11569 F:      drivers/net/pcs/pcs-lynx.c
11570 F:      include/linux/pcs-lynx.h
11571
11572 M68K ARCHITECTURE
11573 M:      Geert Uytterhoeven <[email protected]>
11574 L:      [email protected]
11575 S:      Maintained
11576 W:      http://www.linux-m68k.org/
11577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11578 F:      arch/m68k/
11579 F:      drivers/zorro/
11580
11581 M68K ON APPLE MACINTOSH
11582 M:      Joshua Thompson <[email protected]>
11583 L:      [email protected]
11584 S:      Maintained
11585 W:      http://www.mac.linux-m68k.org/
11586 F:      arch/m68k/mac/
11587 F:      drivers/macintosh/adb-iop.c
11588 F:      drivers/macintosh/via-macii.c
11589
11590 M68K ON HP9000/300
11591 M:      Philip Blundell <[email protected]>
11592 S:      Maintained
11593 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11594 F:      arch/m68k/hp300/
11595
11596 M88DS3103 MEDIA DRIVER
11597 M:      Antti Palosaari <[email protected]>
11598 L:      [email protected]
11599 S:      Maintained
11600 W:      https://linuxtv.org
11601 W:      http://palosaari.fi/linux/
11602 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11603 T:      git git://linuxtv.org/anttip/media_tree.git
11604 F:      drivers/media/dvb-frontends/m88ds3103*
11605
11606 M88RS2000 MEDIA DRIVER
11607 M:      Malcolm Priestley <[email protected]>
11608 L:      [email protected]
11609 S:      Maintained
11610 W:      https://linuxtv.org
11611 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11612 F:      drivers/media/dvb-frontends/m88rs2000*
11613
11614 MA901 MASTERKIT USB FM RADIO DRIVER
11615 M:      Alexey Klimov <[email protected]>
11616 L:      [email protected]
11617 S:      Maintained
11618 T:      git git://linuxtv.org/media_tree.git
11619 F:      drivers/media/radio/radio-ma901.c
11620
11621 MAC80211
11622 M:      Johannes Berg <[email protected]>
11623 L:      [email protected]
11624 S:      Maintained
11625 W:      https://wireless.wiki.kernel.org/
11626 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
11627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
11628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
11629 F:      Documentation/networking/mac80211-injection.rst
11630 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11631 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11632 F:      include/net/mac80211.h
11633 F:      net/mac80211/
11634
11635 MAILBOX API
11636 M:      Jassi Brar <[email protected]>
11637 L:      [email protected]
11638 S:      Maintained
11639 F:      drivers/mailbox/
11640 F:      include/linux/mailbox_client.h
11641 F:      include/linux/mailbox_controller.h
11642 F:      include/dt-bindings/mailbox/
11643 F:      Documentation/devicetree/bindings/mailbox/
11644
11645 MAILBOX ARM MHUv2
11646 M:      Viresh Kumar <[email protected]>
11647 M:      Tushar Khandelwal <[email protected]>
11648 L:      [email protected]
11649 S:      Maintained
11650 F:      drivers/mailbox/arm_mhuv2.c
11651 F:      include/linux/mailbox/arm_mhuv2_message.h
11652 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11653
11654 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11655 M:      Jeremy Kerr <[email protected]>
11656 M:      Matt Johnston <[email protected]>
11657 L:      [email protected]
11658 S:      Maintained
11659 F:      Documentation/networking/mctp.rst
11660 F:      drivers/net/mctp/
11661 F:      include/net/mctp.h
11662 F:      include/net/mctpdevice.h
11663 F:      include/net/netns/mctp.h
11664 F:      net/mctp/
11665
11666 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11667 M:      Michael Kerrisk <[email protected]>
11668 L:      [email protected]
11669 S:      Maintained
11670 W:      http://www.kernel.org/doc/man-pages
11671
11672 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11673 M:      Rahul Bedarkar <[email protected]>
11674 L:      [email protected]
11675 S:      Maintained
11676 F:      arch/mips/boot/dts/img/pistachio*
11677
11678 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11679 M:      Andrew Lunn <[email protected]>
11680 M:      Vivien Didelot <[email protected]>
11681 L:      [email protected]
11682 S:      Maintained
11683 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11684 F:      Documentation/networking/devlink/mv88e6xxx.rst
11685 F:      drivers/net/dsa/mv88e6xxx/
11686 F:      include/linux/dsa/mv88e6xxx.h
11687 F:      include/linux/platform_data/mv88e6xxx.h
11688
11689 MARVELL ARMADA 3700 PHY DRIVERS
11690 M:      Miquel Raynal <[email protected]>
11691 S:      Maintained
11692 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11693 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11694 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11695 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11696
11697 MARVELL ARMADA 3700 SERIAL DRIVER
11698 M:      Pali Rohár <[email protected]>
11699 S:      Maintained
11700 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
11701 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
11702 F:      drivers/tty/serial/mvebu-uart.c
11703
11704 MARVELL ARMADA DRM SUPPORT
11705 M:      Russell King <[email protected]>
11706 S:      Maintained
11707 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11708 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11709 F:      Documentation/devicetree/bindings/display/armada/
11710 F:      drivers/gpu/drm/armada/
11711 F:      include/uapi/drm/armada_drm.h
11712
11713 MARVELL CRYPTO DRIVER
11714 M:      Boris Brezillon <[email protected]>
11715 M:      Arnaud Ebalard <[email protected]>
11716 M:      Srujana Challa <[email protected]>
11717 L:      [email protected]
11718 S:      Maintained
11719 F:      drivers/crypto/marvell/
11720 F:      include/linux/soc/marvell/octeontx2/
11721
11722 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11723 M:      Mirko Lindner <[email protected]>
11724 M:      Stephen Hemminger <[email protected]>
11725 L:      [email protected]
11726 S:      Maintained
11727 F:      drivers/net/ethernet/marvell/sk*
11728
11729 MARVELL LIBERTAS WIRELESS DRIVER
11730 L:      [email protected]
11731 S:      Orphan
11732 F:      drivers/net/wireless/marvell/libertas/
11733
11734 MARVELL MACCHIATOBIN SUPPORT
11735 M:      Russell King <[email protected]>
11736 L:      [email protected] (moderated for non-subscribers)
11737 S:      Maintained
11738 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11739
11740 MARVELL MV643XX ETHERNET DRIVER
11741 M:      Sebastian Hesselbarth <[email protected]>
11742 L:      [email protected]
11743 S:      Maintained
11744 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11745 F:      include/linux/mv643xx.h
11746
11747 MARVELL MV88X3310 PHY DRIVER
11748 M:      Russell King <[email protected]>
11749 M:      Marek Behún <[email protected]>
11750 L:      [email protected]
11751 S:      Maintained
11752 F:      drivers/net/phy/marvell10g.c
11753
11754 MARVELL MVEBU THERMAL DRIVER
11755 M:      Miquel Raynal <[email protected]>
11756 S:      Maintained
11757 F:      drivers/thermal/armada_thermal.c
11758
11759 MARVELL MVNETA ETHERNET DRIVER
11760 M:      Thomas Petazzoni <[email protected]>
11761 L:      [email protected]
11762 S:      Maintained
11763 F:      drivers/net/ethernet/marvell/mvneta.*
11764
11765 MARVELL MVPP2 ETHERNET DRIVER
11766 M:      Marcin Wojtas <[email protected]>
11767 M:      Russell King <[email protected]>
11768 L:      [email protected]
11769 S:      Maintained
11770 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11771 F:      drivers/net/ethernet/marvell/mvpp2/
11772
11773 MARVELL MWIFIEX WIRELESS DRIVER
11774 M:      Amitkumar Karwar <[email protected]>
11775 M:      Ganapathi Bhat <[email protected]>
11776 M:      Sharvari Harisangam <[email protected]>
11777 M:      Xinming Hu <[email protected]>
11778 L:      [email protected]
11779 S:      Maintained
11780 F:      drivers/net/wireless/marvell/mwifiex/
11781
11782 MARVELL MWL8K WIRELESS DRIVER
11783 M:      Lennert Buytenhek <[email protected]>
11784 L:      [email protected]
11785 S:      Odd Fixes
11786 F:      drivers/net/wireless/marvell/mwl8k.c
11787
11788 MARVELL NAND CONTROLLER DRIVER
11789 M:      Miquel Raynal <[email protected]>
11790 L:      [email protected]
11791 S:      Maintained
11792 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11793 F:      drivers/mtd/nand/raw/marvell_nand.c
11794
11795 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11796 M:      Sunil Goutham <[email protected]>
11797 M:      Geetha sowjanya <[email protected]>
11798 M:      Subbaraya Sundeep <[email protected]>
11799 M:      hariprasad <[email protected]>
11800 L:      [email protected]
11801 S:      Supported
11802 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11803 F:      include/linux/soc/marvell/octeontx2/
11804
11805 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11806 M:      Sunil Goutham <[email protected]>
11807 M:      Linu Cherian <[email protected]>
11808 M:      Geetha sowjanya <[email protected]>
11809 M:      Jerin Jacob <[email protected]>
11810 M:      hariprasad <[email protected]>
11811 M:      Subbaraya Sundeep <[email protected]>
11812 L:      [email protected]
11813 S:      Supported
11814 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11815 F:      drivers/net/ethernet/marvell/octeontx2/af/
11816
11817 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11818 M:      Taras Chornyi <[email protected]>
11819 S:      Supported
11820 W:      https://github.com/Marvell-switching/switchdev-prestera
11821 F:      drivers/net/ethernet/marvell/prestera/
11822
11823 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11824 M:      Nicolas Pitre <[email protected]>
11825 S:      Odd Fixes
11826 F:      drivers/mmc/host/mvsdio.*
11827
11828 MARVELL USB MDIO CONTROLLER DRIVER
11829 M:      Tobias Waldekranz <[email protected]>
11830 L:      [email protected]
11831 S:      Maintained
11832 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11833 F:      drivers/net/mdio/mdio-mvusb.c
11834
11835 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11836 M:      Hu Ziji <[email protected]>
11837 L:      [email protected]
11838 S:      Supported
11839 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11840 F:      drivers/mmc/host/sdhci-xenon*
11841
11842 MATROX FRAMEBUFFER DRIVER
11843 L:      [email protected]
11844 S:      Orphan
11845 F:      drivers/video/fbdev/matrox/matroxfb_*
11846 F:      include/uapi/linux/matroxfb.h
11847
11848 MAX15301 DRIVER
11849 M:      Daniel Nilsson <[email protected]>
11850 L:      [email protected]
11851 S:      Maintained
11852 F:      Documentation/hwmon/max15301.rst
11853 F:      drivers/hwmon/pmbus/max15301.c
11854
11855 MAX16065 HARDWARE MONITOR DRIVER
11856 M:      Guenter Roeck <[email protected]>
11857 L:      [email protected]
11858 S:      Maintained
11859 F:      Documentation/hwmon/max16065.rst
11860 F:      drivers/hwmon/max16065.c
11861
11862 MAX2175 SDR TUNER DRIVER
11863 M:      Ramesh Shanmugasundaram <[email protected]>
11864 L:      [email protected]
11865 S:      Maintained
11866 T:      git git://linuxtv.org/media_tree.git
11867 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11868 F:      Documentation/userspace-api/media/drivers/max2175.rst
11869 F:      drivers/media/i2c/max2175*
11870 F:      include/uapi/linux/max2175.h
11871
11872 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11873 L:      [email protected]
11874 S:      Orphan
11875 F:      Documentation/hwmon/max6650.rst
11876 F:      drivers/hwmon/max6650.c
11877
11878 MAX6697 HARDWARE MONITOR DRIVER
11879 M:      Guenter Roeck <[email protected]>
11880 L:      [email protected]
11881 S:      Maintained
11882 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11883 F:      Documentation/hwmon/max6697.rst
11884 F:      drivers/hwmon/max6697.c
11885 F:      include/linux/platform_data/max6697.h
11886
11887 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11888 M:      Jacopo Mondi <[email protected]>
11889 M:      Kieran Bingham <[email protected]>
11890 M:      Laurent Pinchart <[email protected]>
11891 M:      Niklas Söderlund <[email protected]>
11892 L:      [email protected]
11893 S:      Maintained
11894 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11895 F:      drivers/media/i2c/max9286.c
11896
11897 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
11898 M:      Niklas Söderlund <[email protected]>
11899 L:      [email protected]
11900 S:      Maintained
11901 F:      drivers/staging/media/max96712/max96712.c
11902
11903 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11904 M:      Peter Rosin <[email protected]>
11905 L:      [email protected] (moderated for non-subscribers)
11906 S:      Maintained
11907 F:      Documentation/devicetree/bindings/sound/max9860.txt
11908 F:      sound/soc/codecs/max9860.*
11909
11910 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11911 M:      Andreas Klinger <[email protected]>
11912 L:      [email protected]
11913 S:      Maintained
11914 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11915 F:      drivers/iio/proximity/mb1232.c
11916
11917 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
11918 R:      Iskren Chernev <[email protected]>
11919 R:      Krzysztof Kozlowski <[email protected]>
11920 R:      Marek Szyprowski <[email protected]>
11921 R:      Matheus Castello <[email protected]>
11922 L:      [email protected]
11923 S:      Maintained
11924 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
11925 F:      drivers/power/supply/max17040_battery.c
11926
11927 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
11928 R:      Hans de Goede <[email protected]>
11929 R:      Krzysztof Kozlowski <[email protected]>
11930 R:      Marek Szyprowski <[email protected]>
11931 R:      Sebastian Krzyszkowiak <[email protected]>
11932 R:      Purism Kernel Team <[email protected]>
11933 L:      [email protected]
11934 S:      Maintained
11935 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
11936 F:      drivers/power/supply/max17042_battery.c
11937
11938 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
11939 M:      Laurent Pinchart <[email protected]>
11940 L:      [email protected]
11941 S:      Maintained
11942 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
11943 F:      drivers/regulator/max20086-regulator.c
11944
11945 MAXIM MAX77650 PMIC MFD DRIVER
11946 M:      Bartosz Golaszewski <[email protected]>
11947 L:      [email protected]
11948 S:      Maintained
11949 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11950 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11951 F:      drivers/gpio/gpio-max77650.c
11952 F:      drivers/input/misc/max77650-onkey.c
11953 F:      drivers/leds/leds-max77650.c
11954 F:      drivers/mfd/max77650.c
11955 F:      drivers/power/supply/max77650-charger.c
11956 F:      drivers/regulator/max77650-regulator.c
11957 F:      include/linux/mfd/max77650.h
11958
11959 MAXIM MAX77714 PMIC MFD DRIVER
11960 M:      Luca Ceresoli <[email protected]>
11961 S:      Maintained
11962 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
11963 F:      drivers/mfd/max77714.c
11964 F:      include/linux/mfd/max77714.h
11965
11966 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11967 M:      Javier Martinez Canillas <[email protected]>
11968 L:      [email protected]
11969 S:      Supported
11970 F:      Documentation/devicetree/bindings/*/*max77802.yaml
11971 F:      drivers/regulator/max77802-regulator.c
11972 F:      include/dt-bindings/*/*max77802.h
11973
11974 MAXIM MAX77976 BATTERY CHARGER
11975 M:      Luca Ceresoli <[email protected]>
11976 S:      Supported
11977 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
11978 F:      drivers/power/supply/max77976_charger.c
11979
11980 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11981 M:      Krzysztof Kozlowski <[email protected]>
11982 M:      Bartlomiej Zolnierkiewicz <[email protected]>
11983 L:      [email protected]
11984 S:      Supported
11985 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
11986 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
11987 F:      drivers/power/supply/max14577_charger.c
11988 F:      drivers/power/supply/max77693_charger.c
11989
11990 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11991 M:      Chanwoo Choi <[email protected]>
11992 M:      Krzysztof Kozlowski <[email protected]>
11993 M:      Bartlomiej Zolnierkiewicz <[email protected]>
11994 L:      [email protected]
11995 S:      Supported
11996 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
11997 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
11998 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
11999 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12000 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12001 F:      Documentation/devicetree/bindings/mfd/max77693.txt
12002 F:      drivers/*/*max77843.c
12003 F:      drivers/*/max14577*.c
12004 F:      drivers/*/max77686*.c
12005 F:      drivers/*/max77693*.c
12006 F:      drivers/clk/clk-max77686.c
12007 F:      drivers/extcon/extcon-max14577.c
12008 F:      drivers/extcon/extcon-max77693.c
12009 F:      drivers/rtc/rtc-max77686.c
12010 F:      include/linux/mfd/max14577*.h
12011 F:      include/linux/mfd/max77686*.h
12012 F:      include/linux/mfd/max77693*.h
12013
12014 MAXIRADIO FM RADIO RECEIVER DRIVER
12015 M:      Hans Verkuil <[email protected]>
12016 L:      [email protected]
12017 S:      Maintained
12018 W:      https://linuxtv.org
12019 T:      git git://linuxtv.org/media_tree.git
12020 F:      drivers/media/radio/radio-maxiradio*
12021
12022 MAXLINEAR ETHERNET PHY DRIVER
12023 M:      Xu Liang <[email protected]>
12024 L:      [email protected]
12025 S:      Supported
12026 F:      drivers/net/phy/mxl-gpy.c
12027
12028 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12029 R:      Yasushi SHOJI <[email protected]>
12030 L:      [email protected]
12031 S:      Maintained
12032 F:      drivers/net/can/usb/mcba_usb.c
12033
12034 MCAN MMIO DEVICE DRIVER
12035 M:      Chandrasekar Ramakrishnan <[email protected]>
12036 L:      [email protected]
12037 S:      Maintained
12038 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12039 F:      drivers/net/can/m_can/m_can.c
12040 F:      drivers/net/can/m_can/m_can.h
12041 F:      drivers/net/can/m_can/m_can_platform.c
12042
12043 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12044 M:      Rishi Gupta <[email protected]>
12045 L:      [email protected]
12046 L:      [email protected]
12047 S:      Maintained
12048 F:      drivers/hid/hid-mcp2221.c
12049
12050 MCP251XFD SPI-CAN NETWORK DRIVER
12051 M:      Marc Kleine-Budde <[email protected]>
12052 M:      Manivannan Sadhasivam <[email protected]>
12053 R:      Thomas Kopp <[email protected]>
12054 L:      [email protected]
12055 S:      Maintained
12056 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12057 F:      drivers/net/can/spi/mcp251xfd/
12058
12059 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12060 M:      Peter Rosin <[email protected]>
12061 L:      [email protected]
12062 S:      Maintained
12063 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12064 F:      drivers/iio/potentiometer/mcp4018.c
12065 F:      drivers/iio/potentiometer/mcp4531.c
12066
12067 MCR20A IEEE-802.15.4 RADIO DRIVER
12068 M:      Xue Liu <[email protected]>
12069 L:      [email protected]
12070 S:      Maintained
12071 W:      https://github.com/xueliu/mcr20a-linux
12072 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12073 F:      drivers/net/ieee802154/mcr20a.c
12074 F:      drivers/net/ieee802154/mcr20a.h
12075
12076 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12077 M:      William Breathitt Gray <[email protected]>
12078 L:      [email protected]
12079 S:      Maintained
12080 F:      drivers/iio/dac/cio-dac.c
12081
12082 MEDIA CONTROLLER FRAMEWORK
12083 M:      Sakari Ailus <[email protected]>
12084 M:      Laurent Pinchart <[email protected]>
12085 L:      [email protected]
12086 S:      Supported
12087 W:      https://www.linuxtv.org
12088 T:      git git://linuxtv.org/media_tree.git
12089 F:      drivers/media/mc/
12090 F:      include/media/media-*.h
12091 F:      include/uapi/linux/media.h
12092
12093 MEDIA DRIVER FOR FREESCALE IMX PXP
12094 M:      Philipp Zabel <[email protected]>
12095 L:      [email protected]
12096 S:      Maintained
12097 T:      git git://linuxtv.org/media_tree.git
12098 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12099
12100 MEDIA DRIVERS FOR ASCOT2E
12101 M:      Sergey Kozlov <[email protected]>
12102 M:      Abylay Ospan <[email protected]>
12103 L:      [email protected]
12104 S:      Supported
12105 W:      https://linuxtv.org
12106 W:      http://netup.tv/
12107 T:      git git://linuxtv.org/media_tree.git
12108 F:      drivers/media/dvb-frontends/ascot2e*
12109
12110 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12111 M:      Jasmin Jessich <[email protected]>
12112 L:      [email protected]
12113 S:      Maintained
12114 W:      https://linuxtv.org
12115 T:      git git://linuxtv.org/media_tree.git
12116 F:      drivers/media/dvb-frontends/cxd2099*
12117
12118 MEDIA DRIVERS FOR CXD2841ER
12119 M:      Sergey Kozlov <[email protected]>
12120 M:      Abylay Ospan <[email protected]>
12121 L:      [email protected]
12122 S:      Supported
12123 W:      https://linuxtv.org
12124 W:      http://netup.tv/
12125 T:      git git://linuxtv.org/media_tree.git
12126 F:      drivers/media/dvb-frontends/cxd2841er*
12127
12128 MEDIA DRIVERS FOR CXD2880
12129 M:      Yasunari Takiguchi <[email protected]>
12130 L:      [email protected]
12131 S:      Supported
12132 W:      http://linuxtv.org/
12133 T:      git git://linuxtv.org/media_tree.git
12134 F:      drivers/media/dvb-frontends/cxd2880/*
12135 F:      drivers/media/spi/cxd2880*
12136
12137 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12138 L:      [email protected]
12139 S:      Orphan
12140 W:      https://linuxtv.org
12141 T:      git git://linuxtv.org/media_tree.git
12142 F:      drivers/media/pci/ddbridge/*
12143
12144 MEDIA DRIVERS FOR FREESCALE IMX
12145 M:      Steve Longerbeam <[email protected]>
12146 M:      Philipp Zabel <[email protected]>
12147 L:      [email protected]
12148 S:      Maintained
12149 T:      git git://linuxtv.org/media_tree.git
12150 F:      Documentation/admin-guide/media/imx.rst
12151 F:      Documentation/devicetree/bindings/media/imx.txt
12152 F:      drivers/staging/media/imx/
12153 F:      include/linux/imx-media.h
12154 F:      include/media/imx.h
12155
12156 MEDIA DRIVERS FOR FREESCALE IMX7
12157 M:      Rui Miguel Silva <[email protected]>
12158 M:      Laurent Pinchart <[email protected]>
12159 L:      [email protected]
12160 S:      Maintained
12161 T:      git git://linuxtv.org/media_tree.git
12162 F:      Documentation/admin-guide/media/imx7.rst
12163 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12164 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12165 F:      drivers/media/platform/imx/imx-mipi-csis.c
12166 F:      drivers/staging/media/imx/imx7-media-csi.c
12167
12168 MEDIA DRIVERS FOR HELENE
12169 M:      Abylay Ospan <[email protected]>
12170 L:      [email protected]
12171 S:      Supported
12172 W:      https://linuxtv.org
12173 W:      http://netup.tv/
12174 T:      git git://linuxtv.org/media_tree.git
12175 F:      drivers/media/dvb-frontends/helene*
12176
12177 MEDIA DRIVERS FOR HORUS3A
12178 M:      Sergey Kozlov <[email protected]>
12179 M:      Abylay Ospan <[email protected]>
12180 L:      [email protected]
12181 S:      Supported
12182 W:      https://linuxtv.org
12183 W:      http://netup.tv/
12184 T:      git git://linuxtv.org/media_tree.git
12185 F:      drivers/media/dvb-frontends/horus3a*
12186
12187 MEDIA DRIVERS FOR LNBH25
12188 M:      Sergey Kozlov <[email protected]>
12189 M:      Abylay Ospan <[email protected]>
12190 L:      [email protected]
12191 S:      Supported
12192 W:      https://linuxtv.org
12193 W:      http://netup.tv/
12194 T:      git git://linuxtv.org/media_tree.git
12195 F:      drivers/media/dvb-frontends/lnbh25*
12196
12197 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12198 L:      [email protected]
12199 S:      Orphan
12200 W:      https://linuxtv.org
12201 T:      git git://linuxtv.org/media_tree.git
12202 F:      drivers/media/dvb-frontends/mxl5xx*
12203
12204 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12205 M:      Sergey Kozlov <[email protected]>
12206 M:      Abylay Ospan <[email protected]>
12207 L:      [email protected]
12208 S:      Supported
12209 W:      https://linuxtv.org
12210 W:      http://netup.tv/
12211 T:      git git://linuxtv.org/media_tree.git
12212 F:      drivers/media/pci/netup_unidvb/*
12213
12214 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12215 M:      Dmitry Osipenko <[email protected]>
12216 L:      [email protected]
12217 L:      [email protected]
12218 S:      Maintained
12219 T:      git git://linuxtv.org/media_tree.git
12220 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
12221 F:      drivers/media/platform/nvidia/tegra-vde/
12222
12223 MEDIA DRIVERS FOR RENESAS - CEU
12224 M:      Jacopo Mondi <[email protected]>
12225 L:      [email protected]
12226 L:      [email protected]
12227 S:      Supported
12228 T:      git git://linuxtv.org/media_tree.git
12229 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12230 F:      drivers/media/platform/renesas/renesas-ceu.c
12231 F:      include/media/drv-intf/renesas-ceu.h
12232
12233 MEDIA DRIVERS FOR RENESAS - DRIF
12234 M:      Fabrizio Castro <[email protected]>
12235 L:      [email protected]
12236 L:      [email protected]
12237 S:      Supported
12238 T:      git git://linuxtv.org/media_tree.git
12239 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12240 F:      drivers/media/platform/renesas/rcar_drif.c
12241
12242 MEDIA DRIVERS FOR RENESAS - FCP
12243 M:      Laurent Pinchart <[email protected]>
12244 L:      [email protected]
12245 L:      [email protected]
12246 S:      Supported
12247 T:      git git://linuxtv.org/media_tree.git
12248 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12249 F:      drivers/media/platform/renesas/rcar-fcp.c
12250 F:      include/media/rcar-fcp.h
12251
12252 MEDIA DRIVERS FOR RENESAS - FDP1
12253 M:      Kieran Bingham <[email protected]>
12254 L:      [email protected]
12255 L:      [email protected]
12256 S:      Supported
12257 T:      git git://linuxtv.org/media_tree.git
12258 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12259 F:      drivers/media/platform/renesas/rcar_fdp1.c
12260
12261 MEDIA DRIVERS FOR RENESAS - VIN
12262 M:      Niklas Söderlund <[email protected]>
12263 L:      [email protected]
12264 L:      [email protected]
12265 S:      Supported
12266 T:      git git://linuxtv.org/media_tree.git
12267 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12268 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12269 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12270 F:      drivers/media/platform/renesas/rcar-isp.c
12271 F:      drivers/media/platform/renesas/rcar-vin/
12272
12273 MEDIA DRIVERS FOR RENESAS - VSP1
12274 M:      Laurent Pinchart <[email protected]>
12275 M:      Kieran Bingham <[email protected]>
12276 L:      [email protected]
12277 L:      [email protected]
12278 S:      Supported
12279 T:      git git://linuxtv.org/media_tree.git
12280 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12281 F:      drivers/media/platform/renesas/vsp1/
12282
12283 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12284 L:      [email protected]
12285 S:      Orphan
12286 W:      https://linuxtv.org
12287 T:      git git://linuxtv.org/media_tree.git
12288 F:      drivers/media/dvb-frontends/stv0910*
12289
12290 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12291 L:      [email protected]
12292 S:      Orphan
12293 W:      https://linuxtv.org
12294 T:      git git://linuxtv.org/media_tree.git
12295 F:      drivers/media/dvb-frontends/stv6111*
12296
12297 MEDIA DRIVERS FOR STM32 - DCMI
12298 M:      Hugues Fruchet <[email protected]>
12299 L:      [email protected]
12300 S:      Supported
12301 T:      git git://linuxtv.org/media_tree.git
12302 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12303 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12304
12305 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12306 M:      Mauro Carvalho Chehab <[email protected]>
12307 L:      [email protected]
12308 S:      Maintained
12309 W:      https://linuxtv.org
12310 Q:      http://patchwork.kernel.org/project/linux-media/list/
12311 T:      git git://linuxtv.org/media_tree.git
12312 F:      Documentation/admin-guide/media/
12313 F:      Documentation/devicetree/bindings/media/
12314 F:      Documentation/driver-api/media/
12315 F:      Documentation/userspace-api/media/
12316 F:      drivers/media/
12317 F:      drivers/staging/media/
12318 F:      include/linux/platform_data/media/
12319 F:      include/media/
12320 F:      include/uapi/linux/dvb/
12321 F:      include/uapi/linux/ivtv*
12322 F:      include/uapi/linux/media.h
12323 F:      include/uapi/linux/meye.h
12324 F:      include/uapi/linux/uvcvideo.h
12325 F:      include/uapi/linux/v4l2-*
12326 F:      include/uapi/linux/videodev2.h
12327
12328 MEDIATEK BLUETOOTH DRIVER
12329 M:      Sean Wang <[email protected]>
12330 L:      [email protected]
12331 L:      [email protected] (moderated for non-subscribers)
12332 S:      Maintained
12333 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12334 F:      drivers/bluetooth/btmtkuart.c
12335
12336 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12337 M:      Sean Wang <[email protected]>
12338 L:      [email protected]
12339 S:      Maintained
12340 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12341 F:      drivers/power/reset/mt6323-poweroff.c
12342
12343 MEDIATEK CIR DRIVER
12344 M:      Sean Wang <[email protected]>
12345 S:      Maintained
12346 F:      drivers/media/rc/mtk-cir.c
12347
12348 MEDIATEK DMA DRIVER
12349 M:      Sean Wang <[email protected]>
12350 L:      [email protected]
12351 L:      [email protected] (moderated for non-subscribers)
12352 L:      [email protected] (moderated for non-subscribers)
12353 S:      Maintained
12354 F:      Documentation/devicetree/bindings/dma/mtk-*
12355 F:      drivers/dma/mediatek/
12356
12357 MEDIATEK ETHERNET DRIVER
12358 M:      Felix Fietkau <[email protected]>
12359 M:      John Crispin <[email protected]>
12360 M:      Sean Wang <[email protected]>
12361 M:      Mark Lee <[email protected]>
12362 L:      [email protected]
12363 S:      Maintained
12364 F:      drivers/net/ethernet/mediatek/
12365
12366 MEDIATEK I2C CONTROLLER DRIVER
12367 M:      Qii Wang <[email protected]>
12368 L:      [email protected]
12369 S:      Maintained
12370 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
12371 F:      drivers/i2c/busses/i2c-mt65xx.c
12372
12373 MEDIATEK IOMMU DRIVER
12374 M:      Yong Wu <[email protected]>
12375 L:      [email protected]
12376 L:      [email protected] (moderated for non-subscribers)
12377 S:      Supported
12378 F:      Documentation/devicetree/bindings/iommu/mediatek*
12379 F:      drivers/iommu/mtk_iommu*
12380 F:      include/dt-bindings/memory/mt*-port.h
12381
12382 MEDIATEK JPEG DRIVER
12383 M:      Rick Chang <[email protected]>
12384 M:      Bin Liu <[email protected]>
12385 S:      Supported
12386 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
12387 F:      drivers/media/platform/mediatek/jpeg/
12388
12389 MEDIATEK MDP DRIVER
12390 M:      Minghsiu Tsai <[email protected]>
12391 M:      Houlong Wei <[email protected]>
12392 M:      Andrew-CT Chen <[email protected]>
12393 S:      Supported
12394 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12395 F:      drivers/media/platform/mediatek/mdp/
12396 F:      drivers/media/platform/mediatek/vpu/
12397
12398 MEDIATEK MEDIA DRIVER
12399 M:      Tiffany Lin <[email protected]>
12400 M:      Andrew-CT Chen <[email protected]>
12401 S:      Supported
12402 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
12403 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12404 F:      drivers/media/platform/mediatek/vcodec/
12405 F:      drivers/media/platform/mediatek/vpu/
12406
12407 MEDIATEK MMC/SD/SDIO DRIVER
12408 M:      Chaotian Jing <[email protected]>
12409 S:      Maintained
12410 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12411 F:      drivers/mmc/host/mtk-sd.c
12412
12413 MEDIATEK MT76 WIRELESS LAN DRIVER
12414 M:      Felix Fietkau <[email protected]>
12415 M:      Lorenzo Bianconi <[email protected]>
12416 M:      Ryder Lee <[email protected]>
12417 R:      Shayne Chen <[email protected]>
12418 R:      Sean Wang <[email protected]>
12419 L:      [email protected]
12420 S:      Maintained
12421 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
12422 F:      drivers/net/wireless/mediatek/mt76/
12423
12424 MEDIATEK MT7601U WIRELESS LAN DRIVER
12425 M:      Jakub Kicinski <[email protected]>
12426 L:      [email protected]
12427 S:      Maintained
12428 F:      drivers/net/wireless/mediatek/mt7601u/
12429
12430 MEDIATEK MT7621 CLOCK DRIVER
12431 M:      Sergio Paracuellos <[email protected]>
12432 S:      Maintained
12433 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12434 F:      drivers/clk/ralink/clk-mt7621.c
12435
12436 MEDIATEK MT7621/28/88 I2C DRIVER
12437 M:      Stefan Roese <[email protected]>
12438 L:      [email protected]
12439 S:      Maintained
12440 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12441 F:      drivers/i2c/busses/i2c-mt7621.c
12442
12443 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12444 M:      Sergio Paracuellos <[email protected]>
12445 S:      Maintained
12446 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12447 F:      drivers/pci/controller/pcie-mt7621.c
12448
12449 MEDIATEK MT7621 PHY PCI DRIVER
12450 M:      Sergio Paracuellos <[email protected]>
12451 S:      Maintained
12452 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12453 F:      drivers/phy/ralink/phy-mt7621-pci.c
12454
12455 MEDIATEK NAND CONTROLLER DRIVER
12456 L:      [email protected]
12457 S:      Orphan
12458 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12459 F:      drivers/mtd/nand/raw/mtk_*
12460
12461 MEDIATEK PMIC LED DRIVER
12462 M:      Sean Wang <[email protected]>
12463 S:      Maintained
12464 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12465 F:      drivers/leds/leds-mt6323.c
12466
12467 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12468 M:      Sean Wang <[email protected]>
12469 S:      Maintained
12470 F:      drivers/char/hw_random/mtk-rng.c
12471
12472 MEDIATEK SMI DRIVER
12473 M:      Yong Wu <[email protected]>
12474 L:      [email protected] (moderated for non-subscribers)
12475 S:      Supported
12476 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12477 F:      drivers/memory/mtk-smi.c
12478 F:      include/soc/mediatek/smi.h
12479
12480 MEDIATEK SWITCH DRIVER
12481 M:      Sean Wang <[email protected]>
12482 M:      Landen Chao <[email protected]>
12483 M:      DENG Qingfang <[email protected]>
12484 L:      [email protected]
12485 S:      Maintained
12486 F:      drivers/net/dsa/mt7530.*
12487 F:      net/dsa/tag_mtk.c
12488
12489 MEDIATEK USB3 DRD IP DRIVER
12490 M:      Chunfeng Yun <[email protected]>
12491 L:      [email protected]
12492 L:      [email protected] (moderated for non-subscribers)
12493 L:      [email protected] (moderated for non-subscribers)
12494 S:      Maintained
12495 F:      Documentation/devicetree/bindings/usb/mediatek,*
12496 F:      drivers/usb/host/xhci-mtk*
12497 F:      drivers/usb/mtu3/
12498
12499 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12500 M:      Peter Senna Tschudin <[email protected]>
12501 M:      Martin Donnelly <[email protected]>
12502 M:      Martyn Welch <[email protected]>
12503 S:      Maintained
12504 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12505 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12506
12507 MEGARAID SCSI/SAS DRIVERS
12508 M:      Kashyap Desai <[email protected]>
12509 M:      Sumit Saxena <[email protected]>
12510 M:      Shivasharan S <[email protected]>
12511 L:      [email protected]
12512 L:      [email protected]
12513 S:      Maintained
12514 W:      http://www.avagotech.com/support/
12515 F:      Documentation/scsi/megaraid.rst
12516 F:      drivers/scsi/megaraid.*
12517 F:      drivers/scsi/megaraid/
12518
12519 MELEXIS MLX90614 DRIVER
12520 M:      Crt Mori <[email protected]>
12521 L:      [email protected]
12522 S:      Supported
12523 W:      http://www.melexis.com
12524 F:      drivers/iio/temperature/mlx90614.c
12525
12526 MELEXIS MLX90632 DRIVER
12527 M:      Crt Mori <[email protected]>
12528 L:      [email protected]
12529 S:      Supported
12530 W:      http://www.melexis.com
12531 F:      drivers/iio/temperature/mlx90632.c
12532
12533 MELFAS MIP4 TOUCHSCREEN DRIVER
12534 M:      Sangwon Jee <[email protected]>
12535 S:      Supported
12536 W:      http://www.melfas.com
12537 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12538 F:      drivers/input/touchscreen/melfas_mip4.c
12539
12540 MELLANOX BLUEFIELD I2C DRIVER
12541 M:      Khalil Blaiech <[email protected]>
12542 L:      [email protected]
12543 S:      Supported
12544 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12545 F:      drivers/i2c/busses/i2c-mlxbf.c
12546
12547 MELLANOX ETHERNET DRIVER (mlx4_en)
12548 M:      Tariq Toukan <[email protected]>
12549 L:      [email protected]
12550 S:      Supported
12551 W:      http://www.mellanox.com
12552 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12553 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12554
12555 MELLANOX ETHERNET DRIVER (mlx5e)
12556 M:      Saeed Mahameed <[email protected]>
12557 L:      [email protected]
12558 S:      Supported
12559 W:      http://www.mellanox.com
12560 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12561 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12562
12563 MELLANOX ETHERNET INNOVA DRIVERS
12564 R:      Boris Pismenny <[email protected]>
12565 L:      [email protected]
12566 S:      Supported
12567 W:      http://www.mellanox.com
12568 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12569 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12570 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12571 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12572 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12573
12574 MELLANOX ETHERNET SWITCH DRIVERS
12575 M:      Ido Schimmel <[email protected]>
12576 M:      Petr Machata <[email protected]>
12577 L:      [email protected]
12578 S:      Supported
12579 W:      http://www.mellanox.com
12580 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12581 F:      drivers/net/ethernet/mellanox/mlxsw/
12582 F:      tools/testing/selftests/drivers/net/mlxsw/
12583
12584 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12585 M:      [email protected]
12586 L:      [email protected]
12587 S:      Supported
12588 W:      http://www.mellanox.com
12589 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12590 F:      drivers/net/ethernet/mellanox/mlxfw/
12591
12592 MELLANOX HARDWARE PLATFORM SUPPORT
12593 M:      Hans de Goede <[email protected]>
12594 M:      Mark Gross <[email protected]>
12595 M:      Vadim Pasternak <[email protected]>
12596 L:      [email protected]
12597 S:      Supported
12598 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12599 F:      drivers/platform/mellanox/
12600 F:      include/linux/platform_data/mlxreg.h
12601
12602 MELLANOX MLX4 core VPI driver
12603 M:      Tariq Toukan <[email protected]>
12604 L:      [email protected]
12605 L:      [email protected]
12606 S:      Supported
12607 W:      http://www.mellanox.com
12608 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12609 F:      drivers/net/ethernet/mellanox/mlx4/
12610 F:      include/linux/mlx4/
12611
12612 MELLANOX MLX4 IB driver
12613 M:      Yishai Hadas <[email protected]>
12614 L:      [email protected]
12615 S:      Supported
12616 W:      http://www.mellanox.com
12617 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12618 F:      drivers/infiniband/hw/mlx4/
12619 F:      include/linux/mlx4/
12620 F:      include/uapi/rdma/mlx4-abi.h
12621
12622 MELLANOX MLX5 core VPI driver
12623 M:      Saeed Mahameed <[email protected]>
12624 M:      Leon Romanovsky <[email protected]>
12625 L:      [email protected]
12626 L:      [email protected]
12627 S:      Supported
12628 W:      http://www.mellanox.com
12629 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12630 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12631 F:      drivers/net/ethernet/mellanox/mlx5/core/
12632 F:      include/linux/mlx5/
12633
12634 MELLANOX MLX5 IB driver
12635 M:      Leon Romanovsky <[email protected]>
12636 L:      [email protected]
12637 S:      Supported
12638 W:      http://www.mellanox.com
12639 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12640 F:      drivers/infiniband/hw/mlx5/
12641 F:      include/linux/mlx5/
12642 F:      include/uapi/rdma/mlx5-abi.h
12643
12644 MELLANOX MLXCPLD I2C AND MUX DRIVER
12645 M:      Vadim Pasternak <[email protected]>
12646 M:      Michael Shych <[email protected]>
12647 L:      [email protected]
12648 S:      Supported
12649 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12650 F:      drivers/i2c/busses/i2c-mlxcpld.c
12651 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12652
12653 MELLANOX MLXCPLD LED DRIVER
12654 M:      Vadim Pasternak <[email protected]>
12655 L:      [email protected]
12656 S:      Supported
12657 F:      Documentation/leds/leds-mlxcpld.rst
12658 F:      drivers/leds/leds-mlxcpld.c
12659 F:      drivers/leds/leds-mlxreg.c
12660
12661 MELLANOX PLATFORM DRIVER
12662 M:      Vadim Pasternak <[email protected]>
12663 L:      [email protected]
12664 S:      Supported
12665 F:      drivers/platform/x86/mlx-platform.c
12666
12667 MEMBARRIER SUPPORT
12668 M:      Mathieu Desnoyers <[email protected]>
12669 M:      "Paul E. McKenney" <[email protected]>
12670 L:      [email protected]
12671 S:      Supported
12672 F:      arch/powerpc/include/asm/membarrier.h
12673 F:      include/uapi/linux/membarrier.h
12674 F:      kernel/sched/membarrier.c
12675
12676 MEMBLOCK
12677 M:      Mike Rapoport <[email protected]>
12678 L:      [email protected]
12679 S:      Maintained
12680 F:      Documentation/core-api/boot-time-mm.rst
12681 F:      include/linux/memblock.h
12682 F:      mm/memblock.c
12683 F:      tools/testing/memblock/
12684
12685 MEMORY CONTROLLER DRIVERS
12686 M:      Krzysztof Kozlowski <[email protected]>
12687 L:      [email protected]
12688 S:      Maintained
12689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12690 F:      Documentation/devicetree/bindings/memory-controllers/
12691 F:      drivers/memory/
12692 F:      include/dt-bindings/memory/
12693 F:      include/memory/
12694
12695 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12696 M:      Dmitry Osipenko <[email protected]>
12697 L:      [email protected]
12698 L:      [email protected]
12699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12700 S:      Maintained
12701 F:      drivers/devfreq/tegra30-devfreq.c
12702
12703 MEMORY MANAGEMENT
12704 M:      Andrew Morton <[email protected]>
12705 L:      [email protected]
12706 S:      Maintained
12707 W:      http://www.linux-mm.org
12708 T:      quilt https://ozlabs.org/~akpm/mmotm/
12709 T:      quilt https://ozlabs.org/~akpm/mmots/
12710 T:      git git://github.com/hnaz/linux-mm.git
12711 F:      include/linux/gfp.h
12712 F:      include/linux/memory_hotplug.h
12713 F:      include/linux/mm.h
12714 F:      include/linux/mmzone.h
12715 F:      include/linux/pagewalk.h
12716 F:      include/linux/vmalloc.h
12717 F:      mm/
12718 F:      tools/testing/selftests/vm/
12719
12720 MEMORY TECHNOLOGY DEVICES (MTD)
12721 M:      Miquel Raynal <[email protected]>
12722 M:      Richard Weinberger <[email protected]>
12723 M:      Vignesh Raghavendra <[email protected]>
12724 L:      [email protected]
12725 S:      Maintained
12726 W:      http://www.linux-mtd.infradead.org/
12727 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12728 C:      irc://irc.oftc.net/mtd
12729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12731 F:      Documentation/devicetree/bindings/mtd/
12732 F:      drivers/mtd/
12733 F:      include/linux/mtd/
12734 F:      include/uapi/mtd/
12735
12736 MEN A21 WATCHDOG DRIVER
12737 M:      Johannes Thumshirn <[email protected]>
12738 L:      [email protected]
12739 S:      Maintained
12740 F:      drivers/watchdog/mena21_wdt.c
12741
12742 MEN CHAMELEON BUS (mcb)
12743 M:      Johannes Thumshirn <[email protected]>
12744 S:      Maintained
12745 F:      Documentation/driver-api/men-chameleon-bus.rst
12746 F:      drivers/mcb/
12747 F:      include/linux/mcb.h
12748
12749 MEN F21BMC (Board Management Controller)
12750 M:      Andreas Werner <[email protected]>
12751 S:      Supported
12752 F:      Documentation/hwmon/menf21bmc.rst
12753 F:      drivers/hwmon/menf21bmc_hwmon.c
12754 F:      drivers/leds/leds-menf21bmc.c
12755 F:      drivers/mfd/menf21bmc.c
12756 F:      drivers/watchdog/menf21bmc_wdt.c
12757
12758 MEN Z069 WATCHDOG DRIVER
12759 M:      Johannes Thumshirn <[email protected]>
12760 L:      [email protected]
12761 S:      Maintained
12762 F:      drivers/watchdog/menz69_wdt.c
12763
12764 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12765 M:      Neil Armstrong <[email protected]>
12766 L:      [email protected]
12767 L:      [email protected]
12768 S:      Supported
12769 W:      http://linux-meson.com/
12770 T:      git git://linuxtv.org/media_tree.git
12771 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12772 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12773 F:      drivers/media/cec/platform/meson/ao-cec.c
12774
12775 MESON GE2D DRIVER FOR AMLOGIC SOCS
12776 M:      Neil Armstrong <[email protected]>
12777 L:      [email protected]
12778 L:      [email protected]
12779 S:      Supported
12780 T:      git git://linuxtv.org/media_tree.git
12781 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12782 F:      drivers/media/platform/amlogic/meson-ge2d/
12783
12784 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12785 M:      Liang Yang <[email protected]>
12786 L:      [email protected]
12787 S:      Maintained
12788 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12789 F:      drivers/mtd/nand/raw/meson_*
12790
12791 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12792 M:      Neil Armstrong <[email protected]>
12793 L:      [email protected]
12794 L:      [email protected]
12795 S:      Supported
12796 T:      git git://linuxtv.org/media_tree.git
12797 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12798 F:      drivers/staging/media/meson/vdec/
12799
12800 METHODE UDPU SUPPORT
12801 M:      Vladimir Vid <[email protected]>
12802 S:      Maintained
12803 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12804
12805 MHI BUS
12806 M:      Manivannan Sadhasivam <[email protected]>
12807 R:      Hemant Kumar <[email protected]>
12808 L:      [email protected]
12809 L:      [email protected]
12810 S:      Maintained
12811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12812 F:      Documentation/ABI/stable/sysfs-bus-mhi
12813 F:      Documentation/mhi/
12814 F:      drivers/bus/mhi/
12815 F:      include/linux/mhi.h
12816
12817 MICROBLAZE ARCHITECTURE
12818 M:      Michal Simek <[email protected]>
12819 S:      Supported
12820 W:      http://www.monstr.eu/fdt/
12821 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12822 F:      arch/microblaze/
12823
12824 MICROCHIP AT91 DMA DRIVERS
12825 M:      Ludovic Desroches <[email protected]>
12826 M:      Tudor Ambarus <[email protected]>
12827 L:      [email protected] (moderated for non-subscribers)
12828 L:      [email protected]
12829 S:      Supported
12830 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12831 F:      drivers/dma/at_hdmac.c
12832 F:      drivers/dma/at_hdmac_regs.h
12833 F:      drivers/dma/at_xdmac.c
12834 F:      include/dt-bindings/dma/at91.h
12835
12836 MICROCHIP AT91 SERIAL DRIVER
12837 M:      Richard Genoud <[email protected]>
12838 S:      Maintained
12839 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12840 F:      drivers/tty/serial/atmel_serial.c
12841 F:      drivers/tty/serial/atmel_serial.h
12842
12843 MICROCHIP AT91 USART MFD DRIVER
12844 M:      Radu Pirea <[email protected]>
12845 L:      [email protected]
12846 S:      Supported
12847 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12848 F:      drivers/mfd/at91-usart.c
12849 F:      include/dt-bindings/mfd/at91-usart.h
12850
12851 MICROCHIP AT91 USART SPI DRIVER
12852 M:      Radu Pirea <[email protected]>
12853 L:      [email protected]
12854 S:      Supported
12855 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12856 F:      drivers/spi/spi-at91-usart.c
12857
12858 MICROCHIP AUDIO ASOC DRIVERS
12859 M:      Codrin Ciubotariu <[email protected]>
12860 L:      [email protected] (moderated for non-subscribers)
12861 S:      Supported
12862 F:      sound/soc/atmel
12863
12864 MICROCHIP CSI2DC DRIVER
12865 M:      Eugen Hristev <[email protected]>
12866 L:      [email protected]
12867 S:      Supported
12868 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
12869 F:      drivers/media/platform/atmel/microchip-csi2dc.c
12870
12871 MICROCHIP ECC DRIVER
12872 M:      Tudor Ambarus <[email protected]>
12873 L:      [email protected]
12874 S:      Maintained
12875 F:      drivers/crypto/atmel-ecc.*
12876
12877 MICROCHIP EIC DRIVER
12878 M:      Claudiu Beznea <[email protected]>
12879 L:      [email protected] (moderated for non-subscribers)
12880 S:      Supported
12881 F:      drivers/irqchip/irq-mchp-eic.c
12882
12883 MICROCHIP I2C DRIVER
12884 M:      Codrin Ciubotariu <[email protected]>
12885 L:      [email protected]
12886 S:      Supported
12887 F:      drivers/i2c/busses/i2c-at91-*.c
12888 F:      drivers/i2c/busses/i2c-at91.h
12889
12890 MICROCHIP ISC DRIVER
12891 M:      Eugen Hristev <[email protected]>
12892 L:      [email protected]
12893 S:      Supported
12894 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12895 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12896 F:      drivers/media/platform/atmel/atmel-isc*
12897 F:      drivers/media/platform/atmel/atmel-sama*-isc*
12898 F:      include/linux/atmel-isc-media.h
12899
12900 MICROCHIP ISI DRIVER
12901 M:      Eugen Hristev <[email protected]>
12902 L:      [email protected]
12903 S:      Supported
12904 F:      drivers/media/platform/atmel/atmel-isi.c
12905 F:      drivers/media/platform/atmel/atmel-isi.h
12906
12907 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12908 M:      Woojung Huh <[email protected]>
12909 M:      [email protected]
12910 L:      [email protected]
12911 S:      Maintained
12912 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12913 F:      drivers/net/dsa/microchip/*
12914 F:      include/linux/platform_data/microchip-ksz.h
12915 F:      net/dsa/tag_ksz.c
12916
12917 MICROCHIP LAN743X ETHERNET DRIVER
12918 M:      Bryan Whitehead <[email protected]>
12919 M:      [email protected]
12920 L:      [email protected]
12921 S:      Maintained
12922 F:      drivers/net/ethernet/microchip/lan743x_*
12923
12924 MICROCHIP LAN966X ETHERNET DRIVER
12925 M:      Horatiu Vultur <[email protected]>
12926 M:      [email protected]
12927 L:      [email protected]
12928 S:      Maintained
12929 F:      drivers/net/ethernet/microchip/lan966x/*
12930
12931 MICROCHIP LCDFB DRIVER
12932 M:      Nicolas Ferre <[email protected]>
12933 L:      [email protected]
12934 S:      Maintained
12935 F:      drivers/video/fbdev/atmel_lcdfb.c
12936 F:      include/video/atmel_lcdc.h
12937
12938 MICROCHIP MCP16502 PMIC DRIVER
12939 M:      Claudiu Beznea <[email protected]>
12940 L:      [email protected] (moderated for non-subscribers)
12941 S:      Supported
12942 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12943 F:      drivers/regulator/mcp16502.c
12944
12945 MICROCHIP MCP3911 ADC DRIVER
12946 M:      Marcus Folkesson <[email protected]>
12947 M:      Kent Gustavsson <[email protected]>
12948 L:      [email protected]
12949 S:      Supported
12950 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12951 F:      drivers/iio/adc/mcp3911.c
12952
12953 MICROCHIP MMC/SD/SDIO MCI DRIVER
12954 M:      Ludovic Desroches <[email protected]>
12955 S:      Maintained
12956 F:      drivers/mmc/host/atmel-mci.c
12957
12958 MICROCHIP NAND DRIVER
12959 M:      Tudor Ambarus <[email protected]>
12960 L:      [email protected]
12961 S:      Supported
12962 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12963 F:      drivers/mtd/nand/raw/atmel/*
12964
12965 MICROCHIP PWM DRIVER
12966 M:      Claudiu Beznea <[email protected]>
12967 L:      [email protected] (moderated for non-subscribers)
12968 L:      [email protected]
12969 S:      Supported
12970 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12971 F:      drivers/pwm/pwm-atmel.c
12972
12973 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12974 M:      Eugen Hristev <[email protected]>
12975 L:      [email protected]
12976 S:      Supported
12977 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12978 F:      drivers/iio/adc/at91-sama5d2_adc.c
12979 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12980
12981 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12982 M:      Claudiu Beznea <[email protected]>
12983 S:      Supported
12984 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12985
12986 MICROCHIP SPI DRIVER
12987 M:      Tudor Ambarus <[email protected]>
12988 S:      Supported
12989 F:      drivers/spi/spi-atmel.*
12990
12991 MICROCHIP SSC DRIVER
12992 M:      Codrin Ciubotariu <[email protected]>
12993 L:      [email protected] (moderated for non-subscribers)
12994 S:      Supported
12995 F:      drivers/misc/atmel-ssc.c
12996 F:      include/linux/atmel-ssc.h
12997
12998 MICROCHIP USB251XB DRIVER
12999 M:      Richard Leitner <[email protected]>
13000 L:      [email protected]
13001 S:      Maintained
13002 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
13003 F:      drivers/usb/misc/usb251xb.c
13004
13005 MICROCHIP USBA UDC DRIVER
13006 M:      Cristian Birsan <[email protected]>
13007 L:      [email protected] (moderated for non-subscribers)
13008 S:      Supported
13009 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13010
13011 MICROCHIP WILC1000 WIFI DRIVER
13012 M:      Ajay Singh <[email protected]>
13013 M:      Claudiu Beznea <[email protected]>
13014 L:      [email protected]
13015 S:      Supported
13016 F:      drivers/net/wireless/microchip/wilc1000/
13017
13018 MICROSEMI MIPS SOCS
13019 M:      Alexandre Belloni <[email protected]>
13020 M:      [email protected]
13021 L:      [email protected]
13022 S:      Supported
13023 F:      Documentation/devicetree/bindings/mips/mscc.txt
13024 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13025 F:      arch/mips/boot/dts/mscc/
13026 F:      arch/mips/configs/generic/board-ocelot.config
13027 F:      arch/mips/generic/board-ocelot.c
13028
13029 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13030 M:      Don Brace <[email protected]>
13031 L:      [email protected]
13032 L:      [email protected]
13033 S:      Supported
13034 F:      Documentation/scsi/smartpqi.rst
13035 F:      drivers/scsi/smartpqi/Kconfig
13036 F:      drivers/scsi/smartpqi/Makefile
13037 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13038 F:      include/linux/cciss*.h
13039 F:      include/uapi/linux/cciss*.h
13040
13041 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13042 M:      Maximilian Luz <[email protected]>
13043 L:      [email protected]
13044 L:      [email protected]
13045 S:      Maintained
13046 F:      drivers/power/supply/surface_battery.c
13047 F:      drivers/power/supply/surface_charger.c
13048
13049 MICROSOFT SURFACE DTX DRIVER
13050 M:      Maximilian Luz <[email protected]>
13051 L:      [email protected]
13052 S:      Maintained
13053 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13054 F:      drivers/platform/surface/surface_dtx.c
13055 F:      include/uapi/linux/surface_aggregator/dtx.h
13056
13057 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13058 M:      Maximilian Luz <[email protected]>
13059 L:      [email protected]
13060 S:      Maintained
13061 F:      drivers/platform/surface/surface_gpe.c
13062
13063 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13064 M:      Hans de Goede <[email protected]>
13065 M:      Mark Gross <[email protected]>
13066 M:      Maximilian Luz <[email protected]>
13067 L:      [email protected]
13068 S:      Maintained
13069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13070 F:      drivers/platform/surface/
13071
13072 MICROSOFT SURFACE HID TRANSPORT DRIVER
13073 M:      Maximilian Luz <[email protected]>
13074 L:      [email protected]
13075 L:      [email protected]
13076 S:      Maintained
13077 F:      drivers/hid/surface-hid/
13078
13079 MICROSOFT SURFACE HOT-PLUG DRIVER
13080 M:      Maximilian Luz <[email protected]>
13081 L:      [email protected]
13082 S:      Maintained
13083 F:      drivers/platform/surface/surface_hotplug.c
13084
13085 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13086 M:      Maximilian Luz <[email protected]>
13087 L:      [email protected]
13088 S:      Maintained
13089 F:      drivers/platform/surface/surface_platform_profile.c
13090
13091 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13092 M:      Chen Yu <[email protected]>
13093 L:      [email protected]
13094 S:      Supported
13095 F:      drivers/platform/surface/surfacepro3_button.c
13096
13097 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13098 M:      Maximilian Luz <[email protected]>
13099 L:      [email protected]
13100 S:      Maintained
13101 W:      https://github.com/linux-surface/surface-aggregator-module
13102 C:      irc://irc.libera.chat/linux-surface
13103 F:      Documentation/driver-api/surface_aggregator/
13104 F:      drivers/platform/surface/aggregator/
13105 F:      drivers/platform/surface/surface_acpi_notify.c
13106 F:      drivers/platform/surface/surface_aggregator_cdev.c
13107 F:      drivers/platform/surface/surface_aggregator_registry.c
13108 F:      include/linux/surface_acpi_notify.h
13109 F:      include/linux/surface_aggregator/
13110 F:      include/uapi/linux/surface_aggregator/
13111
13112 MICROTEK X6 SCANNER
13113 M:      Oliver Neukum <[email protected]>
13114 S:      Maintained
13115 F:      drivers/usb/image/microtek.*
13116
13117 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13118 M:      Luka Kovacic <[email protected]>
13119 M:      Luka Perkov <[email protected]>
13120 S:      Maintained
13121 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13122 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13123 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13124 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13125 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13126 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13127
13128 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13129 M:      Sakari Ailus <[email protected]>
13130 L:      [email protected]
13131 S:      Maintained
13132 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13133 F:      Documentation/driver-api/media/drivers/ccs/
13134 F:      Documentation/userspace-api/media/drivers/ccs.rst
13135 F:      drivers/media/i2c/ccs-pll.c
13136 F:      drivers/media/i2c/ccs-pll.h
13137 F:      drivers/media/i2c/ccs/
13138 F:      include/uapi/linux/ccs.h
13139 F:      include/uapi/linux/smiapp.h
13140
13141 MIPS
13142 M:      Thomas Bogendoerfer <[email protected]>
13143 L:      [email protected]
13144 S:      Maintained
13145 W:      http://www.linux-mips.org/
13146 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13148 F:      Documentation/devicetree/bindings/mips/
13149 F:      Documentation/mips/
13150 F:      arch/mips/
13151 F:      drivers/platform/mips/
13152
13153 MIPS BOSTON DEVELOPMENT BOARD
13154 M:      Paul Burton <[email protected]>
13155 L:      [email protected]
13156 S:      Maintained
13157 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13158 F:      arch/mips/boot/dts/img/boston.dts
13159 F:      arch/mips/configs/generic/board-boston.config
13160 F:      drivers/clk/imgtec/clk-boston.c
13161 F:      include/dt-bindings/clock/boston-clock.h
13162
13163 MIPS CORE DRIVERS
13164 M:      Thomas Bogendoerfer <[email protected]>
13165 M:      Serge Semin <[email protected]>
13166 L:      [email protected]
13167 S:      Supported
13168 F:      drivers/bus/mips_cdmm.c
13169 F:      drivers/clocksource/mips-gic-timer.c
13170 F:      drivers/cpuidle/cpuidle-cps.c
13171 F:      drivers/irqchip/irq-mips-cpu.c
13172 F:      drivers/irqchip/irq-mips-gic.c
13173
13174 MIPS GENERIC PLATFORM
13175 M:      Paul Burton <[email protected]>
13176 L:      [email protected]
13177 S:      Supported
13178 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13179 F:      arch/mips/generic/
13180 F:      arch/mips/tools/generic-board-config.sh
13181
13182 MIPS RINT INSTRUCTION EMULATION
13183 M:      Aleksandar Markovic <[email protected]>
13184 L:      [email protected]
13185 S:      Supported
13186 F:      arch/mips/math-emu/dp_rint.c
13187 F:      arch/mips/math-emu/sp_rint.c
13188
13189 MIPS/LOONGSON1 ARCHITECTURE
13190 M:      Keguang Zhang <[email protected]>
13191 L:      [email protected]
13192 S:      Maintained
13193 F:      arch/mips/include/asm/mach-loongson32/
13194 F:      arch/mips/loongson32/
13195 F:      drivers/*/*/*loongson1*
13196 F:      drivers/*/*loongson1*
13197
13198 MIPS/LOONGSON2EF ARCHITECTURE
13199 M:      Jiaxun Yang <[email protected]>
13200 L:      [email protected]
13201 S:      Maintained
13202 F:      arch/mips/include/asm/mach-loongson2ef/
13203 F:      arch/mips/loongson2ef/
13204 F:      drivers/cpufreq/loongson2_cpufreq.c
13205
13206 MIPS/LOONGSON64 ARCHITECTURE
13207 M:      Huacai Chen <[email protected]>
13208 M:      Jiaxun Yang <[email protected]>
13209 L:      [email protected]
13210 S:      Maintained
13211 F:      arch/mips/include/asm/mach-loongson64/
13212 F:      arch/mips/loongson64/
13213 F:      drivers/irqchip/irq-loongson*
13214 F:      drivers/platform/mips/cpu_hwmon.c
13215
13216 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13217 M:      Hans Verkuil <[email protected]>
13218 L:      [email protected]
13219 S:      Odd Fixes
13220 W:      https://linuxtv.org
13221 T:      git git://linuxtv.org/media_tree.git
13222 F:      drivers/media/radio/radio-miropcm20*
13223
13224 MMP SUPPORT
13225 R:      Lubomir Rintel <[email protected]>
13226 L:      [email protected] (moderated for non-subscribers)
13227 S:      Odd Fixes
13228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13229 F:      arch/arm/boot/dts/mmp*
13230 F:      arch/arm/mach-mmp/
13231 F:      include/linux/soc/mmp/
13232
13233 MMP USB PHY DRIVERS
13234 R:      Lubomir Rintel <[email protected]>
13235 L:      [email protected] (moderated for non-subscribers)
13236 S:      Maintained
13237 F:      drivers/phy/marvell/phy-mmp3-usb.c
13238 F:      drivers/phy/marvell/phy-pxa-usb.c
13239
13240 MMU GATHER AND TLB INVALIDATION
13241 M:      Will Deacon <[email protected]>
13242 M:      "Aneesh Kumar K.V" <[email protected]>
13243 M:      Andrew Morton <[email protected]>
13244 M:      Nick Piggin <[email protected]>
13245 M:      Peter Zijlstra <[email protected]>
13246 L:      [email protected]
13247 L:      [email protected]
13248 S:      Maintained
13249 F:      arch/*/include/asm/tlb.h
13250 F:      include/asm-generic/tlb.h
13251 F:      mm/mmu_gather.c
13252
13253 MN88472 MEDIA DRIVER
13254 M:      Antti Palosaari <[email protected]>
13255 L:      [email protected]
13256 S:      Maintained
13257 W:      https://linuxtv.org
13258 W:      http://palosaari.fi/linux/
13259 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13260 F:      drivers/media/dvb-frontends/mn88472*
13261
13262 MN88473 MEDIA DRIVER
13263 M:      Antti Palosaari <[email protected]>
13264 L:      [email protected]
13265 S:      Maintained
13266 W:      https://linuxtv.org
13267 W:      http://palosaari.fi/linux/
13268 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13269 F:      drivers/media/dvb-frontends/mn88473*
13270
13271 MODULE SUPPORT
13272 M:      Luis Chamberlain <[email protected]>
13273 L:      [email protected]
13274 L:      [email protected]
13275 S:      Maintained
13276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13277 F:      include/linux/module.h
13278 F:      kernel/module.c
13279
13280 MONOLITHIC POWER SYSTEM PMIC DRIVER
13281 M:      Saravanan Sekar <[email protected]>
13282 S:      Maintained
13283 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13284 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13285 F:      drivers/iio/adc/mp2629_adc.c
13286 F:      drivers/mfd/mp2629.c
13287 F:      drivers/power/supply/mp2629_charger.c
13288 F:      drivers/regulator/mp5416.c
13289 F:      drivers/regulator/mpq7920.c
13290 F:      drivers/regulator/mpq7920.h
13291 F:      include/linux/mfd/mp2629.h
13292
13293 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13294 S:      Orphan
13295 W:      http://popies.net/meye/
13296 F:      Documentation/userspace-api/media/drivers/meye*
13297 F:      drivers/media/pci/meye/
13298 F:      include/uapi/linux/meye.h
13299
13300 MOTORCOMM PHY DRIVER
13301 M:      Peter Geis <[email protected]>
13302 L:      [email protected]
13303 S:      Maintained
13304 F:      drivers/net/phy/motorcomm.c
13305
13306 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
13307 M:      Jiri Slaby <[email protected]>
13308 S:      Maintained
13309 F:      Documentation/driver-api/serial/moxa-smartio.rst
13310 F:      drivers/tty/mxser.*
13311
13312 MR800 AVERMEDIA USB FM RADIO DRIVER
13313 M:      Alexey Klimov <[email protected]>
13314 L:      [email protected]
13315 S:      Maintained
13316 T:      git git://linuxtv.org/media_tree.git
13317 F:      drivers/media/radio/radio-mr800.c
13318
13319 MRF24J40 IEEE 802.15.4 RADIO DRIVER
13320 M:      Alan Ott <[email protected]>
13321 L:      [email protected]
13322 S:      Maintained
13323 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
13324 F:      drivers/net/ieee802154/mrf24j40.c
13325
13326 MSI LAPTOP SUPPORT
13327 M:      "Lee, Chun-Yi" <[email protected]>
13328 L:      [email protected]
13329 S:      Maintained
13330 F:      drivers/platform/x86/msi-laptop.c
13331
13332 MSI WMI SUPPORT
13333 L:      [email protected]
13334 S:      Orphan
13335 F:      drivers/platform/x86/msi-wmi.c
13336
13337 MSI001 MEDIA DRIVER
13338 M:      Antti Palosaari <[email protected]>
13339 L:      [email protected]
13340 S:      Maintained
13341 W:      https://linuxtv.org
13342 W:      http://palosaari.fi/linux/
13343 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13344 T:      git git://linuxtv.org/anttip/media_tree.git
13345 F:      drivers/media/tuners/msi001*
13346
13347 MSI2500 MEDIA DRIVER
13348 M:      Antti Palosaari <[email protected]>
13349 L:      [email protected]
13350 S:      Maintained
13351 W:      https://linuxtv.org
13352 W:      http://palosaari.fi/linux/
13353 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13354 T:      git git://linuxtv.org/anttip/media_tree.git
13355 F:      drivers/media/usb/msi2500/
13356
13357 MSTAR INTERRUPT CONTROLLER DRIVER
13358 M:      Mark-PK Tsai <[email protected]>
13359 M:      Daniel Palmer <[email protected]>
13360 S:      Maintained
13361 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13362 F:      drivers/irqchip/irq-mst-intc.c
13363
13364 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13365 M:      Robert Jarzmik <[email protected]>
13366 L:      [email protected]
13367 S:      Maintained
13368 F:      drivers/mtd/devices/docg3*
13369
13370 MT9M032 APTINA SENSOR DRIVER
13371 M:      Laurent Pinchart <[email protected]>
13372 L:      [email protected]
13373 S:      Maintained
13374 T:      git git://linuxtv.org/media_tree.git
13375 F:      drivers/media/i2c/mt9m032.c
13376 F:      include/media/i2c/mt9m032.h
13377
13378 MT9P031 APTINA CAMERA SENSOR
13379 M:      Laurent Pinchart <[email protected]>
13380 L:      [email protected]
13381 S:      Maintained
13382 T:      git git://linuxtv.org/media_tree.git
13383 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13384 F:      drivers/media/i2c/mt9p031.c
13385 F:      include/media/i2c/mt9p031.h
13386
13387 MT9T001 APTINA CAMERA SENSOR
13388 M:      Laurent Pinchart <[email protected]>
13389 L:      [email protected]
13390 S:      Maintained
13391 T:      git git://linuxtv.org/media_tree.git
13392 F:      drivers/media/i2c/mt9t001.c
13393 F:      include/media/i2c/mt9t001.h
13394
13395 MT9T112 APTINA CAMERA SENSOR
13396 M:      Jacopo Mondi <[email protected]>
13397 L:      [email protected]
13398 S:      Odd Fixes
13399 T:      git git://linuxtv.org/media_tree.git
13400 F:      drivers/media/i2c/mt9t112.c
13401 F:      include/media/i2c/mt9t112.h
13402
13403 MT9V032 APTINA CAMERA SENSOR
13404 M:      Laurent Pinchart <[email protected]>
13405 L:      [email protected]
13406 S:      Maintained
13407 T:      git git://linuxtv.org/media_tree.git
13408 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13409 F:      drivers/media/i2c/mt9v032.c
13410 F:      include/media/i2c/mt9v032.h
13411
13412 MT9V111 APTINA CAMERA SENSOR
13413 M:      Jacopo Mondi <[email protected]>
13414 L:      [email protected]
13415 S:      Maintained
13416 T:      git git://linuxtv.org/media_tree.git
13417 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13418 F:      drivers/media/i2c/mt9v111.c
13419
13420 MULTIFUNCTION DEVICES (MFD)
13421 M:      Lee Jones <[email protected]>
13422 S:      Supported
13423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13424 F:      Documentation/devicetree/bindings/mfd/
13425 F:      drivers/mfd/
13426 F:      include/dt-bindings/mfd/
13427 F:      include/linux/mfd/
13428
13429 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13430 S:      Orphan
13431 F:      drivers/mmc/host/mmc_spi.c
13432 F:      include/linux/spi/mmc_spi.h
13433
13434 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13435 M:      Ulf Hansson <[email protected]>
13436 L:      [email protected]
13437 S:      Maintained
13438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13439 F:      Documentation/devicetree/bindings/mmc/
13440 F:      drivers/mmc/
13441 F:      include/linux/mmc/
13442 F:      include/uapi/linux/mmc/
13443
13444 MULTIPLEXER SUBSYSTEM
13445 M:      Peter Rosin <[email protected]>
13446 S:      Maintained
13447 F:      Documentation/ABI/testing/sysfs-class-mux*
13448 F:      Documentation/devicetree/bindings/mux/
13449 F:      drivers/mux/
13450 F:      include/dt-bindings/mux/
13451 F:      include/linux/mux/
13452
13453 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13454 M:      Bin Liu <[email protected]>
13455 L:      [email protected]
13456 S:      Maintained
13457 F:      drivers/usb/musb/
13458
13459 MXL301RF MEDIA DRIVER
13460 M:      Akihiro Tsukada <[email protected]>
13461 L:      [email protected]
13462 S:      Odd Fixes
13463 F:      drivers/media/tuners/mxl301rf*
13464
13465 MXL5007T MEDIA DRIVER
13466 M:      Michael Krufky <[email protected]>
13467 L:      [email protected]
13468 S:      Maintained
13469 W:      https://linuxtv.org
13470 W:      http://github.com/mkrufky
13471 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13472 T:      git git://linuxtv.org/mkrufky/tuners.git
13473 F:      drivers/media/tuners/mxl5007t.*
13474
13475 MXSFB DRM DRIVER
13476 M:      Marek Vasut <[email protected]>
13477 M:      Stefan Agner <[email protected]>
13478 L:      [email protected]
13479 S:      Supported
13480 T:      git git://anongit.freedesktop.org/drm/drm-misc
13481 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13482 F:      drivers/gpu/drm/mxsfb/
13483
13484 MYLEX DAC960 PCI RAID Controller
13485 M:      Hannes Reinecke <[email protected]>
13486 L:      [email protected]
13487 S:      Supported
13488 F:      drivers/scsi/myrb.*
13489 F:      drivers/scsi/myrs.*
13490
13491 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13492 M:      Chris Lee <[email protected]>
13493 L:      [email protected]
13494 S:      Supported
13495 W:      https://www.cspi.com/ethernet-products/support/downloads/
13496 F:      drivers/net/ethernet/myricom/myri10ge/
13497
13498 NAND FLASH SUBSYSTEM
13499 M:      Miquel Raynal <[email protected]>
13500 R:      Richard Weinberger <[email protected]>
13501 L:      [email protected]
13502 S:      Maintained
13503 W:      http://www.linux-mtd.infradead.org/
13504 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13505 C:      irc://irc.oftc.net/mtd
13506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13507 F:      drivers/mtd/nand/
13508 F:      include/linux/mtd/*nand*.h
13509
13510 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13511 M:      Daniel Mack <[email protected]>
13512 L:      [email protected] (moderated for non-subscribers)
13513 S:      Maintained
13514 W:      http://www.native-instruments.com
13515 F:      sound/usb/caiaq/
13516
13517 NATSEMI ETHERNET DRIVER (DP8381x)
13518 S:      Orphan
13519 F:      drivers/net/ethernet/natsemi/natsemi.c
13520
13521 NCR 5380 SCSI DRIVERS
13522 M:      Finn Thain <[email protected]>
13523 M:      Michael Schmitz <[email protected]>
13524 L:      [email protected]
13525 S:      Maintained
13526 F:      Documentation/scsi/g_NCR5380.rst
13527 F:      drivers/scsi/NCR5380.*
13528 F:      drivers/scsi/arm/cumana_1.c
13529 F:      drivers/scsi/arm/oak.c
13530 F:      drivers/scsi/atari_scsi.*
13531 F:      drivers/scsi/dmx3191d.c
13532 F:      drivers/scsi/g_NCR5380.*
13533 F:      drivers/scsi/mac_scsi.*
13534 F:      drivers/scsi/sun3_scsi.*
13535 F:      drivers/scsi/sun3_scsi_vme.c
13536
13537 NCSI LIBRARY
13538 M:      Samuel Mendoza-Jonas <[email protected]>
13539 S:      Maintained
13540 F:      net/ncsi/
13541
13542 NCT6775 HARDWARE MONITOR DRIVER
13543 M:      Guenter Roeck <[email protected]>
13544 L:      [email protected]
13545 S:      Maintained
13546 F:      Documentation/hwmon/nct6775.rst
13547 F:      drivers/hwmon/nct6775.c
13548
13549 NETDEVSIM
13550 M:      Jakub Kicinski <[email protected]>
13551 S:      Maintained
13552 F:      drivers/net/netdevsim/*
13553
13554 NETEM NETWORK EMULATOR
13555 M:      Stephen Hemminger <[email protected]>
13556 L:      [email protected]
13557 S:      Maintained
13558 F:      net/sched/sch_netem.c
13559
13560 NETERION 10GbE DRIVERS (s2io/vxge)
13561 M:      Jon Mason <[email protected]>
13562 L:      [email protected]
13563 S:      Supported
13564 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13565 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13566 F:      drivers/net/ethernet/neterion/
13567
13568 NETFILTER
13569 M:      Pablo Neira Ayuso <[email protected]>
13570 M:      Jozsef Kadlecsik <[email protected]>
13571 M:      Florian Westphal <[email protected]>
13572 L:      [email protected]
13573 L:      [email protected]
13574 S:      Maintained
13575 W:      http://www.netfilter.org/
13576 W:      http://www.iptables.org/
13577 W:      http://www.nftables.org/
13578 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13579 C:      irc://irc.libera.chat/netfilter
13580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
13581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
13582 F:      include/linux/netfilter*
13583 F:      include/linux/netfilter/
13584 F:      include/net/netfilter/
13585 F:      include/uapi/linux/netfilter*
13586 F:      include/uapi/linux/netfilter/
13587 F:      net/*/netfilter.c
13588 F:      net/*/netfilter/
13589 F:      net/bridge/br_netfilter*.c
13590 F:      net/netfilter/
13591
13592 NETROM NETWORK LAYER
13593 M:      Ralf Baechle <[email protected]>
13594 L:      [email protected]
13595 S:      Maintained
13596 W:      http://www.linux-ax25.org/
13597 F:      include/net/netrom.h
13598 F:      include/uapi/linux/netrom.h
13599 F:      net/netrom/
13600
13601 NETRONIX EMBEDDED CONTROLLER
13602 M:      Jonathan Neuschäfer <[email protected]>
13603 S:      Maintained
13604 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13605 F:      drivers/mfd/ntxec.c
13606 F:      drivers/pwm/pwm-ntxec.c
13607 F:      drivers/rtc/rtc-ntxec.c
13608 F:      include/linux/mfd/ntxec.h
13609
13610 NETRONOME ETHERNET DRIVERS
13611 M:      Simon Horman <[email protected]>
13612 R:      Jakub Kicinski <[email protected]>
13613 L:      [email protected]
13614 S:      Maintained
13615 F:      drivers/net/ethernet/netronome/
13616
13617 NETWORK BLOCK DEVICE (NBD)
13618 M:      Josef Bacik <[email protected]>
13619 L:      [email protected]
13620 L:      [email protected]
13621 S:      Maintained
13622 F:      Documentation/admin-guide/blockdev/nbd.rst
13623 F:      drivers/block/nbd.c
13624 F:      include/trace/events/nbd.h
13625 F:      include/uapi/linux/nbd.h
13626
13627 NETWORK DROP MONITOR
13628 M:      Neil Horman <[email protected]>
13629 L:      [email protected]
13630 S:      Maintained
13631 W:      https://fedorahosted.org/dropwatch/
13632 F:      include/uapi/linux/net_dropmon.h
13633 F:      net/core/drop_monitor.c
13634
13635 NETWORKING DRIVERS
13636 M:      "David S. Miller" <[email protected]>
13637 M:      Jakub Kicinski <[email protected]>
13638 M:      Paolo Abeni <[email protected]>
13639 L:      [email protected]
13640 S:      Maintained
13641 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13644 F:      Documentation/devicetree/bindings/net/
13645 F:      drivers/connector/
13646 F:      drivers/net/
13647 F:      include/linux/etherdevice.h
13648 F:      include/linux/fcdevice.h
13649 F:      include/linux/fddidevice.h
13650 F:      include/linux/hippidevice.h
13651 F:      include/linux/if_*
13652 F:      include/linux/inetdevice.h
13653 F:      include/linux/netdevice.h
13654 F:      include/uapi/linux/if_*
13655 F:      include/uapi/linux/netdevice.h
13656
13657 NETWORKING DRIVERS (WIRELESS)
13658 M:      Kalle Valo <[email protected]>
13659 L:      [email protected]
13660 S:      Maintained
13661 W:      https://wireless.wiki.kernel.org/
13662 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
13663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
13664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
13665 F:      Documentation/devicetree/bindings/net/wireless/
13666 F:      drivers/net/wireless/
13667
13668 NETWORKING [DSA]
13669 M:      Andrew Lunn <[email protected]>
13670 M:      Vivien Didelot <[email protected]>
13671 M:      Florian Fainelli <[email protected]>
13672 M:      Vladimir Oltean <[email protected]>
13673 S:      Maintained
13674 F:      Documentation/devicetree/bindings/net/dsa/
13675 F:      drivers/net/dsa/
13676 F:      include/linux/dsa/
13677 F:      include/linux/platform_data/dsa.h
13678 F:      include/net/dsa.h
13679 F:      net/dsa/
13680 F:      tools/testing/selftests/drivers/net/dsa/
13681
13682 NETWORKING [GENERAL]
13683 M:      "David S. Miller" <[email protected]>
13684 M:      Jakub Kicinski <[email protected]>
13685 M:      Paolo Abeni <[email protected]>
13686 L:      [email protected]
13687 S:      Maintained
13688 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13689 B:      mailto:[email protected]
13690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13692 F:      Documentation/networking/
13693 F:      Documentation/process/maintainer-netdev.rst
13694 F:      include/linux/in.h
13695 F:      include/linux/net.h
13696 F:      include/linux/netdevice.h
13697 F:      include/net/
13698 F:      include/uapi/linux/in.h
13699 F:      include/uapi/linux/net.h
13700 F:      include/uapi/linux/net_namespace.h
13701 F:      include/uapi/linux/netdevice.h
13702 F:      lib/net_utils.c
13703 F:      lib/random32.c
13704 F:      net/
13705 F:      tools/testing/selftests/net/
13706
13707 NETWORKING [IPSEC]
13708 M:      Steffen Klassert <[email protected]>
13709 M:      Herbert Xu <[email protected]>
13710 M:      "David S. Miller" <[email protected]>
13711 L:      [email protected]
13712 S:      Maintained
13713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13715 F:      include/net/xfrm.h
13716 F:      include/uapi/linux/xfrm.h
13717 F:      net/ipv4/ah4.c
13718 F:      net/ipv4/esp4*
13719 F:      net/ipv4/ip_vti.c
13720 F:      net/ipv4/ipcomp.c
13721 F:      net/ipv4/xfrm*
13722 F:      net/ipv6/ah6.c
13723 F:      net/ipv6/esp6*
13724 F:      net/ipv6/ip6_vti.c
13725 F:      net/ipv6/ipcomp6.c
13726 F:      net/ipv6/xfrm*
13727 F:      net/key/
13728 F:      net/xfrm/
13729 F:      tools/testing/selftests/net/ipsec.c
13730
13731 NETWORKING [IPv4/IPv6]
13732 M:      "David S. Miller" <[email protected]>
13733 M:      Hideaki YOSHIFUJI <[email protected]>
13734 M:      David Ahern <[email protected]>
13735 L:      [email protected]
13736 S:      Maintained
13737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13738 F:      arch/x86/net/*
13739 F:      include/linux/ip.h
13740 F:      include/linux/ipv6*
13741 F:      include/net/fib*
13742 F:      include/net/ip*
13743 F:      include/net/route.h
13744 F:      net/ipv4/
13745 F:      net/ipv6/
13746
13747 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13748 M:      Paul Moore <[email protected]>
13749 L:      [email protected]
13750 L:      [email protected]
13751 S:      Maintained
13752 W:      https://github.com/netlabel
13753 F:      Documentation/netlabel/
13754 F:      include/net/calipso.h
13755 F:      include/net/cipso_ipv4.h
13756 F:      include/net/netlabel.h
13757 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13758 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13759 F:      net/ipv4/cipso_ipv4.c
13760 F:      net/ipv6/calipso.c
13761 F:      net/netfilter/xt_CONNSECMARK.c
13762 F:      net/netfilter/xt_SECMARK.c
13763 F:      net/netlabel/
13764
13765 NETWORKING [MPTCP]
13766 M:      Mat Martineau <[email protected]>
13767 M:      Matthieu Baerts <[email protected]>
13768 L:      [email protected]
13769 L:      [email protected]
13770 S:      Maintained
13771 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13772 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13773 F:      Documentation/networking/mptcp-sysctl.rst
13774 F:      include/net/mptcp.h
13775 F:      include/trace/events/mptcp.h
13776 F:      include/uapi/linux/mptcp.h
13777 F:      net/mptcp/
13778 F:      tools/testing/selftests/net/mptcp/
13779
13780 NETWORKING [TCP]
13781 M:      Eric Dumazet <[email protected]>
13782 L:      [email protected]
13783 S:      Maintained
13784 F:      include/linux/tcp.h
13785 F:      include/net/tcp.h
13786 F:      include/trace/events/tcp.h
13787 F:      include/uapi/linux/tcp.h
13788 F:      net/ipv4/syncookies.c
13789 F:      net/ipv4/tcp*.c
13790 F:      net/ipv6/syncookies.c
13791 F:      net/ipv6/tcp*.c
13792
13793 NETWORKING [TLS]
13794 M:      Boris Pismenny <[email protected]>
13795 M:      John Fastabend <[email protected]>
13796 M:      Daniel Borkmann <[email protected]>
13797 M:      Jakub Kicinski <[email protected]>
13798 L:      [email protected]
13799 S:      Maintained
13800 F:      include/net/tls.h
13801 F:      include/uapi/linux/tls.h
13802 F:      net/tls/*
13803
13804 NETXEN (1/10) GbE SUPPORT
13805 M:      Manish Chopra <[email protected]>
13806 M:      Rahul Verma <[email protected]>
13807 M:      [email protected]
13808 L:      [email protected]
13809 S:      Supported
13810 F:      drivers/net/ethernet/qlogic/netxen/
13811
13812 NET_FAILOVER MODULE
13813 M:      Sridhar Samudrala <[email protected]>
13814 L:      [email protected]
13815 S:      Supported
13816 F:      Documentation/networking/net_failover.rst
13817 F:      drivers/net/net_failover.c
13818 F:      include/net/net_failover.h
13819
13820 NEXTHOP
13821 M:      David Ahern <[email protected]>
13822 L:      [email protected]
13823 S:      Maintained
13824 F:      include/net/netns/nexthop.h
13825 F:      include/net/nexthop.h
13826 F:      include/uapi/linux/nexthop.h
13827 F:      net/ipv4/nexthop.c
13828
13829 NFC SUBSYSTEM
13830 M:      Krzysztof Kozlowski <[email protected]>
13831 L:      [email protected] (subscribers-only)
13832 L:      [email protected]
13833 S:      Maintained
13834 F:      Documentation/devicetree/bindings/net/nfc/
13835 F:      drivers/nfc/
13836 F:      include/linux/platform_data/nfcmrvl.h
13837 F:      include/net/nfc/
13838 F:      include/uapi/linux/nfc.h
13839 F:      net/nfc/
13840
13841 NFC VIRTUAL NCI DEVICE DRIVER
13842 M:      Bongsu Jeon <[email protected]>
13843 L:      [email protected]
13844 L:      [email protected] (subscribers-only)
13845 S:      Supported
13846 F:      drivers/nfc/virtual_ncidev.c
13847 F:      tools/testing/selftests/nci/
13848
13849 NFS, SUNRPC, AND LOCKD CLIENTS
13850 M:      Trond Myklebust <[email protected]>
13851 M:      Anna Schumaker <[email protected]>
13852 L:      [email protected]
13853 S:      Maintained
13854 W:      http://client.linux-nfs.org
13855 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13856 F:      fs/lockd/
13857 F:      fs/nfs/
13858 F:      fs/nfs_common/
13859 F:      include/linux/lockd/
13860 F:      include/linux/nfs*
13861 F:      include/linux/sunrpc/
13862 F:      include/uapi/linux/nfs*
13863 F:      include/uapi/linux/sunrpc/
13864 F:      net/sunrpc/
13865 F:      Documentation/filesystems/nfs/
13866
13867 NILFS2 FILESYSTEM
13868 M:      Ryusuke Konishi <[email protected]>
13869 L:      [email protected]
13870 S:      Supported
13871 W:      https://nilfs.sourceforge.io/
13872 W:      https://nilfs.osdn.jp/
13873 T:      git git://github.com/konis/nilfs2.git
13874 F:      Documentation/filesystems/nilfs2.rst
13875 F:      fs/nilfs2/
13876 F:      include/trace/events/nilfs2.h
13877 F:      include/uapi/linux/nilfs2_api.h
13878 F:      include/uapi/linux/nilfs2_ondisk.h
13879
13880 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13881 M:      YOKOTA Hiroshi <[email protected]>
13882 S:      Maintained
13883 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13884 F:      Documentation/scsi/NinjaSCSI.rst
13885 F:      drivers/scsi/pcmcia/nsp_*
13886
13887 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13888 M:      GOTO Masanori <[email protected]>
13889 M:      YOKOTA Hiroshi <[email protected]>
13890 S:      Maintained
13891 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13892 F:      Documentation/scsi/NinjaSCSI.rst
13893 F:      drivers/scsi/nsp32*
13894
13895 NINTENDO HID DRIVER
13896 M:      Daniel J. Ogorchock <[email protected]>
13897 L:      [email protected]
13898 S:      Maintained
13899 F:      drivers/hid/hid-nintendo*
13900
13901 NIOS2 ARCHITECTURE
13902 M:      Dinh Nguyen <[email protected]>
13903 S:      Maintained
13904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13905 F:      arch/nios2/
13906
13907 NITRO ENCLAVES (NE)
13908 M:      Andra Paraschiv <[email protected]>
13909 M:      Alexandru Vasile <[email protected]>
13910 M:      Alexandru Ciobotaru <[email protected]>
13911 L:      [email protected]
13912 S:      Supported
13913 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13914 F:      Documentation/virt/ne_overview.rst
13915 F:      drivers/virt/nitro_enclaves/
13916 F:      include/linux/nitro_enclaves.h
13917 F:      include/uapi/linux/nitro_enclaves.h
13918 F:      samples/nitro_enclaves/
13919
13920 NOHZ, DYNTICKS SUPPORT
13921 M:      Frederic Weisbecker <[email protected]>
13922 M:      Thomas Gleixner <[email protected]>
13923 M:      Ingo Molnar <[email protected]>
13924 L:      [email protected]
13925 S:      Maintained
13926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13927 F:      include/linux/sched/nohz.h
13928 F:      include/linux/tick.h
13929 F:      kernel/time/tick*.*
13930
13931 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13932 M:      Pavel Machek <[email protected]>
13933 M:      Sakari Ailus <[email protected]>
13934 L:      [email protected]
13935 S:      Maintained
13936 F:      drivers/media/i2c/ad5820.c
13937 F:      drivers/media/i2c/et8ek8
13938
13939 NOKIA N900 POWER SUPPLY DRIVERS
13940 R:      Pali Rohár <[email protected]>
13941 F:      drivers/power/supply/bq2415x_charger.c
13942 F:      drivers/power/supply/bq27xxx_battery.c
13943 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13944 F:      drivers/power/supply/isp1704_charger.c
13945 F:      drivers/power/supply/rx51_battery.c
13946 F:      include/linux/power/bq2415x_charger.h
13947 F:      include/linux/power/bq27xxx_battery.h
13948
13949 NOLIBC HEADER FILE
13950 M:      Willy Tarreau <[email protected]>
13951 S:      Maintained
13952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13953 F:      tools/include/nolibc/
13954
13955 NSDEPS
13956 M:      Matthias Maennich <[email protected]>
13957 S:      Maintained
13958 F:      Documentation/core-api/symbol-namespaces.rst
13959 F:      scripts/nsdeps
13960
13961 NTB AMD DRIVER
13962 M:      Sanjay R Mehta <[email protected]>
13963 M:      Shyam Sundar S K <[email protected]>
13964 L:      [email protected]
13965 S:      Supported
13966 F:      drivers/ntb/hw/amd/
13967
13968 NTB DRIVER CORE
13969 M:      Jon Mason <[email protected]>
13970 M:      Dave Jiang <[email protected]>
13971 M:      Allen Hubbe <[email protected]>
13972 L:      [email protected]
13973 S:      Supported
13974 W:      https://github.com/jonmason/ntb/wiki
13975 T:      git git://github.com/jonmason/ntb.git
13976 F:      drivers/net/ntb_netdev.c
13977 F:      drivers/ntb/
13978 F:      include/linux/ntb.h
13979 F:      include/linux/ntb_transport.h
13980 F:      tools/testing/selftests/ntb/
13981
13982 NTB IDT DRIVER
13983 M:      Serge Semin <[email protected]>
13984 L:      [email protected]
13985 S:      Supported
13986 F:      drivers/ntb/hw/idt/
13987
13988 NTB INTEL DRIVER
13989 M:      Dave Jiang <[email protected]>
13990 L:      [email protected]
13991 S:      Supported
13992 W:      https://github.com/davejiang/linux/wiki
13993 T:      git https://github.com/davejiang/linux.git
13994 F:      drivers/ntb/hw/intel/
13995
13996 NTFS FILESYSTEM
13997 M:      Anton Altaparmakov <[email protected]>
13998 L:      [email protected]
13999 S:      Supported
14000 W:      http://www.tuxera.com/
14001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14002 F:      Documentation/filesystems/ntfs.rst
14003 F:      fs/ntfs/
14004
14005 NTFS3 FILESYSTEM
14006 M:      Konstantin Komarov <[email protected]>
14007 L:      [email protected]
14008 S:      Supported
14009 W:      http://www.paragon-software.com/
14010 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14011 F:      Documentation/filesystems/ntfs3.rst
14012 F:      fs/ntfs3/
14013
14014 NUBUS SUBSYSTEM
14015 M:      Finn Thain <[email protected]>
14016 L:      [email protected]
14017 S:      Maintained
14018 F:      arch/*/include/asm/nubus.h
14019 F:      drivers/nubus/
14020 F:      include/linux/nubus.h
14021 F:      include/uapi/linux/nubus.h
14022
14023 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14024 M:      Antonino Daplas <[email protected]>
14025 L:      [email protected]
14026 S:      Maintained
14027 F:      drivers/video/fbdev/nvidia/
14028 F:      drivers/video/fbdev/riva/
14029
14030 NVIDIA WMI EC BACKLIGHT DRIVER
14031 M:      Daniel Dadap <[email protected]>
14032 L:      [email protected]
14033 S:      Supported
14034 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14035
14036 NVM EXPRESS DRIVER
14037 M:      Keith Busch <[email protected]>
14038 M:      Jens Axboe <[email protected]>
14039 M:      Christoph Hellwig <[email protected]>
14040 M:      Sagi Grimberg <[email protected]>
14041 L:      [email protected]
14042 S:      Supported
14043 W:      http://git.infradead.org/nvme.git
14044 T:      git://git.infradead.org/nvme.git
14045 F:      drivers/nvme/host/
14046 F:      include/linux/nvme.h
14047 F:      include/uapi/linux/nvme_ioctl.h
14048
14049 NVM EXPRESS FC TRANSPORT DRIVERS
14050 M:      James Smart <[email protected]>
14051 L:      [email protected]
14052 S:      Supported
14053 F:      drivers/nvme/host/fc.c
14054 F:      drivers/nvme/target/fc.c
14055 F:      drivers/nvme/target/fcloop.c
14056 F:      include/linux/nvme-fc-driver.h
14057 F:      include/linux/nvme-fc.h
14058
14059 NVM EXPRESS TARGET DRIVER
14060 M:      Christoph Hellwig <[email protected]>
14061 M:      Sagi Grimberg <[email protected]>
14062 M:      Chaitanya Kulkarni <[email protected]>
14063 L:      [email protected]
14064 S:      Supported
14065 W:      http://git.infradead.org/nvme.git
14066 T:      git://git.infradead.org/nvme.git
14067 F:      drivers/nvme/target/
14068
14069 NVMEM FRAMEWORK
14070 M:      Srinivas Kandagatla <[email protected]>
14071 S:      Maintained
14072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14073 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14074 F:      Documentation/devicetree/bindings/nvmem/
14075 F:      drivers/nvmem/
14076 F:      include/linux/nvmem-consumer.h
14077 F:      include/linux/nvmem-provider.h
14078
14079 NXP C45 TJA11XX PHY DRIVER
14080 M:      Radu Pirea <[email protected]>
14081 L:      [email protected]
14082 S:      Maintained
14083 F:      drivers/net/phy/nxp-c45-tja11xx.c
14084
14085 NXP FSPI DRIVER
14086 M:      Ashish Kumar <[email protected]>
14087 R:      Yogesh Gaur <[email protected]>
14088 L:      [email protected]
14089 S:      Maintained
14090 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14091 F:      drivers/spi/spi-nxp-fspi.c
14092
14093 NXP FXAS21002C DRIVER
14094 M:      Rui Miguel Silva <[email protected]>
14095 L:      [email protected]
14096 S:      Maintained
14097 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14098 F:      drivers/iio/gyro/fxas21002c.h
14099 F:      drivers/iio/gyro/fxas21002c_core.c
14100 F:      drivers/iio/gyro/fxas21002c_i2c.c
14101 F:      drivers/iio/gyro/fxas21002c_spi.c
14102
14103 NXP i.MX CLOCK DRIVERS
14104 M:      Abel Vesa <[email protected]>
14105 L:      [email protected]
14106 L:      [email protected]
14107 S:      Maintained
14108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14109 F:      Documentation/devicetree/bindings/clock/imx*
14110 F:      drivers/clk/imx/
14111 F:      include/dt-bindings/clock/imx*
14112
14113 NXP i.MX 8MQ DCSS DRIVER
14114 M:      Laurentiu Palcu <[email protected]>
14115 R:      Lucas Stach <[email protected]>
14116 L:      [email protected]
14117 S:      Maintained
14118 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14119 F:      drivers/gpu/drm/imx/dcss/
14120
14121 NXP i.MX 8QXP ADC DRIVER
14122 M:      Cai Huoqing <[email protected]>
14123 M:      Haibo Chen <[email protected]>
14124 L:      [email protected]
14125 L:      [email protected]
14126 S:      Maintained
14127 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14128 F:      drivers/iio/adc/imx8qxp-adc.c
14129
14130 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14131 M:      Haibo Chen <[email protected]>
14132 L:      [email protected]
14133 L:      [email protected]
14134 S:      Maintained
14135 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14136 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14137 F:      drivers/iio/adc/imx7d_adc.c
14138 F:      drivers/iio/adc/vf610_adc.c
14139
14140 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14141 M:      Jagan Teki <[email protected]>
14142 S:      Maintained
14143 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14144 F:      drivers/regulator/pf8x00-regulator.c
14145
14146 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14147 M:      Krzysztof Kozlowski <[email protected]>
14148 L:      [email protected]
14149 S:      Maintained
14150 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14151 F:      drivers/extcon/extcon-ptn5150.c
14152
14153 NXP SGTL5000 DRIVER
14154 M:      Fabio Estevam <[email protected]>
14155 L:      [email protected] (moderated for non-subscribers)
14156 S:      Maintained
14157 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14158 F:      sound/soc/codecs/sgtl5000*
14159
14160 NXP SJA1105 ETHERNET SWITCH DRIVER
14161 M:      Vladimir Oltean <[email protected]>
14162 L:      [email protected]
14163 S:      Maintained
14164 F:      drivers/net/dsa/sja1105
14165 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14166
14167 NXP TDA998X DRM DRIVER
14168 M:      Russell King <[email protected]>
14169 S:      Maintained
14170 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14171 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14172 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14173 F:      include/drm/i2c/tda998x.h
14174 F:      include/dt-bindings/display/tda998x.h
14175 K:      "nxp,tda998x"
14176
14177 NXP TFA9879 DRIVER
14178 M:      Peter Rosin <[email protected]>
14179 L:      [email protected] (moderated for non-subscribers)
14180 S:      Maintained
14181 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14182 F:      sound/soc/codecs/tfa9879*
14183
14184 NXP/Goodix TFA989X (TFA1) DRIVER
14185 M:      Stephan Gerhold <[email protected]>
14186 L:      [email protected] (moderated for non-subscribers)
14187 S:      Maintained
14188 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14189 F:      sound/soc/codecs/tfa989x.c
14190
14191 NXP-NCI NFC DRIVER
14192 R:      Charles Gorand <[email protected]>
14193 L:      [email protected] (subscribers-only)
14194 S:      Supported
14195 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14196 F:      drivers/nfc/nxp-nci
14197
14198 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14199 M:      Mirela Rabulea <[email protected]>
14200 R:      NXP Linux Team <[email protected]>
14201 L:      [email protected]
14202 S:      Maintained
14203 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14204 F:      drivers/media/platform/imx-jpeg
14205
14206 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14207 M:      Jonas Malaco <[email protected]>
14208 L:      [email protected]
14209 S:      Maintained
14210 F:      Documentation/hwmon/nzxt-kraken2.rst
14211 F:      drivers/hwmon/nzxt-kraken2.c
14212
14213 NZXT-SMART2 HARDWARE MONITORING DRIVER
14214 M:      Aleksandr Mezin <[email protected]>
14215 L:      [email protected]
14216 S:      Maintained
14217 F:      Documentation/hwmon/nzxt-smart2.rst
14218 F:      drivers/hwmon/nzxt-smart2.c
14219
14220 OBJAGG
14221 M:      Jiri Pirko <[email protected]>
14222 L:      [email protected]
14223 S:      Supported
14224 F:      include/linux/objagg.h
14225 F:      lib/objagg.c
14226 F:      lib/test_objagg.c
14227
14228 OBJTOOL
14229 M:      Josh Poimboeuf <[email protected]>
14230 M:      Peter Zijlstra <[email protected]>
14231 S:      Supported
14232 F:      tools/objtool/
14233 F:      include/linux/objtool.h
14234
14235 OCELOT ETHERNET SWITCH DRIVER
14236 M:      Vladimir Oltean <[email protected]>
14237 M:      Claudiu Manoil <[email protected]>
14238 M:      Alexandre Belloni <[email protected]>
14239 M:      [email protected]
14240 L:      [email protected]
14241 S:      Supported
14242 F:      drivers/net/dsa/ocelot/*
14243 F:      drivers/net/ethernet/mscc/
14244 F:      include/soc/mscc/ocelot*
14245 F:      net/dsa/tag_ocelot.c
14246 F:      net/dsa/tag_ocelot_8021q.c
14247 F:      tools/testing/selftests/drivers/net/ocelot/*
14248
14249 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
14250 M:      Frederic Barrat <[email protected]>
14251 M:      Andrew Donnellan <[email protected]>
14252 L:      [email protected]
14253 S:      Supported
14254 F:      Documentation/userspace-api/accelerators/ocxl.rst
14255 F:      arch/powerpc/include/asm/pnv-ocxl.h
14256 F:      arch/powerpc/platforms/powernv/ocxl.c
14257 F:      drivers/misc/ocxl/
14258 F:      include/misc/ocxl*
14259 F:      include/uapi/misc/ocxl.h
14260
14261 OMAP AUDIO SUPPORT
14262 M:      Peter Ujfalusi <[email protected]>
14263 M:      Jarkko Nikula <[email protected]>
14264 L:      [email protected] (moderated for non-subscribers)
14265 L:      [email protected]
14266 S:      Maintained
14267 F:      sound/soc/ti/n810.c
14268 F:      sound/soc/ti/omap*
14269 F:      sound/soc/ti/rx51.c
14270 F:      sound/soc/ti/sdma-pcm.*
14271
14272 OMAP CLOCK FRAMEWORK SUPPORT
14273 M:      Paul Walmsley <[email protected]>
14274 L:      [email protected]
14275 S:      Maintained
14276 F:      arch/arm/*omap*/*clock*
14277
14278 OMAP DEVICE TREE SUPPORT
14279 M:      Benoît Cousson <[email protected]>
14280 M:      Tony Lindgren <[email protected]>
14281 L:      [email protected]
14282 L:      [email protected]
14283 S:      Maintained
14284 F:      arch/arm/boot/dts/*am3*
14285 F:      arch/arm/boot/dts/*am4*
14286 F:      arch/arm/boot/dts/*am5*
14287 F:      arch/arm/boot/dts/*dra7*
14288 F:      arch/arm/boot/dts/*omap*
14289 F:      arch/arm/boot/dts/logicpd-som-lv*
14290 F:      arch/arm/boot/dts/logicpd-torpedo*
14291
14292 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
14293 L:      [email protected]
14294 L:      [email protected]
14295 S:      Orphan
14296 F:      Documentation/arm/omap/dss.rst
14297 F:      drivers/video/fbdev/omap2/
14298
14299 OMAP FRAMEBUFFER SUPPORT
14300 L:      [email protected]
14301 L:      [email protected]
14302 S:      Orphan
14303 F:      drivers/video/fbdev/omap/
14304
14305 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
14306 M:      Roger Quadros <[email protected]>
14307 M:      Tony Lindgren <[email protected]>
14308 L:      [email protected]
14309 S:      Maintained
14310 F:      arch/arm/mach-omap2/*gpmc*
14311 F:      drivers/memory/omap-gpmc.c
14312
14313 OMAP GPIO DRIVER
14314 M:      Grygorii Strashko <[email protected]>
14315 M:      Santosh Shilimkar <[email protected]>
14316 M:      Kevin Hilman <[email protected]>
14317 L:      [email protected]
14318 S:      Maintained
14319 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
14320 F:      drivers/gpio/gpio-omap.c
14321
14322 OMAP HARDWARE SPINLOCK SUPPORT
14323 M:      Ohad Ben-Cohen <[email protected]>
14324 L:      [email protected]
14325 S:      Maintained
14326 F:      drivers/hwspinlock/omap_hwspinlock.c
14327
14328 OMAP HS MMC SUPPORT
14329 L:      [email protected]
14330 L:      [email protected]
14331 S:      Orphan
14332 F:      drivers/mmc/host/omap_hsmmc.c
14333
14334 OMAP HWMOD DATA
14335 M:      Paul Walmsley <[email protected]>
14336 L:      [email protected]
14337 S:      Maintained
14338 F:      arch/arm/mach-omap2/omap_hwmod*data*
14339
14340 OMAP HWMOD SUPPORT
14341 M:      Benoît Cousson <[email protected]>
14342 M:      Paul Walmsley <[email protected]>
14343 L:      [email protected]
14344 S:      Maintained
14345 F:      arch/arm/mach-omap2/omap_hwmod.*
14346
14347 OMAP I2C DRIVER
14348 M:      Vignesh R <[email protected]>
14349 L:      [email protected]
14350 L:      [email protected]
14351 S:      Maintained
14352 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
14353 F:      drivers/i2c/busses/i2c-omap.c
14354
14355 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
14356 M:      Laurent Pinchart <[email protected]>
14357 L:      [email protected]
14358 S:      Maintained
14359 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
14360 F:      drivers/media/platform/ti/omap3isp/
14361 F:      drivers/staging/media/omap4iss/
14362
14363 OMAP MMC SUPPORT
14364 M:      Aaro Koskinen <[email protected]>
14365 L:      [email protected]
14366 S:      Odd Fixes
14367 F:      drivers/mmc/host/omap.c
14368
14369 OMAP POWER MANAGEMENT SUPPORT
14370 M:      Kevin Hilman <[email protected]>
14371 L:      [email protected]
14372 S:      Maintained
14373 F:      arch/arm/*omap*/*pm*
14374 F:      drivers/cpufreq/omap-cpufreq.c
14375
14376 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
14377 M:      Rajendra Nayak <[email protected]>
14378 M:      Paul Walmsley <[email protected]>
14379 L:      [email protected]
14380 S:      Maintained
14381 F:      arch/arm/mach-omap2/prm*
14382
14383 OMAP RANDOM NUMBER GENERATOR SUPPORT
14384 M:      Deepak Saxena <[email protected]>
14385 S:      Maintained
14386 F:      drivers/char/hw_random/omap-rng.c
14387
14388 OMAP USB SUPPORT
14389 L:      [email protected]
14390 L:      [email protected]
14391 S:      Orphan
14392 F:      arch/arm/*omap*/usb*
14393 F:      drivers/usb/*/*omap*
14394
14395 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14396 M:      Mark Jackson <[email protected]>
14397 L:      [email protected]
14398 S:      Maintained
14399 F:      arch/arm/boot/dts/am335x-nano.dts
14400
14401 OMAP1 SUPPORT
14402 M:      Aaro Koskinen <[email protected]>
14403 M:      Tony Lindgren <[email protected]>
14404 L:      [email protected]
14405 S:      Maintained
14406 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14408 F:      arch/arm/configs/omap1_defconfig
14409 F:      arch/arm/mach-omap1/
14410 F:      arch/arm/plat-omap/
14411 F:      drivers/i2c/busses/i2c-omap.c
14412 F:      include/linux/platform_data/ams-delta-fiq.h
14413 F:      include/linux/platform_data/i2c-omap.h
14414
14415 OMAP2+ SUPPORT
14416 M:      Tony Lindgren <[email protected]>
14417 L:      [email protected]
14418 S:      Maintained
14419 W:      http://www.muru.com/linux/omap/
14420 W:      http://linux.omap.com/
14421 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14423 F:      arch/arm/configs/omap2plus_defconfig
14424 F:      arch/arm/mach-omap2/
14425 F:      arch/arm/plat-omap/
14426 F:      drivers/bus/ti-sysc.c
14427 F:      drivers/i2c/busses/i2c-omap.c
14428 F:      drivers/irqchip/irq-omap-intc.c
14429 F:      drivers/mfd/*omap*.c
14430 F:      drivers/mfd/menelaus.c
14431 F:      drivers/mfd/palmas.c
14432 F:      drivers/mfd/tps65217.c
14433 F:      drivers/mfd/tps65218.c
14434 F:      drivers/mfd/tps65910.c
14435 F:      drivers/mfd/twl-core.[ch]
14436 F:      drivers/mfd/twl4030*.c
14437 F:      drivers/mfd/twl6030*.c
14438 F:      drivers/mfd/twl6040*.c
14439 F:      drivers/regulator/palmas-regulator*.c
14440 F:      drivers/regulator/pbias-regulator.c
14441 F:      drivers/regulator/tps65217-regulator.c
14442 F:      drivers/regulator/tps65218-regulator.c
14443 F:      drivers/regulator/tps65910-regulator.c
14444 F:      drivers/regulator/twl-regulator.c
14445 F:      drivers/regulator/twl6030-regulator.c
14446 F:      include/linux/platform_data/i2c-omap.h
14447 F:      include/linux/platform_data/ti-sysc.h
14448
14449 OMFS FILESYSTEM
14450 M:      Bob Copeland <[email protected]>
14451 L:      [email protected]
14452 S:      Maintained
14453 F:      Documentation/filesystems/omfs.rst
14454 F:      fs/omfs/
14455
14456 OMNIKEY CARDMAN 4000 DRIVER
14457 M:      Harald Welte <[email protected]>
14458 S:      Maintained
14459 F:      drivers/char/pcmcia/cm4000_cs.c
14460 F:      include/linux/cm4000_cs.h
14461 F:      include/uapi/linux/cm4000_cs.h
14462
14463 OMNIKEY CARDMAN 4040 DRIVER
14464 M:      Harald Welte <[email protected]>
14465 S:      Maintained
14466 F:      drivers/char/pcmcia/cm4040_cs.*
14467
14468 OMNIVISION OG01A1B SENSOR DRIVER
14469 M:      Shawn Tu <[email protected]>
14470 L:      [email protected]
14471 S:      Maintained
14472 F:      drivers/media/i2c/og01a1b.c
14473
14474 OMNIVISION OV02A10 SENSOR DRIVER
14475 M:      Dongchun Zhu <[email protected]>
14476 L:      [email protected]
14477 S:      Maintained
14478 T:      git git://linuxtv.org/media_tree.git
14479 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14480 F:      drivers/media/i2c/ov02a10.c
14481
14482 OMNIVISION OV08D10 SENSOR DRIVER
14483 M:      Jimmy Su <[email protected]>
14484 L:      [email protected]
14485 S:      Maintained
14486 T:      git git://linuxtv.org/media_tree.git
14487 F:      drivers/media/i2c/ov08d10.c
14488
14489 OMNIVISION OV13858 SENSOR DRIVER
14490 M:      Sakari Ailus <[email protected]>
14491 L:      [email protected]
14492 S:      Maintained
14493 T:      git git://linuxtv.org/media_tree.git
14494 F:      drivers/media/i2c/ov13858.c
14495
14496 OMNIVISION OV13B10 SENSOR DRIVER
14497 M:      Arec Kao <[email protected]>
14498 L:      [email protected]
14499 S:      Maintained
14500 T:      git git://linuxtv.org/media_tree.git
14501 F:      drivers/media/i2c/ov13b10.c
14502
14503 OMNIVISION OV2680 SENSOR DRIVER
14504 M:      Rui Miguel Silva <[email protected]>
14505 L:      [email protected]
14506 S:      Maintained
14507 T:      git git://linuxtv.org/media_tree.git
14508 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14509 F:      drivers/media/i2c/ov2680.c
14510
14511 OMNIVISION OV2685 SENSOR DRIVER
14512 M:      Shunqian Zheng <[email protected]>
14513 L:      [email protected]
14514 S:      Maintained
14515 T:      git git://linuxtv.org/media_tree.git
14516 F:      drivers/media/i2c/ov2685.c
14517
14518 OMNIVISION OV2740 SENSOR DRIVER
14519 M:      Tianshu Qiu <[email protected]>
14520 R:      Shawn Tu <[email protected]>
14521 R:      Bingbu Cao <[email protected]>
14522 L:      [email protected]
14523 S:      Maintained
14524 T:      git git://linuxtv.org/media_tree.git
14525 F:      drivers/media/i2c/ov2740.c
14526
14527 OMNIVISION OV5640 SENSOR DRIVER
14528 M:      Steve Longerbeam <[email protected]>
14529 L:      [email protected]
14530 S:      Maintained
14531 T:      git git://linuxtv.org/media_tree.git
14532 F:      drivers/media/i2c/ov5640.c
14533
14534 OMNIVISION OV5647 SENSOR DRIVER
14535 M:      Dave Stevenson <[email protected]>
14536 M:      Jacopo Mondi <[email protected]>
14537 L:      [email protected]
14538 S:      Maintained
14539 T:      git git://linuxtv.org/media_tree.git
14540 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14541 F:      drivers/media/i2c/ov5647.c
14542
14543 OMNIVISION OV5670 SENSOR DRIVER
14544 M:      Chiranjeevi Rapolu <[email protected]>
14545 L:      [email protected]
14546 S:      Maintained
14547 T:      git git://linuxtv.org/media_tree.git
14548 F:      drivers/media/i2c/ov5670.c
14549
14550 OMNIVISION OV5675 SENSOR DRIVER
14551 M:      Shawn Tu <[email protected]>
14552 L:      [email protected]
14553 S:      Maintained
14554 T:      git git://linuxtv.org/media_tree.git
14555 F:      drivers/media/i2c/ov5675.c
14556
14557 OMNIVISION OV5693 SENSOR DRIVER
14558 M:      Daniel Scally <[email protected]>
14559 L:      [email protected]
14560 S:      Maintained
14561 T:      git git://linuxtv.org/media_tree.git
14562 F:      drivers/media/i2c/ov5693.c
14563
14564 OMNIVISION OV5695 SENSOR DRIVER
14565 M:      Shunqian Zheng <[email protected]>
14566 L:      [email protected]
14567 S:      Maintained
14568 T:      git git://linuxtv.org/media_tree.git
14569 F:      drivers/media/i2c/ov5695.c
14570
14571 OMNIVISION OV7670 SENSOR DRIVER
14572 L:      [email protected]
14573 S:      Orphan
14574 T:      git git://linuxtv.org/media_tree.git
14575 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14576 F:      drivers/media/i2c/ov7670.c
14577
14578 OMNIVISION OV772x SENSOR DRIVER
14579 M:      Jacopo Mondi <[email protected]>
14580 L:      [email protected]
14581 S:      Odd fixes
14582 T:      git git://linuxtv.org/media_tree.git
14583 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14584 F:      drivers/media/i2c/ov772x.c
14585 F:      include/media/i2c/ov772x.h
14586
14587 OMNIVISION OV7740 SENSOR DRIVER
14588 M:      Wenyou Yang <[email protected]>
14589 L:      [email protected]
14590 S:      Maintained
14591 T:      git git://linuxtv.org/media_tree.git
14592 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14593 F:      drivers/media/i2c/ov7740.c
14594
14595 OMNIVISION OV8856 SENSOR DRIVER
14596 M:      Dongchun Zhu <[email protected]>
14597 L:      [email protected]
14598 S:      Maintained
14599 T:      git git://linuxtv.org/media_tree.git
14600 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14601 F:      drivers/media/i2c/ov8856.c
14602
14603 OMNIVISION OV9282 SENSOR DRIVER
14604 M:      Paul J. Murphy <[email protected]>
14605 M:      Daniele Alessandrelli <[email protected]>
14606 L:      [email protected]
14607 S:      Maintained
14608 T:      git git://linuxtv.org/media_tree.git
14609 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14610 F:      drivers/media/i2c/ov9282.c
14611
14612 OMNIVISION OV9640 SENSOR DRIVER
14613 M:      Petr Cvek <[email protected]>
14614 L:      [email protected]
14615 S:      Maintained
14616 F:      drivers/media/i2c/ov9640.*
14617
14618 OMNIVISION OV9650 SENSOR DRIVER
14619 M:      Sakari Ailus <[email protected]>
14620 R:      Akinobu Mita <[email protected]>
14621 R:      Sylwester Nawrocki <[email protected]>
14622 L:      [email protected]
14623 S:      Maintained
14624 T:      git git://linuxtv.org/media_tree.git
14625 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14626 F:      drivers/media/i2c/ov9650.c
14627
14628 OMNIVISION OV9734 SENSOR DRIVER
14629 M:      Tianshu Qiu <[email protected]>
14630 R:      Bingbu Cao <[email protected]>
14631 L:      [email protected]
14632 S:      Maintained
14633 T:      git git://linuxtv.org/media_tree.git
14634 F:      drivers/media/i2c/ov9734.c
14635
14636 ONENAND FLASH DRIVER
14637 M:      Kyungmin Park <[email protected]>
14638 L:      [email protected]
14639 S:      Maintained
14640 F:      drivers/mtd/nand/onenand/
14641 F:      include/linux/mtd/onenand*.h
14642
14643 ONION OMEGA2+ BOARD
14644 M:      Harvey Hunt <[email protected]>
14645 L:      [email protected]
14646 S:      Maintained
14647 F:      arch/mips/boot/dts/ralink/omega2p.dts
14648
14649 OP-TEE DRIVER
14650 M:      Jens Wiklander <[email protected]>
14651 L:      [email protected]
14652 S:      Maintained
14653 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14654 F:      drivers/tee/optee/
14655
14656 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14657 M:      Sumit Garg <[email protected]>
14658 L:      [email protected]
14659 S:      Maintained
14660 F:      drivers/char/hw_random/optee-rng.c
14661
14662 OP-TEE RTC DRIVER
14663 M:      Clément Léger <[email protected]>
14664 L:      [email protected]
14665 S:      Maintained
14666 F:      drivers/rtc/rtc-optee.c
14667
14668 OPA-VNIC DRIVER
14669 M:      Dennis Dalessandro <[email protected]>
14670 M:      Mike Marciniszyn <[email protected]>
14671 L:      [email protected]
14672 S:      Supported
14673 F:      drivers/infiniband/ulp/opa_vnic
14674
14675 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14676 M:      Pantelis Antoniou <[email protected]>
14677 M:      Frank Rowand <[email protected]>
14678 L:      [email protected]
14679 S:      Maintained
14680 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14681 F:      Documentation/devicetree/overlay-notes.rst
14682 F:      drivers/of/overlay.c
14683 F:      drivers/of/resolver.c
14684 K:      of_overlay_notifier_
14685
14686 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14687 M:      Rob Herring <[email protected]>
14688 M:      Frank Rowand <[email protected]>
14689 L:      [email protected]
14690 S:      Maintained
14691 C:      irc://irc.libera.chat/devicetree
14692 W:      http://www.devicetree.org/
14693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14694 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14695 F:      drivers/of/
14696 F:      include/linux/of*.h
14697 F:      scripts/dtc/
14698
14699 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14700 M:      Rob Herring <[email protected]>
14701 M:      Krzysztof Kozlowski <[email protected]>
14702 L:      [email protected]
14703 S:      Maintained
14704 C:      irc://irc.libera.chat/devicetree
14705 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14707 F:      Documentation/devicetree/
14708 F:      arch/*/boot/dts/
14709 F:      include/dt-bindings/
14710
14711 OPENCOMPUTE PTP CLOCK DRIVER
14712 M:      Jonathan Lemon <[email protected]>
14713 L:      [email protected]
14714 S:      Maintained
14715 F:      drivers/ptp/ptp_ocp.c
14716
14717 OPENCORES I2C BUS DRIVER
14718 M:      Peter Korsgaard <[email protected]>
14719 M:      Andrew Lunn <[email protected]>
14720 L:      [email protected]
14721 S:      Maintained
14722 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14723 F:      Documentation/i2c/busses/i2c-ocores.rst
14724 F:      drivers/i2c/busses/i2c-ocores.c
14725 F:      include/linux/platform_data/i2c-ocores.h
14726
14727 OPENRISC ARCHITECTURE
14728 M:      Jonas Bonn <[email protected]>
14729 M:      Stefan Kristiansson <[email protected]>
14730 M:      Stafford Horne <[email protected]>
14731 L:      [email protected]
14732 S:      Maintained
14733 W:      http://openrisc.io
14734 T:      git git://github.com/openrisc/linux.git
14735 F:      Documentation/devicetree/bindings/openrisc/
14736 F:      Documentation/openrisc/
14737 F:      arch/openrisc/
14738 F:      drivers/irqchip/irq-ompic.c
14739 F:      drivers/irqchip/irq-or1k-*
14740
14741 OPENVSWITCH
14742 M:      Pravin B Shelar <[email protected]>
14743 L:      [email protected]
14744 L:      [email protected]
14745 S:      Maintained
14746 W:      http://openvswitch.org
14747 F:      include/uapi/linux/openvswitch.h
14748 F:      net/openvswitch/
14749
14750 OPERATING PERFORMANCE POINTS (OPP)
14751 M:      Viresh Kumar <[email protected]>
14752 M:      Nishanth Menon <[email protected]>
14753 M:      Stephen Boyd <[email protected]>
14754 L:      [email protected]
14755 S:      Maintained
14756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14757 F:      Documentation/devicetree/bindings/opp/
14758 F:      Documentation/power/opp.rst
14759 F:      drivers/opp/
14760 F:      include/linux/pm_opp.h
14761
14762 OPL4 DRIVER
14763 M:      Clemens Ladisch <[email protected]>
14764 L:      [email protected] (moderated for non-subscribers)
14765 S:      Maintained
14766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14767 F:      sound/drivers/opl4/
14768
14769 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14770 M:      Mark Fasheh <[email protected]>
14771 M:      Joel Becker <[email protected]>
14772 M:      Joseph Qi <[email protected]>
14773 L:      [email protected] (moderated for non-subscribers)
14774 S:      Supported
14775 W:      http://ocfs2.wiki.kernel.org
14776 F:      Documentation/filesystems/dlmfs.rst
14777 F:      Documentation/filesystems/ocfs2.rst
14778 F:      fs/ocfs2/
14779
14780 ORANGEFS FILESYSTEM
14781 M:      Mike Marshall <[email protected]>
14782 R:      Martin Brandenburg <[email protected]>
14783 L:      [email protected]
14784 S:      Supported
14785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14786 F:      Documentation/filesystems/orangefs.rst
14787 F:      fs/orangefs/
14788
14789 ORINOCO DRIVER
14790 L:      [email protected]
14791 S:      Orphan
14792 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14793 W:      http://www.nongnu.org/orinoco/
14794 F:      drivers/net/wireless/intersil/orinoco/
14795
14796 OV2659 OMNIVISION SENSOR DRIVER
14797 M:      "Lad, Prabhakar" <[email protected]>
14798 L:      [email protected]
14799 S:      Maintained
14800 W:      https://linuxtv.org
14801 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14802 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14803 F:      drivers/media/i2c/ov2659.c
14804 F:      include/media/i2c/ov2659.h
14805
14806 OVERLAY FILESYSTEM
14807 M:      Miklos Szeredi <[email protected]>
14808 L:      [email protected]
14809 S:      Supported
14810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14811 F:      Documentation/filesystems/overlayfs.rst
14812 F:      fs/overlayfs/
14813
14814 P54 WIRELESS DRIVER
14815 M:      Christian Lamparter <[email protected]>
14816 L:      [email protected]
14817 S:      Maintained
14818 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14819 F:      drivers/net/wireless/intersil/p54/
14820
14821 PACKING
14822 M:      Vladimir Oltean <[email protected]>
14823 L:      [email protected]
14824 S:      Supported
14825 F:      Documentation/core-api/packing.rst
14826 F:      include/linux/packing.h
14827 F:      lib/packing.c
14828
14829 PADATA PARALLEL EXECUTION MECHANISM
14830 M:      Steffen Klassert <[email protected]>
14831 M:      Daniel Jordan <[email protected]>
14832 L:      [email protected]
14833 L:      [email protected]
14834 S:      Maintained
14835 F:      Documentation/core-api/padata.rst
14836 F:      include/linux/padata.h
14837 F:      kernel/padata.c
14838
14839 PAGE POOL
14840 M:      Jesper Dangaard Brouer <[email protected]>
14841 M:      Ilias Apalodimas <[email protected]>
14842 L:      [email protected]
14843 S:      Supported
14844 F:      Documentation/networking/page_pool.rst
14845 F:      include/net/page_pool.h
14846 F:      include/trace/events/page_pool.h
14847 F:      net/core/page_pool.c
14848
14849 PAGE TABLE CHECK
14850 M:      Pasha Tatashin <[email protected]>
14851 M:      Andrew Morton <[email protected]>
14852 L:      [email protected]
14853 S:      Maintained
14854 F:      Documentation/vm/page_table_check.rst
14855 F:      include/linux/page_table_check.h
14856 F:      mm/page_table_check.c
14857
14858 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14859 M:      Kenneth Chan <[email protected]>
14860 L:      [email protected]
14861 S:      Maintained
14862 F:      drivers/platform/x86/panasonic-laptop.c
14863
14864 PARALLAX PING IIO SENSOR DRIVER
14865 M:      Andreas Klinger <[email protected]>
14866 L:      [email protected]
14867 S:      Maintained
14868 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14869 F:      drivers/iio/proximity/ping.c
14870
14871 PARALLEL LCD/KEYPAD PANEL DRIVER
14872 M:      Willy Tarreau <[email protected]>
14873 M:      Ksenija Stanojevic <[email protected]>
14874 S:      Odd Fixes
14875 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14876 F:      drivers/auxdisplay/panel.c
14877
14878 PARALLEL PORT SUBSYSTEM
14879 M:      Sudip Mukherjee <[email protected]>
14880 M:      Sudip Mukherjee <[email protected]>
14881 L:      [email protected] (subscribers-only)
14882 S:      Maintained
14883 F:      Documentation/driver-api/parport*.rst
14884 F:      drivers/char/ppdev.c
14885 F:      drivers/parport/
14886 F:      include/linux/parport*.h
14887 F:      include/uapi/linux/ppdev.h
14888
14889 PARAVIRT_OPS INTERFACE
14890 M:      Juergen Gross <[email protected]>
14891 M:      Srivatsa S. Bhat (VMware) <[email protected]>
14892 R:      Alexey Makhalov <[email protected]>
14893 R:      VMware PV-Drivers Reviewers <[email protected]>
14894 L:      [email protected]
14895 L:      [email protected]
14896 S:      Supported
14897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
14898 F:      Documentation/virt/paravirt_ops.rst
14899 F:      arch/*/include/asm/paravirt*.h
14900 F:      arch/*/kernel/paravirt*
14901 F:      include/linux/hypervisor.h
14902
14903 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14904 M:      Tim Waugh <[email protected]>
14905 L:      [email protected] (subscribers-only)
14906 S:      Maintained
14907 F:      Documentation/admin-guide/blockdev/paride.rst
14908 F:      drivers/block/paride/
14909
14910 PARISC ARCHITECTURE
14911 M:      "James E.J. Bottomley" <[email protected]>
14912 M:      Helge Deller <[email protected]>
14913 L:      [email protected]
14914 S:      Maintained
14915 W:      https://parisc.wiki.kernel.org
14916 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14919 F:      Documentation/parisc/
14920 F:      arch/parisc/
14921 F:      drivers/char/agp/parisc-agp.c
14922 F:      drivers/input/misc/hp_sdc_rtc.c
14923 F:      drivers/input/serio/gscps2.c
14924 F:      drivers/input/serio/hp_sdc*
14925 F:      drivers/parisc/
14926 F:      drivers/parport/parport_gsc.*
14927 F:      drivers/tty/serial/8250/8250_gsc.c
14928 F:      drivers/video/console/sti*
14929 F:      drivers/video/fbdev/sti*
14930 F:      drivers/video/logo/logo_parisc*
14931 F:      include/linux/hp_sdc.h
14932
14933 PARMAN
14934 M:      Jiri Pirko <[email protected]>
14935 L:      [email protected]
14936 S:      Supported
14937 F:      include/linux/parman.h
14938 F:      lib/parman.c
14939 F:      lib/test_parman.c
14940
14941 PC ENGINES APU BOARD DRIVER
14942 M:      Enrico Weigelt, metux IT consult <[email protected]>
14943 S:      Maintained
14944 F:      drivers/platform/x86/pcengines-apuv2.c
14945
14946 PC87360 HARDWARE MONITORING DRIVER
14947 M:      Jim Cromie <[email protected]>
14948 L:      [email protected]
14949 S:      Maintained
14950 F:      Documentation/hwmon/pc87360.rst
14951 F:      drivers/hwmon/pc87360.c
14952
14953 PC8736x GPIO DRIVER
14954 M:      Jim Cromie <[email protected]>
14955 S:      Maintained
14956 F:      drivers/char/pc8736x_gpio.c
14957
14958 PC87427 HARDWARE MONITORING DRIVER
14959 M:      Jean Delvare <[email protected]>
14960 L:      [email protected]
14961 S:      Maintained
14962 F:      Documentation/hwmon/pc87427.rst
14963 F:      drivers/hwmon/pc87427.c
14964
14965 PCA9532 LED DRIVER
14966 M:      Riku Voipio <[email protected]>
14967 S:      Maintained
14968 F:      drivers/leds/leds-pca9532.c
14969 F:      include/linux/leds-pca9532.h
14970
14971 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14972 M:      Guenter Roeck <[email protected]>
14973 L:      [email protected]
14974 S:      Maintained
14975 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14976
14977 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14978 M:      Khalid Aziz <[email protected]>
14979 S:      Maintained
14980 F:      drivers/firmware/pcdp.*
14981
14982 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14983 M:      Thomas Petazzoni <[email protected]>
14984 M:      Pali Rohár <[email protected]>
14985 L:      [email protected]
14986 L:      [email protected] (moderated for non-subscribers)
14987 S:      Maintained
14988 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14989 F:      drivers/pci/controller/pci-aardvark.c
14990
14991 PCI DRIVER FOR ALTERA PCIE IP
14992 M:      Joyce Ooi <[email protected]>
14993 L:      [email protected]
14994 S:      Supported
14995 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14996 F:      drivers/pci/controller/pcie-altera.c
14997
14998 PCI DRIVER FOR APPLIEDMICRO XGENE
14999 M:      Toan Le <[email protected]>
15000 L:      [email protected]
15001 L:      [email protected] (moderated for non-subscribers)
15002 S:      Maintained
15003 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15004 F:      drivers/pci/controller/pci-xgene.c
15005
15006 PCI DRIVER FOR ARM VERSATILE PLATFORM
15007 M:      Rob Herring <[email protected]>
15008 L:      [email protected]
15009 L:      [email protected] (moderated for non-subscribers)
15010 S:      Maintained
15011 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15012 F:      drivers/pci/controller/pci-versatile.c
15013
15014 PCI DRIVER FOR ARMADA 8K
15015 M:      Thomas Petazzoni <[email protected]>
15016 L:      [email protected]
15017 L:      [email protected] (moderated for non-subscribers)
15018 S:      Maintained
15019 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15020 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15021
15022 PCI DRIVER FOR CADENCE PCIE IP
15023 M:      Tom Joseph <[email protected]>
15024 L:      [email protected]
15025 S:      Maintained
15026 F:      Documentation/devicetree/bindings/pci/cdns,*
15027 F:      drivers/pci/controller/cadence/
15028
15029 PCI DRIVER FOR FREESCALE LAYERSCAPE
15030 M:      Minghuan Lian <[email protected]>
15031 M:      Mingkai Hu <[email protected]>
15032 M:      Roy Zang <[email protected]>
15033 L:      [email protected]
15034 L:      [email protected]
15035 L:      [email protected] (moderated for non-subscribers)
15036 S:      Maintained
15037 F:      drivers/pci/controller/dwc/*layerscape*
15038
15039 PCI DRIVER FOR GENERIC OF HOSTS
15040 M:      Will Deacon <[email protected]>
15041 L:      [email protected]
15042 L:      [email protected] (moderated for non-subscribers)
15043 S:      Maintained
15044 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15045 F:      drivers/pci/controller/pci-host-common.c
15046 F:      drivers/pci/controller/pci-host-generic.c
15047
15048 PCI DRIVER FOR IMX6
15049 M:      Richard Zhu <[email protected]>
15050 M:      Lucas Stach <[email protected]>
15051 L:      [email protected]
15052 L:      [email protected] (moderated for non-subscribers)
15053 S:      Maintained
15054 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15055 F:      drivers/pci/controller/dwc/*imx6*
15056
15057 PCI DRIVER FOR FU740
15058 M:      Paul Walmsley <[email protected]>
15059 M:      Greentime Hu <[email protected]>
15060 L:      [email protected]
15061 S:      Maintained
15062 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15063 F:      drivers/pci/controller/dwc/pcie-fu740.c
15064
15065 PCI DRIVER FOR INTEL IXP4XX
15066 M:      Linus Walleij <[email protected]>
15067 S:      Maintained
15068 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15069 F:      drivers/pci/controller/pci-ixp4xx.c
15070
15071 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15072 M:      Nirmal Patel <[email protected]>
15073 R:      Jonathan Derrick <[email protected]>
15074 L:      [email protected]
15075 S:      Supported
15076 F:      drivers/pci/controller/vmd.c
15077
15078 PCI DRIVER FOR MICROSEMI SWITCHTEC
15079 M:      Kurt Schwemmer <[email protected]>
15080 M:      Logan Gunthorpe <[email protected]>
15081 L:      [email protected]
15082 S:      Maintained
15083 F:      Documentation/ABI/testing/sysfs-class-switchtec
15084 F:      Documentation/driver-api/switchtec.rst
15085 F:      drivers/ntb/hw/mscc/
15086 F:      drivers/pci/switch/switchtec*
15087 F:      include/linux/switchtec.h
15088 F:      include/uapi/linux/switchtec_ioctl.h
15089
15090 PCI DRIVER FOR MOBIVEIL PCIE IP
15091 M:      Karthikeyan Mitran <[email protected]>
15092 M:      Hou Zhiqiang <[email protected]>
15093 L:      [email protected]
15094 S:      Supported
15095 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15096 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15097
15098 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15099 M:      Thomas Petazzoni <[email protected]>
15100 M:      Pali Rohár <[email protected]>
15101 L:      [email protected]
15102 L:      [email protected] (moderated for non-subscribers)
15103 S:      Maintained
15104 F:      drivers/pci/controller/*mvebu*
15105
15106 PCI DRIVER FOR NVIDIA TEGRA
15107 M:      Thierry Reding <[email protected]>
15108 L:      [email protected]
15109 L:      [email protected]
15110 S:      Supported
15111 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15112 F:      drivers/pci/controller/pci-tegra.c
15113
15114 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15115 M:      Hou Zhiqiang <[email protected]>
15116 L:      [email protected]
15117 L:      [email protected] (moderated for non-subscribers)
15118 S:      Maintained
15119 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15120 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15121
15122 PCI DRIVER FOR RENESAS R-CAR
15123 M:      Marek Vasut <[email protected]>
15124 M:      Yoshihiro Shimoda <[email protected]>
15125 L:      [email protected]
15126 L:      [email protected]
15127 S:      Maintained
15128 F:      Documentation/devicetree/bindings/pci/*rcar*
15129 F:      drivers/pci/controller/*rcar*
15130
15131 PCI DRIVER FOR SAMSUNG EXYNOS
15132 M:      Jingoo Han <[email protected]>
15133 L:      [email protected]
15134 L:      [email protected] (moderated for non-subscribers)
15135 L:      [email protected]
15136 S:      Maintained
15137 F:      drivers/pci/controller/dwc/pci-exynos.c
15138
15139 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15140 M:      Jingoo Han <[email protected]>
15141 M:      Gustavo Pimentel <[email protected]>
15142 L:      [email protected]
15143 S:      Maintained
15144 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15145 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15146 F:      drivers/pci/controller/dwc/*designware*
15147
15148 PCI DRIVER FOR TI DRA7XX/J721E
15149 M:      Kishon Vijay Abraham I <[email protected]>
15150 L:      [email protected]
15151 L:      [email protected]
15152 L:      [email protected] (moderated for non-subscribers)
15153 S:      Supported
15154 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15155 F:      drivers/pci/controller/cadence/pci-j721e.c
15156 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15157
15158 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15159 M:      Linus Walleij <[email protected]>
15160 L:      [email protected]
15161 S:      Maintained
15162 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15163 F:      drivers/pci/controller/pci-v3-semi.c
15164
15165 PCI ENDPOINT SUBSYSTEM
15166 M:      Kishon Vijay Abraham I <[email protected]>
15167 M:      Lorenzo Pieralisi <[email protected]>
15168 R:      Krzysztof Wilczyński <[email protected]>
15169 L:      [email protected]
15170 S:      Supported
15171 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15172 B:      https://bugzilla.kernel.org
15173 C:      irc://irc.oftc.net/linux-pci
15174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15175 F:      Documentation/PCI/endpoint/*
15176 F:      Documentation/misc-devices/pci-endpoint-test.rst
15177 F:      drivers/misc/pci_endpoint_test.c
15178 F:      drivers/pci/endpoint/
15179 F:      tools/pci/
15180
15181 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15182 M:      Russell Currey <[email protected]>
15183 M:      Oliver O'Halloran <[email protected]>
15184 L:      [email protected]
15185 S:      Supported
15186 F:      Documentation/PCI/pci-error-recovery.rst
15187 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
15188 F:      arch/powerpc/include/*/eeh*.h
15189 F:      arch/powerpc/kernel/eeh*.c
15190 F:      arch/powerpc/platforms/*/eeh*.c
15191 F:      drivers/pci/pcie/aer.c
15192 F:      drivers/pci/pcie/dpc.c
15193 F:      drivers/pci/pcie/err.c
15194
15195 PCI ERROR RECOVERY
15196 M:      Linas Vepstas <[email protected]>
15197 L:      [email protected]
15198 S:      Supported
15199 F:      Documentation/PCI/pci-error-recovery.rst
15200
15201 PCI PEER-TO-PEER DMA (P2PDMA)
15202 M:      Bjorn Helgaas <[email protected]>
15203 M:      Logan Gunthorpe <[email protected]>
15204 L:      [email protected]
15205 S:      Supported
15206 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15207 B:      https://bugzilla.kernel.org
15208 C:      irc://irc.oftc.net/linux-pci
15209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15210 F:      Documentation/driver-api/pci/p2pdma.rst
15211 F:      drivers/pci/p2pdma.c
15212 F:      include/linux/pci-p2pdma.h
15213
15214 PCI MSI DRIVER FOR ALTERA MSI IP
15215 M:      Joyce Ooi <[email protected]>
15216 L:      [email protected]
15217 S:      Supported
15218 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
15219 F:      drivers/pci/controller/pcie-altera-msi.c
15220
15221 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
15222 M:      Toan Le <[email protected]>
15223 L:      [email protected]
15224 L:      [email protected] (moderated for non-subscribers)
15225 S:      Maintained
15226 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
15227 F:      drivers/pci/controller/pci-xgene-msi.c
15228
15229 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
15230 M:      Lorenzo Pieralisi <[email protected]>
15231 R:      Rob Herring <[email protected]>
15232 R:      Krzysztof Wilczyński <[email protected]>
15233 L:      [email protected]
15234 S:      Supported
15235 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15236 B:      https://bugzilla.kernel.org
15237 C:      irc://irc.oftc.net/linux-pci
15238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15239 F:      drivers/pci/controller/
15240 F:      drivers/pci/pci-bridge-emul.c
15241 F:      drivers/pci/pci-bridge-emul.h
15242
15243 PCI SUBSYSTEM
15244 M:      Bjorn Helgaas <[email protected]>
15245 L:      [email protected]
15246 S:      Supported
15247 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15248 B:      https://bugzilla.kernel.org
15249 C:      irc://irc.oftc.net/linux-pci
15250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15251 F:      Documentation/PCI/
15252 F:      Documentation/devicetree/bindings/pci/
15253 F:      arch/x86/kernel/early-quirks.c
15254 F:      arch/x86/kernel/quirks.c
15255 F:      arch/x86/pci/
15256 F:      drivers/acpi/pci*
15257 F:      drivers/pci/
15258 F:      include/asm-generic/pci*
15259 F:      include/linux/of_pci.h
15260 F:      include/linux/pci*
15261 F:      include/uapi/linux/pci*
15262 F:      lib/pci*
15263
15264 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
15265 M:      Jonathan Chocron <[email protected]>
15266 L:      [email protected]
15267 S:      Maintained
15268 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
15269 F:      drivers/pci/controller/dwc/pcie-al.c
15270
15271 PCIE DRIVER FOR AMLOGIC MESON
15272 M:      Yue Wang <[email protected]>
15273 L:      [email protected]
15274 L:      [email protected]
15275 S:      Maintained
15276 F:      drivers/pci/controller/dwc/pci-meson.c
15277
15278 PCIE DRIVER FOR AXIS ARTPEC
15279 M:      Jesper Nilsson <[email protected]>
15280 L:      [email protected]
15281 L:      [email protected]
15282 S:      Maintained
15283 F:      Documentation/devicetree/bindings/pci/axis,artpec*
15284 F:      drivers/pci/controller/dwc/*artpec*
15285
15286 PCIE DRIVER FOR CAVIUM THUNDERX
15287 M:      Robert Richter <[email protected]>
15288 L:      [email protected]
15289 L:      [email protected] (moderated for non-subscribers)
15290 S:      Odd Fixes
15291 F:      drivers/pci/controller/pci-thunder-*
15292
15293 PCIE DRIVER FOR HISILICON
15294 M:      Zhou Wang <[email protected]>
15295 L:      [email protected]
15296 S:      Maintained
15297 F:      drivers/pci/controller/dwc/pcie-hisi.c
15298
15299 PCIE DRIVER FOR HISILICON KIRIN
15300 M:      Xiaowei Song <[email protected]>
15301 M:      Binghui Wang <[email protected]>
15302 L:      [email protected]
15303 S:      Maintained
15304 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
15305 F:      drivers/pci/controller/dwc/pcie-kirin.c
15306
15307 PCIE DRIVER FOR HISILICON STB
15308 M:      Shawn Guo <[email protected]>
15309 L:      [email protected]
15310 S:      Maintained
15311 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
15312 F:      drivers/pci/controller/dwc/pcie-histb.c
15313
15314 PCIE DRIVER FOR INTEL KEEM BAY
15315 M:      Srikanth Thokala <[email protected]>
15316 L:      [email protected]
15317 S:      Supported
15318 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
15319 F:      drivers/pci/controller/dwc/pcie-keembay.c
15320
15321 PCIE DRIVER FOR INTEL LGM GW SOC
15322 M:      Rahul Tanwar <[email protected]>
15323 L:      [email protected]
15324 S:      Maintained
15325 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
15326 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
15327
15328 PCIE DRIVER FOR MEDIATEK
15329 M:      Ryder Lee <[email protected]>
15330 M:      Jianjun Wang <[email protected]>
15331 L:      [email protected]
15332 L:      [email protected] (moderated for non-subscribers)
15333 S:      Supported
15334 F:      Documentation/devicetree/bindings/pci/mediatek*
15335 F:      drivers/pci/controller/*mediatek*
15336
15337 PCIE DRIVER FOR MICROCHIP
15338 M:      Daire McNamara <[email protected]>
15339 L:      [email protected]
15340 S:      Supported
15341 F:      Documentation/devicetree/bindings/pci/microchip*
15342 F:      drivers/pci/controller/*microchip*
15343
15344 PCIE DRIVER FOR QUALCOMM MSM
15345 M:      Stanimir Varbanov <[email protected]>
15346 L:      [email protected]
15347 L:      [email protected]
15348 S:      Maintained
15349 F:      drivers/pci/controller/dwc/pcie-qcom.c
15350
15351 PCIE ENDPOINT DRIVER FOR QUALCOMM
15352 M:      Manivannan Sadhasivam <[email protected]>
15353 L:      [email protected]
15354 L:      [email protected]
15355 S:      Maintained
15356 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
15357 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
15358
15359 PCIE DRIVER FOR ROCKCHIP
15360 M:      Shawn Lin <[email protected]>
15361 L:      [email protected]
15362 L:      [email protected]
15363 S:      Maintained
15364 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
15365 F:      drivers/pci/controller/pcie-rockchip*
15366
15367 PCIE DRIVER FOR SOCIONEXT UNIPHIER
15368 M:      Kunihiko Hayashi <[email protected]>
15369 L:      [email protected]
15370 S:      Maintained
15371 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
15372 F:      drivers/pci/controller/dwc/pcie-uniphier*
15373
15374 PCIE DRIVER FOR ST SPEAR13XX
15375 M:      Pratyush Anand <[email protected]>
15376 L:      [email protected]
15377 S:      Maintained
15378 F:      drivers/pci/controller/dwc/*spear*
15379
15380 PCMCIA SUBSYSTEM
15381 M:      Dominik Brodowski <[email protected]>
15382 S:      Odd Fixes
15383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
15384 F:      Documentation/pcmcia/
15385 F:      drivers/pcmcia/
15386 F:      include/pcmcia/
15387 F:      tools/pcmcia/
15388
15389 PCNET32 NETWORK DRIVER
15390 M:      Don Fry <[email protected]>
15391 L:      [email protected]
15392 S:      Maintained
15393 F:      drivers/net/ethernet/amd/pcnet32.c
15394
15395 PCRYPT PARALLEL CRYPTO ENGINE
15396 M:      Steffen Klassert <[email protected]>
15397 L:      [email protected]
15398 S:      Maintained
15399 F:      crypto/pcrypt.c
15400 F:      include/crypto/pcrypt.h
15401
15402 PEAQ WMI HOTKEYS DRIVER
15403 M:      Hans de Goede <[email protected]>
15404 L:      [email protected]
15405 S:      Maintained
15406 F:      drivers/platform/x86/peaq-wmi.c
15407
15408 PECI HARDWARE MONITORING DRIVERS
15409 M:      Iwona Winiarska <[email protected]>
15410 L:      [email protected]
15411 S:      Supported
15412 F:      Documentation/hwmon/peci-cputemp.rst
15413 F:      Documentation/hwmon/peci-dimmtemp.rst
15414 F:      drivers/hwmon/peci/
15415
15416 PECI SUBSYSTEM
15417 M:      Iwona Winiarska <[email protected]>
15418 L:      [email protected] (moderated for non-subscribers)
15419 S:      Supported
15420 F:      Documentation/devicetree/bindings/peci/
15421 F:      Documentation/peci/
15422 F:      drivers/peci/
15423 F:      include/linux/peci-cpu.h
15424 F:      include/linux/peci.h
15425
15426 PENSANDO ETHERNET DRIVERS
15427 M:      Shannon Nelson <[email protected]>
15428 M:      [email protected]
15429 L:      [email protected]
15430 S:      Supported
15431 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
15432 F:      drivers/net/ethernet/pensando/
15433
15434 PER-CPU MEMORY ALLOCATOR
15435 M:      Dennis Zhou <[email protected]>
15436 M:      Tejun Heo <[email protected]>
15437 M:      Christoph Lameter <[email protected]>
15438 L:      [email protected]
15439 S:      Maintained
15440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
15441 F:      arch/*/include/asm/percpu.h
15442 F:      include/linux/percpu*.h
15443 F:      lib/percpu*.c
15444 F:      mm/percpu*.c
15445
15446 PER-TASK DELAY ACCOUNTING
15447 M:      Balbir Singh <[email protected]>
15448 S:      Maintained
15449 F:      include/linux/delayacct.h
15450 F:      kernel/delayacct.c
15451
15452 PERFORMANCE EVENTS SUBSYSTEM
15453 M:      Peter Zijlstra <[email protected]>
15454 M:      Ingo Molnar <[email protected]>
15455 M:      Arnaldo Carvalho de Melo <[email protected]>
15456 R:      Mark Rutland <[email protected]>
15457 R:      Alexander Shishkin <[email protected]>
15458 R:      Jiri Olsa <[email protected]>
15459 R:      Namhyung Kim <[email protected]>
15460 L:      [email protected]
15461 L:      [email protected]
15462 S:      Supported
15463 W:      https://perf.wiki.kernel.org/
15464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
15465 F:      arch/*/events/*
15466 F:      arch/*/events/*/*
15467 F:      arch/*/include/asm/perf_event.h
15468 F:      arch/*/kernel/*/*/perf_event*.c
15469 F:      arch/*/kernel/*/perf_event*.c
15470 F:      arch/*/kernel/perf_callchain.c
15471 F:      arch/*/kernel/perf_event*.c
15472 F:      include/linux/perf_event.h
15473 F:      include/uapi/linux/perf_event.h
15474 F:      kernel/events/*
15475 F:      tools/lib/perf/
15476 F:      tools/perf/
15477
15478 PERFORMANCE EVENTS TOOLING ARM64
15479 R:      John Garry <[email protected]>
15480 R:      Will Deacon <[email protected]>
15481 R:      Mathieu Poirier <[email protected]>
15482 R:      Leo Yan <[email protected]>
15483 L:      [email protected] (moderated for non-subscribers)
15484 S:      Supported
15485 F:      tools/build/feature/test-libopencsd.c
15486 F:      tools/perf/arch/arm*/
15487 F:      tools/perf/pmu-events/arch/arm64/
15488 F:      tools/perf/util/arm-spe*
15489 F:      tools/perf/util/cs-etm*
15490
15491 PERSONALITY HANDLING
15492 M:      Christoph Hellwig <[email protected]>
15493 L:      [email protected]
15494 S:      Maintained
15495 F:      include/linux/personality.h
15496 F:      include/uapi/linux/personality.h
15497
15498 PHOENIX RC FLIGHT CONTROLLER ADAPTER
15499 M:      Marcus Folkesson <[email protected]>
15500 L:      [email protected]
15501 S:      Maintained
15502 F:      Documentation/input/devices/pxrc.rst
15503 F:      drivers/input/joystick/pxrc.c
15504
15505 PHONET PROTOCOL
15506 M:      Remi Denis-Courmont <[email protected]>
15507 S:      Supported
15508 F:      Documentation/networking/phonet.rst
15509 F:      include/linux/phonet.h
15510 F:      include/net/phonet/
15511 F:      include/uapi/linux/phonet.h
15512 F:      net/phonet/
15513
15514 PHRAM MTD DRIVER
15515 M:      Joern Engel <[email protected]>
15516 L:      [email protected]
15517 S:      Maintained
15518 F:      drivers/mtd/devices/phram.c
15519
15520 PICOLCD HID DRIVER
15521 M:      Bruno Prémont <[email protected]>
15522 L:      [email protected]
15523 S:      Maintained
15524 F:      drivers/hid/hid-picolcd*
15525
15526 PIDFD API
15527 M:      Christian Brauner <[email protected]>
15528 L:      [email protected]
15529 S:      Maintained
15530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
15531 F:      samples/pidfd/
15532 F:      tools/testing/selftests/clone3/
15533 F:      tools/testing/selftests/pid_namespace/
15534 F:      tools/testing/selftests/pidfd/
15535 K:      (?i)pidfd
15536 K:      (?i)clone3
15537 K:      \b(clone_args|kernel_clone_args)\b
15538
15539 PIN CONTROL SUBSYSTEM
15540 M:      Linus Walleij <[email protected]>
15541 L:      [email protected]
15542 S:      Maintained
15543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15544 F:      Documentation/devicetree/bindings/pinctrl/
15545 F:      Documentation/driver-api/pin-control.rst
15546 F:      drivers/pinctrl/
15547 F:      include/linux/pinctrl/
15548
15549 PIN CONTROLLER - AMD
15550 M:      Basavaraj Natikar <[email protected]>
15551 M:      Shyam Sundar S K <[email protected]>
15552 S:      Maintained
15553 F:      drivers/pinctrl/pinctrl-amd.c
15554
15555 PIN CONTROLLER - FREESCALE
15556 M:      Dong Aisheng <[email protected]>
15557 M:      Fabio Estevam <[email protected]>
15558 M:      Shawn Guo <[email protected]>
15559 M:      Stefan Agner <[email protected]>
15560 R:      Pengutronix Kernel Team <[email protected]>
15561 L:      [email protected]
15562 S:      Maintained
15563 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15564 F:      drivers/pinctrl/freescale/
15565
15566 PIN CONTROLLER - INTEL
15567 M:      Mika Westerberg <[email protected]>
15568 M:      Andy Shevchenko <[email protected]>
15569 S:      Maintained
15570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15571 F:      drivers/pinctrl/intel/
15572
15573 PIN CONTROLLER - KEEMBAY
15574 M:      Lakshmi Sowjanya D <[email protected]>
15575 S:      Supported
15576 F:      drivers/pinctrl/pinctrl-keembay*
15577
15578 PIN CONTROLLER - MEDIATEK
15579 M:      Sean Wang <[email protected]>
15580 L:      [email protected] (moderated for non-subscribers)
15581 S:      Maintained
15582 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15583 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15584 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15585 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15586 F:      drivers/pinctrl/mediatek/
15587
15588 PIN CONTROLLER - MICROCHIP AT91
15589 M:      Ludovic Desroches <[email protected]>
15590 L:      [email protected] (moderated for non-subscribers)
15591 L:      [email protected]
15592 S:      Supported
15593 F:      drivers/gpio/gpio-sama5d2-piobu.c
15594 F:      drivers/pinctrl/pinctrl-at91*
15595
15596 PIN CONTROLLER - QUALCOMM
15597 M:      Bjorn Andersson <[email protected]>
15598 L:      [email protected]
15599 S:      Maintained
15600 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15601 F:      drivers/pinctrl/qcom/
15602
15603 PIN CONTROLLER - RENESAS
15604 M:      Geert Uytterhoeven <[email protected]>
15605 L:      [email protected]
15606 S:      Supported
15607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15608 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15609 F:      drivers/pinctrl/renesas/
15610
15611 PIN CONTROLLER - SAMSUNG
15612 M:      Tomasz Figa <[email protected]>
15613 M:      Krzysztof Kozlowski <[email protected]>
15614 M:      Sylwester Nawrocki <[email protected]>
15615 R:      Alim Akhtar <[email protected]>
15616 L:      [email protected] (moderated for non-subscribers)
15617 L:      [email protected]
15618 S:      Maintained
15619 C:      irc://irc.libera.chat/linux-exynos
15620 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15622 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
15623 F:      drivers/pinctrl/samsung/
15624 F:      include/dt-bindings/pinctrl/samsung.h
15625
15626 PIN CONTROLLER - SINGLE
15627 M:      Tony Lindgren <[email protected]>
15628 M:      Haojian Zhuang <[email protected]>
15629 L:      [email protected] (moderated for non-subscribers)
15630 L:      [email protected]
15631 S:      Maintained
15632 F:      drivers/pinctrl/pinctrl-single.c
15633
15634 PIN CONTROLLER - THUNDERBAY
15635 M:      Lakshmi Sowjanya D <[email protected]>
15636 S:      Supported
15637 F:      drivers/pinctrl/pinctrl-thunderbay.c
15638
15639 PIN CONTROLLER - SUNPLUS / TIBBO
15640 M:      Dvorkin Dmitry <[email protected]>
15641 M:      Wells Lu <[email protected]>
15642 L:      [email protected] (moderated for non-subscribers)
15643 S:      Maintained
15644 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
15645 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
15646 F:      drivers/pinctrl/sunplus/
15647 F:      include/dt-bindings/pinctrl/sppctl*.h
15648
15649 PKTCDVD DRIVER
15650 M:      [email protected]
15651 S:      Orphan
15652 F:      drivers/block/pktcdvd.c
15653 F:      include/linux/pktcdvd.h
15654 F:      include/uapi/linux/pktcdvd.h
15655
15656 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15657 M:      Tomasz Duszynski <[email protected]>
15658 S:      Maintained
15659 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15660 F:      drivers/iio/chemical/pms7003.c
15661
15662 PLDMFW LIBRARY
15663 M:      Jacob Keller <[email protected]>
15664 S:      Maintained
15665 F:      Documentation/driver-api/pldmfw/
15666 F:      include/linux/pldmfw.h
15667 F:      lib/pldmfw/
15668
15669 PLX DMA DRIVER
15670 M:      Logan Gunthorpe <[email protected]>
15671 S:      Maintained
15672 F:      drivers/dma/plx_dma.c
15673
15674 PM6764TR DRIVER
15675 M:      Charles Hsu     <[email protected]>
15676 L:      [email protected]
15677 S:      Maintained
15678 F:      Documentation/hwmon/pm6764tr.rst
15679 F:      drivers/hwmon/pmbus/pm6764tr.c
15680
15681 PM-GRAPH UTILITY
15682 M:      "Todd E Brandt" <[email protected]>
15683 L:      [email protected]
15684 S:      Supported
15685 W:      https://01.org/pm-graph
15686 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15687 T:      git git://github.com/intel/pm-graph
15688 F:      tools/power/pm-graph
15689
15690 PMBUS HARDWARE MONITORING DRIVERS
15691 M:      Guenter Roeck <[email protected]>
15692 L:      [email protected]
15693 S:      Maintained
15694 W:      http://hwmon.wiki.kernel.org/
15695 W:      http://www.roeck-us.net/linux/drivers/
15696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15697 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15698 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15699 F:      Documentation/hwmon/adm1275.rst
15700 F:      Documentation/hwmon/ibm-cffps.rst
15701 F:      Documentation/hwmon/ir35221.rst
15702 F:      Documentation/hwmon/lm25066.rst
15703 F:      Documentation/hwmon/ltc2978.rst
15704 F:      Documentation/hwmon/ltc3815.rst
15705 F:      Documentation/hwmon/max16064.rst
15706 F:      Documentation/hwmon/max20751.rst
15707 F:      Documentation/hwmon/max31785.rst
15708 F:      Documentation/hwmon/max34440.rst
15709 F:      Documentation/hwmon/max8688.rst
15710 F:      Documentation/hwmon/pmbus-core.rst
15711 F:      Documentation/hwmon/pmbus.rst
15712 F:      Documentation/hwmon/tps40422.rst
15713 F:      Documentation/hwmon/ucd9000.rst
15714 F:      Documentation/hwmon/ucd9200.rst
15715 F:      Documentation/hwmon/zl6100.rst
15716 F:      drivers/hwmon/pmbus/
15717 F:      include/linux/pmbus.h
15718
15719 PMC SIERRA MaxRAID DRIVER
15720 L:      [email protected]
15721 S:      Orphan
15722 W:      http://www.pmc-sierra.com/
15723 F:      drivers/scsi/pmcraid.*
15724
15725 PMC SIERRA PM8001 DRIVER
15726 M:      Jack Wang <[email protected]>
15727 L:      [email protected]
15728 S:      Supported
15729 F:      drivers/scsi/pm8001/
15730
15731 PNI RM3100 IIO DRIVER
15732 M:      Song Qiang <[email protected]>
15733 L:      [email protected]
15734 S:      Maintained
15735 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15736 F:      drivers/iio/magnetometer/rm3100*
15737
15738 PNP SUPPORT
15739 M:      "Rafael J. Wysocki" <[email protected]>
15740 L:      [email protected]
15741 S:      Maintained
15742 F:      drivers/pnp/
15743 F:      include/linux/pnp.h
15744
15745 POSIX CLOCKS and TIMERS
15746 M:      Thomas Gleixner <[email protected]>
15747 L:      [email protected]
15748 S:      Maintained
15749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15750 F:      fs/timerfd.c
15751 F:      include/linux/time_namespace.h
15752 F:      include/linux/timer*
15753 F:      kernel/time/*timer*
15754 F:      kernel/time/namespace.c
15755
15756 POWER MANAGEMENT CORE
15757 M:      "Rafael J. Wysocki" <[email protected]>
15758 L:      [email protected]
15759 S:      Supported
15760 B:      https://bugzilla.kernel.org
15761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15762 F:      drivers/base/power/
15763 F:      drivers/powercap/
15764 F:      include/linux/intel_rapl.h
15765 F:      include/linux/pm.h
15766 F:      include/linux/pm_*
15767 F:      include/linux/powercap.h
15768 F:      kernel/configs/nopm.config
15769
15770 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15771 M:      Daniel Lezcano <[email protected]>
15772 L:      [email protected]
15773 S:      Supported
15774 B:      https://bugzilla.kernel.org
15775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15776 F:      drivers/powercap/dtpm*
15777 F:      include/linux/dtpm.h
15778
15779 POWER STATE COORDINATION INTERFACE (PSCI)
15780 M:      Mark Rutland <[email protected]>
15781 M:      Lorenzo Pieralisi <[email protected]>
15782 L:      [email protected] (moderated for non-subscribers)
15783 S:      Maintained
15784 F:      drivers/firmware/psci/
15785 F:      include/linux/psci.h
15786 F:      include/uapi/linux/psci.h
15787
15788 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15789 M:      Sebastian Reichel <[email protected]>
15790 L:      [email protected]
15791 S:      Maintained
15792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15793 F:      Documentation/ABI/testing/sysfs-class-power
15794 F:      Documentation/devicetree/bindings/power/supply/
15795 F:      drivers/power/supply/
15796 F:      include/linux/power/
15797 F:      include/linux/power_supply.h
15798
15799 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15800 M:      Suraj Jitindar Singh <[email protected]>
15801 L:      [email protected]
15802 S:      Maintained
15803 F:      drivers/char/powernv-op-panel.c
15804
15805 PPP OVER ATM (RFC 2364)
15806 M:      Mitchell Blank Jr <[email protected]>
15807 S:      Maintained
15808 F:      include/uapi/linux/atmppp.h
15809 F:      net/atm/pppoatm.c
15810
15811 PPP OVER ETHERNET
15812 M:      Michal Ostrowski <[email protected]>
15813 S:      Maintained
15814 F:      drivers/net/ppp/pppoe.c
15815 F:      drivers/net/ppp/pppox.c
15816
15817 PPP OVER L2TP
15818 M:      James Chapman <[email protected]>
15819 S:      Maintained
15820 F:      include/linux/if_pppol2tp.h
15821 F:      include/uapi/linux/if_pppol2tp.h
15822 F:      net/l2tp/l2tp_ppp.c
15823
15824 PPP PROTOCOL DRIVERS AND COMPRESSORS
15825 M:      Paul Mackerras <[email protected]>
15826 L:      [email protected]
15827 S:      Maintained
15828 F:      drivers/net/ppp/ppp_*
15829
15830 PPS SUPPORT
15831 M:      Rodolfo Giometti <[email protected]>
15832 L:      [email protected] (subscribers-only)
15833 S:      Maintained
15834 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15835 F:      Documentation/ABI/testing/sysfs-pps
15836 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15837 F:      Documentation/driver-api/pps.rst
15838 F:      drivers/pps/
15839 F:      include/linux/pps*.h
15840 F:      include/uapi/linux/pps.h
15841
15842 PPTP DRIVER
15843 M:      Dmitry Kozlov <[email protected]>
15844 L:      [email protected]
15845 S:      Maintained
15846 W:      http://sourceforge.net/projects/accel-pptp
15847 F:      drivers/net/ppp/pptp.c
15848
15849 PRESSURE STALL INFORMATION (PSI)
15850 M:      Johannes Weiner <[email protected]>
15851 M:      Suren Baghdasaryan <[email protected]>
15852 S:      Maintained
15853 F:      include/linux/psi*
15854 F:      kernel/sched/psi.c
15855
15856 PRINTK
15857 M:      Petr Mladek <[email protected]>
15858 M:      Sergey Senozhatsky <[email protected]>
15859 R:      Steven Rostedt <[email protected]>
15860 R:      John Ogness <[email protected]>
15861 S:      Maintained
15862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
15863 F:      include/linux/printk.h
15864 F:      kernel/printk/
15865
15866 PRINTK INDEXING
15867 R:      Chris Down <[email protected]>
15868 S:      Maintained
15869 F:      kernel/printk/index.c
15870
15871 PROC FILESYSTEM
15872 L:      [email protected]
15873 L:      [email protected]
15874 S:      Maintained
15875 F:      Documentation/filesystems/proc.rst
15876 F:      fs/proc/
15877 F:      include/linux/proc_fs.h
15878 F:      tools/testing/selftests/proc/
15879
15880 PROC SYSCTL
15881 M:      Luis Chamberlain <[email protected]>
15882 M:      Kees Cook <[email protected]>
15883 M:      Iurii Zaikin <[email protected]>
15884 L:      [email protected]
15885 L:      [email protected]
15886 S:      Maintained
15887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
15888 F:      fs/proc/proc_sysctl.c
15889 F:      include/linux/sysctl.h
15890 F:      kernel/sysctl-test.c
15891 F:      kernel/sysctl.c
15892 F:      tools/testing/selftests/sysctl/
15893
15894 PS3 NETWORK SUPPORT
15895 M:      Geoff Levand <[email protected]>
15896 L:      [email protected]
15897 L:      [email protected]
15898 S:      Maintained
15899 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15900
15901 PS3 PLATFORM SUPPORT
15902 M:      Geoff Levand <[email protected]>
15903 L:      [email protected]
15904 S:      Maintained
15905 F:      arch/powerpc/boot/ps3*
15906 F:      arch/powerpc/include/asm/lv1call.h
15907 F:      arch/powerpc/include/asm/ps3*.h
15908 F:      arch/powerpc/platforms/ps3/
15909 F:      drivers/*/ps3*
15910 F:      drivers/ps3/
15911 F:      drivers/rtc/rtc-ps3.c
15912 F:      drivers/usb/host/*ps3.c
15913 F:      sound/ppc/snd_ps3*
15914
15915 PS3VRAM DRIVER
15916 M:      Jim Paris <[email protected]>
15917 M:      Geoff Levand <[email protected]>
15918 L:      [email protected]
15919 S:      Maintained
15920 F:      drivers/block/ps3vram.c
15921
15922 PSAMPLE PACKET SAMPLING SUPPORT
15923 M:      Yotam Gigi <[email protected]>
15924 S:      Maintained
15925 F:      include/net/psample.h
15926 F:      include/uapi/linux/psample.h
15927 F:      net/psample
15928
15929 PSTORE FILESYSTEM
15930 M:      Kees Cook <[email protected]>
15931 M:      Anton Vorontsov <[email protected]>
15932 M:      Colin Cross <[email protected]>
15933 M:      Tony Luck <[email protected]>
15934 S:      Maintained
15935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15936 F:      Documentation/admin-guide/ramoops.rst
15937 F:      Documentation/admin-guide/pstore-blk.rst
15938 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
15939 F:      drivers/acpi/apei/erst.c
15940 F:      drivers/firmware/efi/efi-pstore.c
15941 F:      fs/pstore/
15942 F:      include/linux/pstore*
15943 K:      \b(pstore|ramoops)
15944
15945 PTP HARDWARE CLOCK SUPPORT
15946 M:      Richard Cochran <[email protected]>
15947 L:      [email protected]
15948 S:      Maintained
15949 W:      http://linuxptp.sourceforge.net/
15950 F:      Documentation/ABI/testing/sysfs-ptp
15951 F:      Documentation/driver-api/ptp.rst
15952 F:      drivers/net/phy/dp83640*
15953 F:      drivers/ptp/*
15954 F:      include/linux/ptp_cl*
15955
15956 PTP VIRTUAL CLOCK SUPPORT
15957 M:      Yangbo Lu <[email protected]>
15958 L:      [email protected]
15959 S:      Maintained
15960 F:      drivers/ptp/ptp_vclock.c
15961 F:      net/ethtool/phc_vclocks.c
15962
15963 PTRACE SUPPORT
15964 M:      Oleg Nesterov <[email protected]>
15965 S:      Maintained
15966 F:      arch/*/*/ptrace*.c
15967 F:      arch/*/include/asm/ptrace*.h
15968 F:      arch/*/ptrace*.c
15969 F:      include/asm-generic/syscall.h
15970 F:      include/linux/ptrace.h
15971 F:      include/linux/regset.h
15972 F:      include/uapi/linux/ptrace.h
15973 F:      include/uapi/linux/ptrace.h
15974 F:      kernel/ptrace.c
15975
15976 PULSE8-CEC DRIVER
15977 M:      Hans Verkuil <[email protected]>
15978 L:      [email protected]
15979 S:      Maintained
15980 T:      git git://linuxtv.org/media_tree.git
15981 F:      Documentation/admin-guide/media/pulse8-cec.rst
15982 F:      drivers/media/cec/usb/pulse8/
15983
15984 PVRUSB2 VIDEO4LINUX DRIVER
15985 M:      Mike Isely <[email protected]>
15986 L:      [email protected]       (subscribers-only)
15987 L:      [email protected]
15988 S:      Maintained
15989 W:      http://www.isely.net/pvrusb2/
15990 T:      git git://linuxtv.org/media_tree.git
15991 F:      Documentation/driver-api/media/drivers/pvrusb2*
15992 F:      drivers/media/usb/pvrusb2/
15993
15994 PWC WEBCAM DRIVER
15995 M:      Hans Verkuil <[email protected]>
15996 L:      [email protected]
15997 S:      Odd Fixes
15998 T:      git git://linuxtv.org/media_tree.git
15999 F:      drivers/media/usb/pwc/*
16000 F:      include/trace/events/pwc.h
16001
16002 PWM FAN DRIVER
16003 M:      Bartlomiej Zolnierkiewicz <[email protected]>
16004 L:      [email protected]
16005 S:      Supported
16006 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
16007 F:      Documentation/hwmon/pwm-fan.rst
16008 F:      drivers/hwmon/pwm-fan.c
16009
16010 PWM IR Transmitter
16011 M:      Sean Young <[email protected]>
16012 L:      [email protected]
16013 S:      Maintained
16014 F:      drivers/media/rc/pwm-ir-tx.c
16015
16016 PWM SUBSYSTEM
16017 M:      Thierry Reding <[email protected]>
16018 R:      Uwe Kleine-König <[email protected]>
16019 M:      Lee Jones <[email protected]>
16020 L:      [email protected]
16021 S:      Maintained
16022 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16024 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
16025 F:      Documentation/devicetree/bindings/pwm/
16026 F:      Documentation/driver-api/pwm.rst
16027 F:      drivers/gpio/gpio-mvebu.c
16028 F:      drivers/pwm/
16029 F:      drivers/video/backlight/pwm_bl.c
16030 F:      include/linux/pwm.h
16031 F:      include/linux/pwm_backlight.h
16032 K:      pwm_(config|apply_state|ops)
16033
16034 PXA GPIO DRIVER
16035 M:      Robert Jarzmik <[email protected]>
16036 L:      [email protected]
16037 S:      Maintained
16038 F:      drivers/gpio/gpio-pxa.c
16039
16040 PXA MMCI DRIVER
16041 S:      Orphan
16042
16043 PXA RTC DRIVER
16044 M:      Robert Jarzmik <[email protected]>
16045 L:      [email protected]
16046 S:      Maintained
16047
16048 PXA2xx/PXA3xx SUPPORT
16049 M:      Daniel Mack <[email protected]>
16050 M:      Haojian Zhuang <[email protected]>
16051 M:      Robert Jarzmik <[email protected]>
16052 L:      [email protected] (moderated for non-subscribers)
16053 S:      Maintained
16054 T:      git git://github.com/hzhuang1/linux.git
16055 T:      git git://github.com/rjarzmik/linux.git
16056 F:      arch/arm/boot/dts/pxa*
16057 F:      arch/arm/mach-pxa/
16058 F:      drivers/dma/pxa*
16059 F:      drivers/pcmcia/pxa2xx*
16060 F:      drivers/pinctrl/pxa/
16061 F:      drivers/spi/spi-pxa2xx*
16062 F:      drivers/usb/gadget/udc/pxa2*
16063 F:      include/sound/pxa2xx-lib.h
16064 F:      sound/arm/pxa*
16065 F:      sound/soc/pxa/
16066
16067 QAT DRIVER
16068 M:      Giovanni Cabiddu <[email protected]>
16069 L:      [email protected]
16070 S:      Supported
16071 F:      drivers/crypto/qat/
16072
16073 QCOM AUDIO (ASoC) DRIVERS
16074 M:      Srinivas Kandagatla <[email protected]>
16075 M:      Banajit Goswami <[email protected]>
16076 L:      [email protected] (moderated for non-subscribers)
16077 S:      Supported
16078 F:      sound/soc/codecs/lpass-va-macro.c
16079 F:      sound/soc/codecs/lpass-wsa-macro.*
16080 F:      sound/soc/codecs/msm8916-wcd-analog.c
16081 F:      sound/soc/codecs/msm8916-wcd-digital.c
16082 F:      sound/soc/codecs/wcd9335.*
16083 F:      sound/soc/codecs/wcd934x.c
16084 F:      sound/soc/codecs/wcd-clsh-v2.*
16085 F:      sound/soc/codecs/wsa881x.c
16086 F:      sound/soc/qcom/
16087
16088 QCOM EMBEDDED USB DEBUGGER (EUD)
16089 M:      Souradeep Chowdhury <[email protected]>
16090 L:      [email protected]
16091 S:      Maintained
16092 F:      Documentation/ABI/testing/sysfs-driver-eud
16093 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16094 F:      drivers/usb/misc/qcom_eud.c
16095
16096 QCOM IPA DRIVER
16097 M:      Alex Elder <[email protected]>
16098 L:      [email protected]
16099 S:      Supported
16100 F:      drivers/net/ipa/
16101
16102 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16103 M:      Gabriel Somlo <[email protected]>
16104 M:      "Michael S. Tsirkin" <[email protected]>
16105 L:      [email protected]
16106 S:      Maintained
16107 F:      drivers/firmware/qemu_fw_cfg.c
16108 F:      include/uapi/linux/qemu_fw_cfg.h
16109
16110 QIB DRIVER
16111 M:      Dennis Dalessandro <[email protected]>
16112 M:      Mike Marciniszyn <[email protected]>
16113 L:      [email protected]
16114 S:      Supported
16115 F:      drivers/infiniband/hw/qib/
16116
16117 QLOGIC QL41xxx FCOE DRIVER
16118 M:      Saurav Kashyap <[email protected]>
16119 M:      Javed Hasan <[email protected]>
16120 M:      [email protected]
16121 L:      [email protected]
16122 S:      Supported
16123 F:      drivers/scsi/qedf/
16124
16125 QLOGIC QL41xxx ISCSI DRIVER
16126 M:      Nilesh Javali <[email protected]>
16127 M:      Manish Rangankar <[email protected]>
16128 M:      [email protected]
16129 L:      [email protected]
16130 S:      Supported
16131 F:      drivers/scsi/qedi/
16132
16133 QLOGIC QL4xxx ETHERNET DRIVER
16134 M:      Ariel Elior <[email protected]>
16135 M:      Manish Chopra <[email protected]>
16136 L:      [email protected]
16137 S:      Supported
16138 F:      drivers/net/ethernet/qlogic/qed/
16139 F:      drivers/net/ethernet/qlogic/qede/
16140 F:      include/linux/qed/
16141
16142 QLOGIC QL4xxx RDMA DRIVER
16143 M:      Michal Kalderon <[email protected]>
16144 M:      Ariel Elior <[email protected]>
16145 L:      [email protected]
16146 S:      Supported
16147 F:      drivers/infiniband/hw/qedr/
16148 F:      include/uapi/rdma/qedr-abi.h
16149
16150 QLOGIC QLA1280 SCSI DRIVER
16151 M:      Michael Reed <[email protected]>
16152 L:      [email protected]
16153 S:      Maintained
16154 F:      drivers/scsi/qla1280.[ch]
16155
16156 QLOGIC QLA2XXX FC-SCSI DRIVER
16157 M:      Nilesh Javali <[email protected]>
16158 M:      [email protected]
16159 L:      [email protected]
16160 S:      Supported
16161 F:      drivers/scsi/qla2xxx/
16162
16163 QLOGIC QLA3XXX NETWORK DRIVER
16164 M:      [email protected]
16165 L:      [email protected]
16166 S:      Supported
16167 F:      drivers/net/ethernet/qlogic/qla3xxx.*
16168
16169 QLOGIC QLA4XXX iSCSI DRIVER
16170 M:      Nilesh Javali <[email protected]>
16171 M:      Manish Rangankar <[email protected]>
16172 M:      [email protected]
16173 L:      [email protected]
16174 S:      Supported
16175 F:      drivers/scsi/qla4xxx/
16176
16177 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16178 M:      Shahed Shaikh <[email protected]>
16179 M:      Manish Chopra <[email protected]>
16180 M:      [email protected]
16181 L:      [email protected]
16182 S:      Supported
16183 F:      drivers/net/ethernet/qlogic/qlcnic/
16184
16185 QLOGIC QLGE 10Gb ETHERNET DRIVER
16186 M:      Manish Chopra <[email protected]>
16187 M:      [email protected]
16188 M:      Coiby Xu <[email protected]>
16189 L:      [email protected]
16190 S:      Supported
16191 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
16192 F:      drivers/staging/qlge/
16193
16194 QM1D1B0004 MEDIA DRIVER
16195 M:      Akihiro Tsukada <[email protected]>
16196 L:      [email protected]
16197 S:      Odd Fixes
16198 F:      drivers/media/tuners/qm1d1b0004*
16199
16200 QM1D1C0042 MEDIA DRIVER
16201 M:      Akihiro Tsukada <[email protected]>
16202 L:      [email protected]
16203 S:      Odd Fixes
16204 F:      drivers/media/tuners/qm1d1c0042*
16205
16206 QNX4 FILESYSTEM
16207 M:      Anders Larsen <[email protected]>
16208 S:      Maintained
16209 W:      http://www.alarsen.net/linux/qnx4fs/
16210 F:      fs/qnx4/
16211 F:      include/uapi/linux/qnx4_fs.h
16212 F:      include/uapi/linux/qnxtypes.h
16213
16214 QORIQ DPAA2 FSL-MC BUS DRIVER
16215 M:      Stuart Yoder <[email protected]>
16216 M:      Laurentiu Tudor <[email protected]>
16217 L:      [email protected]
16218 S:      Maintained
16219 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
16220 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
16221 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
16222 F:      drivers/bus/fsl-mc/
16223 F:      include/uapi/linux/fsl_mc.h
16224
16225 QT1010 MEDIA DRIVER
16226 M:      Antti Palosaari <[email protected]>
16227 L:      [email protected]
16228 S:      Maintained
16229 W:      https://linuxtv.org
16230 W:      http://palosaari.fi/linux/
16231 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16232 T:      git git://linuxtv.org/anttip/media_tree.git
16233 F:      drivers/media/tuners/qt1010*
16234
16235 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
16236 M:      Kalle Valo <[email protected]>
16237 L:      [email protected]
16238 S:      Supported
16239 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
16240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16241 F:      drivers/net/wireless/ath/ath10k/
16242 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
16243
16244 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
16245 M:      Kalle Valo <[email protected]>
16246 L:      [email protected]
16247 S:      Supported
16248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16249 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
16250 F:      drivers/net/wireless/ath/ath11k/
16251
16252 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
16253 M:      Toke Høiland-Jørgensen <[email protected]>
16254 L:      [email protected]
16255 S:      Maintained
16256 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
16257 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
16258 F:      drivers/net/wireless/ath/ath9k/
16259
16260 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
16261 M:      Stephan Gerhold <[email protected]>
16262 L:      [email protected]
16263 L:      [email protected]
16264 S:      Maintained
16265 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
16266 F:      drivers/net/wwan/qcom_bam_dmux.c
16267
16268 QUALCOMM CAMERA SUBSYSTEM DRIVER
16269 M:      Robert Foss <[email protected]>
16270 M:      Todor Tomov <[email protected]>
16271 L:      [email protected]
16272 S:      Maintained
16273 F:      Documentation/admin-guide/media/qcom_camss.rst
16274 F:      Documentation/devicetree/bindings/media/*camss*
16275 F:      drivers/media/platform/qcom/camss/
16276
16277 QUALCOMM CLOCK DRIVERS
16278 M:      Bjorn Andersson <[email protected]>
16279 L:      [email protected]
16280 S:      Supported
16281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
16282 F:      Documentation/devicetree/bindings/clock/qcom,*
16283 F:      drivers/clk/qcom/
16284 F:      include/dt-bindings/clock/qcom,*
16285
16286 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
16287 M:      Niklas Cassel <[email protected]>
16288 L:      [email protected]
16289 L:      [email protected]
16290 S:      Maintained
16291 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
16292 F:      drivers/soc/qcom/cpr.c
16293
16294 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
16295 M:      Ilia Lin <[email protected]>
16296 L:      [email protected]
16297 S:      Maintained
16298 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
16299 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
16300 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
16301
16302 QUALCOMM CRYPTO DRIVERS
16303 M:      Thara Gopinath <[email protected]>
16304 L:      [email protected]
16305 L:      [email protected]
16306 S:      Maintained
16307 F:      drivers/crypto/qce/
16308
16309 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
16310 M:      Timur Tabi <[email protected]>
16311 L:      [email protected]
16312 S:      Maintained
16313 F:      drivers/net/ethernet/qualcomm/emac/
16314
16315 QUALCOMM ETHQOS ETHERNET DRIVER
16316 M:      Vinod Koul <[email protected]>
16317 L:      [email protected]
16318 S:      Maintained
16319 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
16320 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
16321
16322 QUALCOMM FASTRPC DRIVER
16323 M:      Srinivas Kandagatla <[email protected]>
16324 M:      Amol Maheshwari <[email protected]>
16325 L:      [email protected]
16326 S:      Maintained
16327 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
16328 F:      drivers/misc/fastrpc.c
16329 F:      include/uapi/misc/fastrpc.h
16330
16331 QUALCOMM HEXAGON ARCHITECTURE
16332 M:      Brian Cain <[email protected]>
16333 L:      [email protected]
16334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
16335 S:      Supported
16336 F:      arch/hexagon/
16337
16338 QUALCOMM HIDMA DRIVER
16339 M:      Sinan Kaya <[email protected]>
16340 L:      [email protected] (moderated for non-subscribers)
16341 L:      [email protected]
16342 L:      [email protected]
16343 S:      Supported
16344 F:      drivers/dma/qcom/hidma*
16345
16346 QUALCOMM I2C CCI DRIVER
16347 M:      Loic Poulain <[email protected]>
16348 M:      Robert Foss <[email protected]>
16349 L:      [email protected]
16350 L:      [email protected]
16351 S:      Maintained
16352 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
16353 F:      drivers/i2c/busses/i2c-qcom-cci.c
16354
16355 QUALCOMM IOMMU
16356 M:      Rob Clark <[email protected]>
16357 L:      [email protected]
16358 L:      [email protected]
16359 S:      Maintained
16360 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
16361
16362 QUALCOMM IPC ROUTER (QRTR) DRIVER
16363 M:      Manivannan Sadhasivam <[email protected]>
16364 L:      [email protected]
16365 S:      Maintained
16366 F:      include/trace/events/qrtr.h
16367 F:      include/uapi/linux/qrtr.h
16368 F:      net/qrtr/
16369
16370 QUALCOMM IPCC MAILBOX DRIVER
16371 M:      Manivannan Sadhasivam <[email protected]>
16372 L:      [email protected]
16373 S:      Supported
16374 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
16375 F:      drivers/mailbox/qcom-ipcc.c
16376 F:      include/dt-bindings/mailbox/qcom-ipcc.h
16377
16378 QUALCOMM IPQ4019 USB PHY DRIVER
16379 M:      Robert Marko <[email protected]>
16380 M:      Luka Perkov <[email protected]>
16381 L:      [email protected]
16382 S:      Maintained
16383 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
16384 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
16385
16386 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
16387 M:      Robert Marko <[email protected]>
16388 M:      Luka Perkov <[email protected]>
16389 L:      [email protected]
16390 S:      Maintained
16391 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
16392 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
16393
16394 QUALCOMM NAND CONTROLLER DRIVER
16395 M:      Manivannan Sadhasivam <[email protected]>
16396 L:      [email protected]
16397 L:      [email protected]
16398 S:      Maintained
16399 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
16400 F:      drivers/mtd/nand/raw/qcom_nandc.c
16401
16402 QUALCOMM RMNET DRIVER
16403 M:      Subash Abhinov Kasiviswanathan <[email protected]>
16404 M:      Sean Tranchetti <[email protected]>
16405 L:      [email protected]
16406 S:      Maintained
16407 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
16408 F:      drivers/net/ethernet/qualcomm/rmnet/
16409 F:      include/linux/if_rmnet.h
16410
16411 QUALCOMM TSENS THERMAL DRIVER
16412 M:      Amit Kucheria <[email protected]>
16413 M:      Thara Gopinath <[email protected]>
16414 L:      [email protected]
16415 L:      [email protected]
16416 S:      Maintained
16417 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
16418 F:      drivers/thermal/qcom/
16419
16420 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
16421 M:      Stanimir Varbanov <[email protected]>
16422 L:      [email protected]
16423 L:      [email protected]
16424 S:      Maintained
16425 T:      git git://linuxtv.org/media_tree.git
16426 F:      Documentation/devicetree/bindings/media/*venus*
16427 F:      drivers/media/platform/qcom/venus/
16428
16429 QUALCOMM WCN36XX WIRELESS DRIVER
16430 M:      Loic Poulain <[email protected]>
16431 L:      [email protected]
16432 S:      Supported
16433 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
16434 F:      drivers/net/wireless/ath/wcn36xx/
16435
16436 QUANTENNA QTNFMAC WIRELESS DRIVER
16437 M:      Igor Mitsyanko <[email protected]>
16438 R:      Sergey Matyukevich <[email protected]>
16439 L:      [email protected]
16440 S:      Maintained
16441 F:      drivers/net/wireless/quantenna
16442
16443 RADEON and AMDGPU DRM DRIVERS
16444 M:      Alex Deucher <[email protected]>
16445 M:      Christian König <[email protected]>
16446 M:      Pan, Xinhui <[email protected]>
16447 L:      [email protected]
16448 S:      Supported
16449 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
16450 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
16451 C:      irc://irc.oftc.net/radeon
16452 F:      drivers/gpu/drm/amd/
16453 F:      drivers/gpu/drm/radeon/
16454 F:      include/uapi/drm/amdgpu_drm.h
16455 F:      include/uapi/drm/radeon_drm.h
16456
16457 RADEON FRAMEBUFFER DISPLAY DRIVER
16458 M:      Benjamin Herrenschmidt <[email protected]>
16459 L:      [email protected]
16460 S:      Maintained
16461 F:      drivers/video/fbdev/aty/radeon*
16462 F:      include/uapi/linux/radeonfb.h
16463
16464 RADIOSHARK RADIO DRIVER
16465 M:      Hans Verkuil <[email protected]>
16466 L:      [email protected]
16467 S:      Maintained
16468 T:      git git://linuxtv.org/media_tree.git
16469 F:      drivers/media/radio/radio-shark.c
16470
16471 RADIOSHARK2 RADIO DRIVER
16472 M:      Hans Verkuil <[email protected]>
16473 L:      [email protected]
16474 S:      Maintained
16475 T:      git git://linuxtv.org/media_tree.git
16476 F:      drivers/media/radio/radio-shark2.c
16477 F:      drivers/media/radio/radio-tea5777.c
16478
16479 RADOS BLOCK DEVICE (RBD)
16480 M:      Ilya Dryomov <[email protected]>
16481 R:      Dongsheng Yang <[email protected]>
16482 L:      [email protected]
16483 S:      Supported
16484 W:      http://ceph.com/
16485 T:      git git://github.com/ceph/ceph-client.git
16486 F:      Documentation/ABI/testing/sysfs-bus-rbd
16487 F:      drivers/block/rbd.c
16488 F:      drivers/block/rbd_types.h
16489
16490 RAGE128 FRAMEBUFFER DISPLAY DRIVER
16491 M:      Paul Mackerras <[email protected]>
16492 L:      [email protected]
16493 S:      Maintained
16494 F:      drivers/video/fbdev/aty/aty128fb.c
16495
16496 RAINSHADOW-CEC DRIVER
16497 M:      Hans Verkuil <[email protected]>
16498 L:      [email protected]
16499 S:      Maintained
16500 T:      git git://linuxtv.org/media_tree.git
16501 F:      drivers/media/cec/usb/rainshadow/
16502
16503 RALINK MIPS ARCHITECTURE
16504 M:      John Crispin <[email protected]>
16505 L:      [email protected]
16506 S:      Maintained
16507 F:      arch/mips/ralink
16508
16509 RALINK MT7621 MIPS ARCHITECTURE
16510 M:      Arınç ÜNAL <[email protected]>
16511 M:      Sergio Paracuellos <[email protected]>
16512 L:      [email protected]
16513 S:      Maintained
16514 F:      arch/mips/boot/dts/ralink/mt7621*
16515
16516 RALINK RT2X00 WIRELESS LAN DRIVER
16517 M:      Stanislaw Gruszka <[email protected]>
16518 M:      Helmut Schaa <[email protected]>
16519 L:      [email protected]
16520 S:      Maintained
16521 F:      drivers/net/wireless/ralink/rt2x00/
16522
16523 RAMDISK RAM BLOCK DEVICE DRIVER
16524 M:      Jens Axboe <[email protected]>
16525 S:      Maintained
16526 F:      Documentation/admin-guide/blockdev/ramdisk.rst
16527 F:      drivers/block/brd.c
16528
16529 RANCHU VIRTUAL BOARD FOR MIPS
16530 M:      Miodrag Dinic <[email protected]>
16531 L:      [email protected]
16532 S:      Supported
16533 F:      arch/mips/configs/generic/board-ranchu.config
16534 F:      arch/mips/generic/board-ranchu.c
16535
16536 RANDOM NUMBER DRIVER
16537 M:      "Theodore Ts'o" <[email protected]>
16538 M:      Jason A. Donenfeld <[email protected]>
16539 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
16540 S:      Maintained
16541 F:      drivers/char/random.c
16542 F:      drivers/virt/vmgenid.c
16543
16544 RAPIDIO SUBSYSTEM
16545 M:      Matt Porter <[email protected]>
16546 M:      Alexandre Bounine <[email protected]>
16547 S:      Maintained
16548 F:      drivers/rapidio/
16549
16550 RAS INFRASTRUCTURE
16551 M:      Tony Luck <[email protected]>
16552 M:      Borislav Petkov <[email protected]>
16553 L:      [email protected]
16554 S:      Maintained
16555 F:      Documentation/admin-guide/ras.rst
16556 F:      drivers/ras/
16557 F:      include/linux/ras.h
16558 F:      include/ras/ras_event.h
16559
16560 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
16561 L:      [email protected]
16562 S:      Orphan
16563 F:      drivers/net/wireless/ray*
16564
16565 RC-CORE / LIRC FRAMEWORK
16566 M:      Sean Young <[email protected]>
16567 L:      [email protected]
16568 S:      Maintained
16569 W:      http://linuxtv.org
16570 T:      git git://linuxtv.org/media_tree.git
16571 F:      Documentation/driver-api/media/rc-core.rst
16572 F:      Documentation/userspace-api/media/rc/
16573 F:      drivers/media/rc/
16574 F:      include/media/rc-map.h
16575 F:      include/media/rc-core.h
16576 F:      include/uapi/linux/lirc.h
16577
16578 RCMM REMOTE CONTROLS DECODER
16579 M:      Patrick Lerda <[email protected]>
16580 S:      Maintained
16581 F:      drivers/media/rc/ir-rcmm-decoder.c
16582
16583 RCUTORTURE TEST FRAMEWORK
16584 M:      "Paul E. McKenney" <[email protected]>
16585 M:      Josh Triplett <[email protected]>
16586 R:      Steven Rostedt <[email protected]>
16587 R:      Mathieu Desnoyers <[email protected]>
16588 R:      Lai Jiangshan <[email protected]>
16589 L:      [email protected]
16590 S:      Supported
16591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16592 F:      tools/testing/selftests/rcutorture
16593
16594 RDACM20 Camera Sensor
16595 M:      Jacopo Mondi <[email protected]>
16596 M:      Kieran Bingham <[email protected]>
16597 M:      Laurent Pinchart <[email protected]>
16598 M:      Niklas Söderlund <[email protected]>
16599 L:      [email protected]
16600 S:      Maintained
16601 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16602 F:      drivers/media/i2c/max9271.c
16603 F:      drivers/media/i2c/max9271.h
16604 F:      drivers/media/i2c/rdacm20.c
16605
16606 RDACM21 Camera Sensor
16607 M:      Jacopo Mondi <[email protected]>
16608 M:      Kieran Bingham <[email protected]>
16609 M:      Laurent Pinchart <[email protected]>
16610 M:      Niklas Söderlund <[email protected]>
16611 L:      [email protected]
16612 S:      Maintained
16613 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16614 F:      drivers/media/i2c/max9271.c
16615 F:      drivers/media/i2c/max9271.h
16616 F:      drivers/media/i2c/rdacm21.c
16617
16618 RDC R-321X SoC
16619 M:      Florian Fainelli <[email protected]>
16620 S:      Maintained
16621
16622 RDC R6040 FAST ETHERNET DRIVER
16623 M:      Florian Fainelli <[email protected]>
16624 L:      [email protected]
16625 S:      Maintained
16626 F:      drivers/net/ethernet/rdc/r6040.c
16627
16628 RDMAVT - RDMA verbs software
16629 M:      Dennis Dalessandro <[email protected]>
16630 M:      Mike Marciniszyn <[email protected]>
16631 L:      [email protected]
16632 S:      Supported
16633 F:      drivers/infiniband/sw/rdmavt
16634
16635 RDS - RELIABLE DATAGRAM SOCKETS
16636 M:      Santosh Shilimkar <[email protected]>
16637 L:      [email protected]
16638 L:      [email protected]
16639 L:      [email protected] (moderated for non-subscribers)
16640 S:      Supported
16641 W:      https://oss.oracle.com/projects/rds/
16642 F:      Documentation/networking/rds.rst
16643 F:      net/rds/
16644
16645 RDT - RESOURCE ALLOCATION
16646 M:      Fenghua Yu <[email protected]>
16647 M:      Reinette Chatre <[email protected]>
16648 L:      [email protected]
16649 S:      Supported
16650 F:      Documentation/x86/resctrl*
16651 F:      arch/x86/include/asm/resctrl.h
16652 F:      arch/x86/kernel/cpu/resctrl/
16653 F:      tools/testing/selftests/resctrl/
16654
16655 READ-COPY UPDATE (RCU)
16656 M:      "Paul E. McKenney" <[email protected]>
16657 M:      Frederic Weisbecker <[email protected]> (kernel/rcu/tree_nocb.h)
16658 M:      Neeraj Upadhyay <[email protected]> (kernel/rcu/tasks.h)
16659 M:      Josh Triplett <[email protected]>
16660 R:      Steven Rostedt <[email protected]>
16661 R:      Mathieu Desnoyers <[email protected]>
16662 R:      Lai Jiangshan <[email protected]>
16663 R:      Joel Fernandes <[email protected]>
16664 L:      [email protected]
16665 S:      Supported
16666 W:      http://www.rdrop.com/users/paulmck/RCU/
16667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16668 F:      Documentation/RCU/
16669 F:      include/linux/rcu*
16670 F:      kernel/rcu/
16671 X:      Documentation/RCU/torture.rst
16672 X:      include/linux/srcu*.h
16673 X:      kernel/rcu/srcu*.c
16674
16675 REAL TIME CLOCK (RTC) SUBSYSTEM
16676 M:      Alessandro Zummo <[email protected]>
16677 M:      Alexandre Belloni <[email protected]>
16678 L:      [email protected]
16679 S:      Maintained
16680 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
16681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
16682 F:      Documentation/admin-guide/rtc.rst
16683 F:      Documentation/devicetree/bindings/rtc/
16684 F:      drivers/rtc/
16685 F:      include/linux/platform_data/rtc-*
16686 F:      include/linux/rtc.h
16687 F:      include/linux/rtc/
16688 F:      include/uapi/linux/rtc.h
16689 F:      tools/testing/selftests/rtc/
16690
16691 REALTEK AUDIO CODECS
16692 M:      Oder Chiou <[email protected]>
16693 S:      Maintained
16694 F:      include/sound/rt*.h
16695 F:      sound/soc/codecs/rt*
16696
16697 REALTEK OTTO WATCHDOG
16698 M:      Sander Vanheule <[email protected]>
16699 L:      [email protected]
16700 S:      Maintained
16701 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
16702 F:      drivers/watchdog/realtek_otto_wdt.c
16703
16704 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16705 M:      Linus Walleij <[email protected]>
16706 M:      Alvin Šipraga <[email protected]>
16707 S:      Maintained
16708 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
16709 F:      drivers/net/dsa/realtek/*
16710
16711 REALTEK WIRELESS DRIVER (rtlwifi family)
16712 M:      Ping-Ke Shih <[email protected]>
16713 L:      [email protected]
16714 S:      Maintained
16715 W:      https://wireless.wiki.kernel.org/
16716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16717 F:      drivers/net/wireless/realtek/rtlwifi/
16718
16719 REALTEK WIRELESS DRIVER (rtw88)
16720 M:      Yan-Hsuan Chuang <[email protected]>
16721 L:      [email protected]
16722 S:      Maintained
16723 F:      drivers/net/wireless/realtek/rtw88/
16724
16725 REALTEK WIRELESS DRIVER (rtw89)
16726 M:      Ping-Ke Shih <[email protected]>
16727 L:      [email protected]
16728 S:      Maintained
16729 F:      drivers/net/wireless/realtek/rtw89/
16730
16731 REDPINE WIRELESS DRIVER
16732 M:      Amitkumar Karwar <[email protected]>
16733 M:      Siva Rebbagondla <[email protected]>
16734 L:      [email protected]
16735 S:      Maintained
16736 F:      drivers/net/wireless/rsi/
16737
16738 REGISTER MAP ABSTRACTION
16739 M:      Mark Brown <[email protected]>
16740 L:      [email protected]
16741 S:      Supported
16742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16743 F:      Documentation/devicetree/bindings/regmap/
16744 F:      drivers/base/regmap/
16745 F:      include/linux/regmap.h
16746
16747 REISERFS FILE SYSTEM
16748 L:      [email protected]
16749 S:      Supported
16750 F:      fs/reiserfs/
16751
16752 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16753 M:      Bjorn Andersson <[email protected]>
16754 M:      Mathieu Poirier <[email protected]>
16755 L:      [email protected]
16756 S:      Maintained
16757 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
16758 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16759 F:      Documentation/devicetree/bindings/remoteproc/
16760 F:      Documentation/staging/remoteproc.rst
16761 F:      drivers/remoteproc/
16762 F:      include/linux/remoteproc.h
16763 F:      include/linux/remoteproc/
16764
16765 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16766 M:      Bjorn Andersson <[email protected]>
16767 M:      Mathieu Poirier <[email protected]>
16768 L:      [email protected]
16769 S:      Maintained
16770 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
16771 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16772 F:      Documentation/staging/rpmsg.rst
16773 F:      drivers/rpmsg/
16774 F:      include/linux/rpmsg.h
16775 F:      include/linux/rpmsg/
16776 F:      include/uapi/linux/rpmsg.h
16777 F:      samples/rpmsg/
16778
16779 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16780 M:      Stephan Gerhold <[email protected]>
16781 L:      [email protected]
16782 L:      [email protected]
16783 S:      Maintained
16784 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16785
16786 RENESAS CLOCK DRIVERS
16787 M:      Geert Uytterhoeven <[email protected]>
16788 L:      [email protected]
16789 S:      Supported
16790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16791 F:      Documentation/devicetree/bindings/clock/renesas,*
16792 F:      drivers/clk/renesas/
16793
16794 RENESAS EMEV2 I2C DRIVER
16795 M:      Wolfram Sang <[email protected]>
16796 L:      [email protected]
16797 S:      Supported
16798 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16799 F:      drivers/i2c/busses/i2c-emev2.c
16800
16801 RENESAS ETHERNET DRIVERS
16802 R:      Sergey Shtylyov <[email protected]>
16803 L:      [email protected]
16804 L:      [email protected]
16805 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16806 F:      drivers/net/ethernet/renesas/
16807 F:      include/linux/sh_eth.h
16808
16809 RENESAS R-CAR GYROADC DRIVER
16810 M:      Marek Vasut <[email protected]>
16811 L:      [email protected]
16812 S:      Supported
16813 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16814 F:      drivers/iio/adc/rcar-gyroadc.c
16815
16816 RENESAS R-CAR I2C DRIVERS
16817 M:      Wolfram Sang <[email protected]>
16818 L:      [email protected]
16819 S:      Supported
16820 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16821 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16822 F:      drivers/i2c/busses/i2c-rcar.c
16823 F:      drivers/i2c/busses/i2c-sh_mobile.c
16824
16825 RENESAS R-CAR SATA DRIVER
16826 R:      Sergey Shtylyov <[email protected]>
16827 S:      Supported
16828 L:      [email protected]
16829 L:      [email protected]
16830 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
16831 F:      drivers/ata/sata_rcar.c
16832
16833 RENESAS R-CAR THERMAL DRIVERS
16834 M:      Niklas Söderlund <[email protected]>
16835 L:      [email protected]
16836 S:      Supported
16837 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16838 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16839 F:      drivers/thermal/rcar_gen3_thermal.c
16840 F:      drivers/thermal/rcar_thermal.c
16841
16842 RENESAS RIIC DRIVER
16843 M:      Chris Brandt <[email protected]>
16844 L:      [email protected]
16845 S:      Supported
16846 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16847 F:      drivers/i2c/busses/i2c-riic.c
16848
16849 RENESAS USB PHY DRIVER
16850 M:      Yoshihiro Shimoda <[email protected]>
16851 L:      [email protected]
16852 S:      Maintained
16853 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16854
16855 RENESAS RZ/G2L A/D DRIVER
16856 M:      Lad Prabhakar <[email protected]>
16857 L:      [email protected]
16858 L:      [email protected]
16859 S:      Supported
16860 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16861 F:      drivers/iio/adc/rzg2l_adc.c
16862
16863 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
16864 M:      Miquel Raynal <[email protected]>
16865 L:      [email protected]
16866 L:      [email protected]
16867 S:      Maintained
16868 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
16869 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
16870
16871 RESET CONTROLLER FRAMEWORK
16872 M:      Philipp Zabel <[email protected]>
16873 S:      Maintained
16874 T:      git git://git.pengutronix.de/git/pza/linux
16875 F:      Documentation/devicetree/bindings/reset/
16876 F:      Documentation/driver-api/reset.rst
16877 F:      drivers/reset/
16878 F:      include/dt-bindings/reset/
16879 F:      include/linux/reset-controller.h
16880 F:      include/linux/reset.h
16881 F:      include/linux/reset/
16882 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16883
16884 RESTARTABLE SEQUENCES SUPPORT
16885 M:      Mathieu Desnoyers <[email protected]>
16886 M:      Peter Zijlstra <[email protected]>
16887 M:      "Paul E. McKenney" <[email protected]>
16888 M:      Boqun Feng <[email protected]>
16889 L:      [email protected]
16890 S:      Supported
16891 F:      include/trace/events/rseq.h
16892 F:      include/uapi/linux/rseq.h
16893 F:      kernel/rseq.c
16894 F:      tools/testing/selftests/rseq/
16895
16896 RFKILL
16897 M:      Johannes Berg <[email protected]>
16898 L:      [email protected]
16899 S:      Maintained
16900 W:      https://wireless.wiki.kernel.org/
16901 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
16902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
16903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
16904 F:      Documentation/ABI/stable/sysfs-class-rfkill
16905 F:      Documentation/driver-api/rfkill.rst
16906 F:      include/linux/rfkill.h
16907 F:      include/uapi/linux/rfkill.h
16908 F:      net/rfkill/
16909
16910 RHASHTABLE
16911 M:      Thomas Graf <[email protected]>
16912 M:      Herbert Xu <[email protected]>
16913 L:      [email protected]
16914 S:      Maintained
16915 F:      include/linux/rhashtable-types.h
16916 F:      include/linux/rhashtable.h
16917 F:      lib/rhashtable.c
16918 F:      lib/test_rhashtable.c
16919
16920 RICOH R5C592 MEMORYSTICK DRIVER
16921 M:      Maxim Levitsky <[email protected]>
16922 S:      Maintained
16923 F:      drivers/memstick/host/r592.*
16924
16925 RICOH SMARTMEDIA/XD DRIVER
16926 M:      Maxim Levitsky <[email protected]>
16927 S:      Maintained
16928 F:      drivers/mtd/nand/raw/r852.c
16929 F:      drivers/mtd/nand/raw/r852.h
16930
16931 RISC-V PMU DRIVERS
16932 M:      Atish Patra <[email protected]>
16933 R:      Anup Patel <[email protected]>
16934 L:      [email protected]
16935 S:      Supported
16936 F:      drivers/perf/riscv_pmu.c
16937 F:      drivers/perf/riscv_pmu_legacy.c
16938 F:      drivers/perf/riscv_pmu_sbi.c
16939
16940 RISC-V ARCHITECTURE
16941 M:      Paul Walmsley <[email protected]>
16942 M:      Palmer Dabbelt <[email protected]>
16943 M:      Albert Ou <[email protected]>
16944 L:      [email protected]
16945 S:      Supported
16946 P:      Documentation/riscv/patch-acceptance.rst
16947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16948 F:      arch/riscv/
16949 N:      riscv
16950 K:      riscv
16951
16952 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16953 M:      Lewis Hanly <[email protected]>
16954 M:      Conor Dooley <[email protected]>
16955 L:      [email protected]
16956 S:      Supported
16957 F:      arch/riscv/boot/dts/microchip/
16958 F:      drivers/mailbox/mailbox-mpfs.c
16959 F:      drivers/soc/microchip/
16960 F:      include/soc/microchip/mpfs.h
16961
16962 RNBD BLOCK DRIVERS
16963 M:      Md. Haris Iqbal <[email protected]>
16964 M:      Jack Wang <[email protected]>
16965 L:      [email protected]
16966 S:      Maintained
16967 F:      drivers/block/rnbd/
16968
16969 ROCCAT DRIVERS
16970 M:      Stefan Achatz <[email protected]>
16971 S:      Maintained
16972 W:      http://sourceforge.net/projects/roccat/
16973 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16974 F:      drivers/hid/hid-roccat*
16975 F:      include/linux/hid-roccat*
16976
16977 ROCKCHIP I2S TDM DRIVER
16978 M:      Nicolas Frattaroli <[email protected]>
16979 L:      [email protected]
16980 S:      Maintained
16981 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
16982 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
16983
16984 ROCKCHIP ISP V1 DRIVER
16985 M:      Dafna Hirschfeld <[email protected]>
16986 L:      [email protected]
16987 L:      [email protected]
16988 S:      Maintained
16989 F:      Documentation/admin-guide/media/rkisp1.rst
16990 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16991 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16992 F:      drivers/media/platform/rockchip/rkisp1
16993 F:      include/uapi/linux/rkisp1-config.h
16994
16995 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16996 M:      Jacob Chen <[email protected]>
16997 M:      Ezequiel Garcia <[email protected]>
16998 L:      [email protected]
16999 L:      [email protected]
17000 S:      Maintained
17001 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17002 F:      drivers/media/platform/rockchip/rga/
17003
17004 ROCKCHIP VIDEO DECODER DRIVER
17005 M:      Ezequiel Garcia <[email protected]>
17006 L:      [email protected]
17007 L:      [email protected]
17008 S:      Maintained
17009 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17010 F:      drivers/staging/media/rkvdec/
17011
17012 ROCKER DRIVER
17013 M:      Jiri Pirko <[email protected]>
17014 L:      [email protected]
17015 S:      Supported
17016 F:      drivers/net/ethernet/rocker/
17017
17018 ROCKETPORT EXPRESS/INFINITY DRIVER
17019 M:      Kevin Cernekee <[email protected]>
17020 L:      [email protected]
17021 S:      Odd Fixes
17022 F:      drivers/tty/serial/rp2.*
17023
17024 ROHM BD99954 CHARGER IC
17025 R:      Matti Vaittinen <[email protected]>
17026 L:      [email protected]
17027 S:      Supported
17028 F:      drivers/power/supply/bd99954-charger.c
17029 F:      drivers/power/supply/bd99954-charger.h
17030
17031 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17032 M:      Tomasz Duszynski <[email protected]>
17033 S:      Maintained
17034 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
17035 F:      drivers/iio/light/bh1750.c
17036
17037 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17038 M:      Marek Vasut <[email protected]>
17039 L:      [email protected]
17040 L:      [email protected]
17041 S:      Supported
17042 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17043 F:      drivers/gpio/gpio-bd9571mwv.c
17044 F:      drivers/mfd/bd9571mwv.c
17045 F:      drivers/regulator/bd9571mwv-regulator.c
17046 F:      include/linux/mfd/bd9571mwv.h
17047
17048 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17049 R:      Matti Vaittinen <[email protected]>
17050 L:      [email protected]
17051 S:      Supported
17052 F:      drivers/clk/clk-bd718x7.c
17053 F:      drivers/gpio/gpio-bd71815.c
17054 F:      drivers/gpio/gpio-bd71828.c
17055 F:      drivers/mfd/rohm-bd71828.c
17056 F:      drivers/mfd/rohm-bd718x7.c
17057 F:      drivers/mfd/rohm-bd9576.c
17058 F:      drivers/regulator/bd71815-regulator.c
17059 F:      drivers/regulator/bd71828-regulator.c
17060 F:      drivers/regulator/bd718x7-regulator.c
17061 F:      drivers/regulator/bd9576-regulator.c
17062 F:      drivers/regulator/rohm-regulator.c
17063 F:      drivers/rtc/rtc-bd70528.c
17064 F:      drivers/watchdog/bd9576_wdt.c
17065 F:      include/linux/mfd/rohm-bd71815.h
17066 F:      include/linux/mfd/rohm-bd71828.h
17067 F:      include/linux/mfd/rohm-bd718x7.h
17068 F:      include/linux/mfd/rohm-bd957x.h
17069 F:      include/linux/mfd/rohm-generic.h
17070 F:      include/linux/mfd/rohm-shared.h
17071
17072 ROSE NETWORK LAYER
17073 M:      Ralf Baechle <[email protected]>
17074 L:      [email protected]
17075 S:      Maintained
17076 W:      http://www.linux-ax25.org/
17077 F:      include/net/rose.h
17078 F:      include/uapi/linux/rose.h
17079 F:      net/rose/
17080
17081 ROTATION DRIVER FOR ALLWINNER A83T
17082 M:      Jernej Skrabec <[email protected]>
17083 L:      [email protected]
17084 S:      Maintained
17085 T:      git git://linuxtv.org/media_tree.git
17086 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
17087 F:      drivers/media/platform/sunxi/sun8i-rotate/
17088
17089 RPMSG TTY DRIVER
17090 M:      Arnaud Pouliquen <[email protected]>
17091 L:      [email protected]
17092 S:      Maintained
17093 F:      drivers/tty/rpmsg_tty.c
17094
17095 RTL2830 MEDIA DRIVER
17096 M:      Antti Palosaari <[email protected]>
17097 L:      [email protected]
17098 S:      Maintained
17099 W:      https://linuxtv.org
17100 W:      http://palosaari.fi/linux/
17101 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17102 T:      git git://linuxtv.org/anttip/media_tree.git
17103 F:      drivers/media/dvb-frontends/rtl2830*
17104
17105 RTL2832 MEDIA DRIVER
17106 M:      Antti Palosaari <[email protected]>
17107 L:      [email protected]
17108 S:      Maintained
17109 W:      https://linuxtv.org
17110 W:      http://palosaari.fi/linux/
17111 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17112 T:      git git://linuxtv.org/anttip/media_tree.git
17113 F:      drivers/media/dvb-frontends/rtl2832*
17114
17115 RTL2832_SDR MEDIA DRIVER
17116 M:      Antti Palosaari <[email protected]>
17117 L:      [email protected]
17118 S:      Maintained
17119 W:      https://linuxtv.org
17120 W:      http://palosaari.fi/linux/
17121 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17122 T:      git git://linuxtv.org/anttip/media_tree.git
17123 F:      drivers/media/dvb-frontends/rtl2832_sdr*
17124
17125 RTL8180 WIRELESS DRIVER
17126 L:      [email protected]
17127 S:      Orphan
17128 W:      https://wireless.wiki.kernel.org/
17129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17130 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
17131
17132 RTL8187 WIRELESS DRIVER
17133 M:      Herton Ronaldo Krzesinski <[email protected]>
17134 M:      Hin-Tak Leung <[email protected]>
17135 M:      Larry Finger <[email protected]>
17136 L:      [email protected]
17137 S:      Maintained
17138 W:      https://wireless.wiki.kernel.org/
17139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17140 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
17141
17142 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
17143 M:      Jes Sorensen <[email protected]>
17144 L:      [email protected]
17145 S:      Maintained
17146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
17147 F:      drivers/net/wireless/realtek/rtl8xxxu/
17148
17149 RTRS TRANSPORT DRIVERS
17150 M:      Md. Haris Iqbal <[email protected]>
17151 M:      Jack Wang <[email protected]>
17152 L:      [email protected]
17153 S:      Maintained
17154 F:      drivers/infiniband/ulp/rtrs/
17155
17156 RXRPC SOCKETS (AF_RXRPC)
17157 M:      David Howells <[email protected]>
17158 M:      Marc Dionne <[email protected]>
17159 L:      [email protected]
17160 S:      Supported
17161 W:      https://www.infradead.org/~dhowells/kafs/
17162 F:      Documentation/networking/rxrpc.rst
17163 F:      include/keys/rxrpc-type.h
17164 F:      include/net/af_rxrpc.h
17165 F:      include/trace/events/rxrpc.h
17166 F:      include/uapi/linux/rxrpc.h
17167 F:      net/rxrpc/
17168
17169 S3 SAVAGE FRAMEBUFFER DRIVER
17170 M:      Antonino Daplas <[email protected]>
17171 L:      [email protected]
17172 S:      Maintained
17173 F:      drivers/video/fbdev/savage/
17174
17175 S390
17176 M:      Heiko Carstens <[email protected]>
17177 M:      Vasily Gorbik <[email protected]>
17178 M:      Alexander Gordeev <[email protected]>
17179 R:      Christian Borntraeger <[email protected]>
17180 R:      Sven Schnelle <[email protected]>
17181 L:      [email protected]
17182 S:      Supported
17183 W:      http://www.ibm.com/developerworks/linux/linux390/
17184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
17185 F:      Documentation/driver-api/s390-drivers.rst
17186 F:      Documentation/s390/
17187 F:      arch/s390/
17188 F:      drivers/s390/
17189
17190 S390 COMMON I/O LAYER
17191 M:      Vineeth Vijayan <[email protected]>
17192 M:      Peter Oberparleiter <[email protected]>
17193 L:      [email protected]
17194 S:      Supported
17195 W:      http://www.ibm.com/developerworks/linux/linux390/
17196 F:      drivers/s390/cio/
17197
17198 S390 DASD DRIVER
17199 M:      Stefan Haberland <[email protected]>
17200 M:      Jan Hoeppner <[email protected]>
17201 L:      [email protected]
17202 S:      Supported
17203 W:      http://www.ibm.com/developerworks/linux/linux390/
17204 F:      block/partitions/ibm.c
17205 F:      drivers/s390/block/dasd*
17206 F:      include/linux/dasd_mod.h
17207
17208 S390 IOMMU (PCI)
17209 M:      Matthew Rosato <[email protected]>
17210 M:      Gerald Schaefer <[email protected]>
17211 L:      [email protected]
17212 S:      Supported
17213 W:      http://www.ibm.com/developerworks/linux/linux390/
17214 F:      drivers/iommu/s390-iommu.c
17215
17216 S390 IUCV NETWORK LAYER
17217 M:      Alexandra Winter <[email protected]>
17218 M:      Wenjia Zhang <[email protected]>
17219 L:      [email protected]
17220 L:      [email protected]
17221 S:      Supported
17222 W:      http://www.ibm.com/developerworks/linux/linux390/
17223 F:      drivers/s390/net/*iucv*
17224 F:      include/net/iucv/
17225 F:      net/iucv/
17226
17227 S390 NETWORK DRIVERS
17228 M:      Alexandra Winter <[email protected]>
17229 M:      Wenjia Zhang <[email protected]>
17230 L:      [email protected]
17231 L:      [email protected]
17232 S:      Supported
17233 W:      http://www.ibm.com/developerworks/linux/linux390/
17234 F:      drivers/s390/net/
17235
17236 S390 PCI SUBSYSTEM
17237 M:      Niklas Schnelle <[email protected]>
17238 M:      Gerald Schaefer <[email protected]>
17239 L:      [email protected]
17240 S:      Supported
17241 W:      http://www.ibm.com/developerworks/linux/linux390/
17242 F:      arch/s390/pci/
17243 F:      drivers/pci/hotplug/s390_pci_hpc.c
17244 F:      Documentation/s390/pci.rst
17245
17246 S390 VFIO AP DRIVER
17247 M:      Tony Krowiak <[email protected]>
17248 M:      Halil Pasic <[email protected]>
17249 M:      Jason Herne <[email protected]>
17250 L:      [email protected]
17251 S:      Supported
17252 W:      http://www.ibm.com/developerworks/linux/linux390/
17253 F:      Documentation/s390/vfio-ap.rst
17254 F:      drivers/s390/crypto/vfio_ap*
17255
17256 S390 VFIO-CCW DRIVER
17257 M:      Eric Farman <[email protected]>
17258 M:      Matthew Rosato <[email protected]>
17259 R:      Halil Pasic <[email protected]>
17260 L:      [email protected]
17261 L:      [email protected]
17262 S:      Supported
17263 F:      Documentation/s390/vfio-ccw.rst
17264 F:      drivers/s390/cio/vfio_ccw*
17265 F:      include/uapi/linux/vfio_ccw.h
17266
17267 S390 VFIO-PCI DRIVER
17268 M:      Matthew Rosato <[email protected]>
17269 M:      Eric Farman <[email protected]>
17270 L:      [email protected]
17271 L:      [email protected]
17272 S:      Supported
17273 F:      drivers/vfio/pci/vfio_pci_zdev.c
17274 F:      include/uapi/linux/vfio_zdev.h
17275
17276 S390 ZCRYPT DRIVER
17277 M:      Harald Freudenberger <[email protected]>
17278 L:      [email protected]
17279 S:      Supported
17280 W:      http://www.ibm.com/developerworks/linux/linux390/
17281 F:      drivers/s390/crypto/
17282
17283 S390 ZFCP DRIVER
17284 M:      Steffen Maier <[email protected]>
17285 M:      Benjamin Block <[email protected]>
17286 L:      [email protected]
17287 S:      Supported
17288 W:      http://www.ibm.com/developerworks/linux/linux390/
17289 F:      drivers/s390/scsi/zfcp_*
17290
17291 S3C ADC BATTERY DRIVER
17292 M:      Krzysztof Kozlowski <[email protected]>
17293 L:      [email protected]
17294 S:      Odd Fixes
17295 F:      drivers/power/supply/s3c_adc_battery.c
17296 F:      include/linux/s3c_adc_battery.h
17297
17298 S3C24XX SD/MMC Driver
17299 M:      Ben Dooks <[email protected]>
17300 L:      [email protected] (moderated for non-subscribers)
17301 S:      Supported
17302 F:      drivers/mmc/host/s3cmci.*
17303
17304 SAA6588 RDS RECEIVER DRIVER
17305 M:      Hans Verkuil <[email protected]>
17306 L:      [email protected]
17307 S:      Odd Fixes
17308 W:      https://linuxtv.org
17309 T:      git git://linuxtv.org/media_tree.git
17310 F:      drivers/media/i2c/saa6588*
17311
17312 SAA7134 VIDEO4LINUX DRIVER
17313 M:      Mauro Carvalho Chehab <[email protected]>
17314 L:      [email protected]
17315 S:      Odd fixes
17316 W:      https://linuxtv.org
17317 T:      git git://linuxtv.org/media_tree.git
17318 F:      Documentation/driver-api/media/drivers/saa7134*
17319 F:      drivers/media/pci/saa7134/
17320
17321 SAA7146 VIDEO4LINUX-2 DRIVER
17322 M:      Hans Verkuil <[email protected]>
17323 L:      [email protected]
17324 S:      Maintained
17325 T:      git git://linuxtv.org/media_tree.git
17326 F:      drivers/media/common/saa7146/
17327 F:      drivers/media/pci/saa7146/
17328 F:      include/media/drv-intf/saa7146*
17329
17330 SAFESETID SECURITY MODULE
17331 M:      Micah Morton <[email protected]>
17332 S:      Supported
17333 F:      Documentation/admin-guide/LSM/SafeSetID.rst
17334 F:      security/safesetid/
17335
17336 SAMSUNG AUDIO (ASoC) DRIVERS
17337 M:      Krzysztof Kozlowski <[email protected]>
17338 M:      Sylwester Nawrocki <[email protected]>
17339 L:      [email protected] (moderated for non-subscribers)
17340 S:      Supported
17341 F:      Documentation/devicetree/bindings/sound/samsung*
17342 F:      sound/soc/samsung/
17343
17344 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
17345 M:      Krzysztof Kozlowski <[email protected]>
17346 L:      [email protected]
17347 L:      [email protected]
17348 S:      Maintained
17349 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
17350 F:      drivers/crypto/exynos-rng.c
17351
17352 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
17353 M:      Łukasz Stelmach <[email protected]>
17354 L:      [email protected]
17355 S:      Maintained
17356 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
17357 F:      drivers/char/hw_random/exynos-trng.c
17358
17359 SAMSUNG FRAMEBUFFER DRIVER
17360 M:      Jingoo Han <[email protected]>
17361 L:      [email protected]
17362 S:      Maintained
17363 F:      drivers/video/fbdev/s3c-fb.c
17364
17365 SAMSUNG INTERCONNECT DRIVERS
17366 M:      Sylwester Nawrocki <[email protected]>
17367 M:      Artur Świgoń <[email protected]>
17368 L:      [email protected]
17369 L:      [email protected]
17370 S:      Supported
17371 F:      drivers/interconnect/samsung/
17372
17373 SAMSUNG LAPTOP DRIVER
17374 M:      Corentin Chary <[email protected]>
17375 L:      [email protected]
17376 S:      Maintained
17377 F:      drivers/platform/x86/samsung-laptop.c
17378
17379 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
17380 M:      Krzysztof Kozlowski <[email protected]>
17381 M:      Bartlomiej Zolnierkiewicz <[email protected]>
17382 L:      [email protected]
17383 L:      [email protected]
17384 S:      Supported
17385 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
17386 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
17387 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
17388 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
17389 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
17390 F:      drivers/clk/clk-s2mps11.c
17391 F:      drivers/mfd/sec*.c
17392 F:      drivers/regulator/s2m*.c
17393 F:      drivers/regulator/s5m*.c
17394 F:      drivers/rtc/rtc-s5m.c
17395 F:      include/linux/mfd/samsung/
17396
17397 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
17398 M:      Sylwester Nawrocki <[email protected]>
17399 L:      [email protected]
17400 L:      [email protected]
17401 S:      Maintained
17402 F:      drivers/media/platform/samsung/s3c-camif/
17403 F:      include/media/drv-intf/s3c_camif.h
17404
17405 SAMSUNG S3FWRN5 NFC DRIVER
17406 M:      Krzysztof Kozlowski <[email protected]>
17407 M:      Krzysztof Opasiak <[email protected]>
17408 L:      [email protected] (subscribers-only)
17409 S:      Maintained
17410 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
17411 F:      drivers/nfc/s3fwrn5
17412
17413 SAMSUNG S5C73M3 CAMERA DRIVER
17414 M:      Sylwester Nawrocki <[email protected]>
17415 M:      Andrzej Hajda <[email protected]>
17416 L:      [email protected]
17417 S:      Supported
17418 F:      drivers/media/i2c/s5c73m3/*
17419
17420 SAMSUNG S5K5BAF CAMERA DRIVER
17421 M:      Sylwester Nawrocki <[email protected]>
17422 M:      Andrzej Hajda <[email protected]>
17423 L:      [email protected]
17424 S:      Supported
17425 F:      drivers/media/i2c/s5k5baf.c
17426
17427 SAMSUNG S5P Security SubSystem (SSS) DRIVER
17428 M:      Krzysztof Kozlowski <[email protected]>
17429 M:      Vladimir Zapolskiy <[email protected]>
17430 L:      [email protected]
17431 L:      [email protected]
17432 S:      Maintained
17433 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
17434 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
17435 F:      drivers/crypto/s5p-sss.c
17436
17437 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
17438 M:      Sylwester Nawrocki <[email protected]>
17439 L:      [email protected]
17440 S:      Supported
17441 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17442 F:      drivers/media/platform/samsung/exynos4-is/
17443
17444 SAMSUNG SOC CLOCK DRIVERS
17445 M:      Sylwester Nawrocki <[email protected]>
17446 M:      Tomasz Figa <[email protected]>
17447 M:      Chanwoo Choi <[email protected]>
17448 R:      Alim Akhtar <[email protected]>
17449 L:      [email protected]
17450 S:      Supported
17451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
17452 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
17453 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
17454 F:      drivers/clk/samsung/
17455 F:      include/dt-bindings/clock/exynos*.h
17456 F:      include/dt-bindings/clock/s3c*.h
17457 F:      include/dt-bindings/clock/s5p*.h
17458 F:      include/dt-bindings/clock/samsung,*.h
17459 F:      include/linux/clk/samsung.h
17460 F:      include/linux/platform_data/clk-s3c2410.h
17461
17462 SAMSUNG SPI DRIVERS
17463 M:      Krzysztof Kozlowski <[email protected]>
17464 M:      Andi Shyti <[email protected]>
17465 L:      [email protected]
17466 L:      [email protected]
17467 S:      Maintained
17468 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
17469 F:      drivers/spi/spi-s3c*
17470 F:      include/linux/platform_data/spi-s3c64xx.h
17471 F:      include/linux/spi/s3c24xx-fiq.h
17472
17473 SAMSUNG SXGBE DRIVERS
17474 M:      Byungho An <[email protected]>
17475 L:      [email protected]
17476 S:      Supported
17477 F:      drivers/net/ethernet/samsung/sxgbe/
17478
17479 SAMSUNG THERMAL DRIVER
17480 M:      Bartlomiej Zolnierkiewicz <[email protected]>
17481 M:      Krzysztof Kozlowski <[email protected]>
17482 L:      [email protected]
17483 L:      [email protected]
17484 S:      Maintained
17485 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
17486 F:      drivers/thermal/samsung/
17487
17488 SAMSUNG USB2 PHY DRIVER
17489 M:      Sylwester Nawrocki <[email protected]>
17490 L:      [email protected]
17491 S:      Supported
17492 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
17493 F:      Documentation/driver-api/phy/samsung-usb2.rst
17494 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
17495 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
17496 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
17497 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
17498 F:      drivers/phy/samsung/phy-samsung-usb2.c
17499 F:      drivers/phy/samsung/phy-samsung-usb2.h
17500
17501 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
17502 M:      Paul Barker <[email protected]>
17503 R:      Marc Murphy <[email protected]>
17504 S:      Supported
17505 F:      arch/arm/boot/dts/am335x-sancloud*
17506
17507 SC1200 WDT DRIVER
17508 M:      Zwane Mwaikambo <[email protected]>
17509 S:      Maintained
17510 F:      drivers/watchdog/sc1200wdt.c
17511
17512 SCHEDULER
17513 M:      Ingo Molnar <[email protected]>
17514 M:      Peter Zijlstra <[email protected]>
17515 M:      Juri Lelli <[email protected]> (SCHED_DEADLINE)
17516 M:      Vincent Guittot <[email protected]> (SCHED_NORMAL)
17517 R:      Dietmar Eggemann <[email protected]> (SCHED_NORMAL)
17518 R:      Steven Rostedt <[email protected]> (SCHED_FIFO/SCHED_RR)
17519 R:      Ben Segall <[email protected]> (CONFIG_CFS_BANDWIDTH)
17520 R:      Mel Gorman <[email protected]> (CONFIG_NUMA_BALANCING)
17521 R:      Daniel Bristot de Oliveira <[email protected]> (SCHED_DEADLINE)
17522 L:      [email protected]
17523 S:      Maintained
17524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
17525 F:      include/linux/preempt.h
17526 F:      include/linux/sched.h
17527 F:      include/linux/wait.h
17528 F:      include/uapi/linux/sched.h
17529 F:      kernel/sched/
17530
17531 SCR24X CHIP CARD INTERFACE DRIVER
17532 M:      Lubomir Rintel <[email protected]>
17533 S:      Supported
17534 F:      drivers/char/pcmcia/scr24x_cs.c
17535
17536 SCSI RDMA PROTOCOL (SRP) INITIATOR
17537 M:      Bart Van Assche <[email protected]>
17538 L:      [email protected]
17539 S:      Supported
17540 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17541 F:      drivers/infiniband/ulp/srp/
17542 F:      include/scsi/srp.h
17543
17544 SCSI RDMA PROTOCOL (SRP) TARGET
17545 M:      Bart Van Assche <[email protected]>
17546 L:      [email protected]
17547 L:      [email protected]
17548 S:      Supported
17549 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17550 F:      drivers/infiniband/ulp/srpt/
17551
17552 SCSI SG DRIVER
17553 M:      Doug Gilbert <[email protected]>
17554 L:      [email protected]
17555 S:      Maintained
17556 W:      http://sg.danny.cz/sg
17557 F:      Documentation/scsi/scsi-generic.rst
17558 F:      drivers/scsi/sg.c
17559 F:      include/scsi/sg.h
17560
17561 SCSI SUBSYSTEM
17562 M:      "James E.J. Bottomley" <[email protected]>
17563 M:      "Martin K. Petersen" <[email protected]>
17564 L:      [email protected]
17565 S:      Maintained
17566 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
17567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
17568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17569 F:      Documentation/devicetree/bindings/scsi/
17570 F:      drivers/scsi/
17571 F:      include/scsi/
17572
17573 SCSI TAPE DRIVER
17574 M:      Kai Mäkisara <[email protected]>
17575 L:      [email protected]
17576 S:      Maintained
17577 F:      Documentation/scsi/st.rst
17578 F:      drivers/scsi/st.*
17579 F:      drivers/scsi/st_*.h
17580
17581 SCSI TARGET CORE USER DRIVER
17582 M:      Bodo Stroesser <[email protected]>
17583 L:      [email protected]
17584 L:      [email protected]
17585 S:      Supported
17586 F:      Documentation/target/tcmu-design.rst
17587 F:      drivers/target/target_core_user.c
17588 F:      include/uapi/linux/target_core_user.h
17589
17590 SCSI TARGET SUBSYSTEM
17591 M:      "Martin K. Petersen" <[email protected]>
17592 L:      [email protected]
17593 L:      [email protected]
17594 S:      Supported
17595 W:      http://www.linux-iscsi.org
17596 Q:      https://patchwork.kernel.org/project/target-devel/list/
17597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17598 F:      Documentation/target/
17599 F:      drivers/target/
17600 F:      include/target/
17601
17602 SCTP PROTOCOL
17603 M:      Vlad Yasevich <[email protected]>
17604 M:      Neil Horman <[email protected]>
17605 M:      Marcelo Ricardo Leitner <[email protected]>
17606 L:      [email protected]
17607 S:      Maintained
17608 W:      http://lksctp.sourceforge.net
17609 F:      Documentation/networking/sctp.rst
17610 F:      include/linux/sctp.h
17611 F:      include/net/sctp/
17612 F:      include/uapi/linux/sctp.h
17613 F:      net/sctp/
17614
17615 SCx200 CPU SUPPORT
17616 M:      Jim Cromie <[email protected]>
17617 S:      Odd Fixes
17618 F:      Documentation/i2c/busses/scx200_acb.rst
17619 F:      arch/x86/platform/scx200/
17620 F:      drivers/i2c/busses/scx200*
17621 F:      drivers/mtd/maps/scx200_docflash.c
17622 F:      drivers/watchdog/scx200_wdt.c
17623 F:      include/linux/scx200.h
17624
17625 SCx200 GPIO DRIVER
17626 M:      Jim Cromie <[email protected]>
17627 S:      Maintained
17628 F:      drivers/char/scx200_gpio.c
17629 F:      include/linux/scx200_gpio.h
17630
17631 SCx200 HRT CLOCKSOURCE DRIVER
17632 M:      Jim Cromie <[email protected]>
17633 S:      Maintained
17634 F:      drivers/clocksource/scx200_hrt.c
17635
17636 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
17637 M:      Sascha Sommer <[email protected]>
17638 L:      [email protected] (subscribers-only)
17639 S:      Maintained
17640 F:      drivers/mmc/host/sdricoh_cs.c
17641
17642 SECO BOARDS CEC DRIVER
17643 M:      Ettore Chimenti <[email protected]>
17644 S:      Maintained
17645 F:      drivers/media/cec/platform/seco/seco-cec.c
17646 F:      drivers/media/cec/platform/seco/seco-cec.h
17647
17648 SECURE COMPUTING
17649 M:      Kees Cook <[email protected]>
17650 R:      Andy Lutomirski <[email protected]>
17651 R:      Will Drewry <[email protected]>
17652 S:      Supported
17653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
17654 F:      Documentation/userspace-api/seccomp_filter.rst
17655 F:      include/linux/seccomp.h
17656 F:      include/uapi/linux/seccomp.h
17657 F:      kernel/seccomp.c
17658 F:      tools/testing/selftests/kselftest_harness.h
17659 F:      tools/testing/selftests/seccomp/*
17660 K:      \bsecure_computing
17661 K:      \bTIF_SECCOMP\b
17662
17663 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
17664 M:      Al Cooper <[email protected]>
17665 L:      [email protected]
17666 L:      [email protected]
17667 S:      Maintained
17668 F:      drivers/mmc/host/sdhci-brcmstb*
17669
17670 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
17671 M:      Adrian Hunter <[email protected]>
17672 L:      [email protected]
17673 S:      Maintained
17674 F:      drivers/mmc/host/sdhci*
17675
17676 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
17677 M:      Eugen Hristev <[email protected]>
17678 L:      [email protected]
17679 S:      Supported
17680 F:      drivers/mmc/host/sdhci-of-at91.c
17681
17682 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
17683 M:      Ben Dooks <[email protected]>
17684 M:      Jaehoon Chung <[email protected]>
17685 L:      [email protected]
17686 S:      Maintained
17687 F:      drivers/mmc/host/sdhci-s3c*
17688
17689 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
17690 M:      Viresh Kumar <[email protected]>
17691 L:      [email protected]
17692 S:      Maintained
17693 F:      drivers/mmc/host/sdhci-spear.c
17694
17695 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
17696 M:      Kishon Vijay Abraham I <[email protected]>
17697 L:      [email protected]
17698 S:      Maintained
17699 F:      drivers/mmc/host/sdhci-omap.c
17700
17701 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
17702 M:      Haibo Chen <[email protected]>
17703 L:      [email protected]
17704 L:      [email protected]
17705 S:      Maintained
17706 F:      drivers/mmc/host/sdhci-esdhc-imx.c
17707
17708 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
17709 M:      Jonathan Derrick <[email protected]>
17710 M:      Revanth Rajashekar <[email protected]>
17711 L:      [email protected]
17712 S:      Supported
17713 F:      block/opal_proto.h
17714 F:      block/sed*
17715 F:      include/linux/sed*
17716 F:      include/uapi/linux/sed*
17717
17718 SECURITY CONTACT
17719 M:      Security Officers <[email protected]>
17720 S:      Supported
17721 F:      Documentation/admin-guide/security-bugs.rst
17722
17723 SECURITY SUBSYSTEM
17724 M:      James Morris <[email protected]>
17725 M:      "Serge E. Hallyn" <[email protected]>
17726 L:      [email protected] (suggested Cc:)
17727 S:      Supported
17728 W:      http://kernsec.org/
17729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17730 F:      security/
17731 X:      security/selinux/
17732
17733 SELINUX SECURITY MODULE
17734 M:      Paul Moore <[email protected]>
17735 M:      Stephen Smalley <[email protected]>
17736 M:      Eric Paris <[email protected]>
17737 L:      [email protected]
17738 S:      Supported
17739 W:      https://selinuxproject.org
17740 W:      https://github.com/SELinuxProject
17741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17742 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17743 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17744 F:      Documentation/admin-guide/LSM/SELinux.rst
17745 F:      include/trace/events/avc.h
17746 F:      include/uapi/linux/selinux_netlink.h
17747 F:      scripts/selinux/
17748 F:      security/selinux/
17749
17750 SENSABLE PHANTOM
17751 M:      Jiri Slaby <[email protected]>
17752 S:      Maintained
17753 F:      drivers/misc/phantom.c
17754 F:      include/uapi/linux/phantom.h
17755
17756 SENSEAIR SUNRISE 006-0-0007
17757 M:      Jacopo Mondi <[email protected]>
17758 S:      Maintained
17759 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
17760 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
17761 F:      drivers/iio/chemical/sunrise_co2.c
17762
17763 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17764 M:      Tomasz Duszynski <[email protected]>
17765 S:      Maintained
17766 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17767 F:      drivers/iio/chemical/scd30.h
17768 F:      drivers/iio/chemical/scd30_core.c
17769 F:      drivers/iio/chemical/scd30_i2c.c
17770 F:      drivers/iio/chemical/scd30_serial.c
17771
17772 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
17773 M:      Roan van Dijk <[email protected]>
17774 S:      Maintained
17775 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
17776 F:      drivers/iio/chemical/scd4x.c
17777
17778 SENSIRION SGP40 GAS SENSOR DRIVER
17779 M:      Andreas Klinger <[email protected]>
17780 S:      Maintained
17781 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17782 F:      drivers/iio/chemical/sgp40.c
17783
17784 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17785 M:      Tomasz Duszynski <[email protected]>
17786 S:      Maintained
17787 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17788 F:      drivers/iio/chemical/sps30.c
17789 F:      drivers/iio/chemical/sps30_i2c.c
17790 F:      drivers/iio/chemical/sps30_serial.c
17791
17792 SERIAL DEVICE BUS
17793 M:      Rob Herring <[email protected]>
17794 L:      [email protected]
17795 S:      Maintained
17796 F:      Documentation/devicetree/bindings/serial/serial.yaml
17797 F:      drivers/tty/serdev/
17798 F:      include/linux/serdev.h
17799
17800 SERIAL DRIVERS
17801 M:      Greg Kroah-Hartman <[email protected]>
17802 L:      [email protected]
17803 S:      Maintained
17804 F:      Documentation/devicetree/bindings/serial/
17805 F:      drivers/tty/serial/
17806
17807 SERIAL IR RECEIVER
17808 M:      Sean Young <[email protected]>
17809 L:      [email protected]
17810 S:      Maintained
17811 F:      drivers/media/rc/serial_ir.c
17812
17813 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17814 M:      Srinivas Kandagatla <[email protected]>
17815 L:      [email protected] (moderated for non-subscribers)
17816 S:      Maintained
17817 F:      Documentation/devicetree/bindings/slimbus/
17818 F:      drivers/slimbus/
17819 F:      include/linux/slimbus.h
17820
17821 SFC NETWORK DRIVER
17822 M:      Edward Cree <[email protected]>
17823 M:      Martin Habets <[email protected]>
17824 L:      [email protected]
17825 S:      Supported
17826 F:      drivers/net/ethernet/sfc/
17827
17828 SFF/SFP/SFP+ MODULE SUPPORT
17829 M:      Russell King <[email protected]>
17830 L:      [email protected]
17831 S:      Maintained
17832 F:      drivers/net/phy/phylink.c
17833 F:      drivers/net/phy/sfp*
17834 F:      include/linux/mdio/mdio-i2c.h
17835 F:      include/linux/phylink.h
17836 F:      include/linux/sfp.h
17837 K:      phylink\.h|struct\s+phylink|\.phylink|>phylink_|phylink_(autoneg|clear|connect|create|destroy|disconnect|ethtool|helper|mac|mii|of|set|start|stop|test|validate)
17838
17839 SGI GRU DRIVER
17840 M:      Dimitri Sivanich <[email protected]>
17841 S:      Maintained
17842 F:      drivers/misc/sgi-gru/
17843
17844 SGI XP/XPC/XPNET DRIVER
17845 M:      Robin Holt <[email protected]>
17846 M:      Steve Wahl <[email protected]>
17847 R:      Mike Travis <[email protected]>
17848 S:      Maintained
17849 F:      drivers/misc/sgi-xp/
17850
17851 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17852 M:      Karsten Graul <[email protected]>
17853 L:      [email protected]
17854 S:      Supported
17855 W:      http://www.ibm.com/developerworks/linux/linux390/
17856 F:      net/smc/
17857
17858 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17859 M:      Linus Walleij <[email protected]>
17860 L:      [email protected]
17861 S:      Maintained
17862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17863 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17864 F:      drivers/iio/light/gp2ap002.c
17865
17866 SHARP RJ54N1CB0C SENSOR DRIVER
17867 M:      Jacopo Mondi <[email protected]>
17868 L:      [email protected]
17869 S:      Odd fixes
17870 T:      git git://linuxtv.org/media_tree.git
17871 F:      drivers/media/i2c/rj54n1cb0c.c
17872 F:      include/media/i2c/rj54n1cb0c.h
17873
17874 SH_VOU V4L2 OUTPUT DRIVER
17875 L:      [email protected]
17876 S:      Orphan
17877 F:      drivers/media/platform/renesas/sh_vou.c
17878 F:      include/media/drv-intf/sh_vou.h
17879
17880 SI2157 MEDIA DRIVER
17881 M:      Antti Palosaari <[email protected]>
17882 L:      [email protected]
17883 S:      Maintained
17884 W:      https://linuxtv.org
17885 W:      http://palosaari.fi/linux/
17886 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17887 T:      git git://linuxtv.org/anttip/media_tree.git
17888 F:      drivers/media/tuners/si2157*
17889
17890 SI2165 MEDIA DRIVER
17891 M:      Matthias Schwarzott <[email protected]>
17892 L:      [email protected]
17893 S:      Maintained
17894 W:      https://linuxtv.org
17895 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17896 F:      drivers/media/dvb-frontends/si2165*
17897
17898 SI2168 MEDIA DRIVER
17899 M:      Antti Palosaari <[email protected]>
17900 L:      [email protected]
17901 S:      Maintained
17902 W:      https://linuxtv.org
17903 W:      http://palosaari.fi/linux/
17904 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17905 T:      git git://linuxtv.org/anttip/media_tree.git
17906 F:      drivers/media/dvb-frontends/si2168*
17907
17908 SI470X FM RADIO RECEIVER I2C DRIVER
17909 M:      Hans Verkuil <[email protected]>
17910 L:      [email protected]
17911 S:      Odd Fixes
17912 W:      https://linuxtv.org
17913 T:      git git://linuxtv.org/media_tree.git
17914 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17915
17916 SI470X FM RADIO RECEIVER USB DRIVER
17917 M:      Hans Verkuil <[email protected]>
17918 L:      [email protected]
17919 S:      Maintained
17920 W:      https://linuxtv.org
17921 T:      git git://linuxtv.org/media_tree.git
17922 F:      drivers/media/radio/si470x/radio-si470x-common.c
17923 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17924 F:      drivers/media/radio/si470x/radio-si470x.h
17925
17926 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17927 M:      Eduardo Valentin <[email protected]>
17928 L:      [email protected]
17929 S:      Odd Fixes
17930 W:      https://linuxtv.org
17931 T:      git git://linuxtv.org/media_tree.git
17932 F:      drivers/media/radio/si4713/si4713.?
17933
17934 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17935 M:      Eduardo Valentin <[email protected]>
17936 L:      [email protected]
17937 S:      Odd Fixes
17938 W:      https://linuxtv.org
17939 T:      git git://linuxtv.org/media_tree.git
17940 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17941
17942 SI4713 FM RADIO TRANSMITTER USB DRIVER
17943 M:      Hans Verkuil <[email protected]>
17944 L:      [email protected]
17945 S:      Maintained
17946 W:      https://linuxtv.org
17947 T:      git git://linuxtv.org/media_tree.git
17948 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17949
17950 SIANO DVB DRIVER
17951 M:      Mauro Carvalho Chehab <[email protected]>
17952 L:      [email protected]
17953 S:      Odd fixes
17954 W:      https://linuxtv.org
17955 T:      git git://linuxtv.org/media_tree.git
17956 F:      drivers/media/common/siano/
17957 F:      drivers/media/mmc/siano/
17958 F:      drivers/media/usb/siano/
17959 F:      drivers/media/usb/siano/
17960
17961 SIFIVE DRIVERS
17962 M:      Palmer Dabbelt <[email protected]>
17963 M:      Paul Walmsley <[email protected]>
17964 L:      [email protected]
17965 S:      Supported
17966 T:      git git://github.com/sifive/riscv-linux.git
17967 N:      sifive
17968 K:      [^@]sifive
17969
17970 SIFIVE FU540 SYSTEM-ON-CHIP
17971 M:      Paul Walmsley <[email protected]>
17972 M:      Palmer Dabbelt <[email protected]>
17973 L:      [email protected]
17974 S:      Supported
17975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17976 N:      fu540
17977 K:      fu540
17978
17979 SIFIVE PDMA DRIVER
17980 M:      Green Wan <[email protected]>
17981 S:      Maintained
17982 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17983 F:      drivers/dma/sf-pdma/
17984
17985 SILEAD TOUCHSCREEN DRIVER
17986 M:      Hans de Goede <[email protected]>
17987 L:      [email protected]
17988 L:      [email protected]
17989 S:      Maintained
17990 F:      drivers/input/touchscreen/silead.c
17991 F:      drivers/platform/x86/touchscreen_dmi.c
17992
17993 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17994 M:      Jérôme Pouiller <[email protected]>
17995 S:      Supported
17996 F:      Documentation/devicetree/bindings/staging/net/wireless/silabs,wfx.yaml
17997 F:      drivers/staging/wfx/
17998
17999 SILICON MOTION SM712 FRAME BUFFER DRIVER
18000 M:      Sudip Mukherjee <[email protected]>
18001 M:      Teddy Wang <[email protected]>
18002 M:      Sudip Mukherjee <[email protected]>
18003 L:      [email protected]
18004 S:      Maintained
18005 F:      Documentation/fb/sm712fb.rst
18006 F:      drivers/video/fbdev/sm712*
18007
18008 SILVACO I3C DUAL-ROLE MASTER
18009 M:      Miquel Raynal <[email protected]>
18010 M:      Conor Culhane <[email protected]>
18011 L:      [email protected] (moderated for non-subscribers)
18012 S:      Maintained
18013 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18014 F:      drivers/i3c/master/svc-i3c-master.c
18015
18016 SIMPLEFB FB DRIVER
18017 M:      Hans de Goede <[email protected]>
18018 L:      [email protected]
18019 S:      Maintained
18020 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
18021 F:      drivers/video/fbdev/simplefb.c
18022 F:      include/linux/platform_data/simplefb.h
18023
18024 SIMTEC EB110ATX (Chalice CATS)
18025 M:      Simtec Linux Team <[email protected]>
18026 S:      Supported
18027 W:      http://www.simtec.co.uk/products/EB110ATX/
18028
18029 SIMTEC EB2410ITX (BAST)
18030 M:      Simtec Linux Team <[email protected]>
18031 S:      Supported
18032 W:      http://www.simtec.co.uk/products/EB2410ITX/
18033 F:      arch/arm/mach-s3c/bast-ide.c
18034 F:      arch/arm/mach-s3c/bast-irq.c
18035 F:      arch/arm/mach-s3c/mach-bast.c
18036
18037 SIOX
18038 M:      Thorsten Scherer <[email protected]>
18039 M:      Uwe Kleine-König <[email protected]>
18040 R:      Pengutronix Kernel Team <[email protected]>
18041 S:      Supported
18042 F:      drivers/gpio/gpio-siox.c
18043 F:      drivers/siox/*
18044 F:      include/trace/events/siox.h
18045
18046 SIPHASH PRF ROUTINES
18047 M:      Jason A. Donenfeld <[email protected]>
18048 S:      Maintained
18049 F:      include/linux/siphash.h
18050 F:      lib/siphash.c
18051 F:      lib/test_siphash.c
18052
18053 SIS 190 ETHERNET DRIVER
18054 M:      Francois Romieu <[email protected]>
18055 L:      [email protected]
18056 S:      Maintained
18057 F:      drivers/net/ethernet/sis/sis190.c
18058
18059 SIS 900/7016 FAST ETHERNET DRIVER
18060 M:      Daniele Venzano <[email protected]>
18061 L:      [email protected]
18062 S:      Maintained
18063 W:      http://www.brownhat.org/sis900.html
18064 F:      drivers/net/ethernet/sis/sis900.*
18065
18066 SIS FRAMEBUFFER DRIVER
18067 M:      Thomas Winischhofer <[email protected]>
18068 S:      Maintained
18069 W:      http://www.winischhofer.net/linuxsisvga.shtml
18070 F:      Documentation/fb/sisfb.rst
18071 F:      drivers/video/fbdev/sis/
18072 F:      include/video/sisfb.h
18073
18074 SIS I2C TOUCHSCREEN DRIVER
18075 M:      Mika Penttilä <[email protected]>
18076 L:      [email protected]
18077 S:      Maintained
18078 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
18079 F:      drivers/input/touchscreen/sis_i2c.c
18080
18081 SIS USB2VGA DRIVER
18082 M:      Thomas Winischhofer <[email protected]>
18083 S:      Maintained
18084 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
18085 F:      drivers/usb/misc/sisusbvga/
18086
18087 SL28 CPLD MFD DRIVER
18088 M:      Michael Walle <[email protected]>
18089 S:      Maintained
18090 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
18091 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
18092 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
18093 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
18094 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
18095 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
18096 F:      drivers/gpio/gpio-sl28cpld.c
18097 F:      drivers/hwmon/sl28cpld-hwmon.c
18098 F:      drivers/irqchip/irq-sl28cpld.c
18099 F:      drivers/pwm/pwm-sl28cpld.c
18100 F:      drivers/watchdog/sl28cpld_wdt.c
18101
18102 SLAB ALLOCATOR
18103 M:      Christoph Lameter <[email protected]>
18104 M:      Pekka Enberg <[email protected]>
18105 M:      David Rientjes <[email protected]>
18106 M:      Joonsoo Kim <[email protected]>
18107 M:      Andrew Morton <[email protected]>
18108 M:      Vlastimil Babka <[email protected]>
18109 R:      Roman Gushchin <[email protected]>
18110 L:      [email protected]
18111 S:      Maintained
18112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
18113 F:      include/linux/sl?b*.h
18114 F:      mm/sl?b*
18115
18116 SLEEPABLE READ-COPY UPDATE (SRCU)
18117 M:      Lai Jiangshan <[email protected]>
18118 M:      "Paul E. McKenney" <[email protected]>
18119 M:      Josh Triplett <[email protected]>
18120 R:      Steven Rostedt <[email protected]>
18121 R:      Mathieu Desnoyers <[email protected]>
18122 L:      [email protected]
18123 S:      Supported
18124 W:      http://www.rdrop.com/users/paulmck/RCU/
18125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18126 F:      include/linux/srcu*.h
18127 F:      kernel/rcu/srcu*.c
18128
18129 SMACK SECURITY MODULE
18130 M:      Casey Schaufler <[email protected]>
18131 L:      [email protected]
18132 S:      Maintained
18133 W:      http://schaufler-ca.com
18134 T:      git git://github.com/cschaufler/smack-next
18135 F:      Documentation/admin-guide/LSM/Smack.rst
18136 F:      security/smack/
18137
18138 SMC91x ETHERNET DRIVER
18139 M:      Nicolas Pitre <[email protected]>
18140 S:      Odd Fixes
18141 F:      drivers/net/ethernet/smsc/smc91x.*
18142
18143 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
18144 M:      Mark Rutland <[email protected]>
18145 M:      Lorenzo Pieralisi <[email protected]>
18146 M:      Sudeep Holla <[email protected]>
18147 L:      [email protected] (moderated for non-subscribers)
18148 S:      Maintained
18149 F:      drivers/firmware/smccc/
18150 F:      include/linux/arm-smccc.h
18151
18152 SMM665 HARDWARE MONITOR DRIVER
18153 M:      Guenter Roeck <[email protected]>
18154 L:      [email protected]
18155 S:      Maintained
18156 F:      Documentation/hwmon/smm665.rst
18157 F:      drivers/hwmon/smm665.c
18158
18159 SMSC EMC2103 HARDWARE MONITOR DRIVER
18160 M:      Steve Glendinning <[email protected]>
18161 L:      [email protected]
18162 S:      Maintained
18163 F:      Documentation/hwmon/emc2103.rst
18164 F:      drivers/hwmon/emc2103.c
18165
18166 SMSC SCH5627 HARDWARE MONITOR DRIVER
18167 M:      Hans de Goede <[email protected]>
18168 L:      [email protected]
18169 S:      Supported
18170 F:      Documentation/hwmon/sch5627.rst
18171 F:      drivers/hwmon/sch5627.c
18172
18173 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
18174 M:      Steve Glendinning <[email protected]>
18175 L:      [email protected]
18176 S:      Maintained
18177 F:      drivers/video/fbdev/smscufx.c
18178
18179 SMSC47B397 HARDWARE MONITOR DRIVER
18180 M:      Jean Delvare <[email protected]>
18181 L:      [email protected]
18182 S:      Maintained
18183 F:      Documentation/hwmon/smsc47b397.rst
18184 F:      drivers/hwmon/smsc47b397.c
18185
18186 SMSC911x ETHERNET DRIVER
18187 M:      Steve Glendinning <[email protected]>
18188 L:      [email protected]
18189 S:      Maintained
18190 F:      drivers/net/ethernet/smsc/smsc911x.*
18191 F:      include/linux/smsc911x.h
18192
18193 SMSC9420 PCI ETHERNET DRIVER
18194 M:      Steve Glendinning <[email protected]>
18195 L:      [email protected]
18196 S:      Maintained
18197 F:      drivers/net/ethernet/smsc/smsc9420.*
18198
18199 SOCIONEXT (SNI) AVE NETWORK DRIVER
18200 M:      Kunihiko Hayashi <[email protected]>
18201 L:      [email protected]
18202 S:      Maintained
18203 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
18204 F:      drivers/net/ethernet/socionext/sni_ave.c
18205
18206 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
18207 M:      Jassi Brar <[email protected]>
18208 M:      Ilias Apalodimas <[email protected]>
18209 L:      [email protected]
18210 S:      Maintained
18211 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
18212 F:      drivers/net/ethernet/socionext/netsec.c
18213
18214 SOCIONEXT (SNI) Synquacer SPI DRIVER
18215 M:      Masahisa Kojima <[email protected]>
18216 M:      Jassi Brar <[email protected]>
18217 L:      [email protected]
18218 S:      Maintained
18219 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
18220 F:      drivers/spi/spi-synquacer.c
18221
18222 SOCIONEXT SYNQUACER I2C DRIVER
18223 M:      Ard Biesheuvel <[email protected]>
18224 L:      [email protected]
18225 S:      Maintained
18226 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
18227 F:      drivers/i2c/busses/i2c-synquacer.c
18228
18229 SOCIONEXT UNIPHIER SOUND DRIVER
18230 L:      [email protected] (moderated for non-subscribers)
18231 S:      Orphan
18232 F:      sound/soc/uniphier/
18233
18234 SOEKRIS NET48XX LED SUPPORT
18235 M:      Chris Boot <[email protected]>
18236 S:      Maintained
18237 F:      drivers/leds/leds-net48xx.c
18238
18239 SOFT-IWARP DRIVER (siw)
18240 M:      Bernard Metzler <[email protected]>
18241 L:      [email protected]
18242 S:      Supported
18243 F:      drivers/infiniband/sw/siw/
18244 F:      include/uapi/rdma/siw-abi.h
18245
18246 SOFT-ROCE DRIVER (rxe)
18247 M:      Zhu Yanjun <[email protected]>
18248 L:      [email protected]
18249 S:      Supported
18250 F:      drivers/infiniband/sw/rxe/
18251 F:      include/uapi/rdma/rdma_user_rxe.h
18252
18253 SOFTLOGIC 6x10 MPEG CODEC
18254 M:      Bluecherry Maintainers <[email protected]>
18255 M:      Anton Sviridenko <[email protected]>
18256 M:      Andrey Utkin <[email protected]>
18257 M:      Ismael Luceno <[email protected]>
18258 L:      [email protected]
18259 S:      Supported
18260 F:      drivers/media/pci/solo6x10/
18261
18262 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
18263 M:      James Morse <[email protected]>
18264 L:      [email protected] (moderated for non-subscribers)
18265 S:      Maintained
18266 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
18267 F:      drivers/firmware/arm_sdei.c
18268 F:      include/linux/arm_sdei.h
18269 F:      include/uapi/linux/arm_sdei.h
18270
18271 SOFTWARE NODES AND DEVICE PROPERTIES
18272 R:      Andy Shevchenko <[email protected]>
18273 R:      Daniel Scally <[email protected]>
18274 R:      Heikki Krogerus <[email protected]>
18275 R:      Sakari Ailus <[email protected]>
18276 L:      [email protected]
18277 S:      Maintained
18278 F:      drivers/base/property.c
18279 F:      drivers/base/swnode.c
18280 F:      include/linux/fwnode.h
18281 F:      include/linux/property.h
18282
18283 SOFTWARE RAID (Multiple Disks) SUPPORT
18284 M:      Song Liu <[email protected]>
18285 L:      [email protected]
18286 S:      Supported
18287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
18288 F:      drivers/md/Kconfig
18289 F:      drivers/md/Makefile
18290 F:      drivers/md/md*
18291 F:      drivers/md/raid*
18292 F:      include/linux/raid/
18293 F:      include/uapi/linux/raid/
18294
18295 SOLIDRUN CLEARFOG SUPPORT
18296 M:      Russell King <[email protected]>
18297 S:      Maintained
18298 F:      arch/arm/boot/dts/armada-388-clearfog*
18299 F:      arch/arm/boot/dts/armada-38x-solidrun-*
18300
18301 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
18302 M:      Russell King <[email protected]>
18303 S:      Maintained
18304 F:      arch/arm/boot/dts/imx6*-cubox-i*
18305 F:      arch/arm/boot/dts/imx6*-hummingboard*
18306 F:      arch/arm/boot/dts/imx6*-sr-*
18307
18308 SONIC NETWORK DRIVER
18309 M:      Thomas Bogendoerfer <[email protected]>
18310 L:      [email protected]
18311 S:      Maintained
18312 F:      drivers/net/ethernet/natsemi/sonic.*
18313
18314 SONICS SILICON BACKPLANE DRIVER (SSB)
18315 M:      Michael Buesch <[email protected]>
18316 L:      [email protected]
18317 S:      Maintained
18318 F:      drivers/ssb/
18319 F:      include/linux/ssb/
18320
18321 SONY IMX208 SENSOR DRIVER
18322 M:      Sakari Ailus <[email protected]>
18323 L:      [email protected]
18324 S:      Maintained
18325 T:      git git://linuxtv.org/media_tree.git
18326 F:      drivers/media/i2c/imx208.c
18327
18328 SONY IMX214 SENSOR DRIVER
18329 M:      Ricardo Ribalda <[email protected]>
18330 L:      [email protected]
18331 S:      Maintained
18332 T:      git git://linuxtv.org/media_tree.git
18333 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
18334 F:      drivers/media/i2c/imx214.c
18335
18336 SONY IMX219 SENSOR DRIVER
18337 M:      Dave Stevenson <[email protected]>
18338 L:      [email protected]
18339 S:      Maintained
18340 T:      git git://linuxtv.org/media_tree.git
18341 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
18342 F:      drivers/media/i2c/imx219.c
18343
18344 SONY IMX258 SENSOR DRIVER
18345 M:      Sakari Ailus <[email protected]>
18346 L:      [email protected]
18347 S:      Maintained
18348 T:      git git://linuxtv.org/media_tree.git
18349 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
18350 F:      drivers/media/i2c/imx258.c
18351
18352 SONY IMX274 SENSOR DRIVER
18353 M:      Leon Luo <[email protected]>
18354 L:      [email protected]
18355 S:      Maintained
18356 T:      git git://linuxtv.org/media_tree.git
18357 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
18358 F:      drivers/media/i2c/imx274.c
18359
18360 SONY IMX290 SENSOR DRIVER
18361 M:      Manivannan Sadhasivam <[email protected]>
18362 L:      [email protected]
18363 S:      Maintained
18364 T:      git git://linuxtv.org/media_tree.git
18365 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
18366 F:      drivers/media/i2c/imx290.c
18367
18368 SONY IMX319 SENSOR DRIVER
18369 M:      Bingbu Cao <[email protected]>
18370 L:      [email protected]
18371 S:      Maintained
18372 T:      git git://linuxtv.org/media_tree.git
18373 F:      drivers/media/i2c/imx319.c
18374
18375 SONY IMX334 SENSOR DRIVER
18376 M:      Paul J. Murphy <[email protected]>
18377 M:      Daniele Alessandrelli <[email protected]>
18378 L:      [email protected]
18379 S:      Maintained
18380 T:      git git://linuxtv.org/media_tree.git
18381 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
18382 F:      drivers/media/i2c/imx334.c
18383
18384 SONY IMX335 SENSOR DRIVER
18385 M:      Paul J. Murphy <[email protected]>
18386 M:      Daniele Alessandrelli <[email protected]>
18387 L:      [email protected]
18388 S:      Maintained
18389 T:      git git://linuxtv.org/media_tree.git
18390 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
18391 F:      drivers/media/i2c/imx335.c
18392
18393 SONY IMX355 SENSOR DRIVER
18394 M:      Tianshu Qiu <[email protected]>
18395 L:      [email protected]
18396 S:      Maintained
18397 T:      git git://linuxtv.org/media_tree.git
18398 F:      drivers/media/i2c/imx355.c
18399
18400 SONY IMX412 SENSOR DRIVER
18401 M:      Paul J. Murphy <[email protected]>
18402 M:      Daniele Alessandrelli <[email protected]>
18403 L:      [email protected]
18404 S:      Maintained
18405 T:      git git://linuxtv.org/media_tree.git
18406 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
18407 F:      drivers/media/i2c/imx412.c
18408
18409 SONY MEMORYSTICK SUBSYSTEM
18410 M:      Maxim Levitsky <[email protected]>
18411 M:      Alex Dubov <[email protected]>
18412 M:      Ulf Hansson <[email protected]>
18413 L:      [email protected]
18414 S:      Maintained
18415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
18416 F:      drivers/memstick/
18417 F:      include/linux/memstick.h
18418
18419 SONY VAIO CONTROL DEVICE DRIVER
18420 M:      Mattia Dongili <[email protected]>
18421 L:      [email protected]
18422 S:      Maintained
18423 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
18424 F:      Documentation/admin-guide/laptops/sony-laptop.rst
18425 F:      drivers/char/sonypi.c
18426 F:      drivers/platform/x86/sony-laptop.c
18427 F:      include/linux/sony-laptop.h
18428
18429 SOUND
18430 M:      Jaroslav Kysela <[email protected]>
18431 M:      Takashi Iwai <[email protected]>
18432 L:      [email protected] (moderated for non-subscribers)
18433 S:      Maintained
18434 W:      http://www.alsa-project.org/
18435 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
18436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18437 F:      Documentation/sound/
18438 F:      include/sound/
18439 F:      include/uapi/sound/
18440 F:      sound/
18441 F:      tools/testing/selftests/alsa
18442
18443 SOUND - COMPRESSED AUDIO
18444 M:      Vinod Koul <[email protected]>
18445 L:      [email protected] (moderated for non-subscribers)
18446 S:      Supported
18447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18448 F:      Documentation/sound/designs/compress-offload.rst
18449 F:      include/sound/compress_driver.h
18450 F:      include/uapi/sound/compress_*
18451 F:      sound/core/compress_offload.c
18452 F:      sound/soc/soc-compress.c
18453
18454 SOUND - DMAENGINE HELPERS
18455 M:      Lars-Peter Clausen <[email protected]>
18456 S:      Supported
18457 F:      include/sound/dmaengine_pcm.h
18458 F:      sound/core/pcm_dmaengine.c
18459 F:      sound/soc/soc-generic-dmaengine-pcm.c
18460
18461 SOUND - ALSA SELFTESTS
18462 M:      Mark Brown <[email protected]>
18463 L:      [email protected] (moderated for non-subscribers)
18464 L:      [email protected]
18465 S:      Supported
18466 F:      tools/testing/selftests/alsa
18467
18468 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
18469 M:      Liam Girdwood <[email protected]>
18470 M:      Mark Brown <[email protected]>
18471 L:      [email protected] (moderated for non-subscribers)
18472 S:      Supported
18473 W:      http://alsa-project.org/main/index.php/ASoC
18474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
18475 F:      Documentation/devicetree/bindings/sound/
18476 F:      Documentation/sound/soc/
18477 F:      include/dt-bindings/sound/
18478 F:      include/sound/soc*
18479 F:      sound/soc/
18480
18481 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
18482 M:      Pierre-Louis Bossart <[email protected]>
18483 M:      Liam Girdwood <[email protected]>
18484 M:      Ranjani Sridharan <[email protected]>
18485 M:      Kai Vehmanen <[email protected]>
18486 M:      Daniel Baluta <[email protected]>
18487 L:      [email protected] (moderated for non-subscribers)
18488 S:      Supported
18489 W:      https://github.com/thesofproject/linux/
18490 F:      sound/soc/sof/
18491
18492 SOUNDWIRE SUBSYSTEM
18493 M:      Vinod Koul <[email protected]>
18494 M:      Bard Liao <[email protected]>
18495 R:      Pierre-Louis Bossart <[email protected]>
18496 R:      Sanyog Kale <[email protected]>
18497 L:      [email protected] (moderated for non-subscribers)
18498 S:      Supported
18499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
18500 F:      Documentation/driver-api/soundwire/
18501 F:      drivers/soundwire/
18502 F:      include/linux/soundwire/
18503
18504 SP2 MEDIA DRIVER
18505 M:      Olli Salonen <[email protected]>
18506 L:      [email protected]
18507 S:      Maintained
18508 W:      https://linuxtv.org
18509 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18510 F:      drivers/media/dvb-frontends/sp2*
18511
18512 SPARC + UltraSPARC (sparc/sparc64)
18513 M:      "David S. Miller" <[email protected]>
18514 L:      [email protected]
18515 S:      Maintained
18516 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
18517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18519 F:      arch/sparc/
18520 F:      drivers/sbus/
18521
18522 SPARC SERIAL DRIVERS
18523 M:      "David S. Miller" <[email protected]>
18524 L:      [email protected]
18525 S:      Maintained
18526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18528 F:      drivers/tty/serial/suncore.c
18529 F:      drivers/tty/serial/sunhv.c
18530 F:      drivers/tty/serial/sunsab.c
18531 F:      drivers/tty/serial/sunsab.h
18532 F:      drivers/tty/serial/sunsu.c
18533 F:      drivers/tty/serial/sunzilog.c
18534 F:      drivers/tty/serial/sunzilog.h
18535 F:      drivers/tty/vcc.c
18536 F:      include/linux/sunserialcore.h
18537
18538 SPARSE CHECKER
18539 M:      "Luc Van Oostenryck" <[email protected]>
18540 L:      [email protected]
18541 S:      Maintained
18542 W:      https://sparse.docs.kernel.org/
18543 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
18544 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
18545 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
18546 F:      include/linux/compiler.h
18547
18548 SPEAKUP CONSOLE SPEECH DRIVER
18549 M:      William Hubbs <[email protected]>
18550 M:      Chris Brannon <[email protected]>
18551 M:      Kirk Reiser <[email protected]>
18552 M:      Samuel Thibault <[email protected]>
18553 L:      [email protected]
18554 S:      Odd Fixes
18555 W:      http://www.linux-speakup.org/
18556 W:      https://github.com/linux-speakup/speakup
18557 B:      https://github.com/linux-speakup/speakup/issues
18558 F:      drivers/accessibility/speakup/
18559
18560 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
18561 M:      Viresh Kumar <[email protected]>
18562 M:      Shiraz Hashim <[email protected]>
18563 M:      [email protected]
18564 L:      [email protected] (moderated for non-subscribers)
18565 S:      Maintained
18566 W:      http://www.st.com/spear
18567 F:      arch/arm/boot/dts/spear*
18568 F:      arch/arm/mach-spear/
18569 F:      drivers/clk/spear/
18570 F:      drivers/pinctrl/spear/
18571
18572 SPI NOR SUBSYSTEM
18573 M:      Tudor Ambarus <[email protected]>
18574 M:      Pratyush Yadav <[email protected]>
18575 R:      Michael Walle <[email protected]>
18576 L:      [email protected]
18577 S:      Maintained
18578 W:      http://www.linux-mtd.infradead.org/
18579 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
18580 C:      irc://irc.oftc.net/mtd
18581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
18582 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
18583 F:      drivers/mtd/spi-nor/
18584 F:      include/linux/mtd/spi-nor.h
18585
18586 SPI SUBSYSTEM
18587 M:      Mark Brown <[email protected]>
18588 L:      [email protected]
18589 S:      Maintained
18590 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
18591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
18592 F:      Documentation/devicetree/bindings/spi/
18593 F:      Documentation/spi/
18594 F:      drivers/spi/
18595 F:      include/linux/spi/
18596 F:      include/uapi/linux/spi/
18597 F:      tools/spi/
18598
18599 SPIDERNET NETWORK DRIVER for CELL
18600 M:      Ishizaki Kou <[email protected]>
18601 M:      Geoff Levand <[email protected]>
18602 L:      [email protected]
18603 L:      [email protected]
18604 S:      Maintained
18605 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
18606 F:      drivers/net/ethernet/toshiba/spider_net*
18607
18608 SPMI SUBSYSTEM
18609 M:      Stephen Boyd <[email protected]>
18610 L:      [email protected]
18611 S:      Maintained
18612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
18613 F:      Documentation/devicetree/bindings/spmi/
18614 F:      drivers/spmi/
18615 F:      include/dt-bindings/spmi/spmi.h
18616 F:      include/linux/spmi.h
18617 F:      include/trace/events/spmi.h
18618
18619 SPU FILE SYSTEM
18620 M:      Jeremy Kerr <[email protected]>
18621 L:      [email protected]
18622 S:      Supported
18623 W:      http://www.ibm.com/developerworks/power/cell/
18624 F:      Documentation/filesystems/spufs/spufs.rst
18625 F:      arch/powerpc/platforms/cell/spufs/
18626
18627 SQUASHFS FILE SYSTEM
18628 M:      Phillip Lougher <[email protected]>
18629 L:      [email protected] (subscribers-only)
18630 S:      Maintained
18631 W:      http://squashfs.org.uk
18632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
18633 F:      Documentation/filesystems/squashfs.rst
18634 F:      fs/squashfs/
18635
18636 SRM (Alpha) environment access
18637 M:      Jan-Benedict Glaw <[email protected]>
18638 S:      Maintained
18639 F:      arch/alpha/kernel/srm_env.c
18640
18641 ST LSM6DSx IMU IIO DRIVER
18642 M:      Lorenzo Bianconi <[email protected]>
18643 L:      [email protected]
18644 S:      Maintained
18645 W:      http://www.st.com/
18646 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
18647 F:      drivers/iio/imu/st_lsm6dsx/
18648
18649 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
18650 M:      Benjamin Mugnier <[email protected]>
18651 M:      Sylvain Petinot <[email protected]>
18652 L:      [email protected]
18653 S:      Maintained
18654 T:      git git://linuxtv.org/media_tree.git
18655 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
18656 F:      drivers/media/i2c/st-mipid02.c
18657
18658 ST STM32 I2C/SMBUS DRIVER
18659 M:      Pierre-Yves MORDRET <[email protected]>
18660 M:      Alain Volmat <[email protected]>
18661 L:      [email protected]
18662 S:      Maintained
18663 F:      drivers/i2c/busses/i2c-stm32*
18664
18665 ST STM32 SPI DRIVER
18666 M:      Alain Volmat <[email protected]>
18667 L:      [email protected]
18668 S:      Maintained
18669 F:      drivers/spi/spi-stm32.c
18670
18671 ST STPDDC60 DRIVER
18672 M:      Daniel Nilsson <[email protected]>
18673 L:      [email protected]
18674 S:      Maintained
18675 F:      Documentation/hwmon/stpddc60.rst
18676 F:      drivers/hwmon/pmbus/stpddc60.c
18677
18678 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
18679 M:      Song Qiang <[email protected]>
18680 L:      [email protected]
18681 S:      Maintained
18682 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
18683 F:      drivers/iio/proximity/vl53l0x-i2c.c
18684
18685 STABLE BRANCH
18686 M:      Greg Kroah-Hartman <[email protected]>
18687 M:      Sasha Levin <[email protected]>
18688 L:      [email protected]
18689 S:      Supported
18690 F:      Documentation/process/stable-kernel-rules.rst
18691
18692 STAGING - ATOMISP DRIVER
18693 M:      Mauro Carvalho Chehab <[email protected]>
18694 R:      Sakari Ailus <[email protected]>
18695 L:      [email protected]
18696 S:      Maintained
18697 F:      drivers/staging/media/atomisp/
18698
18699 STAGING - FIELDBUS SUBSYSTEM
18700 M:      Sven Van Asbroeck <[email protected]>
18701 S:      Maintained
18702 F:      drivers/staging/fieldbus/*
18703 F:      drivers/staging/fieldbus/Documentation/
18704
18705 STAGING - HMS ANYBUS-S BUS
18706 M:      Sven Van Asbroeck <[email protected]>
18707 S:      Maintained
18708 F:      drivers/staging/fieldbus/anybuss/
18709
18710 STAGING - INDUSTRIAL IO
18711 M:      Jonathan Cameron <[email protected]>
18712 L:      [email protected]
18713 S:      Odd Fixes
18714 F:      Documentation/devicetree/bindings/staging/iio/
18715 F:      drivers/staging/iio/
18716
18717 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
18718 M:      Marc Dietrich <[email protected]>
18719 L:      [email protected] (moderated for non-subscribers)
18720 L:      [email protected]
18721 S:      Maintained
18722 F:      drivers/staging/nvec/
18723
18724 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
18725 M:      Jens Frederich <[email protected]>
18726 M:      Jon Nettleton <[email protected]>
18727 S:      Maintained
18728 W:      http://wiki.laptop.org/go/DCON
18729 F:      drivers/staging/olpc_dcon/
18730
18731 STAGING - REALTEK RTL8188EU DRIVERS
18732 M:      Larry Finger <[email protected]>
18733 M:      Phillip Potter <[email protected]>
18734 S:      Supported
18735 F:      drivers/staging/r8188eu/
18736
18737 STAGING - REALTEK RTL8712U DRIVERS
18738 M:      Larry Finger <[email protected]>
18739 M:      Florian Schilhabel <[email protected]>.
18740 S:      Odd Fixes
18741 F:      drivers/staging/rtl8712/
18742
18743 STAGING - SEPS525 LCD CONTROLLER DRIVERS
18744 M:      Michael Hennerich <[email protected]>
18745 L:      [email protected]
18746 S:      Supported
18747 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
18748 F:      drivers/staging/fbtft/fb_seps525.c
18749
18750 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
18751 M:      Sudip Mukherjee <[email protected]>
18752 M:      Teddy Wang <[email protected]>
18753 M:      Sudip Mukherjee <[email protected]>
18754 L:      [email protected]
18755 S:      Maintained
18756 F:      drivers/staging/sm750fb/
18757
18758 STAGING - VIA VT665X DRIVERS
18759 M:      Forest Bond <[email protected]>
18760 S:      Odd Fixes
18761 F:      drivers/staging/vt665?/
18762
18763 STAGING SUBSYSTEM
18764 M:      Greg Kroah-Hartman <[email protected]>
18765 L:      [email protected]
18766 S:      Supported
18767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
18768 F:      drivers/staging/
18769
18770 STARFIRE/DURALAN NETWORK DRIVER
18771 M:      Ion Badulescu <[email protected]>
18772 S:      Odd Fixes
18773 F:      drivers/net/ethernet/adaptec/starfire*
18774
18775 STARFIVE JH7100 CLOCK DRIVERS
18776 M:      Emil Renner Berthing <[email protected]>
18777 S:      Maintained
18778 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
18779 F:      drivers/clk/starfive/clk-starfive-jh7100*
18780 F:      include/dt-bindings/clock/starfive-jh7100*.h
18781
18782 STARFIVE JH7100 PINCTRL DRIVER
18783 M:      Emil Renner Berthing <[email protected]>
18784 L:      [email protected]
18785 S:      Maintained
18786 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
18787 F:      drivers/pinctrl/pinctrl-starfive.c
18788 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
18789
18790 STARFIVE JH7100 RESET CONTROLLER DRIVER
18791 M:      Emil Renner Berthing <[email protected]>
18792 S:      Maintained
18793 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
18794 F:      drivers/reset/reset-starfive-jh7100.c
18795 F:      include/dt-bindings/reset/starfive-jh7100.h
18796
18797 STATIC BRANCH/CALL
18798 M:      Peter Zijlstra <[email protected]>
18799 M:      Josh Poimboeuf <[email protected]>
18800 M:      Jason Baron <[email protected]>
18801 R:      Steven Rostedt <[email protected]>
18802 R:      Ard Biesheuvel <[email protected]>
18803 S:      Supported
18804 F:      arch/*/include/asm/jump_label*.h
18805 F:      arch/*/include/asm/static_call*.h
18806 F:      arch/*/kernel/jump_label.c
18807 F:      arch/*/kernel/static_call.c
18808 F:      include/linux/jump_label*.h
18809 F:      include/linux/static_call*.h
18810 F:      kernel/jump_label.c
18811 F:      kernel/static_call.c
18812
18813 STI AUDIO (ASoC) DRIVERS
18814 M:      Arnaud Pouliquen <[email protected]>
18815 L:      [email protected] (moderated for non-subscribers)
18816 S:      Maintained
18817 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
18818 F:      sound/soc/sti/
18819
18820 STI CEC DRIVER
18821 M:      Alain Volmat <[email protected]>
18822 S:      Maintained
18823 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18824 F:      drivers/media/cec/platform/sti/
18825
18826 STK1160 USB VIDEO CAPTURE DRIVER
18827 M:      Ezequiel Garcia <[email protected]>
18828 L:      [email protected]
18829 S:      Maintained
18830 T:      git git://linuxtv.org/media_tree.git
18831 F:      drivers/media/usb/stk1160/
18832
18833 STM32 AUDIO (ASoC) DRIVERS
18834 M:      Olivier Moysan <[email protected]>
18835 M:      Arnaud Pouliquen <[email protected]>
18836 L:      [email protected] (moderated for non-subscribers)
18837 S:      Maintained
18838 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18839 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18840 F:      sound/soc/stm/
18841
18842 STM32 TIMER/LPTIMER DRIVERS
18843 M:      Fabrice Gasnier <[email protected]>
18844 S:      Maintained
18845 F:      Documentation/ABI/testing/*timer-stm32
18846 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18847 F:      drivers/*/stm32-*timer*
18848 F:      drivers/pwm/pwm-stm32*
18849 F:      include/linux/*/stm32-*tim*
18850
18851 STMMAC ETHERNET DRIVER
18852 M:      Giuseppe Cavallaro <[email protected]>
18853 M:      Alexandre Torgue <[email protected]>
18854 M:      Jose Abreu <[email protected]>
18855 L:      [email protected]
18856 S:      Supported
18857 W:      http://www.stlinux.com
18858 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18859 F:      drivers/net/ethernet/stmicro/stmmac/
18860
18861 SUN3/3X
18862 M:      Sam Creasey <[email protected]>
18863 S:      Maintained
18864 W:      http://sammy.net/sun3/
18865 F:      arch/m68k/include/asm/sun3*
18866 F:      arch/m68k/kernel/*sun3*
18867 F:      arch/m68k/sun3*/
18868 F:      drivers/net/ethernet/i825xx/sun3*
18869
18870 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18871 M:      Hans de Goede <[email protected]>
18872 L:      [email protected]
18873 S:      Maintained
18874 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18875 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18876
18877 SUNDANCE NETWORK DRIVER
18878 M:      Denis Kirjanov <[email protected]>
18879 L:      [email protected]
18880 S:      Maintained
18881 F:      drivers/net/ethernet/dlink/sundance.c
18882
18883 SUNPLUS OCOTP DRIVER
18884 M:      Vincent Shih <[email protected]>
18885 S:      Maintained
18886 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
18887 F:      drivers/nvmem/sunplus-ocotp.c
18888
18889 SUNPLUS RTC DRIVER
18890 M:      Vincent Shih <[email protected]>
18891 L:      [email protected]
18892 S:      Maintained
18893 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
18894 F:      drivers/rtc/rtc-sunplus.c
18895
18896 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
18897 M:      Li-hao Kuo <[email protected]>
18898 L:      [email protected]
18899 S:      Maintained
18900 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
18901 F:      drivers/spi/spi-sunplus-sp7021.c
18902
18903 SUNPLUS UART DRIVER
18904 M:      Hammer Hsieh <[email protected]>
18905 S:      Maintained
18906 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
18907 F:      drivers/tty/serial/sunplus-uart.c
18908
18909 SUPERH
18910 M:      Yoshinori Sato <[email protected]>
18911 M:      Rich Felker <[email protected]>
18912 L:      [email protected]
18913 S:      Maintained
18914 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18915 F:      Documentation/sh/
18916 F:      arch/sh/
18917 F:      drivers/sh/
18918
18919 SUSPEND TO RAM
18920 M:      "Rafael J. Wysocki" <[email protected]>
18921 M:      Len Brown <[email protected]>
18922 M:      Pavel Machek <[email protected]>
18923 L:      [email protected]
18924 S:      Supported
18925 B:      https://bugzilla.kernel.org
18926 F:      Documentation/power/
18927 F:      arch/x86/kernel/acpi/
18928 F:      drivers/base/power/
18929 F:      include/linux/freezer.h
18930 F:      include/linux/pm.h
18931 F:      include/linux/suspend.h
18932 F:      kernel/power/
18933
18934 SVGA HANDLING
18935 M:      Martin Mares <[email protected]>
18936 L:      [email protected]
18937 S:      Maintained
18938 F:      Documentation/admin-guide/svga.rst
18939 F:      arch/x86/boot/video*
18940
18941 SWIOTLB SUBSYSTEM
18942 M:      Christoph Hellwig <[email protected]>
18943 L:      [email protected]
18944 S:      Supported
18945 W:      http://git.infradead.org/users/hch/dma-mapping.git
18946 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18947 F:      arch/*/kernel/pci-swiotlb.c
18948 F:      include/linux/swiotlb.h
18949 F:      kernel/dma/swiotlb.c
18950
18951 SWITCHDEV
18952 M:      Jiri Pirko <[email protected]>
18953 M:      Ivan Vecera <[email protected]>
18954 L:      [email protected]
18955 S:      Supported
18956 F:      include/net/switchdev.h
18957 F:      net/switchdev/
18958
18959 SY8106A REGULATOR DRIVER
18960 M:      Icenowy Zheng <[email protected]>
18961 S:      Maintained
18962 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18963 F:      drivers/regulator/sy8106a-regulator.c
18964
18965 SYNC FILE FRAMEWORK
18966 M:      Sumit Semwal <[email protected]>
18967 R:      Gustavo Padovan <[email protected]>
18968 L:      [email protected]
18969 L:      [email protected]
18970 S:      Maintained
18971 T:      git git://anongit.freedesktop.org/drm/drm-misc
18972 F:      Documentation/driver-api/sync_file.rst
18973 F:      drivers/dma-buf/dma-fence*
18974 F:      drivers/dma-buf/sw_sync.c
18975 F:      drivers/dma-buf/sync_*
18976 F:      include/linux/sync_file.h
18977 F:      include/uapi/linux/sync_file.h
18978
18979 SYNOPSYS ARC ARCHITECTURE
18980 M:      Vineet Gupta <[email protected]>
18981 L:      [email protected]
18982 S:      Supported
18983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18984 F:      Documentation/arc/
18985 F:      Documentation/devicetree/bindings/arc/*
18986 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18987 F:      arch/arc/
18988 F:      drivers/clocksource/arc_timer.c
18989 F:      drivers/tty/serial/arc_uart.c
18990
18991 SYNOPSYS ARC HSDK SDP pll clock driver
18992 M:      Eugeniy Paltsev <[email protected]>
18993 S:      Supported
18994 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18995 F:      drivers/clk/clk-hsdk-pll.c
18996
18997 SYNOPSYS ARC SDP clock driver
18998 M:      Eugeniy Paltsev <[email protected]>
18999 S:      Supported
19000 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
19001 F:      drivers/clk/axs10x/*
19002
19003 SYNOPSYS ARC SDP platform support
19004 M:      Alexey Brodkin <[email protected]>
19005 S:      Supported
19006 F:      Documentation/devicetree/bindings/arc/axs10*
19007 F:      arch/arc/boot/dts/ax*
19008 F:      arch/arc/plat-axs10x
19009
19010 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
19011 M:      Eugeniy Paltsev <[email protected]>
19012 S:      Supported
19013 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
19014 F:      drivers/reset/reset-axs10x.c
19015
19016 SYNOPSYS CREG GPIO DRIVER
19017 M:      Eugeniy Paltsev <[email protected]>
19018 S:      Maintained
19019 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
19020 F:      drivers/gpio/gpio-creg-snps.c
19021
19022 SYNOPSYS DESIGNWARE 8250 UART DRIVER
19023 R:      Andy Shevchenko <[email protected]>
19024 S:      Maintained
19025 F:      drivers/tty/serial/8250/8250_dw.c
19026 F:      drivers/tty/serial/8250/8250_dwlib.*
19027 F:      drivers/tty/serial/8250/8250_lpss.c
19028
19029 SYNOPSYS DESIGNWARE APB GPIO DRIVER
19030 M:      Hoan Tran <[email protected]>
19031 M:      Serge Semin <[email protected]>
19032 L:      [email protected]
19033 S:      Maintained
19034 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
19035 F:      drivers/gpio/gpio-dwapb.c
19036
19037 SYNOPSYS DESIGNWARE APB SSI DRIVER
19038 M:      Serge Semin <[email protected]>
19039 L:      [email protected]
19040 S:      Supported
19041 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
19042 F:      drivers/spi/spi-dw*
19043
19044 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
19045 M:      Eugeniy Paltsev <[email protected]>
19046 S:      Maintained
19047 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
19048 F:      drivers/dma/dw-axi-dmac/
19049
19050 SYNOPSYS DESIGNWARE DMAC DRIVER
19051 M:      Viresh Kumar <[email protected]>
19052 R:      Andy Shevchenko <[email protected]>
19053 S:      Maintained
19054 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
19055 F:      drivers/dma/dw/
19056 F:      include/dt-bindings/dma/dw-dmac.h
19057 F:      include/linux/dma/dw.h
19058 F:      include/linux/platform_data/dma-dw.h
19059
19060 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
19061 M:      Jose Abreu <[email protected]>
19062 L:      [email protected]
19063 S:      Supported
19064 F:      drivers/net/ethernet/synopsys/
19065
19066 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
19067 M:      Jose Abreu <[email protected]>
19068 L:      [email protected]
19069 S:      Supported
19070 F:      drivers/net/pcs/pcs-xpcs.c
19071 F:      drivers/net/pcs/pcs-xpcs.h
19072 F:      include/linux/pcs/pcs-xpcs.h
19073
19074 SYNOPSYS DESIGNWARE I2C DRIVER
19075 M:      Jarkko Nikula <[email protected]>
19076 R:      Andy Shevchenko <[email protected]>
19077 R:      Mika Westerberg <[email protected]>
19078 R:      Jan Dabros <[email protected]>
19079 L:      [email protected]
19080 S:      Maintained
19081 F:      drivers/i2c/busses/i2c-designware-*
19082
19083 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
19084 M:      Jaehoon Chung <[email protected]>
19085 L:      [email protected]
19086 S:      Maintained
19087 F:      drivers/mmc/host/dw_mmc*
19088
19089 SYNOPSYS HSDK RESET CONTROLLER DRIVER
19090 M:      Eugeniy Paltsev <[email protected]>
19091 S:      Supported
19092 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
19093 F:      drivers/reset/reset-hsdk.c
19094 F:      include/dt-bindings/reset/snps,hsdk-reset.h
19095
19096 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
19097 M:      Prabu Thangamuthu <[email protected]>
19098 M:      Manjunath M B <[email protected]>
19099 L:      [email protected]
19100 S:      Maintained
19101 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
19102
19103 SYSTEM CONFIGURATION (SYSCON)
19104 M:      Lee Jones <[email protected]>
19105 M:      Arnd Bergmann <[email protected]>
19106 S:      Supported
19107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
19108 F:      drivers/mfd/syscon.c
19109
19110 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
19111 M:      Sudeep Holla <[email protected]>
19112 R:      Cristian Marussi <[email protected]>
19113 L:      [email protected] (moderated for non-subscribers)
19114 S:      Maintained
19115 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
19116 F:      drivers/clk/clk-sc[mp]i.c
19117 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
19118 F:      drivers/firmware/arm_scmi/
19119 F:      drivers/firmware/arm_scpi.c
19120 F:      drivers/regulator/scmi-regulator.c
19121 F:      drivers/reset/reset-scmi.c
19122 F:      include/linux/sc[mp]i_protocol.h
19123 F:      include/trace/events/scmi.h
19124 F:      include/uapi/linux/virtio_scmi.h
19125
19126 SYSTEM RESET/SHUTDOWN DRIVERS
19127 M:      Sebastian Reichel <[email protected]>
19128 L:      [email protected]
19129 S:      Maintained
19130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
19131 F:      Documentation/devicetree/bindings/power/reset/
19132 F:      drivers/power/reset/
19133
19134 SYSTEM TRACE MODULE CLASS
19135 M:      Alexander Shishkin <[email protected]>
19136 S:      Maintained
19137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
19138 F:      Documentation/trace/stm.rst
19139 F:      drivers/hwtracing/stm/
19140 F:      include/linux/stm.h
19141 F:      include/uapi/linux/stm.h
19142
19143 SYSTEM76 ACPI DRIVER
19144 M:      Jeremy Soller <[email protected]>
19145 M:      System76 Product Development <[email protected]>
19146 L:      [email protected]
19147 S:      Maintained
19148 F:      drivers/platform/x86/system76_acpi.c
19149
19150 SYSV FILESYSTEM
19151 M:      Christoph Hellwig <[email protected]>
19152 S:      Maintained
19153 F:      Documentation/filesystems/sysv-fs.rst
19154 F:      fs/sysv/
19155 F:      include/linux/sysv_fs.h
19156
19157 TASKSTATS STATISTICS INTERFACE
19158 M:      Balbir Singh <[email protected]>
19159 S:      Maintained
19160 F:      Documentation/accounting/taskstats*
19161 F:      include/linux/taskstats*
19162 F:      kernel/taskstats.c
19163
19164 TC subsystem
19165 M:      Jamal Hadi Salim <[email protected]>
19166 M:      Cong Wang <[email protected]>
19167 M:      Jiri Pirko <[email protected]>
19168 L:      [email protected]
19169 S:      Maintained
19170 F:      include/net/pkt_cls.h
19171 F:      include/net/pkt_sched.h
19172 F:      include/net/tc_act/
19173 F:      include/uapi/linux/pkt_cls.h
19174 F:      include/uapi/linux/pkt_sched.h
19175 F:      include/uapi/linux/tc_act/
19176 F:      include/uapi/linux/tc_ematch/
19177 F:      net/sched/
19178 F:      tools/testing/selftests/tc-testing
19179
19180 TC90522 MEDIA DRIVER
19181 M:      Akihiro Tsukada <[email protected]>
19182 L:      [email protected]
19183 S:      Odd Fixes
19184 F:      drivers/media/dvb-frontends/tc90522*
19185
19186 TCP LOW PRIORITY MODULE
19187 M:      "Wong Hoi Sing, Edison" <[email protected]>
19188 M:      "Hung Hing Lun, Mike" <[email protected]>
19189 S:      Maintained
19190 W:      http://tcp-lp-mod.sourceforge.net/
19191 F:      net/ipv4/tcp_lp.c
19192
19193 TDA10071 MEDIA DRIVER
19194 M:      Antti Palosaari <[email protected]>
19195 L:      [email protected]
19196 S:      Maintained
19197 W:      https://linuxtv.org
19198 W:      http://palosaari.fi/linux/
19199 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19200 T:      git git://linuxtv.org/anttip/media_tree.git
19201 F:      drivers/media/dvb-frontends/tda10071*
19202
19203 TDA18212 MEDIA DRIVER
19204 M:      Antti Palosaari <[email protected]>
19205 L:      [email protected]
19206 S:      Maintained
19207 W:      https://linuxtv.org
19208 W:      http://palosaari.fi/linux/
19209 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19210 T:      git git://linuxtv.org/anttip/media_tree.git
19211 F:      drivers/media/tuners/tda18212*
19212
19213 TDA18218 MEDIA DRIVER
19214 M:      Antti Palosaari <[email protected]>
19215 L:      [email protected]
19216 S:      Maintained
19217 W:      https://linuxtv.org
19218 W:      http://palosaari.fi/linux/
19219 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19220 T:      git git://linuxtv.org/anttip/media_tree.git
19221 F:      drivers/media/tuners/tda18218*
19222
19223 TDA18250 MEDIA DRIVER
19224 M:      Olli Salonen <[email protected]>
19225 L:      [email protected]
19226 S:      Maintained
19227 W:      https://linuxtv.org
19228 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19229 T:      git git://linuxtv.org/media_tree.git
19230 F:      drivers/media/tuners/tda18250*
19231
19232 TDA18271 MEDIA DRIVER
19233 M:      Michael Krufky <[email protected]>
19234 L:      [email protected]
19235 S:      Maintained
19236 W:      https://linuxtv.org
19237 W:      http://github.com/mkrufky
19238 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19239 T:      git git://linuxtv.org/mkrufky/tuners.git
19240 F:      drivers/media/tuners/tda18271*
19241
19242 TDA1997x MEDIA DRIVER
19243 M:      Tim Harvey <[email protected]>
19244 L:      [email protected]
19245 S:      Maintained
19246 W:      https://linuxtv.org
19247 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19248 F:      drivers/media/i2c/tda1997x.*
19249
19250 TDA827x MEDIA DRIVER
19251 M:      Michael Krufky <[email protected]>
19252 L:      [email protected]
19253 S:      Maintained
19254 W:      https://linuxtv.org
19255 W:      http://github.com/mkrufky
19256 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19257 T:      git git://linuxtv.org/mkrufky/tuners.git
19258 F:      drivers/media/tuners/tda8290.*
19259
19260 TDA8290 MEDIA DRIVER
19261 M:      Michael Krufky <[email protected]>
19262 L:      [email protected]
19263 S:      Maintained
19264 W:      https://linuxtv.org
19265 W:      http://github.com/mkrufky
19266 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19267 T:      git git://linuxtv.org/mkrufky/tuners.git
19268 F:      drivers/media/tuners/tda8290.*
19269
19270 TDA9840 MEDIA DRIVER
19271 M:      Hans Verkuil <[email protected]>
19272 L:      [email protected]
19273 S:      Maintained
19274 W:      https://linuxtv.org
19275 T:      git git://linuxtv.org/media_tree.git
19276 F:      drivers/media/i2c/tda9840*
19277
19278 TEA5761 TUNER DRIVER
19279 M:      Mauro Carvalho Chehab <[email protected]>
19280 L:      [email protected]
19281 S:      Odd fixes
19282 W:      https://linuxtv.org
19283 T:      git git://linuxtv.org/media_tree.git
19284 F:      drivers/media/tuners/tea5761.*
19285
19286 TEA5767 TUNER DRIVER
19287 M:      Mauro Carvalho Chehab <[email protected]>
19288 L:      [email protected]
19289 S:      Maintained
19290 W:      https://linuxtv.org
19291 T:      git git://linuxtv.org/media_tree.git
19292 F:      drivers/media/tuners/tea5767.*
19293
19294 TEA6415C MEDIA DRIVER
19295 M:      Hans Verkuil <[email protected]>
19296 L:      [email protected]
19297 S:      Maintained
19298 W:      https://linuxtv.org
19299 T:      git git://linuxtv.org/media_tree.git
19300 F:      drivers/media/i2c/tea6415c*
19301
19302 TEA6420 MEDIA DRIVER
19303 M:      Hans Verkuil <[email protected]>
19304 L:      [email protected]
19305 S:      Maintained
19306 W:      https://linuxtv.org
19307 T:      git git://linuxtv.org/media_tree.git
19308 F:      drivers/media/i2c/tea6420*
19309
19310 TEAM DRIVER
19311 M:      Jiri Pirko <[email protected]>
19312 L:      [email protected]
19313 S:      Supported
19314 F:      drivers/net/team/
19315 F:      include/linux/if_team.h
19316 F:      include/uapi/linux/if_team.h
19317
19318 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
19319 M:      "Savoir-faire Linux Inc." <[email protected]>
19320 S:      Maintained
19321 F:      arch/x86/platform/ts5500/
19322
19323 TECHNOTREND USB IR RECEIVER
19324 M:      Sean Young <[email protected]>
19325 L:      [email protected]
19326 S:      Maintained
19327 F:      drivers/media/rc/ttusbir.c
19328
19329 TECHWELL TW9910 VIDEO DECODER
19330 L:      [email protected]
19331 S:      Orphan
19332 F:      drivers/media/i2c/tw9910.c
19333 F:      include/media/i2c/tw9910.h
19334
19335 TEE SUBSYSTEM
19336 M:      Jens Wiklander <[email protected]>
19337 R:      Sumit Garg <[email protected]>
19338 L:      [email protected]
19339 S:      Maintained
19340 F:      Documentation/staging/tee.rst
19341 F:      drivers/tee/
19342 F:      include/linux/tee_drv.h
19343 F:      include/uapi/linux/tee.h
19344
19345 TEGRA ARCHITECTURE SUPPORT
19346 M:      Thierry Reding <[email protected]>
19347 M:      Jonathan Hunter <[email protected]>
19348 L:      [email protected]
19349 S:      Supported
19350 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
19351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
19352 N:      [^a-z]tegra
19353
19354 TEGRA CLOCK DRIVER
19355 M:      Peter De Schrijver <[email protected]>
19356 M:      Prashant Gaikwad <[email protected]>
19357 S:      Supported
19358 F:      drivers/clk/tegra/
19359
19360 TEGRA DMA DRIVERS
19361 M:      Laxman Dewangan <[email protected]>
19362 M:      Jon Hunter <[email protected]>
19363 S:      Supported
19364 F:      drivers/dma/tegra*
19365
19366 TEGRA I2C DRIVER
19367 M:      Laxman Dewangan <[email protected]>
19368 R:      Dmitry Osipenko <[email protected]>
19369 S:      Supported
19370 F:      drivers/i2c/busses/i2c-tegra.c
19371
19372 TEGRA IOMMU DRIVERS
19373 M:      Thierry Reding <[email protected]>
19374 R:      Krishna Reddy <[email protected]>
19375 L:      [email protected]
19376 S:      Supported
19377 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
19378 F:      drivers/iommu/tegra*
19379
19380 TEGRA KBC DRIVER
19381 M:      Laxman Dewangan <[email protected]>
19382 S:      Supported
19383 F:      drivers/input/keyboard/tegra-kbc.c
19384
19385 TEGRA NAND DRIVER
19386 M:      Stefan Agner <[email protected]>
19387 M:      Lucas Stach <[email protected]>
19388 S:      Maintained
19389 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
19390 F:      drivers/mtd/nand/raw/tegra_nand.c
19391
19392 TEGRA PWM DRIVER
19393 M:      Thierry Reding <[email protected]>
19394 S:      Supported
19395 F:      drivers/pwm/pwm-tegra.c
19396
19397 TEGRA SERIAL DRIVER
19398 M:      Laxman Dewangan <[email protected]>
19399 S:      Supported
19400 F:      drivers/tty/serial/serial-tegra.c
19401
19402 TEGRA SPI DRIVER
19403 M:      Laxman Dewangan <[email protected]>
19404 S:      Supported
19405 F:      drivers/spi/spi-tegra*
19406
19407 TEGRA QUAD SPI DRIVER
19408 M:      Thierry Reding <[email protected]>
19409 M:      Jonathan Hunter <[email protected]>
19410 M:      Sowjanya Komatineni <[email protected]>
19411 L:      [email protected]
19412 S:      Maintained
19413 F:      drivers/spi/spi-tegra210-quad.c
19414
19415 TEGRA VIDEO DRIVER
19416 M:      Thierry Reding <[email protected]>
19417 M:      Jonathan Hunter <[email protected]>
19418 M:      Sowjanya Komatineni <[email protected]>
19419 L:      [email protected]
19420 L:      [email protected]
19421 S:      Maintained
19422 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
19423 F:      drivers/staging/media/tegra-video/
19424
19425 TEGRA XUSB PADCTL DRIVER
19426 M:      JC Kuo <[email protected]>
19427 S:      Supported
19428 F:      drivers/phy/tegra/xusb*
19429
19430 TEHUTI ETHERNET DRIVER
19431 M:      Andy Gospodarek <[email protected]>
19432 L:      [email protected]
19433 S:      Supported
19434 F:      drivers/net/ethernet/tehuti/*
19435
19436 TELECOM CLOCK DRIVER FOR MCPL0010
19437 M:      Mark Gross <[email protected]>
19438 S:      Supported
19439 F:      drivers/char/tlclk.c
19440
19441 TEMPO SEMICONDUCTOR DRIVERS
19442 M:      Steven Eckhoff <[email protected]>
19443 S:      Maintained
19444 F:      Documentation/devicetree/bindings/sound/tscs*.txt
19445 F:      sound/soc/codecs/tscs*.c
19446 F:      sound/soc/codecs/tscs*.h
19447
19448 TENSILICA XTENSA PORT (xtensa)
19449 M:      Chris Zankel <[email protected]>
19450 M:      Max Filippov <[email protected]>
19451 L:      [email protected]
19452 S:      Maintained
19453 T:      git git://github.com/czankel/xtensa-linux.git
19454 F:      arch/xtensa/
19455 F:      drivers/irqchip/irq-xtensa-*
19456
19457 TEXAS INSTRUMENTS ASoC DRIVERS
19458 M:      Peter Ujfalusi <[email protected]>
19459 L:      [email protected] (moderated for non-subscribers)
19460 S:      Maintained
19461 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
19462 F:      sound/soc/ti/
19463
19464 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
19465 M:      Ricardo Ribalda <[email protected]>
19466 L:      [email protected]
19467 S:      Supported
19468 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
19469 F:      drivers/iio/dac/ti-dac7612.c
19470
19471 TEXAS INSTRUMENTS DMA DRIVERS
19472 M:      Peter Ujfalusi <[email protected]>
19473 L:      [email protected]
19474 S:      Maintained
19475 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
19476 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
19477 F:      Documentation/devicetree/bindings/dma/ti/
19478 F:      drivers/dma/ti/
19479 X:      drivers/dma/ti/cppi41.c
19480 F:      include/linux/dma/k3-udma-glue.h
19481 F:      include/linux/dma/ti-cppi5.h
19482 F:      include/linux/dma/k3-psil.h
19483
19484 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
19485 M:      Nishanth Menon <[email protected]>
19486 M:      Tero Kristo <[email protected]>
19487 M:      Santosh Shilimkar <[email protected]>
19488 L:      [email protected] (moderated for non-subscribers)
19489 S:      Maintained
19490 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
19491 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
19492 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
19493 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
19494 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
19495 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
19496 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
19497 F:      drivers/clk/keystone/sci-clk.c
19498 F:      drivers/firmware/ti_sci*
19499 F:      drivers/irqchip/irq-ti-sci-inta.c
19500 F:      drivers/irqchip/irq-ti-sci-intr.c
19501 F:      drivers/reset/reset-ti-sci.c
19502 F:      drivers/soc/ti/ti_sci_inta_msi.c
19503 F:      drivers/soc/ti/ti_sci_pm_domains.c
19504 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
19505 F:      include/linux/soc/ti/ti_sci_inta_msi.h
19506 F:      include/linux/soc/ti/ti_sci_protocol.h
19507
19508 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
19509 M:      Robert Marko <[email protected]>
19510 M:      Luka Perkov <[email protected]>
19511 L:      [email protected]
19512 S:      Maintained
19513 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
19514 F:      Documentation/hwmon/tps23861.rst
19515 F:      drivers/hwmon/tps23861.c
19516
19517 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
19518 M:      Puranjay Mohan <[email protected]>
19519 L:      [email protected]
19520 S:      Supported
19521 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
19522 F:      drivers/iio/temperature/tmp117.c
19523
19524 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
19525 M:      Hans Verkuil <[email protected]>
19526 L:      [email protected]
19527 S:      Maintained
19528 W:      https://linuxtv.org
19529 T:      git git://linuxtv.org/media_tree.git
19530 F:      drivers/media/radio/radio-raremono.c
19531
19532 THERMAL
19533 M:      Rafael J. Wysocki <[email protected]>
19534 M:      Daniel Lezcano <[email protected]>
19535 R:      Amit Kucheria <[email protected]>
19536 R:      Zhang Rui <[email protected]>
19537 L:      [email protected]
19538 S:      Supported
19539 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
19541 F:      Documentation/ABI/testing/sysfs-class-thermal
19542 F:      Documentation/devicetree/bindings/thermal/
19543 F:      Documentation/driver-api/thermal/
19544 F:      drivers/thermal/
19545 F:      include/linux/cpu_cooling.h
19546 F:      include/linux/thermal.h
19547 F:      include/uapi/linux/thermal.h
19548 F:      tools/thermal/
19549
19550 THERMAL DRIVER FOR AMLOGIC SOCS
19551 M:      Guillaume La Roque <[email protected]>
19552 L:      [email protected]
19553 L:      [email protected]
19554 S:      Supported
19555 W:      http://linux-meson.com/
19556 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
19557 F:      drivers/thermal/amlogic_thermal.c
19558
19559 THERMAL/CPU_COOLING
19560 M:      Amit Daniel Kachhap <[email protected]>
19561 M:      Daniel Lezcano <[email protected]>
19562 M:      Viresh Kumar <[email protected]>
19563 R:      Lukasz Luba <[email protected]>
19564 L:      [email protected]
19565 S:      Supported
19566 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
19567 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
19568 F:      drivers/thermal/cpufreq_cooling.c
19569 F:      drivers/thermal/cpuidle_cooling.c
19570 F:      include/linux/cpu_cooling.h
19571
19572 THERMAL/POWER_ALLOCATOR
19573 M:      Lukasz Luba <[email protected]>
19574 L:      [email protected]
19575 S:      Maintained
19576 F:      Documentation/driver-api/thermal/power_allocator.rst
19577 F:      drivers/thermal/gov_power_allocator.c
19578 F:      include/trace/events/thermal_power_allocator.h
19579
19580 THINKPAD ACPI EXTRAS DRIVER
19581 M:      Henrique de Moraes Holschuh <[email protected]>
19582 L:      [email protected]
19583 L:      [email protected]
19584 S:      Maintained
19585 W:      http://ibm-acpi.sourceforge.net
19586 W:      http://thinkwiki.org/wiki/Ibm-acpi
19587 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
19588 F:      drivers/platform/x86/thinkpad_acpi.c
19589
19590 THINKPAD LMI DRIVER
19591 M:      Mark Pearson <[email protected]>
19592 L:      [email protected]
19593 S:      Maintained
19594 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
19595 F:      drivers/platform/x86/think-lmi.?
19596
19597 THUNDERBOLT DMA TRAFFIC TEST DRIVER
19598 M:      Isaac Hazan <[email protected]>
19599 L:      [email protected]
19600 S:      Maintained
19601 F:      drivers/thunderbolt/dma_test.c
19602
19603 THUNDERBOLT DRIVER
19604 M:      Andreas Noever <[email protected]>
19605 M:      Michael Jamet <[email protected]>
19606 M:      Mika Westerberg <[email protected]>
19607 M:      Yehezkel Bernat <[email protected]>
19608 L:      [email protected]
19609 S:      Maintained
19610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
19611 F:      Documentation/admin-guide/thunderbolt.rst
19612 F:      drivers/thunderbolt/
19613 F:      include/linux/thunderbolt.h
19614
19615 THUNDERBOLT NETWORK DRIVER
19616 M:      Michael Jamet <[email protected]>
19617 M:      Mika Westerberg <[email protected]>
19618 M:      Yehezkel Bernat <[email protected]>
19619 L:      [email protected]
19620 S:      Maintained
19621 F:      drivers/net/thunderbolt.c
19622
19623 THUNDERX GPIO DRIVER
19624 M:      Robert Richter <[email protected]>
19625 S:      Odd Fixes
19626 F:      drivers/gpio/gpio-thunderx.c
19627
19628 TI ADS131E0X ADC SERIES DRIVER
19629 M:      Tomislav Denis <[email protected]>
19630 L:      [email protected]
19631 S:      Maintained
19632 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
19633 F:      drivers/iio/adc/ti-ads131e08.c
19634
19635 TI AM437X VPFE DRIVER
19636 M:      "Lad, Prabhakar" <[email protected]>
19637 L:      [email protected]
19638 S:      Maintained
19639 W:      https://linuxtv.org
19640 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19641 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19642 F:      drivers/media/platform/ti/am437x/
19643
19644 TI BANDGAP AND THERMAL DRIVER
19645 M:      Eduardo Valentin <[email protected]>
19646 M:      Keerthy <[email protected]>
19647 L:      [email protected]
19648 L:      [email protected]
19649 S:      Maintained
19650 F:      drivers/thermal/ti-soc-thermal/
19651
19652 TI BQ27XXX POWER SUPPLY DRIVER
19653 F:      drivers/power/supply/bq27xxx_battery.c
19654 F:      drivers/power/supply/bq27xxx_battery_i2c.c
19655 F:      include/linux/power/bq27xxx_battery.h
19656
19657 TI CDCE706 CLOCK DRIVER
19658 M:      Max Filippov <[email protected]>
19659 S:      Maintained
19660 F:      drivers/clk/clk-cdce706.c
19661
19662 TI CLOCK DRIVER
19663 M:      Tero Kristo <[email protected]>
19664 L:      [email protected]
19665 S:      Odd Fixes
19666 F:      drivers/clk/ti/
19667 F:      include/linux/clk/ti.h
19668
19669 TI DAVINCI MACHINE SUPPORT
19670 M:      Sekhar Nori <[email protected]>
19671 R:      Bartosz Golaszewski <[email protected]>
19672 L:      [email protected] (moderated for non-subscribers)
19673 S:      Supported
19674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
19675 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
19676 F:      arch/arm/boot/dts/da850*
19677 F:      arch/arm/mach-davinci/
19678 F:      drivers/i2c/busses/i2c-davinci.c
19679
19680 TI DAVINCI SERIES CLOCK DRIVER
19681 M:      David Lechner <[email protected]>
19682 R:      Sekhar Nori <[email protected]>
19683 S:      Maintained
19684 F:      Documentation/devicetree/bindings/clock/ti/davinci/
19685 F:      drivers/clk/davinci/
19686
19687 TI DAVINCI SERIES GPIO DRIVER
19688 M:      Keerthy <[email protected]>
19689 L:      [email protected]
19690 S:      Maintained
19691 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
19692 F:      drivers/gpio/gpio-davinci.c
19693
19694 TI DAVINCI SERIES MEDIA DRIVER
19695 M:      "Lad, Prabhakar" <[email protected]>
19696 L:      [email protected]
19697 S:      Maintained
19698 W:      https://linuxtv.org
19699 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19700 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19701 F:      drivers/media/platform/ti/davinci/
19702 F:      include/media/davinci/
19703
19704 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
19705 R:      David Lechner <[email protected]>
19706 L:      [email protected]
19707 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
19708 F:      drivers/counter/ti-eqep.c
19709
19710 TI ETHERNET SWITCH DRIVER (CPSW)
19711 R:      Grygorii Strashko <[email protected]>
19712 L:      [email protected]
19713 L:      [email protected]
19714 S:      Maintained
19715 F:      drivers/net/ethernet/ti/cpsw*
19716 F:      drivers/net/ethernet/ti/davinci*
19717
19718 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
19719 M:      Alex Dubov <[email protected]>
19720 S:      Maintained
19721 W:      http://tifmxx.berlios.de/
19722 F:      drivers/memstick/host/tifm_ms.c
19723 F:      drivers/misc/tifm*
19724 F:      drivers/mmc/host/tifm_sd.c
19725 F:      include/linux/tifm.h
19726
19727 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
19728 M:      Nishanth Menon <[email protected]>
19729 M:      Santosh Shilimkar <[email protected]>
19730 L:      [email protected]
19731 L:      [email protected] (moderated for non-subscribers)
19732 S:      Maintained
19733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
19734 F:      drivers/soc/ti/*
19735
19736 TI LM49xxx FAMILY ASoC CODEC DRIVERS
19737 M:      M R Swami Reddy <[email protected]>
19738 M:      Vishwas A Deshpande <[email protected]>
19739 L:      [email protected] (moderated for non-subscribers)
19740 S:      Maintained
19741 F:      sound/soc/codecs/isabelle*
19742 F:      sound/soc/codecs/lm49453*
19743
19744 TI PCM3060 ASoC CODEC DRIVER
19745 M:      Kirill Marinushkin <[email protected]>
19746 L:      [email protected] (moderated for non-subscribers)
19747 S:      Maintained
19748 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
19749 F:      sound/soc/codecs/pcm3060*
19750
19751 TI TAS571X FAMILY ASoC CODEC DRIVER
19752 M:      Kevin Cernekee <[email protected]>
19753 L:      [email protected] (moderated for non-subscribers)
19754 S:      Odd Fixes
19755 F:      sound/soc/codecs/tas571x*
19756
19757 TI TRF7970A NFC DRIVER
19758 M:      Mark Greer <[email protected]>
19759 L:      [email protected]
19760 L:      [email protected] (subscribers-only)
19761 S:      Supported
19762 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
19763 F:      drivers/nfc/trf7970a.c
19764
19765 TI TSC2046 ADC DRIVER
19766 M:      Oleksij Rempel <[email protected]>
19767 R:      [email protected]
19768 L:      [email protected]
19769 S:      Maintained
19770 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
19771 F:      drivers/iio/adc/ti-tsc2046.c
19772
19773 TI TWL4030 SERIES SOC CODEC DRIVER
19774 M:      Peter Ujfalusi <[email protected]>
19775 L:      [email protected] (moderated for non-subscribers)
19776 S:      Maintained
19777 F:      sound/soc/codecs/twl4030*
19778
19779 TI VPE/CAL DRIVERS
19780 M:      Benoit Parrot <[email protected]>
19781 L:      [email protected]
19782 S:      Maintained
19783 W:      http://linuxtv.org/
19784 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19785 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
19786 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
19787 F:      drivers/media/platform/ti/cal/
19788 F:      drivers/media/platform/ti/vpe/
19789
19790 TI WILINK WIRELESS DRIVERS
19791 L:      [email protected]
19792 S:      Orphan
19793 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
19794 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
19795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
19796 F:      drivers/net/wireless/ti/
19797 F:      include/linux/wl12xx.h
19798
19799 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
19800 M:      John Stultz <[email protected]>
19801 M:      Thomas Gleixner <[email protected]>
19802 R:      Stephen Boyd <[email protected]>
19803 L:      [email protected]
19804 S:      Supported
19805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
19806 F:      include/linux/clocksource.h
19807 F:      include/linux/time.h
19808 F:      include/linux/timex.h
19809 F:      include/uapi/linux/time.h
19810 F:      include/uapi/linux/timex.h
19811 F:      kernel/time/alarmtimer.c
19812 F:      kernel/time/clocksource.c
19813 F:      kernel/time/ntp.c
19814 F:      kernel/time/time*.c
19815 F:      tools/testing/selftests/timers/
19816
19817 TIPC NETWORK LAYER
19818 M:      Jon Maloy <[email protected]>
19819 M:      Ying Xue <[email protected]>
19820 L:      [email protected] (core kernel code)
19821 L:      [email protected] (user apps, general discussion)
19822 S:      Maintained
19823 W:      http://tipc.sourceforge.net/
19824 F:      include/uapi/linux/tipc*.h
19825 F:      net/tipc/
19826
19827 TLAN NETWORK DRIVER
19828 M:      Samuel Chessman <[email protected]>
19829 L:      [email protected] (subscribers-only)
19830 S:      Maintained
19831 W:      http://sourceforge.net/projects/tlan/
19832 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
19833 F:      drivers/net/ethernet/ti/tlan.*
19834
19835 TM6000 VIDEO4LINUX DRIVER
19836 M:      Mauro Carvalho Chehab <[email protected]>
19837 L:      [email protected]
19838 S:      Odd fixes
19839 W:      https://linuxtv.org
19840 T:      git git://linuxtv.org/media_tree.git
19841 F:      Documentation/admin-guide/media/tm6000*
19842 F:      drivers/media/usb/tm6000/
19843
19844 TMIO/SDHI MMC DRIVER
19845 M:      Wolfram Sang <[email protected]>
19846 L:      [email protected]
19847 S:      Supported
19848 F:      drivers/mmc/host/renesas_sdhi*
19849 F:      drivers/mmc/host/tmio_mmc*
19850 F:      include/linux/mfd/tmio.h
19851
19852 TMP401 HARDWARE MONITOR DRIVER
19853 M:      Guenter Roeck <[email protected]>
19854 L:      [email protected]
19855 S:      Maintained
19856 F:      Documentation/hwmon/tmp401.rst
19857 F:      drivers/hwmon/tmp401.c
19858
19859 TMP464 HARDWARE MONITOR DRIVER
19860 M:      Agathe Porte <[email protected]>
19861 M:      Guenter Roeck <[email protected]>
19862 L:      [email protected]
19863 S:      Maintained
19864 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
19865 F:      Documentation/hwmon/tmp464.rst
19866 F:      drivers/hwmon/tmp464.c
19867
19868 TMP513 HARDWARE MONITOR DRIVER
19869 M:      Eric Tremblay <[email protected]>
19870 L:      [email protected]
19871 S:      Maintained
19872 F:      Documentation/hwmon/tmp513.rst
19873 F:      drivers/hwmon/tmp513.c
19874
19875 TMPFS (SHMEM FILESYSTEM)
19876 M:      Hugh Dickins <[email protected]>
19877 L:      [email protected]
19878 S:      Maintained
19879 F:      include/linux/shmem_fs.h
19880 F:      mm/shmem.c
19881
19882 TOMOYO SECURITY MODULE
19883 M:      Kentaro Takeda <[email protected]>
19884 M:      Tetsuo Handa <[email protected]>
19885 L:      [email protected] (subscribers-only, for developers in English)
19886 L:      [email protected] (subscribers-only, for users in English)
19887 L:      [email protected] (subscribers-only, for developers in Japanese)
19888 L:      [email protected] (subscribers-only, for users in Japanese)
19889 S:      Maintained
19890 W:      https://tomoyo.osdn.jp/
19891 F:      security/tomoyo/
19892
19893 TOPSTAR LAPTOP EXTRAS DRIVER
19894 M:      Herton Ronaldo Krzesinski <[email protected]>
19895 L:      [email protected]
19896 S:      Maintained
19897 F:      drivers/platform/x86/topstar-laptop.c
19898
19899 TORTURE-TEST MODULES
19900 M:      Davidlohr Bueso <[email protected]>
19901 M:      "Paul E. McKenney" <[email protected]>
19902 M:      Josh Triplett <[email protected]>
19903 L:      [email protected]
19904 S:      Supported
19905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19906 F:      Documentation/RCU/torture.rst
19907 F:      kernel/locking/locktorture.c
19908 F:      kernel/rcu/rcuscale.c
19909 F:      kernel/rcu/rcutorture.c
19910 F:      kernel/rcu/refscale.c
19911 F:      kernel/torture.c
19912
19913 TOSHIBA ACPI EXTRAS DRIVER
19914 M:      Azael Avalos <[email protected]>
19915 L:      [email protected]
19916 S:      Maintained
19917 F:      drivers/platform/x86/toshiba_acpi.c
19918
19919 TOSHIBA BLUETOOTH DRIVER
19920 M:      Azael Avalos <[email protected]>
19921 L:      [email protected]
19922 S:      Maintained
19923 F:      drivers/platform/x86/toshiba_bluetooth.c
19924
19925 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19926 M:      Azael Avalos <[email protected]>
19927 L:      [email protected]
19928 S:      Maintained
19929 F:      drivers/platform/x86/toshiba_haps.c
19930
19931 TOSHIBA SMM DRIVER
19932 M:      Jonathan Buzzard <[email protected]>
19933 S:      Maintained
19934 W:      http://www.buzzard.org.uk/toshiba/
19935 F:      drivers/char/toshiba.c
19936 F:      include/linux/toshiba.h
19937 F:      include/uapi/linux/toshiba.h
19938
19939 TOSHIBA TC358743 DRIVER
19940 M:      Mats Randgaard <[email protected]>
19941 L:      [email protected]
19942 S:      Maintained
19943 F:      drivers/media/i2c/tc358743*
19944 F:      include/media/i2c/tc358743.h
19945
19946 TOSHIBA WMI HOTKEYS DRIVER
19947 M:      Azael Avalos <[email protected]>
19948 L:      [email protected]
19949 S:      Maintained
19950 F:      drivers/platform/x86/toshiba-wmi.c
19951
19952 TPM DEVICE DRIVER
19953 M:      Peter Huewe <[email protected]>
19954 M:      Jarkko Sakkinen <[email protected]>
19955 R:      Jason Gunthorpe <[email protected]>
19956 L:      [email protected]
19957 S:      Maintained
19958 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19959 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19961 F:      drivers/char/tpm/
19962
19963 TRACING
19964 M:      Steven Rostedt <[email protected]>
19965 M:      Ingo Molnar <[email protected]>
19966 S:      Maintained
19967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
19968 F:      Documentation/trace/ftrace.rst
19969 F:      arch/*/*/*/ftrace.h
19970 F:      arch/*/kernel/ftrace.c
19971 F:      fs/tracefs/
19972 F:      include/*/ftrace.h
19973 F:      include/linux/trace*.h
19974 F:      include/trace/
19975 F:      kernel/trace/
19976 F:      tools/testing/selftests/ftrace/
19977
19978 TRACING MMIO ACCESSES (MMIOTRACE)
19979 M:      Steven Rostedt <[email protected]>
19980 M:      Ingo Molnar <[email protected]>
19981 R:      Karol Herbst <[email protected]>
19982 R:      Pekka Paalanen <[email protected]>
19983 L:      [email protected]
19984 L:      [email protected]
19985 S:      Maintained
19986 F:      arch/x86/mm/kmmio.c
19987 F:      arch/x86/mm/mmio-mod.c
19988 F:      arch/x86/mm/testmmiotrace.c
19989 F:      include/linux/mmiotrace.h
19990 F:      kernel/trace/trace_mmiotrace.c
19991
19992 TRACING OS NOISE / LATENCY TRACERS
19993 M:      Steven Rostedt <[email protected]>
19994 M:      Daniel Bristot de Oliveira <[email protected]>
19995 S:      Maintained
19996 F:      kernel/trace/trace_osnoise.c
19997 F:      include/trace/events/osnoise.h
19998 F:      kernel/trace/trace_hwlat.c
19999 F:      kernel/trace/trace_irqsoff.c
20000 F:      kernel/trace/trace_sched_wakeup.c
20001 F:      Documentation/trace/osnoise-tracer.rst
20002 F:      Documentation/trace/timerlat-tracer.rst
20003 F:      Documentation/trace/hwlat_detector.rst
20004 F:      arch/*/kernel/trace.c
20005
20006 Real-time Linux Analysis (RTLA) tools
20007 M:      Daniel Bristot de Oliveira <[email protected]>
20008 M:      Steven Rostedt <[email protected]>
20009 L:      [email protected]
20010 S:      Maintained
20011 F:      Documentation/tools/rtla/
20012 F:      tools/tracing/rtla/
20013
20014 TRADITIONAL CHINESE DOCUMENTATION
20015 M:      Hu Haowen <[email protected]>
20016 L:      [email protected]
20017 S:      Maintained
20018 W:      https://github.com/srcres258/linux-doc
20019 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
20020 F:      Documentation/translations/zh_TW/
20021
20022 TTY LAYER
20023 M:      Greg Kroah-Hartman <[email protected]>
20024 M:      Jiri Slaby <[email protected]>
20025 S:      Supported
20026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
20027 F:      Documentation/driver-api/serial/
20028 F:      drivers/tty/
20029 F:      drivers/tty/serial/serial_core.c
20030 F:      include/linux/selection.h
20031 F:      include/linux/serial.h
20032 F:      include/linux/serial_core.h
20033 F:      include/linux/sysrq.h
20034 F:      include/linux/tty*.h
20035 F:      include/linux/vt.h
20036 F:      include/linux/vt_*.h
20037 F:      include/uapi/linux/serial.h
20038 F:      include/uapi/linux/serial_core.h
20039 F:      include/uapi/linux/tty.h
20040
20041 TUA9001 MEDIA DRIVER
20042 M:      Antti Palosaari <[email protected]>
20043 L:      [email protected]
20044 S:      Maintained
20045 W:      https://linuxtv.org
20046 W:      http://palosaari.fi/linux/
20047 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20048 T:      git git://linuxtv.org/anttip/media_tree.git
20049 F:      drivers/media/tuners/tua9001*
20050
20051 TULIP NETWORK DRIVERS
20052 L:      [email protected]
20053 L:      [email protected]
20054 S:      Orphan
20055 F:      drivers/net/ethernet/dec/tulip/
20056
20057 TUN/TAP driver
20058 M:      Maxim Krasnyansky <[email protected]>
20059 S:      Maintained
20060 W:      http://vtun.sourceforge.net/tun
20061 F:      Documentation/networking/tuntap.rst
20062 F:      arch/um/os-Linux/drivers/
20063
20064 TURBOCHANNEL SUBSYSTEM
20065 M:      "Maciej W. Rozycki" <[email protected]>
20066 M:      Ralf Baechle <[email protected]>
20067 L:      [email protected]
20068 S:      Maintained
20069 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
20070 F:      drivers/tc/
20071 F:      include/linux/tc.h
20072
20073 TURBOSTAT UTILITY
20074 M:      "Len Brown" <[email protected]>
20075 L:      [email protected]
20076 S:      Supported
20077 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20078 B:      https://bugzilla.kernel.org
20079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
20080 F:      tools/power/x86/turbostat/
20081
20082 TW5864 VIDEO4LINUX DRIVER
20083 M:      Bluecherry Maintainers <[email protected]>
20084 M:      Anton Sviridenko <[email protected]>
20085 M:      Andrey Utkin <[email protected]>
20086 M:      Andrey Utkin <[email protected]>
20087 L:      [email protected]
20088 S:      Supported
20089 F:      drivers/media/pci/tw5864/
20090
20091 TW68 VIDEO4LINUX DRIVER
20092 M:      Hans Verkuil <[email protected]>
20093 L:      [email protected]
20094 S:      Odd Fixes
20095 W:      https://linuxtv.org
20096 T:      git git://linuxtv.org/media_tree.git
20097 F:      drivers/media/pci/tw68/
20098
20099 TW686X VIDEO4LINUX DRIVER
20100 M:      Ezequiel Garcia <[email protected]>
20101 L:      [email protected]
20102 S:      Maintained
20103 W:      http://linuxtv.org
20104 T:      git git://linuxtv.org/media_tree.git
20105 F:      drivers/media/pci/tw686x/
20106
20107 U-BOOT ENVIRONMENT VARIABLES
20108 M:      Rafał Miłecki <[email protected]>
20109 S:      Maintained
20110 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
20111
20112 UACCE ACCELERATOR FRAMEWORK
20113 M:      Zhangfei Gao <[email protected]>
20114 M:      Zhou Wang <[email protected]>
20115 L:      [email protected]
20116 L:      [email protected]
20117 S:      Maintained
20118 F:      Documentation/ABI/testing/sysfs-driver-uacce
20119 F:      Documentation/misc-devices/uacce.rst
20120 F:      drivers/misc/uacce/
20121 F:      include/linux/uacce.h
20122 F:      include/uapi/misc/uacce/
20123
20124 UBI FILE SYSTEM (UBIFS)
20125 M:      Richard Weinberger <[email protected]>
20126 L:      [email protected]
20127 S:      Supported
20128 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
20129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20131 F:      Documentation/ABI/testing/sysfs-fs-ubifs
20132 F:      Documentation/filesystems/ubifs-authentication.rst
20133 F:      Documentation/filesystems/ubifs.rst
20134 F:      fs/ubifs/
20135
20136 UCLINUX (M68KNOMMU AND COLDFIRE)
20137 M:      Greg Ungerer <[email protected]>
20138 L:      [email protected]
20139 L:      [email protected]  (subscribers-only)
20140 S:      Maintained
20141 W:      http://www.linux-m68k.org/
20142 W:      http://www.uclinux.org/
20143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
20144 F:      arch/m68k/*/*_no.*
20145 F:      arch/m68k/68*/
20146 F:      arch/m68k/coldfire/
20147 F:      arch/m68k/include/asm/*_no.*
20148
20149 UDF FILESYSTEM
20150 M:      Jan Kara <[email protected]>
20151 S:      Maintained
20152 F:      Documentation/filesystems/udf.rst
20153 F:      fs/udf/
20154
20155 UDRAW TABLET
20156 M:      Bastien Nocera <[email protected]>
20157 L:      [email protected]
20158 S:      Maintained
20159 F:      drivers/hid/hid-udraw-ps3.c
20160
20161 UFS FILESYSTEM
20162 M:      Evgeniy Dushistov <[email protected]>
20163 S:      Maintained
20164 F:      Documentation/admin-guide/ufs.rst
20165 F:      fs/ufs/
20166
20167 UHID USERSPACE HID IO DRIVER
20168 M:      David Rheinsberg <[email protected]>
20169 L:      [email protected]
20170 S:      Maintained
20171 F:      drivers/hid/uhid.c
20172 F:      include/uapi/linux/uhid.h
20173
20174 ULPI BUS
20175 M:      Heikki Krogerus <[email protected]>
20176 L:      [email protected]
20177 S:      Maintained
20178 F:      drivers/usb/common/ulpi.c
20179 F:      include/linux/ulpi/
20180
20181 UNICODE SUBSYSTEM
20182 M:      Gabriel Krisman Bertazi <[email protected]>
20183 L:      [email protected]
20184 S:      Supported
20185 F:      fs/unicode/
20186
20187 UNIFDEF
20188 M:      Tony Finch <[email protected]>
20189 S:      Maintained
20190 W:      http://dotat.at/prog/unifdef
20191 F:      scripts/unifdef.c
20192
20193 UNIFORM CDROM DRIVER
20194 M:      Phillip Potter <[email protected]>
20195 S:      Maintained
20196 F:      Documentation/cdrom/
20197 F:      drivers/cdrom/cdrom.c
20198 F:      include/linux/cdrom.h
20199 F:      include/uapi/linux/cdrom.h
20200
20201 UNISYS S-PAR DRIVERS
20202 M:      David Kershner <[email protected]>
20203 L:      [email protected] (Unisys internal)
20204 S:      Supported
20205 F:      drivers/staging/unisys/
20206 F:      drivers/visorbus/
20207 F:      include/linux/visorbus.h
20208
20209 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
20210 R:      Alim Akhtar <[email protected]>
20211 R:      Avri Altman <[email protected]>
20212 L:      [email protected]
20213 S:      Supported
20214 F:      Documentation/devicetree/bindings/ufs/
20215 F:      Documentation/scsi/ufs.rst
20216 F:      drivers/scsi/ufs/
20217
20218 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
20219 M:      Pedro Sousa <[email protected]>
20220 L:      [email protected]
20221 S:      Supported
20222 F:      drivers/scsi/ufs/*dwc*
20223
20224 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
20225 M:      Stanley Chu <[email protected]>
20226 L:      [email protected]
20227 L:      [email protected] (moderated for non-subscribers)
20228 S:      Maintained
20229 F:      drivers/scsi/ufs/ufs-mediatek*
20230
20231 UNSORTED BLOCK IMAGES (UBI)
20232 M:      Richard Weinberger <[email protected]>
20233 L:      [email protected]
20234 S:      Supported
20235 W:      http://www.linux-mtd.infradead.org/
20236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20238 F:      drivers/mtd/ubi/
20239 F:      include/linux/mtd/ubi.h
20240 F:      include/uapi/mtd/ubi-user.h
20241
20242 USB "USBNET" DRIVER FRAMEWORK
20243 M:      Oliver Neukum <[email protected]>
20244 L:      [email protected]
20245 S:      Maintained
20246 W:      http://www.linux-usb.org/usbnet
20247 F:      drivers/net/usb/usbnet.c
20248 F:      include/linux/usb/usbnet.h
20249
20250 USB ACM DRIVER
20251 M:      Oliver Neukum <[email protected]>
20252 L:      [email protected]
20253 S:      Maintained
20254 F:      Documentation/usb/acm.rst
20255 F:      drivers/usb/class/cdc-acm.*
20256
20257 USB APPLE MFI FASTCHARGE DRIVER
20258 M:      Bastien Nocera <[email protected]>
20259 L:      [email protected]
20260 S:      Maintained
20261 F:      drivers/usb/misc/apple-mfi-fastcharge.c
20262
20263 USB AR5523 WIRELESS DRIVER
20264 M:      Pontus Fuchs <[email protected]>
20265 L:      [email protected]
20266 S:      Maintained
20267 F:      drivers/net/wireless/ath/ar5523/
20268
20269 USB ATTACHED SCSI
20270 M:      Oliver Neukum <[email protected]>
20271 L:      [email protected]
20272 L:      [email protected]
20273 S:      Maintained
20274 F:      drivers/usb/storage/uas.c
20275
20276 USB CDC ETHERNET DRIVER
20277 M:      Oliver Neukum <[email protected]>
20278 L:      [email protected]
20279 S:      Maintained
20280 F:      drivers/net/usb/cdc_*.c
20281 F:      include/uapi/linux/usb/cdc.h
20282
20283 USB CHAOSKEY DRIVER
20284 M:      Keith Packard <[email protected]>
20285 L:      [email protected]
20286 S:      Maintained
20287 F:      drivers/usb/misc/chaoskey.c
20288
20289 USB CYPRESS C67X00 DRIVER
20290 L:      [email protected]
20291 S:      Orphan
20292 F:      drivers/usb/c67x00/
20293
20294 USB DAVICOM DM9601 DRIVER
20295 M:      Peter Korsgaard <[email protected]>
20296 L:      [email protected]
20297 S:      Maintained
20298 W:      http://www.linux-usb.org/usbnet
20299 F:      drivers/net/usb/dm9601.c
20300
20301 USB EHCI DRIVER
20302 M:      Alan Stern <[email protected]>
20303 L:      [email protected]
20304 S:      Maintained
20305 F:      Documentation/usb/ehci.rst
20306 F:      drivers/usb/host/ehci*
20307
20308 USB GADGET/PERIPHERAL SUBSYSTEM
20309 M:      Felipe Balbi <[email protected]>
20310 L:      [email protected]
20311 S:      Maintained
20312 W:      http://www.linux-usb.org/gadget
20313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20314 F:      drivers/usb/gadget/
20315 F:      include/linux/usb/gadget*
20316
20317 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
20318 M:      Jiri Kosina <[email protected]>
20319 M:      Benjamin Tissoires <[email protected]>
20320 L:      [email protected]
20321 S:      Maintained
20322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
20323 F:      Documentation/hid/hiddev.rst
20324 F:      drivers/hid/usbhid/
20325
20326 USB INTEL XHCI ROLE MUX DRIVER
20327 M:      Hans de Goede <[email protected]>
20328 L:      [email protected]
20329 S:      Maintained
20330 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
20331
20332 USB IP DRIVER FOR HISILICON KIRIN 960
20333 M:      Yu Chen <[email protected]>
20334 M:      Binghui Wang <[email protected]>
20335 L:      [email protected]
20336 S:      Maintained
20337 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
20338 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
20339
20340 USB IP DRIVER FOR HISILICON KIRIN 970
20341 M:      Mauro Carvalho Chehab <[email protected]>
20342 L:      [email protected]
20343 S:      Maintained
20344 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
20345 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
20346
20347 USB ISP116X DRIVER
20348 M:      Olav Kongas <[email protected]>
20349 L:      [email protected]
20350 S:      Maintained
20351 F:      drivers/usb/host/isp116x*
20352 F:      include/linux/usb/isp116x.h
20353
20354 USB ISP1760 DRIVER
20355 M:      Rui Miguel Silva <[email protected]>
20356 L:      [email protected]
20357 S:      Maintained
20358 F:      drivers/usb/isp1760/*
20359 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
20360
20361 USB LAN78XX ETHERNET DRIVER
20362 M:      Woojung Huh <[email protected]>
20363 M:      [email protected]
20364 L:      [email protected]
20365 S:      Maintained
20366 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
20367 F:      drivers/net/usb/lan78xx.*
20368 F:      include/dt-bindings/net/microchip-lan78xx.h
20369
20370 USB MASS STORAGE DRIVER
20371 M:      Alan Stern <[email protected]>
20372 L:      [email protected]
20373 L:      [email protected]
20374 S:      Maintained
20375 F:      drivers/usb/storage/
20376
20377 USB MIDI DRIVER
20378 M:      Clemens Ladisch <[email protected]>
20379 L:      [email protected] (moderated for non-subscribers)
20380 S:      Maintained
20381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
20382 F:      sound/usb/midi.*
20383
20384 USB NETWORKING DRIVERS
20385 L:      [email protected]
20386 S:      Odd Fixes
20387 F:      drivers/net/usb/
20388
20389 USB OHCI DRIVER
20390 M:      Alan Stern <[email protected]>
20391 L:      [email protected]
20392 S:      Maintained
20393 F:      Documentation/usb/ohci.rst
20394 F:      drivers/usb/host/ohci*
20395
20396 USB OTG FSM (Finite State Machine)
20397 M:      Peter Chen <[email protected]>
20398 L:      [email protected]
20399 S:      Maintained
20400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
20401 F:      drivers/usb/common/usb-otg-fsm.c
20402
20403 USB OVER IP DRIVER
20404 M:      Valentina Manea <[email protected]>
20405 M:      Shuah Khan <[email protected]>
20406 M:      Shuah Khan <[email protected]>
20407 L:      [email protected]
20408 S:      Maintained
20409 F:      Documentation/usb/usbip_protocol.rst
20410 F:      drivers/usb/usbip/
20411 F:      tools/testing/selftests/drivers/usb/usbip/
20412 F:      tools/usb/usbip/
20413
20414 USB PEGASUS DRIVER
20415 M:      Petko Manolov <[email protected]>
20416 L:      [email protected]
20417 L:      [email protected]
20418 S:      Maintained
20419 W:      https://github.com/petkan/pegasus
20420 T:      git git://github.com/petkan/pegasus.git
20421 F:      drivers/net/usb/pegasus.*
20422
20423 USB PHY LAYER
20424 M:      Felipe Balbi <[email protected]>
20425 L:      [email protected]
20426 S:      Maintained
20427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20428 F:      drivers/usb/phy/
20429
20430 USB PRINTER DRIVER (usblp)
20431 M:      Pete Zaitcev <[email protected]>
20432 L:      [email protected]
20433 S:      Supported
20434 F:      drivers/usb/class/usblp.c
20435
20436 USB RAW GADGET DRIVER
20437 R:      Andrey Konovalov <[email protected]>
20438 L:      [email protected]
20439 S:      Maintained
20440 F:      Documentation/usb/raw-gadget.rst
20441 F:      drivers/usb/gadget/legacy/raw_gadget.c
20442 F:      include/uapi/linux/usb/raw_gadget.h
20443
20444 USB QMI WWAN NETWORK DRIVER
20445 M:      Bjørn Mork <[email protected]>
20446 L:      [email protected]
20447 S:      Maintained
20448 F:      Documentation/ABI/testing/sysfs-class-net-qmi
20449 F:      drivers/net/usb/qmi_wwan.c
20450
20451 USB RTL8150 DRIVER
20452 M:      Petko Manolov <[email protected]>
20453 L:      [email protected]
20454 L:      [email protected]
20455 S:      Maintained
20456 W:      https://github.com/petkan/rtl8150
20457 T:      git git://github.com/petkan/rtl8150.git
20458 F:      drivers/net/usb/rtl8150.c
20459
20460 USB SERIAL SUBSYSTEM
20461 M:      Johan Hovold <[email protected]>
20462 L:      [email protected]
20463 S:      Maintained
20464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
20465 F:      Documentation/usb/usb-serial.rst
20466 F:      drivers/usb/serial/
20467 F:      include/linux/usb/serial.h
20468
20469 USB SMSC75XX ETHERNET DRIVER
20470 M:      Steve Glendinning <[email protected]>
20471 L:      [email protected]
20472 S:      Maintained
20473 F:      drivers/net/usb/smsc75xx.*
20474
20475 USB SMSC95XX ETHERNET DRIVER
20476 M:      Steve Glendinning <[email protected]>
20477 M:      [email protected]
20478 L:      [email protected]
20479 S:      Maintained
20480 F:      drivers/net/usb/smsc95xx.*
20481
20482 USB SUBSYSTEM
20483 M:      Greg Kroah-Hartman <[email protected]>
20484 L:      [email protected]
20485 S:      Supported
20486 W:      http://www.linux-usb.org
20487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
20488 F:      Documentation/devicetree/bindings/usb/
20489 F:      Documentation/usb/
20490 F:      drivers/usb/
20491 F:      include/linux/usb.h
20492 F:      include/linux/usb/
20493
20494 USB TYPEC BUS FOR ALTERNATE MODES
20495 M:      Heikki Krogerus <[email protected]>
20496 L:      [email protected]
20497 S:      Maintained
20498 F:      Documentation/ABI/testing/sysfs-bus-typec
20499 F:      Documentation/driver-api/usb/typec_bus.rst
20500 F:      drivers/usb/typec/altmodes/
20501 F:      include/linux/usb/typec_altmode.h
20502
20503 USB TYPEC CLASS
20504 M:      Heikki Krogerus <[email protected]>
20505 L:      [email protected]
20506 S:      Maintained
20507 F:      Documentation/ABI/testing/sysfs-class-typec
20508 F:      Documentation/driver-api/usb/typec.rst
20509 F:      drivers/usb/typec/
20510 F:      include/linux/usb/typec.h
20511
20512 USB TYPEC INTEL PMC MUX DRIVER
20513 M:      Heikki Krogerus <[email protected]>
20514 L:      [email protected]
20515 S:      Maintained
20516 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
20517 F:      drivers/usb/typec/mux/intel_pmc_mux.c
20518
20519 USB TYPEC PI3USB30532 MUX DRIVER
20520 M:      Hans de Goede <[email protected]>
20521 L:      [email protected]
20522 S:      Maintained
20523 F:      drivers/usb/typec/mux/pi3usb30532.c
20524
20525 USB TYPEC PORT CONTROLLER DRIVERS
20526 M:      Guenter Roeck <[email protected]>
20527 L:      [email protected]
20528 S:      Maintained
20529 F:      drivers/usb/typec/tcpm/
20530
20531 USB UHCI DRIVER
20532 M:      Alan Stern <[email protected]>
20533 L:      [email protected]
20534 S:      Maintained
20535 F:      drivers/usb/host/uhci*
20536
20537 USB VIDEO CLASS
20538 M:      Laurent Pinchart <[email protected]>
20539 L:      [email protected] (subscribers-only)
20540 L:      [email protected]
20541 S:      Maintained
20542 W:      http://www.ideasonboard.org/uvc/
20543 T:      git git://linuxtv.org/media_tree.git
20544 F:      drivers/media/usb/uvc/
20545 F:      include/uapi/linux/uvcvideo.h
20546
20547 USB WEBCAM GADGET
20548 M:      Laurent Pinchart <[email protected]>
20549 L:      [email protected]
20550 S:      Maintained
20551 F:      drivers/usb/gadget/function/*uvc*
20552 F:      drivers/usb/gadget/legacy/webcam.c
20553 F:      include/uapi/linux/usb/g_uvc.h
20554
20555 USB WIRELESS RNDIS DRIVER (rndis_wlan)
20556 M:      Jussi Kivilinna <[email protected]>
20557 L:      [email protected]
20558 S:      Maintained
20559 F:      drivers/net/wireless/rndis_wlan.c
20560
20561 USB XHCI DRIVER
20562 M:      Mathias Nyman <[email protected]>
20563 L:      [email protected]
20564 S:      Supported
20565 F:      drivers/usb/host/pci-quirks*
20566 F:      drivers/usb/host/xhci*
20567
20568 USB ZD1201 DRIVER
20569 L:      [email protected]
20570 S:      Orphan
20571 W:      http://linux-lc100020.sourceforge.net
20572 F:      drivers/net/wireless/zydas/zd1201.*
20573
20574 USB ZR364XX DRIVER
20575 M:      Antoine Jacquet <[email protected]>
20576 L:      [email protected]
20577 L:      [email protected]
20578 S:      Maintained
20579 W:      http://royale.zerezo.com/zr364xx/
20580 T:      git git://linuxtv.org/media_tree.git
20581 F:      Documentation/admin-guide/media/zr364xx*
20582 F:      drivers/media/usb/zr364xx/
20583
20584 USER-MODE LINUX (UML)
20585 M:      Richard Weinberger <[email protected]>
20586 M:      Anton Ivanov <[email protected]>
20587 M:      Johannes Berg <[email protected]>
20588 L:      [email protected]
20589 S:      Maintained
20590 W:      http://user-mode-linux.sourceforge.net
20591 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
20592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
20593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
20594 F:      Documentation/virt/uml/
20595 F:      arch/um/
20596 F:      arch/x86/um/
20597 F:      fs/hostfs/
20598
20599 USERSPACE COPYIN/COPYOUT (UIOVEC)
20600 M:      Alexander Viro <[email protected]>
20601 S:      Maintained
20602 F:      include/linux/uio.h
20603 F:      lib/iov_iter.c
20604
20605 USERSPACE DMA BUFFER DRIVER
20606 M:      Gerd Hoffmann <[email protected]>
20607 L:      [email protected]
20608 S:      Maintained
20609 T:      git git://anongit.freedesktop.org/drm/drm-misc
20610 F:      drivers/dma-buf/udmabuf.c
20611 F:      include/uapi/linux/udmabuf.h
20612
20613 USERSPACE I/O (UIO)
20614 M:      Greg Kroah-Hartman <[email protected]>
20615 S:      Maintained
20616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20617 F:      Documentation/driver-api/uio-howto.rst
20618 F:      drivers/uio/
20619 F:      include/linux/uio_driver.h
20620
20621 UTIL-LINUX PACKAGE
20622 M:      Karel Zak <[email protected]>
20623 L:      [email protected]
20624 S:      Maintained
20625 W:      http://en.wikipedia.org/wiki/Util-linux
20626 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
20627
20628 UUID HELPERS
20629 M:      Christoph Hellwig <[email protected]>
20630 R:      Andy Shevchenko <[email protected]>
20631 L:      [email protected]
20632 S:      Maintained
20633 T:      git git://git.infradead.org/users/hch/uuid.git
20634 F:      include/linux/uuid.h
20635 F:      include/uapi/linux/uuid.h
20636 F:      lib/test_uuid.c
20637 F:      lib/uuid.c
20638
20639 UV SYSFS DRIVER
20640 M:      Justin Ernst <[email protected]>
20641 L:      [email protected]
20642 S:      Maintained
20643 F:      drivers/platform/x86/uv_sysfs.c
20644
20645 UVESAFB DRIVER
20646 M:      Michal Januszewski <[email protected]>
20647 L:      [email protected]
20648 S:      Maintained
20649 W:      https://github.com/mjanusz/v86d
20650 F:      Documentation/fb/uvesafb.rst
20651 F:      drivers/video/fbdev/uvesafb.*
20652
20653 Ux500 CLOCK DRIVERS
20654 M:      Ulf Hansson <[email protected]>
20655 L:      [email protected]
20656 L:      [email protected] (moderated for non-subscribers)
20657 S:      Maintained
20658 F:      drivers/clk/ux500/
20659
20660 VF610 NAND DRIVER
20661 M:      Stefan Agner <[email protected]>
20662 L:      [email protected]
20663 S:      Supported
20664 F:      drivers/mtd/nand/raw/vf610_nfc.c
20665
20666 VFAT/FAT/MSDOS FILESYSTEM
20667 M:      OGAWA Hirofumi <[email protected]>
20668 S:      Maintained
20669 F:      Documentation/filesystems/vfat.rst
20670 F:      fs/fat/
20671
20672 VFIO DRIVER
20673 M:      Alex Williamson <[email protected]>
20674 R:      Cornelia Huck <[email protected]>
20675 L:      [email protected]
20676 S:      Maintained
20677 T:      git git://github.com/awilliam/linux-vfio.git
20678 F:      Documentation/driver-api/vfio.rst
20679 F:      drivers/vfio/
20680 F:      include/linux/vfio.h
20681 F:      include/linux/vfio_pci_core.h
20682 F:      include/uapi/linux/vfio.h
20683
20684 VFIO FSL-MC DRIVER
20685 M:      Diana Craciun <[email protected]>
20686 L:      [email protected]
20687 S:      Maintained
20688 F:      drivers/vfio/fsl-mc/
20689
20690 VFIO HISILICON PCI DRIVER
20691 M:      Longfang Liu <[email protected]>
20692 M:      Shameer Kolothum <[email protected]>
20693 L:      [email protected]
20694 S:      Maintained
20695 F:      drivers/vfio/pci/hisilicon/
20696
20697 VFIO MEDIATED DEVICE DRIVERS
20698 M:      Kirti Wankhede <[email protected]>
20699 L:      [email protected]
20700 S:      Maintained
20701 F:      Documentation/driver-api/vfio-mediated-device.rst
20702 F:      drivers/vfio/mdev/
20703 F:      include/linux/mdev.h
20704 F:      samples/vfio-mdev/
20705
20706 VFIO PCI DEVICE SPECIFIC DRIVERS
20707 R:      Jason Gunthorpe <[email protected]>
20708 R:      Yishai Hadas <[email protected]>
20709 R:      Shameer Kolothum <[email protected]>
20710 R:      Kevin Tian <[email protected]>
20711 L:      [email protected]
20712 S:      Maintained
20713 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
20714 F:      drivers/vfio/pci/*/
20715
20716 VFIO PLATFORM DRIVER
20717 M:      Eric Auger <[email protected]>
20718 L:      [email protected]
20719 S:      Maintained
20720 F:      drivers/vfio/platform/
20721
20722 VFIO MLX5 PCI DRIVER
20723 M:      Yishai Hadas <[email protected]>
20724 L:      [email protected]
20725 S:      Maintained
20726 F:      drivers/vfio/pci/mlx5/
20727
20728 VGA_SWITCHEROO
20729 R:      Lukas Wunner <[email protected]>
20730 S:      Maintained
20731 T:      git git://anongit.freedesktop.org/drm/drm-misc
20732 F:      Documentation/gpu/vga-switcheroo.rst
20733 F:      drivers/gpu/vga/vga_switcheroo.c
20734 F:      include/linux/vga_switcheroo.h
20735
20736 VIA RHINE NETWORK DRIVER
20737 S:      Maintained
20738 M:      Kevin Brace <[email protected]>
20739 F:      drivers/net/ethernet/via/via-rhine.c
20740
20741 VIA SD/MMC CARD CONTROLLER DRIVER
20742 M:      Bruce Chang <[email protected]>
20743 M:      Harald Welte <[email protected]>
20744 S:      Maintained
20745 F:      drivers/mmc/host/via-sdmmc.c
20746
20747 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
20748 M:      Florian Tobias Schandinat <[email protected]>
20749 L:      [email protected]
20750 S:      Maintained
20751 F:      drivers/video/fbdev/via/
20752 F:      include/linux/via-core.h
20753 F:      include/linux/via-gpio.h
20754 F:      include/linux/via_i2c.h
20755
20756 VIA VELOCITY NETWORK DRIVER
20757 M:      Francois Romieu <[email protected]>
20758 L:      [email protected]
20759 S:      Maintained
20760 F:      drivers/net/ethernet/via/via-velocity.*
20761
20762 VICODEC VIRTUAL CODEC DRIVER
20763 M:      Hans Verkuil <[email protected]>
20764 L:      [email protected]
20765 S:      Maintained
20766 W:      https://linuxtv.org
20767 T:      git git://linuxtv.org/media_tree.git
20768 F:      drivers/media/test-drivers/vicodec/*
20769
20770 VIDEO I2C POLLING DRIVER
20771 M:      Matt Ranostay <[email protected]>
20772 L:      [email protected]
20773 S:      Maintained
20774 F:      drivers/media/i2c/video-i2c.c
20775
20776 VIDEO MULTIPLEXER DRIVER
20777 M:      Philipp Zabel <[email protected]>
20778 L:      [email protected]
20779 S:      Maintained
20780 F:      drivers/media/platform/video-mux.c
20781
20782 VIDEOBUF2 FRAMEWORK
20783 M:      Tomasz Figa <[email protected]>
20784 M:      Marek Szyprowski <[email protected]>
20785 L:      [email protected]
20786 S:      Maintained
20787 F:      drivers/media/common/videobuf2/*
20788 F:      include/media/videobuf2-*
20789
20790 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
20791 M:      Shuah Khan <[email protected]>
20792 R:      Kieran Bingham <[email protected]>
20793 L:      [email protected]
20794 S:      Maintained
20795 W:      https://linuxtv.org
20796 T:      git git://linuxtv.org/media_tree.git
20797 F:      drivers/media/test-drivers/vimc/*
20798
20799 VIRT LIB
20800 M:      Alex Williamson <[email protected]>
20801 M:      Paolo Bonzini <[email protected]>
20802 L:      [email protected]
20803 S:      Supported
20804 F:      virt/lib/
20805
20806 VIRTIO AND VHOST VSOCK DRIVER
20807 M:      Stefan Hajnoczi <[email protected]>
20808 M:      Stefano Garzarella <[email protected]>
20809 L:      [email protected]
20810 L:      [email protected]
20811 L:      [email protected]
20812 S:      Maintained
20813 F:      drivers/vhost/vsock.c
20814 F:      include/linux/virtio_vsock.h
20815 F:      include/uapi/linux/virtio_vsock.h
20816 F:      net/vmw_vsock/virtio_transport.c
20817 F:      net/vmw_vsock/virtio_transport_common.c
20818
20819 VIRTIO BLOCK AND SCSI DRIVERS
20820 M:      "Michael S. Tsirkin" <[email protected]>
20821 M:      Jason Wang <[email protected]>
20822 R:      Paolo Bonzini <[email protected]>
20823 R:      Stefan Hajnoczi <[email protected]>
20824 L:      [email protected]
20825 S:      Maintained
20826 F:      drivers/block/virtio_blk.c
20827 F:      drivers/scsi/virtio_scsi.c
20828 F:      drivers/vhost/scsi.c
20829 F:      include/uapi/linux/virtio_blk.h
20830 F:      include/uapi/linux/virtio_scsi.h
20831
20832 VIRTIO CONSOLE DRIVER
20833 M:      Amit Shah <[email protected]>
20834 L:      [email protected]
20835 S:      Maintained
20836 F:      drivers/char/virtio_console.c
20837 F:      include/linux/virtio_console.h
20838 F:      include/uapi/linux/virtio_console.h
20839
20840 VIRTIO CORE AND NET DRIVERS
20841 M:      "Michael S. Tsirkin" <[email protected]>
20842 M:      Jason Wang <[email protected]>
20843 L:      [email protected]
20844 S:      Maintained
20845 F:      Documentation/ABI/testing/sysfs-bus-vdpa
20846 F:      Documentation/devicetree/bindings/virtio/
20847 F:      drivers/block/virtio_blk.c
20848 F:      drivers/crypto/virtio/
20849 F:      drivers/net/virtio_net.c
20850 F:      drivers/vdpa/
20851 F:      drivers/virtio/
20852 F:      include/linux/vdpa.h
20853 F:      include/linux/virtio*.h
20854 F:      include/uapi/linux/virtio_*.h
20855 F:      tools/virtio/
20856
20857 VIRTIO BALLOON
20858 M:      "Michael S. Tsirkin" <[email protected]>
20859 M:      David Hildenbrand <[email protected]>
20860 L:      [email protected]
20861 S:      Maintained
20862 F:      drivers/virtio/virtio_balloon.c
20863 F:      include/uapi/linux/virtio_balloon.h
20864 F:      include/linux/balloon_compaction.h
20865 F:      mm/balloon_compaction.c
20866
20867 VIRTIO CRYPTO DRIVER
20868 M:      Gonglei <[email protected]>
20869 L:      [email protected]
20870 L:      [email protected]
20871 S:      Maintained
20872 F:      drivers/crypto/virtio/
20873 F:      include/uapi/linux/virtio_crypto.h
20874
20875 VIRTIO DRIVERS FOR S390
20876 M:      Cornelia Huck <[email protected]>
20877 M:      Halil Pasic <[email protected]>
20878 L:      [email protected]
20879 L:      [email protected]
20880 L:      [email protected]
20881 S:      Supported
20882 F:      arch/s390/include/uapi/asm/virtio-ccw.h
20883 F:      drivers/s390/virtio/
20884
20885 VIRTIO FILE SYSTEM
20886 M:      Vivek Goyal <[email protected]>
20887 M:      Stefan Hajnoczi <[email protected]>
20888 M:      Miklos Szeredi <[email protected]>
20889 L:      [email protected]
20890 L:      [email protected]
20891 S:      Supported
20892 W:      https://virtio-fs.gitlab.io/
20893 F:      Documentation/filesystems/virtiofs.rst
20894 F:      fs/fuse/virtio_fs.c
20895 F:      include/uapi/linux/virtio_fs.h
20896
20897 VIRTIO GPIO DRIVER
20898 M:      Enrico Weigelt, metux IT consult <[email protected]>
20899 M:      Viresh Kumar <[email protected]>
20900 L:      [email protected]
20901 L:      [email protected]
20902 S:      Maintained
20903 F:      drivers/gpio/gpio-virtio.c
20904 F:      include/uapi/linux/virtio_gpio.h
20905
20906 VIRTIO GPU DRIVER
20907 M:      David Airlie <[email protected]>
20908 M:      Gerd Hoffmann <[email protected]>
20909 R:      Gurchetan Singh <[email protected]>
20910 R:      Chia-I Wu <[email protected]>
20911 L:      [email protected]
20912 L:      [email protected]
20913 S:      Maintained
20914 T:      git git://anongit.freedesktop.org/drm/drm-misc
20915 F:      drivers/gpu/drm/virtio/
20916 F:      include/uapi/linux/virtio_gpu.h
20917
20918 VIRTIO HOST (VHOST)
20919 M:      "Michael S. Tsirkin" <[email protected]>
20920 M:      Jason Wang <[email protected]>
20921 L:      [email protected]
20922 L:      [email protected]
20923 L:      [email protected]
20924 S:      Maintained
20925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20926 F:      drivers/vhost/
20927 F:      include/linux/vhost_iotlb.h
20928 F:      include/uapi/linux/vhost.h
20929
20930 VIRTIO INPUT DRIVER
20931 M:      Gerd Hoffmann <[email protected]>
20932 S:      Maintained
20933 F:      drivers/virtio/virtio_input.c
20934 F:      include/uapi/linux/virtio_input.h
20935
20936 VIRTIO IOMMU DRIVER
20937 M:      Jean-Philippe Brucker <[email protected]>
20938 L:      [email protected]
20939 S:      Maintained
20940 F:      drivers/iommu/virtio-iommu.c
20941 F:      include/uapi/linux/virtio_iommu.h
20942
20943 VIRTIO MEM DRIVER
20944 M:      David Hildenbrand <[email protected]>
20945 L:      [email protected]
20946 S:      Maintained
20947 W:      https://virtio-mem.gitlab.io/
20948 F:      drivers/virtio/virtio_mem.c
20949 F:      include/uapi/linux/virtio_mem.h
20950
20951 VIRTIO SOUND DRIVER
20952 M:      Anton Yakovlev <[email protected]>
20953 M:      "Michael S. Tsirkin" <[email protected]>
20954 L:      [email protected]
20955 L:      [email protected] (moderated for non-subscribers)
20956 S:      Maintained
20957 F:      include/uapi/linux/virtio_snd.h
20958 F:      sound/virtio/*
20959
20960 VIRTIO I2C DRIVER
20961 M:      Conghui Chen <[email protected]>
20962 M:      Viresh Kumar <[email protected]>
20963 L:      [email protected]
20964 L:      [email protected]
20965 S:      Maintained
20966 F:      drivers/i2c/busses/i2c-virtio.c
20967 F:      include/uapi/linux/virtio_i2c.h
20968
20969 VIRTIO PMEM DRIVER
20970 M:      Pankaj Gupta <[email protected]>
20971 L:      [email protected]
20972 S:      Maintained
20973 F:      drivers/nvdimm/virtio_pmem.c
20974 F:      drivers/nvdimm/nd_virtio.c
20975
20976 VIRTUAL BOX GUEST DEVICE DRIVER
20977 M:      Hans de Goede <[email protected]>
20978 M:      Arnd Bergmann <[email protected]>
20979 M:      Greg Kroah-Hartman <[email protected]>
20980 S:      Maintained
20981 F:      drivers/virt/vboxguest/
20982 F:      include/linux/vbox_utils.h
20983 F:      include/uapi/linux/vbox*.h
20984
20985 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20986 M:      Hans de Goede <[email protected]>
20987 L:      [email protected]
20988 S:      Maintained
20989 F:      fs/vboxsf/*
20990
20991 VIRTUAL SERIO DEVICE DRIVER
20992 M:      Stephen Chandler Paul <[email protected]>
20993 S:      Maintained
20994 F:      drivers/input/serio/userio.c
20995 F:      include/uapi/linux/userio.h
20996
20997 VIVID VIRTUAL VIDEO DRIVER
20998 M:      Hans Verkuil <[email protected]>
20999 L:      [email protected]
21000 S:      Maintained
21001 W:      https://linuxtv.org
21002 T:      git git://linuxtv.org/media_tree.git
21003 F:      drivers/media/test-drivers/vivid/*
21004
21005 VIDTV VIRTUAL DIGITAL TV DRIVER
21006 M:      Daniel W. S. Almeida <[email protected]>
21007 L:      [email protected]
21008 S:      Maintained
21009 W:      https://linuxtv.org
21010 T:      git git://linuxtv.org/media_tree.git
21011 F:      drivers/media/test-drivers/vidtv/*
21012
21013 VLYNQ BUS
21014 M:      Florian Fainelli <[email protected]>
21015 L:      [email protected] (subscribers-only)
21016 S:      Maintained
21017 F:      drivers/vlynq/vlynq.c
21018 F:      include/linux/vlynq.h
21019
21020 VME SUBSYSTEM
21021 M:      Martyn Welch <[email protected]>
21022 M:      Manohar Vanga <[email protected]>
21023 M:      Greg Kroah-Hartman <[email protected]>
21024 L:      [email protected]
21025 S:      Maintained
21026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21027 F:      Documentation/driver-api/vme.rst
21028 F:      drivers/staging/vme/
21029 F:      drivers/vme/
21030 F:      include/linux/vme*
21031
21032 VM SOCKETS (AF_VSOCK)
21033 M:      Stefano Garzarella <[email protected]>
21034 L:      [email protected]
21035 L:      [email protected]
21036 S:      Maintained
21037 F:      drivers/net/vsockmon.c
21038 F:      include/net/af_vsock.h
21039 F:      include/uapi/linux/vm_sockets.h
21040 F:      include/uapi/linux/vm_sockets_diag.h
21041 F:      include/uapi/linux/vsockmon.h
21042 F:      net/vmw_vsock/
21043 F:      tools/testing/vsock/
21044
21045 VMWARE BALLOON DRIVER
21046 M:      Nadav Amit <[email protected]>
21047 R:      VMware PV-Drivers Reviewers <[email protected]>
21048 L:      [email protected]
21049 S:      Maintained
21050 F:      drivers/misc/vmw_balloon.c
21051
21052 VMWARE HYPERVISOR INTERFACE
21053 M:      Srivatsa S. Bhat (VMware) <[email protected]>
21054 M:      Alexey Makhalov <[email protected]>
21055 R:      VMware PV-Drivers Reviewers <[email protected]>
21056 L:      [email protected]
21057 L:      [email protected]
21058 S:      Supported
21059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
21060 F:      arch/x86/include/asm/vmware.h
21061 F:      arch/x86/kernel/cpu/vmware.c
21062
21063 VMWARE PVRDMA DRIVER
21064 M:      Bryan Tan <[email protected]>
21065 M:      Vishnu Dasa <[email protected]>
21066 R:      VMware PV-Drivers Reviewers <[email protected]>
21067 L:      [email protected]
21068 S:      Maintained
21069 F:      drivers/infiniband/hw/vmw_pvrdma/
21070
21071 VMware PVSCSI driver
21072 M:      Vishal Bhakta <[email protected]>
21073 R:      VMware PV-Drivers Reviewers <[email protected]>
21074 L:      [email protected]
21075 S:      Maintained
21076 F:      drivers/scsi/vmw_pvscsi.c
21077 F:      drivers/scsi/vmw_pvscsi.h
21078
21079 VMWARE VIRTUAL PTP CLOCK DRIVER
21080 M:      Vivek Thampi <[email protected]>
21081 R:      VMware PV-Drivers Reviewers <[email protected]>
21082 L:      [email protected]
21083 S:      Supported
21084 F:      drivers/ptp/ptp_vmw.c
21085
21086 VMWARE VMCI DRIVER
21087 M:      Bryan Tan <[email protected]>
21088 M:      Rajesh Jalisatgi <[email protected]>
21089 M:      Vishnu Dasa <[email protected]>
21090 R:      VMware PV-Drivers Reviewers <[email protected]>
21091 L:      [email protected]
21092 S:      Maintained
21093 F:      drivers/misc/vmw_vmci/
21094
21095 VMWARE VMMOUSE SUBDRIVER
21096 M:      Zack Rusin <[email protected]>
21097 R:      VMware Graphics Reviewers <[email protected]>
21098 R:      VMware PV-Drivers Reviewers <[email protected]>
21099 L:      [email protected]
21100 S:      Maintained
21101 F:      drivers/input/mouse/vmmouse.c
21102 F:      drivers/input/mouse/vmmouse.h
21103
21104 VMWARE VMXNET3 ETHERNET DRIVER
21105 M:      Ronak Doshi <[email protected]>
21106 R:      VMware PV-Drivers Reviewers <[email protected]>
21107 L:      [email protected]
21108 S:      Maintained
21109 F:      drivers/net/vmxnet3/
21110
21111 VOCORE VOCORE2 BOARD
21112 M:      Harvey Hunt <[email protected]>
21113 L:      [email protected]
21114 S:      Maintained
21115 F:      arch/mips/boot/dts/ralink/vocore2.dts
21116
21117 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
21118 M:      Liam Girdwood <[email protected]>
21119 M:      Mark Brown <[email protected]>
21120 L:      [email protected]
21121 S:      Supported
21122 W:      http://www.slimlogic.co.uk/?p=48
21123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
21124 F:      Documentation/devicetree/bindings/regulator/
21125 F:      Documentation/power/regulator/
21126 F:      drivers/regulator/
21127 F:      include/dt-bindings/regulator/
21128 F:      include/linux/regulator/
21129 K:      regulator_get_optional
21130
21131 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
21132 R:      Matti Vaittinen <[email protected]>
21133 F:      drivers/regulator/irq_helpers.c
21134
21135 VRF
21136 M:      David Ahern <[email protected]>
21137 L:      [email protected]
21138 S:      Maintained
21139 F:      Documentation/networking/vrf.rst
21140 F:      drivers/net/vrf.c
21141
21142 VSPRINTF
21143 M:      Petr Mladek <[email protected]>
21144 M:      Steven Rostedt <[email protected]>
21145 M:      Sergey Senozhatsky <[email protected]>
21146 R:      Andy Shevchenko <[email protected]>
21147 R:      Rasmus Villemoes <[email protected]>
21148 S:      Maintained
21149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
21150 F:      Documentation/core-api/printk-formats.rst
21151 F:      lib/test_printf.c
21152 F:      lib/test_scanf.c
21153 F:      lib/vsprintf.c
21154
21155 VT1211 HARDWARE MONITOR DRIVER
21156 M:      Juerg Haefliger <[email protected]>
21157 L:      [email protected]
21158 S:      Maintained
21159 F:      Documentation/hwmon/vt1211.rst
21160 F:      drivers/hwmon/vt1211.c
21161
21162 VT8231 HARDWARE MONITOR DRIVER
21163 M:      Roger Lucas <[email protected]>
21164 L:      [email protected]
21165 S:      Maintained
21166 F:      drivers/hwmon/vt8231.c
21167
21168 VUB300 USB to SDIO/SD/MMC bridge chip
21169 L:      [email protected]
21170 S:      Orphan
21171 F:      drivers/mmc/host/vub300.c
21172
21173 W1 DALLAS'S 1-WIRE BUS
21174 M:      Evgeniy Polyakov <[email protected]>
21175 S:      Maintained
21176 F:      Documentation/devicetree/bindings/w1/
21177 F:      Documentation/w1/
21178 F:      drivers/w1/
21179 F:      include/linux/w1.h
21180
21181 W83791D HARDWARE MONITORING DRIVER
21182 M:      Marc Hulsman <[email protected]>
21183 L:      [email protected]
21184 S:      Maintained
21185 F:      Documentation/hwmon/w83791d.rst
21186 F:      drivers/hwmon/w83791d.c
21187
21188 W83793 HARDWARE MONITORING DRIVER
21189 M:      Rudolf Marek <[email protected]>
21190 L:      [email protected]
21191 S:      Maintained
21192 F:      Documentation/hwmon/w83793.rst
21193 F:      drivers/hwmon/w83793.c
21194
21195 W83795 HARDWARE MONITORING DRIVER
21196 M:      Jean Delvare <[email protected]>
21197 L:      [email protected]
21198 S:      Maintained
21199 F:      drivers/hwmon/w83795.c
21200
21201 W83L51xD SD/MMC CARD INTERFACE DRIVER
21202 M:      Pierre Ossman <[email protected]>
21203 S:      Maintained
21204 F:      drivers/mmc/host/wbsd.*
21205
21206 WACOM PROTOCOL 4 SERIAL TABLETS
21207 M:      Julian Squires <[email protected]>
21208 M:      Hans de Goede <[email protected]>
21209 L:      [email protected]
21210 S:      Maintained
21211 F:      drivers/input/tablet/wacom_serial4.c
21212
21213 WATCHDOG DEVICE DRIVERS
21214 M:      Wim Van Sebroeck <[email protected]>
21215 M:      Guenter Roeck <[email protected]>
21216 L:      [email protected]
21217 S:      Maintained
21218 W:      http://www.linux-watchdog.org/
21219 T:      git git://www.linux-watchdog.org/linux-watchdog.git
21220 F:      Documentation/devicetree/bindings/watchdog/
21221 F:      Documentation/watchdog/
21222 F:      drivers/watchdog/
21223 F:      include/linux/watchdog.h
21224 F:      include/uapi/linux/watchdog.h
21225
21226 WHISKEYCOVE PMIC GPIO DRIVER
21227 M:      Kuppuswamy Sathyanarayanan <[email protected]>
21228 L:      [email protected]
21229 S:      Maintained
21230 F:      drivers/gpio/gpio-wcove.c
21231
21232 WHWAVE RTC DRIVER
21233 M:      Dianlong Li <[email protected]>
21234 L:      [email protected]
21235 S:      Maintained
21236 F:      drivers/rtc/rtc-sd3078.c
21237
21238 WIIMOTE HID DRIVER
21239 M:      David Rheinsberg <[email protected]>
21240 L:      [email protected]
21241 S:      Maintained
21242 F:      drivers/hid/hid-wiimote*
21243
21244 WILOCITY WIL6210 WIRELESS DRIVER
21245 M:      Maya Erez <[email protected]>
21246 L:      [email protected]
21247 L:      [email protected]
21248 S:      Supported
21249 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
21250 F:      drivers/net/wireless/ath/wil6210/
21251
21252 WINBOND CIR DRIVER
21253 M:      David Härdeman <[email protected]>
21254 S:      Maintained
21255 F:      drivers/media/rc/winbond-cir.c
21256
21257 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
21258 M:      William Breathitt Gray <[email protected]>
21259 L:      [email protected]
21260 S:      Maintained
21261 F:      drivers/watchdog/ebc-c384_wdt.c
21262
21263 WINSYSTEMS WS16C48 GPIO DRIVER
21264 M:      William Breathitt Gray <[email protected]>
21265 L:      [email protected]
21266 S:      Maintained
21267 F:      drivers/gpio/gpio-ws16c48.c
21268
21269 WIREGUARD SECURE NETWORK TUNNEL
21270 M:      Jason A. Donenfeld <[email protected]>
21271 L:      [email protected]
21272 L:      [email protected]
21273 S:      Maintained
21274 F:      drivers/net/wireguard/
21275 F:      tools/testing/selftests/wireguard/
21276
21277 WISTRON LAPTOP BUTTON DRIVER
21278 M:      Miloslav Trmac <[email protected]>
21279 S:      Maintained
21280 F:      drivers/input/misc/wistron_btns.c
21281
21282 WL3501 WIRELESS PCMCIA CARD DRIVER
21283 L:      [email protected]
21284 S:      Odd fixes
21285 F:      drivers/net/wireless/wl3501*
21286
21287 WOLFSON MICROELECTRONICS DRIVERS
21288 L:      [email protected]
21289 S:      Supported
21290 W:      https://github.com/CirrusLogic/linux-drivers/wiki
21291 T:      git https://github.com/CirrusLogic/linux-drivers.git
21292 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
21293 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
21294 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
21295 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
21296 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
21297 F:      Documentation/devicetree/bindings/sound/wm*
21298 F:      Documentation/hwmon/wm83??.rst
21299 F:      arch/arm/mach-s3c/mach-crag6410*
21300 F:      drivers/clk/clk-wm83*.c
21301 F:      drivers/gpio/gpio-*wm*.c
21302 F:      drivers/gpio/gpio-arizona.c
21303 F:      drivers/hwmon/wm83??-hwmon.c
21304 F:      drivers/input/misc/wm831x-on.c
21305 F:      drivers/input/touchscreen/wm831x-ts.c
21306 F:      drivers/input/touchscreen/wm97*.c
21307 F:      drivers/leds/leds-wm83*.c
21308 F:      drivers/mfd/arizona*
21309 F:      drivers/mfd/cs47l24*
21310 F:      drivers/mfd/wm*.c
21311 F:      drivers/power/supply/wm83*.c
21312 F:      drivers/regulator/arizona*
21313 F:      drivers/regulator/wm8*.c
21314 F:      drivers/rtc/rtc-wm83*.c
21315 F:      drivers/video/backlight/wm83*_bl.c
21316 F:      drivers/watchdog/wm83*_wdt.c
21317 F:      include/linux/mfd/arizona/
21318 F:      include/linux/mfd/wm831x/
21319 F:      include/linux/mfd/wm8350/
21320 F:      include/linux/mfd/wm8400*
21321 F:      include/linux/regulator/arizona*
21322 F:      include/linux/wm97xx.h
21323 F:      include/sound/wm????.h
21324 F:      sound/soc/codecs/arizona*
21325 F:      sound/soc/codecs/cs47l24*
21326 F:      sound/soc/codecs/wm*
21327
21328 WORKQUEUE
21329 M:      Tejun Heo <[email protected]>
21330 R:      Lai Jiangshan <[email protected]>
21331 S:      Maintained
21332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
21333 F:      Documentation/core-api/workqueue.rst
21334 F:      include/linux/workqueue.h
21335 F:      kernel/workqueue.c
21336
21337 WWAN DRIVERS
21338 M:      Loic Poulain <[email protected]>
21339 M:      Sergey Ryazanov <[email protected]>
21340 R:      Johannes Berg <[email protected]>
21341 L:      [email protected]
21342 S:      Maintained
21343 F:      drivers/net/wwan/
21344 F:      include/linux/wwan.h
21345 F:      include/uapi/linux/wwan.h
21346
21347 X-POWERS AXP288 PMIC DRIVERS
21348 M:      Hans de Goede <[email protected]>
21349 S:      Maintained
21350 F:      drivers/acpi/pmic/intel_pmic_xpower.c
21351 N:      axp288
21352
21353 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
21354 M:      Chen-Yu Tsai <[email protected]>
21355 L:      [email protected]
21356 S:      Maintained
21357 N:      axp[128]
21358
21359 X.25 STACK
21360 M:      Martin Schiller <[email protected]>
21361 L:      [email protected]
21362 S:      Maintained
21363 F:      Documentation/networking/lapb-module.rst
21364 F:      Documentation/networking/x25*
21365 F:      drivers/net/wan/hdlc_x25.c
21366 F:      drivers/net/wan/lapbether.c
21367 F:      include/*/lapb.h
21368 F:      include/net/x25*
21369 F:      include/uapi/linux/x25.h
21370 F:      net/lapb/
21371 F:      net/x25/
21372
21373 X86 ARCHITECTURE (32-BIT AND 64-BIT)
21374 M:      Thomas Gleixner <[email protected]>
21375 M:      Ingo Molnar <[email protected]>
21376 M:      Borislav Petkov <[email protected]>
21377 M:      Dave Hansen <[email protected]>
21378 M:      [email protected]
21379 R:      "H. Peter Anvin" <[email protected]>
21380 L:      [email protected]
21381 S:      Maintained
21382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21383 F:      Documentation/devicetree/bindings/x86/
21384 F:      Documentation/x86/
21385 F:      arch/x86/
21386
21387 X86 ENTRY CODE
21388 M:      Andy Lutomirski <[email protected]>
21389 L:      [email protected]
21390 S:      Maintained
21391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
21392 F:      arch/x86/entry/
21393
21394 X86 MCE INFRASTRUCTURE
21395 M:      Tony Luck <[email protected]>
21396 M:      Borislav Petkov <[email protected]>
21397 L:      [email protected]
21398 S:      Maintained
21399 F:      Documentation/ABI/testing/sysfs-mce
21400 F:      Documentation/x86/x86_64/machinecheck.rst
21401 F:      arch/x86/kernel/cpu/mce/*
21402
21403 X86 MICROCODE UPDATE SUPPORT
21404 M:      Borislav Petkov <[email protected]>
21405 S:      Maintained
21406 F:      arch/x86/kernel/cpu/microcode/*
21407
21408 X86 MM
21409 M:      Dave Hansen <[email protected]>
21410 M:      Andy Lutomirski <[email protected]>
21411 M:      Peter Zijlstra <[email protected]>
21412 L:      [email protected]
21413 S:      Maintained
21414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
21415 F:      arch/x86/mm/
21416
21417 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
21418 M:      Hans de Goede <[email protected]>
21419 L:      [email protected]
21420 S:      Maintained
21421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21422 F:      drivers/platform/x86/x86-android-tablets.c
21423
21424 X86 PLATFORM DRIVERS
21425 M:      Hans de Goede <[email protected]>
21426 M:      Mark Gross <[email protected]>
21427 L:      [email protected]
21428 S:      Maintained
21429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21430 F:      drivers/platform/olpc/
21431 F:      drivers/platform/x86/
21432
21433 X86 PLATFORM DRIVERS - ARCH
21434 R:      Darren Hart <[email protected]>
21435 R:      Andy Shevchenko <[email protected]>
21436 L:      [email protected]
21437 L:      [email protected]
21438 S:      Maintained
21439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21440 F:      arch/x86/platform
21441
21442 X86 PLATFORM UV HPE SUPERDOME FLEX
21443 M:      Steve Wahl <[email protected]>
21444 R:      Mike Travis <[email protected]>
21445 R:      Dimitri Sivanich <[email protected]>
21446 R:      Russ Anderson <[email protected]>
21447 S:      Supported
21448 F:      arch/x86/include/asm/uv/
21449 F:      arch/x86/kernel/apic/x2apic_uv_x.c
21450 F:      arch/x86/platform/uv/
21451
21452 X86 VDSO
21453 M:      Andy Lutomirski <[email protected]>
21454 L:      [email protected]
21455 S:      Maintained
21456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
21457 F:      arch/x86/entry/vdso/
21458
21459 XARRAY
21460 M:      Matthew Wilcox <[email protected]>
21461 L:      [email protected]
21462 S:      Supported
21463 F:      Documentation/core-api/xarray.rst
21464 F:      include/linux/idr.h
21465 F:      include/linux/xarray.h
21466 F:      lib/idr.c
21467 F:      lib/xarray.c
21468 F:      tools/testing/radix-tree
21469
21470 XBOX DVD IR REMOTE
21471 M:      Benjamin Valentin <[email protected]>
21472 S:      Maintained
21473 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
21474 F:      drivers/media/rc/xbox_remote.c
21475
21476 XC2028/3028 TUNER DRIVER
21477 M:      Mauro Carvalho Chehab <[email protected]>
21478 L:      [email protected]
21479 S:      Maintained
21480 W:      https://linuxtv.org
21481 T:      git git://linuxtv.org/media_tree.git
21482 F:      drivers/media/tuners/xc2028.*
21483
21484 XDP (eXpress Data Path)
21485 M:      Alexei Starovoitov <[email protected]>
21486 M:      Daniel Borkmann <[email protected]>
21487 M:      David S. Miller <[email protected]>
21488 M:      Jakub Kicinski <[email protected]>
21489 M:      Jesper Dangaard Brouer <[email protected]>
21490 M:      John Fastabend <[email protected]>
21491 L:      [email protected]
21492 L:      [email protected]
21493 S:      Supported
21494 F:      include/net/xdp.h
21495 F:      include/net/xdp_priv.h
21496 F:      include/trace/events/xdp.h
21497 F:      kernel/bpf/cpumap.c
21498 F:      kernel/bpf/devmap.c
21499 F:      net/core/xdp.c
21500 F:      samples/bpf/xdp*
21501 F:      tools/testing/selftests/bpf/*xdp*
21502 F:      tools/testing/selftests/bpf/*/*xdp*
21503 F:      drivers/net/ethernet/*/*/*/*/*xdp*
21504 F:      drivers/net/ethernet/*/*/*xdp*
21505 K:      (?:\b|_)xdp(?:\b|_)
21506
21507 XDP SOCKETS (AF_XDP)
21508 M:      Björn Töpel <[email protected]>
21509 M:      Magnus Karlsson <[email protected]>
21510 R:      Jonathan Lemon <[email protected]>
21511 L:      [email protected]
21512 L:      [email protected]
21513 S:      Maintained
21514 F:      Documentation/networking/af_xdp.rst
21515 F:      include/net/xdp_sock*
21516 F:      include/net/xsk_buff_pool.h
21517 F:      include/uapi/linux/if_xdp.h
21518 F:      include/uapi/linux/xdp_diag.h
21519 F:      include/net/netns/xdp.h
21520 F:      net/xdp/
21521 F:      samples/bpf/xdpsock*
21522 F:      tools/lib/bpf/xsk*
21523
21524 XEN BLOCK SUBSYSTEM
21525 M:      Roger Pau Monné <[email protected]>
21526 L:      [email protected] (moderated for non-subscribers)
21527 S:      Supported
21528 F:      drivers/block/xen*
21529 F:      drivers/block/xen-blkback/*
21530
21531 XEN HYPERVISOR ARM
21532 M:      Stefano Stabellini <[email protected]>
21533 L:      [email protected] (moderated for non-subscribers)
21534 S:      Maintained
21535 F:      arch/arm/include/asm/xen/
21536 F:      arch/arm/xen/
21537
21538 XEN HYPERVISOR ARM64
21539 M:      Stefano Stabellini <[email protected]>
21540 L:      [email protected] (moderated for non-subscribers)
21541 S:      Maintained
21542 F:      arch/arm64/include/asm/xen/
21543 F:      arch/arm64/xen/
21544
21545 XEN HYPERVISOR INTERFACE
21546 M:      Boris Ostrovsky <[email protected]>
21547 M:      Juergen Gross <[email protected]>
21548 R:      Stefano Stabellini <[email protected]>
21549 L:      [email protected] (moderated for non-subscribers)
21550 S:      Supported
21551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
21552 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
21553 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
21554 F:      arch/x86/include/asm/pvclock-abi.h
21555 F:      arch/x86/include/asm/xen/
21556 F:      arch/x86/platform/pvh/
21557 F:      arch/x86/xen/
21558 F:      drivers/*/xen-*front.c
21559 F:      drivers/xen/
21560 F:      include/uapi/xen/
21561 F:      include/xen/
21562
21563 XEN NETWORK BACKEND DRIVER
21564 M:      Wei Liu <[email protected]>
21565 M:      Paul Durrant <[email protected]>
21566 L:      [email protected] (moderated for non-subscribers)
21567 L:      [email protected]
21568 S:      Supported
21569 F:      drivers/net/xen-netback/*
21570
21571 XEN PCI SUBSYSTEM
21572 M:      Juergen Gross <[email protected]>
21573 L:      [email protected] (moderated for non-subscribers)
21574 S:      Supported
21575 F:      arch/x86/pci/*xen*
21576 F:      drivers/pci/*xen*
21577
21578 XEN PVSCSI DRIVERS
21579 M:      Juergen Gross <[email protected]>
21580 L:      [email protected] (moderated for non-subscribers)
21581 L:      [email protected]
21582 S:      Supported
21583 F:      drivers/scsi/xen-scsifront.c
21584 F:      drivers/xen/xen-scsiback.c
21585 F:      include/xen/interface/io/vscsiif.h
21586
21587 XEN PVUSB DRIVER
21588 M:      Juergen Gross <[email protected]>
21589 L:      [email protected] (moderated for non-subscribers)
21590 L:      [email protected]
21591 S:      Supported
21592 F:      drivers/usb/host/xen*
21593 F:      include/xen/interface/io/usbif.h
21594
21595 XEN SOUND FRONTEND DRIVER
21596 M:      Oleksandr Andrushchenko <[email protected]>
21597 L:      [email protected] (moderated for non-subscribers)
21598 L:      [email protected] (moderated for non-subscribers)
21599 S:      Supported
21600 F:      sound/xen/*
21601
21602 XEN SWIOTLB SUBSYSTEM
21603 M:      Juergen Gross <[email protected]>
21604 M:      Stefano Stabellini <[email protected]>
21605 L:      [email protected] (moderated for non-subscribers)
21606 L:      [email protected]
21607 S:      Supported
21608 F:      arch/x86/xen/*swiotlb*
21609 F:      drivers/xen/*swiotlb*
21610
21611 XFS FILESYSTEM
21612 C:      irc://irc.oftc.net/xfs
21613 M:      Darrick J. Wong <[email protected]>
21614 M:      [email protected]
21615 L:      [email protected]
21616 S:      Supported
21617 W:      http://xfs.org/
21618 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
21619 F:      Documentation/ABI/testing/sysfs-fs-xfs
21620 F:      Documentation/admin-guide/xfs.rst
21621 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
21622 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
21623 F:      fs/xfs/
21624 F:      include/uapi/linux/dqblk_xfs.h
21625 F:      include/uapi/linux/fsmap.h
21626
21627 XILINX AMS DRIVER
21628 M:      Anand Ashok Dumbre <[email protected]>
21629 L:      [email protected]
21630 S:      Maintained
21631 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
21632 F:      drivers/iio/adc/xilinx-ams.c
21633
21634 XILINX AXI ETHERNET DRIVER
21635 M:      Radhey Shyam Pandey <[email protected]>
21636 S:      Maintained
21637 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
21638
21639 XILINX CAN DRIVER
21640 M:      Appana Durga Kedareswara rao <[email protected]>
21641 R:      Naga Sureshkumar Relli <[email protected]>
21642 L:      [email protected]
21643 S:      Maintained
21644 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
21645 F:      drivers/net/can/xilinx_can.c
21646
21647 XILINX GPIO DRIVER
21648 M:      Shubhrajyoti Datta <[email protected]>
21649 R:      Srinivas Neeli <[email protected]>
21650 R:      Michal Simek <[email protected]>
21651 S:      Maintained
21652 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
21653 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
21654 F:      drivers/gpio/gpio-xilinx.c
21655 F:      drivers/gpio/gpio-zynq.c
21656
21657 XILINX SD-FEC IP CORES
21658 M:      Derek Kiernan <[email protected]>
21659 M:      Dragan Cvetic <[email protected]>
21660 S:      Maintained
21661 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
21662 F:      Documentation/misc-devices/xilinx_sdfec.rst
21663 F:      drivers/misc/Kconfig
21664 F:      drivers/misc/Makefile
21665 F:      drivers/misc/xilinx_sdfec.c
21666 F:      include/uapi/misc/xilinx_sdfec.h
21667
21668 XILINX UARTLITE SERIAL DRIVER
21669 M:      Peter Korsgaard <[email protected]>
21670 L:      [email protected]
21671 S:      Maintained
21672 F:      drivers/tty/serial/uartlite.c
21673
21674 XILINX VIDEO IP CORES
21675 M:      Hyun Kwon <[email protected]>
21676 M:      Laurent Pinchart <[email protected]>
21677 L:      [email protected]
21678 S:      Supported
21679 T:      git git://linuxtv.org/media_tree.git
21680 F:      Documentation/devicetree/bindings/media/xilinx/
21681 F:      drivers/media/platform/xilinx/
21682 F:      include/uapi/linux/xilinx-v4l2-controls.h
21683
21684 XILINX ZYNQMP DPDMA DRIVER
21685 M:      Hyun Kwon <[email protected]>
21686 M:      Laurent Pinchart <[email protected]>
21687 L:      [email protected]
21688 S:      Supported
21689 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
21690 F:      drivers/dma/xilinx/xilinx_dpdma.c
21691 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
21692
21693 XILINX ZYNQMP PSGTR PHY DRIVER
21694 M:      Anurag Kumar Vulisha <[email protected]>
21695 M:      Laurent Pinchart <[email protected]>
21696 L:      [email protected]
21697 S:      Supported
21698 T:      git https://github.com/Xilinx/linux-xlnx.git
21699 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
21700 F:      drivers/phy/xilinx/phy-zynqmp.c
21701
21702 XILINX ZYNQMP SHA3 DRIVER
21703 M:      Harsha <[email protected]>
21704 S:      Maintained
21705 F:      drivers/crypto/xilinx/zynqmp-sha.c
21706
21707 XILINX EVENT MANAGEMENT DRIVER
21708 M:      Abhyuday Godhasara <[email protected]>
21709 S:      Maintained
21710 F:      drivers/soc/xilinx/xlnx_event_manager.c
21711 F:      include/linux/firmware/xlnx-event-manager.h
21712
21713 XILLYBUS DRIVER
21714 M:      Eli Billauer <[email protected]>
21715 L:      [email protected]
21716 S:      Supported
21717 F:      drivers/char/xillybus/
21718
21719 XLP9XX I2C DRIVER
21720 M:      George Cherian <[email protected]>
21721 L:      [email protected]
21722 S:      Supported
21723 W:      http://www.marvell.com
21724 F:      drivers/i2c/busses/i2c-xlp9xx.c
21725
21726 XRA1403 GPIO EXPANDER
21727 M:      Nandor Han <[email protected]>
21728 M:      Semi Malinen <[email protected]>
21729 L:      [email protected]
21730 S:      Maintained
21731 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
21732 F:      drivers/gpio/gpio-xra1403.c
21733
21734 XTENSA XTFPGA PLATFORM SUPPORT
21735 M:      Max Filippov <[email protected]>
21736 L:      [email protected]
21737 S:      Maintained
21738 F:      drivers/spi/spi-xtensa-xtfpga.c
21739 F:      sound/soc/xtensa/xtfpga-i2s.c
21740
21741 YAM DRIVER FOR AX.25
21742 M:      Jean-Paul Roubelat <[email protected]>
21743 L:      [email protected]
21744 S:      Maintained
21745 F:      drivers/net/hamradio/yam*
21746 F:      include/linux/yam.h
21747
21748 YAMA SECURITY MODULE
21749 M:      Kees Cook <[email protected]>
21750 S:      Supported
21751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
21752 F:      Documentation/admin-guide/LSM/Yama.rst
21753 F:      security/yama/
21754
21755 YEALINK PHONE DRIVER
21756 M:      Henk Vergonet <[email protected]>
21757 L:      [email protected]
21758 S:      Maintained
21759 F:      Documentation/input/devices/yealink.rst
21760 F:      drivers/input/misc/yealink.*
21761
21762 Z8530 DRIVER FOR AX.25
21763 M:      Joerg Reuter <[email protected]>
21764 L:      [email protected]
21765 S:      Maintained
21766 W:      http://yaina.de/jreuter/
21767 W:      http://www.qsl.net/dl1bke/
21768 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
21769 F:      drivers/net/hamradio/*scc.c
21770 F:      drivers/net/hamradio/z8530.h
21771
21772 ZBUD COMPRESSED PAGE ALLOCATOR
21773 M:      Seth Jennings <[email protected]>
21774 M:      Dan Streetman <[email protected]>
21775 L:      [email protected]
21776 S:      Maintained
21777 F:      mm/zbud.c
21778
21779 ZD1211RW WIRELESS DRIVER
21780 M:      Ulrich Kunitz <[email protected]>
21781 L:      [email protected]
21782 L:      [email protected] (subscribers-only)
21783 S:      Maintained
21784 W:      http://zd1211.ath.cx/wiki/DriverRewrite
21785 F:      drivers/net/wireless/zydas/zd1211rw/
21786
21787 ZD1301 MEDIA DRIVER
21788 M:      Antti Palosaari <[email protected]>
21789 L:      [email protected]
21790 S:      Maintained
21791 W:      https://linuxtv.org/
21792 W:      http://palosaari.fi/linux/
21793 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21794 F:      drivers/media/usb/dvb-usb-v2/zd1301*
21795
21796 ZD1301_DEMOD MEDIA DRIVER
21797 M:      Antti Palosaari <[email protected]>
21798 L:      [email protected]
21799 S:      Maintained
21800 W:      https://linuxtv.org/
21801 W:      http://palosaari.fi/linux/
21802 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21803 F:      drivers/media/dvb-frontends/zd1301_demod*
21804
21805 ZHAOXIN PROCESSOR SUPPORT
21806 M:      Tony W Wang-oc <[email protected]>
21807 L:      [email protected]
21808 S:      Maintained
21809 F:      arch/x86/kernel/cpu/zhaoxin.c
21810
21811 ZONEFS FILESYSTEM
21812 M:      Damien Le Moal <[email protected]>
21813 M:      Naohiro Aota <[email protected]>
21814 R:      Johannes Thumshirn <[email protected]>
21815 L:      [email protected]
21816 S:      Maintained
21817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
21818 F:      Documentation/filesystems/zonefs.rst
21819 F:      fs/zonefs/
21820
21821 ZPOOL COMPRESSED PAGE STORAGE API
21822 M:      Dan Streetman <[email protected]>
21823 L:      [email protected]
21824 S:      Maintained
21825 F:      include/linux/zpool.h
21826 F:      mm/zpool.c
21827
21828 ZR36067 VIDEO FOR LINUX DRIVER
21829 M:      Corentin Labbe <[email protected]>
21830 L:      [email protected]
21831 L:      [email protected]
21832 S:      Maintained
21833 W:      http://mjpeg.sourceforge.net/driver-zoran/
21834 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21835 F:      Documentation/driver-api/media/drivers/zoran.rst
21836 F:      drivers/staging/media/zoran/
21837
21838 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
21839 M:      Minchan Kim <[email protected]>
21840 M:      Nitin Gupta <[email protected]>
21841 R:      Sergey Senozhatsky <[email protected]>
21842 L:      [email protected]
21843 S:      Maintained
21844 F:      Documentation/admin-guide/blockdev/zram.rst
21845 F:      drivers/block/zram/
21846
21847 ZS DECSTATION Z85C30 SERIAL DRIVER
21848 M:      "Maciej W. Rozycki" <[email protected]>
21849 S:      Maintained
21850 F:      drivers/tty/serial/zs.*
21851
21852 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
21853 M:      Minchan Kim <[email protected]>
21854 M:      Nitin Gupta <[email protected]>
21855 R:      Sergey Senozhatsky <[email protected]>
21856 L:      [email protected]
21857 S:      Maintained
21858 F:      Documentation/vm/zsmalloc.rst
21859 F:      include/linux/zsmalloc.h
21860 F:      mm/zsmalloc.c
21861
21862 ZSTD
21863 M:      Nick Terrell <[email protected]>
21864 S:      Maintained
21865 B:      https://github.com/facebook/zstd/issues
21866 T:      git git://github.com/terrelln/linux.git
21867 F:      include/linux/zstd*
21868 F:      lib/zstd/
21869 F:      lib/decompress_unzstd.c
21870 F:      crypto/zstd.c
21871 N:      zstd
21872 K:      zstd
21873
21874 ZSWAP COMPRESSED SWAP CACHING
21875 M:      Seth Jennings <[email protected]>
21876 M:      Dan Streetman <[email protected]>
21877 M:      Vitaly Wool <[email protected]>
21878 L:      [email protected]
21879 S:      Maintained
21880 F:      mm/zswap.c
21881
21882 THE REST
21883 M:      Linus Torvalds <[email protected]>
21884 L:      [email protected]
21885 S:      Buried alive in reporters
21886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
21887 F:      *
21888 F:      */
This page took 1.234709 seconds and 4 git commands to generate.