]> Git Repo - linux.git/blob - MAINTAINERS
Merge tag 'integrity-v5.11' of git://git.kernel.org/pub/scm/linux/kernel/git/zohar...
[linux.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: [email protected], especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <[email protected]>
148 L:      [email protected]
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <[email protected]>
155 L:      [email protected]
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <[email protected]>
161 L:      [email protected]
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <[email protected]>
168 L:      [email protected]
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <[email protected]>
174 M:      Jukka Rissanen <[email protected]>
175 L:      [email protected]
176 L:      [email protected]
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <[email protected]>
184 L:      [email protected]
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <[email protected]>
190 L:      [email protected]
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Realtek linux nic maintainers <[email protected]>
207 M:      Heiner Kallweit <[email protected]>
208 L:      [email protected]
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <[email protected]>
214 L:      [email protected]
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      [email protected]
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <[email protected]>
227 M:      Latchesar Ionkov <[email protected]>
228 M:      Dominique Martinet <[email protected]>
229 L:      [email protected]
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <[email protected]>
244 L:      [email protected]
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <[email protected]>
254 L:      [email protected]
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      [email protected]
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264
265 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
266 M:      Hans de Goede <[email protected]>
267 L:      [email protected]
268 S:      Maintained
269 F:      drivers/hwmon/abituguru.c
270
271 ABIT UGURU 3 HARDWARE MONITOR DRIVER
272 M:      Alistair John Strachan <[email protected]>
273 L:      [email protected]
274 S:      Maintained
275 F:      drivers/hwmon/abituguru3.c
276
277 ACCES 104-DIO-48E GPIO DRIVER
278 M:      William Breathitt Gray <[email protected]>
279 L:      [email protected]
280 S:      Maintained
281 F:      drivers/gpio/gpio-104-dio-48e.c
282
283 ACCES 104-IDI-48 GPIO DRIVER
284 M:      "William Breathitt Gray" <[email protected]>
285 L:      [email protected]
286 S:      Maintained
287 F:      drivers/gpio/gpio-104-idi-48.c
288
289 ACCES 104-IDIO-16 GPIO DRIVER
290 M:      "William Breathitt Gray" <[email protected]>
291 L:      [email protected]
292 S:      Maintained
293 F:      drivers/gpio/gpio-104-idio-16.c
294
295 ACCES 104-QUAD-8 DRIVER
296 M:      William Breathitt Gray <[email protected]>
297 M:      Syed Nayyar Waris <[email protected]>
298 L:      [email protected]
299 S:      Maintained
300 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
301 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
302 F:      drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M:      William Breathitt Gray <[email protected]>
306 L:      [email protected]
307 S:      Maintained
308 F:      drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M:      William Breathitt Gray <[email protected]>
312 L:      [email protected]
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <[email protected]>
318 L:      [email protected]
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <[email protected]>
324 L:      [email protected]
325 S:      Maintained
326 W:      http://piie.net/?section=acerhdf
327 F:      drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M:      "Lee, Chun-Yi" <[email protected]>
331 L:      [email protected]
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <[email protected]>
337 M:      Len Brown <[email protected]>
338 L:      [email protected]
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <[email protected]>
358 M:      Len Brown <[email protected]>
359 R:      James Morse <[email protected]>
360 R:      Tony Luck <[email protected]>
361 R:      Borislav Petkov <[email protected]>
362 L:      [email protected]
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <[email protected]>
367 M:      Erik Kaneda <[email protected]>
368 M:      "Rafael J. Wysocki" <[email protected]>
369 L:      [email protected]
370 L:      [email protected]
371 S:      Supported
372 W:      https://acpica.org/
373 W:      https://github.com/acpica/acpica/
374 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
375 B:      https://bugzilla.kernel.org
376 B:      https://bugs.acpica.org
377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
378 F:      drivers/acpi/acpica/
379 F:      include/acpi/
380 F:      tools/power/acpi/
381
382 ACPI FAN DRIVER
383 M:      Zhang Rui <[email protected]>
384 L:      [email protected]
385 S:      Supported
386 W:      https://01.org/linux-acpi
387 B:      https://bugzilla.kernel.org
388 F:      drivers/acpi/fan.c
389
390 ACPI FOR ARM64 (ACPI/arm64)
391 M:      Lorenzo Pieralisi <[email protected]>
392 M:      Hanjun Guo <[email protected]>
393 M:      Sudeep Holla <[email protected]>
394 L:      [email protected]
395 L:      [email protected] (moderated for non-subscribers)
396 S:      Maintained
397 F:      drivers/acpi/arm64
398
399 ACPI I2C MULTI INSTANTIATE DRIVER
400 M:      Hans de Goede <[email protected]>
401 L:      [email protected]
402 S:      Maintained
403 F:      drivers/platform/x86/i2c-multi-instantiate.c
404
405 ACPI PMIC DRIVERS
406 M:      "Rafael J. Wysocki" <[email protected]>
407 M:      Len Brown <[email protected]>
408 R:      Andy Shevchenko <[email protected]>
409 R:      Mika Westerberg <[email protected]>
410 L:      [email protected]
411 S:      Supported
412 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
413 B:      https://bugzilla.kernel.org
414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F:      drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M:      Zhang Rui <[email protected]>
419 L:      [email protected]
420 S:      Supported
421 W:      https://01.org/linux-acpi
422 B:      https://bugzilla.kernel.org
423 F:      drivers/acpi/*thermal*
424
425 ACPI VIDEO DRIVER
426 M:      Zhang Rui <[email protected]>
427 L:      [email protected]
428 S:      Supported
429 W:      https://01.org/linux-acpi
430 B:      https://bugzilla.kernel.org
431 F:      drivers/acpi/acpi_video.c
432
433 ACPI WMI DRIVER
434 L:      [email protected]
435 S:      Orphan
436 F:      drivers/platform/x86/wmi.c
437 F:      include/uapi/linux/wmi.h
438
439 AD1889 ALSA SOUND DRIVER
440 L:      [email protected]
441 S:      Maintained
442 W:      https://parisc.wiki.kernel.org/index.php/AD1889
443 F:      sound/pci/ad1889.*
444
445 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
446 M:      Michael Hennerich <[email protected]>
447 S:      Supported
448 W:      http://wiki.analog.com/AD5254
449 W:      http://ez.analog.com/community/linux-device-drivers
450 F:      drivers/misc/ad525x_dpot.c
451
452 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
453 M:      Michael Hennerich <[email protected]>
454 S:      Supported
455 W:      http://wiki.analog.com/AD5398
456 W:      http://ez.analog.com/community/linux-device-drivers
457 F:      drivers/regulator/ad5398.c
458
459 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
460 M:      Michael Hennerich <[email protected]>
461 S:      Supported
462 W:      http://wiki.analog.com/AD7142
463 W:      http://ez.analog.com/community/linux-device-drivers
464 F:      drivers/input/misc/ad714x.c
465
466 AD7877 TOUCHSCREEN DRIVER
467 M:      Michael Hennerich <[email protected]>
468 S:      Supported
469 W:      http://wiki.analog.com/AD7877
470 W:      http://ez.analog.com/community/linux-device-drivers
471 F:      drivers/input/touchscreen/ad7877.c
472
473 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
474 M:      Michael Hennerich <[email protected]>
475 S:      Supported
476 W:      http://wiki.analog.com/AD7879
477 W:      http://ez.analog.com/community/linux-device-drivers
478 F:      drivers/input/touchscreen/ad7879.c
479
480 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
481 M:      Jiri Kosina <[email protected]>
482 S:      Maintained
483
484 ADF7242 IEEE 802.15.4 RADIO DRIVER
485 M:      Michael Hennerich <[email protected]>
486 L:      [email protected]
487 S:      Supported
488 W:      https://wiki.analog.com/ADF7242
489 W:      http://ez.analog.com/community/linux-device-drivers
490 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
491 F:      drivers/net/ieee802154/adf7242.c
492
493 ADM1025 HARDWARE MONITOR DRIVER
494 M:      Jean Delvare <[email protected]>
495 L:      [email protected]
496 S:      Maintained
497 F:      Documentation/hwmon/adm1025.rst
498 F:      drivers/hwmon/adm1025.c
499
500 ADM1029 HARDWARE MONITOR DRIVER
501 M:      Corentin Labbe <[email protected]>
502 L:      [email protected]
503 S:      Maintained
504 F:      drivers/hwmon/adm1029.c
505
506 ADM8211 WIRELESS DRIVER
507 L:      [email protected]
508 S:      Orphan
509 W:      https://wireless.wiki.kernel.org/
510 F:      drivers/net/wireless/admtek/adm8211.*
511
512 ADP1653 FLASH CONTROLLER DRIVER
513 M:      Sakari Ailus <[email protected]>
514 L:      [email protected]
515 S:      Maintained
516 F:      drivers/media/i2c/adp1653.c
517 F:      include/media/i2c/adp1653.h
518
519 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
520 M:      Michael Hennerich <[email protected]>
521 S:      Supported
522 W:      http://wiki.analog.com/ADP5520
523 W:      http://ez.analog.com/community/linux-device-drivers
524 F:      drivers/gpio/gpio-adp5520.c
525 F:      drivers/input/keyboard/adp5520-keys.c
526 F:      drivers/leds/leds-adp5520.c
527 F:      drivers/mfd/adp5520.c
528 F:      drivers/video/backlight/adp5520_bl.c
529
530 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
531 M:      Michael Hennerich <[email protected]>
532 S:      Supported
533 W:      http://wiki.analog.com/ADP5588
534 W:      http://ez.analog.com/community/linux-device-drivers
535 F:      drivers/gpio/gpio-adp5588.c
536 F:      drivers/input/keyboard/adp5588-keys.c
537
538 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
539 M:      Michael Hennerich <[email protected]>
540 S:      Supported
541 W:      http://wiki.analog.com/ADP8860
542 W:      http://ez.analog.com/community/linux-device-drivers
543 F:      drivers/video/backlight/adp8860_bl.c
544
545 ADT746X FAN DRIVER
546 M:      Colin Leroy <[email protected]>
547 S:      Maintained
548 F:      drivers/macintosh/therm_adt746x.c
549
550 ADT7475 HARDWARE MONITOR DRIVER
551 M:      Jean Delvare <[email protected]>
552 L:      [email protected]
553 S:      Maintained
554 F:      Documentation/hwmon/adt7475.rst
555 F:      drivers/hwmon/adt7475.c
556
557 ADVANSYS SCSI DRIVER
558 M:      Matthew Wilcox <[email protected]>
559 M:      Hannes Reinecke <[email protected]>
560 L:      [email protected]
561 S:      Maintained
562 F:      Documentation/scsi/advansys.rst
563 F:      drivers/scsi/advansys.c
564
565 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
566 M:      Michael Hennerich <[email protected]>
567 S:      Supported
568 W:      http://wiki.analog.com/ADXL345
569 W:      http://ez.analog.com/community/linux-device-drivers
570 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
571 F:      drivers/input/misc/adxl34x.c
572
573 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
574 M:      Michael Hennerich <[email protected]>
575 S:      Supported
576 W:      http://ez.analog.com/community/linux-device-drivers
577 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
578 F:      drivers/iio/accel/adxl372.c
579 F:      drivers/iio/accel/adxl372_i2c.c
580 F:      drivers/iio/accel/adxl372_spi.c
581
582 AF9013 MEDIA DRIVER
583 M:      Antti Palosaari <[email protected]>
584 L:      [email protected]
585 S:      Maintained
586 W:      https://linuxtv.org
587 W:      http://palosaari.fi/linux/
588 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
589 T:      git git://linuxtv.org/anttip/media_tree.git
590 F:      drivers/media/dvb-frontends/af9013*
591
592 AF9033 MEDIA DRIVER
593 M:      Antti Palosaari <[email protected]>
594 L:      [email protected]
595 S:      Maintained
596 W:      https://linuxtv.org
597 W:      http://palosaari.fi/linux/
598 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
599 T:      git git://linuxtv.org/anttip/media_tree.git
600 F:      drivers/media/dvb-frontends/af9033*
601
602 AFFS FILE SYSTEM
603 M:      David Sterba <[email protected]>
604 L:      [email protected]
605 S:      Odd Fixes
606 F:      Documentation/filesystems/affs.rst
607 F:      fs/affs/
608
609 AFS FILESYSTEM
610 M:      David Howells <[email protected]>
611 L:      [email protected]
612 S:      Supported
613 W:      https://www.infradead.org/~dhowells/kafs/
614 F:      Documentation/filesystems/afs.rst
615 F:      fs/afs/
616 F:      include/trace/events/afs.h
617
618 AGPGART DRIVER
619 M:      David Airlie <[email protected]>
620 S:      Maintained
621 T:      git git://anongit.freedesktop.org/drm/drm
622 F:      drivers/char/agp/
623 F:      include/linux/agp*
624 F:      include/uapi/linux/agp*
625
626 AHA152X SCSI DRIVER
627 M:      "Juergen E. Fischer" <[email protected]>
628 L:      [email protected]
629 S:      Maintained
630 F:      drivers/scsi/aha152x*
631 F:      drivers/scsi/pcmcia/aha152x*
632
633 AIC7XXX / AIC79XX SCSI DRIVER
634 M:      Hannes Reinecke <[email protected]>
635 L:      [email protected]
636 S:      Maintained
637 F:      drivers/scsi/aic7xxx/
638
639 AIMSLAB FM RADIO RECEIVER DRIVER
640 M:      Hans Verkuil <[email protected]>
641 L:      [email protected]
642 S:      Maintained
643 W:      https://linuxtv.org
644 T:      git git://linuxtv.org/media_tree.git
645 F:      drivers/media/radio/radio-aimslab*
646
647 AIO
648 M:      Benjamin LaHaise <[email protected]>
649 L:      [email protected]
650 S:      Supported
651 F:      fs/aio.c
652 F:      include/linux/*aio*.h
653
654 AIRSPY MEDIA DRIVER
655 M:      Antti Palosaari <[email protected]>
656 L:      [email protected]
657 S:      Maintained
658 W:      https://linuxtv.org
659 W:      http://palosaari.fi/linux/
660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
661 T:      git git://linuxtv.org/anttip/media_tree.git
662 F:      drivers/media/usb/airspy/
663
664 ALACRITECH GIGABIT ETHERNET DRIVER
665 M:      Lino Sanfilippo <[email protected]>
666 S:      Maintained
667 F:      drivers/net/ethernet/alacritech/*
668
669 ALCATEL SPEEDTOUCH USB DRIVER
670 M:      Duncan Sands <[email protected]>
671 L:      [email protected]
672 S:      Maintained
673 W:      http://www.linux-usb.org/SpeedTouch/
674 F:      drivers/usb/atm/speedtch.c
675 F:      drivers/usb/atm/usbatm.c
676
677 ALCHEMY AU1XX0 MMC DRIVER
678 M:      Manuel Lauss <[email protected]>
679 S:      Maintained
680 F:      drivers/mmc/host/au1xmmc.c
681
682 ALI1563 I2C DRIVER
683 M:      Rudolf Marek <[email protected]>
684 L:      [email protected]
685 S:      Maintained
686 F:      Documentation/i2c/busses/i2c-ali1563.rst
687 F:      drivers/i2c/busses/i2c-ali1563.c
688
689 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
690 M:      Tomislav Denis <[email protected]>
691 L:      [email protected]
692 S:      Maintained
693 W:      http://www.allsensors.com/
694 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
695 F:      drivers/iio/pressure/dlhl60d.c
696
697 ALLEGRO DVT VIDEO IP CORE DRIVER
698 M:      Michael Tretter <[email protected]>
699 R:      Pengutronix Kernel Team <[email protected]>
700 L:      [email protected]
701 S:      Maintained
702 F:      drivers/staging/media/allegro-dvt/
703
704 ALLWINNER A10 CSI DRIVER
705 M:      Maxime Ripard <[email protected]>
706 L:      [email protected]
707 S:      Maintained
708 T:      git git://linuxtv.org/media_tree.git
709 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
710 F:      drivers/media/platform/sunxi/sun4i-csi/
711
712 ALLWINNER CPUFREQ DRIVER
713 M:      Yangtao Li <[email protected]>
714 L:      [email protected]
715 S:      Maintained
716 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
717 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
718
719 ALLWINNER CRYPTO DRIVERS
720 M:      Corentin Labbe <[email protected]>
721 L:      [email protected]
722 S:      Maintained
723 F:      drivers/crypto/allwinner/
724
725 ALLWINNER THERMAL DRIVER
726 M:      Vasily Khoruzhick <[email protected]>
727 M:      Yangtao Li <[email protected]>
728 L:      [email protected]
729 S:      Maintained
730 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
731 F:      drivers/thermal/sun8i_thermal.c
732
733 ALLWINNER VPU DRIVER
734 M:      Maxime Ripard <[email protected]>
735 M:      Paul Kocialkowski <[email protected]>
736 L:      [email protected]
737 S:      Maintained
738 F:      drivers/staging/media/sunxi/cedrus/
739
740 ALPHA PORT
741 M:      Richard Henderson <[email protected]>
742 M:      Ivan Kokshaysky <[email protected]>
743 M:      Matt Turner <[email protected]>
744 L:      [email protected]
745 S:      Odd Fixes
746 F:      arch/alpha/
747
748 ALPS PS/2 TOUCHPAD DRIVER
749 R:      Pali Rohár <[email protected]>
750 F:      drivers/input/mouse/alps.*
751
752 ALTERA I2C CONTROLLER DRIVER
753 M:      Thor Thayer <[email protected]>
754 S:      Maintained
755 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
756 F:      drivers/i2c/busses/i2c-altera.c
757
758 ALTERA MAILBOX DRIVER
759 M:      Ley Foon Tan <[email protected]>
760 S:      Maintained
761 F:      drivers/mailbox/mailbox-altera.c
762
763 ALTERA PIO DRIVER
764 M:      Joyce Ooi <[email protected]>
765 L:      [email protected]
766 S:      Maintained
767 F:      drivers/gpio/gpio-altera.c
768
769 ALTERA SYSTEM MANAGER DRIVER
770 M:      Thor Thayer <[email protected]>
771 S:      Maintained
772 F:      drivers/mfd/altera-sysmgr.c
773 F:      include/linux/mfd/altera-sysmgr.h
774
775 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
776 M:      Thor Thayer <[email protected]>
777 S:      Maintained
778 F:      drivers/gpio/gpio-altera-a10sr.c
779 F:      drivers/mfd/altera-a10sr.c
780 F:      drivers/reset/reset-a10sr.c
781 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
782 F:      include/linux/mfd/altera-a10sr.h
783
784 ALTERA TRIPLE SPEED ETHERNET DRIVER
785 M:      Joyce Ooi <[email protected]>
786 L:      [email protected]
787 S:      Maintained
788 F:      drivers/net/ethernet/altera/
789
790 ALTERA UART/JTAG UART SERIAL DRIVERS
791 M:      Tobias Klauser <[email protected]>
792 L:      [email protected]
793 S:      Maintained
794 F:      drivers/tty/serial/altera_jtaguart.c
795 F:      drivers/tty/serial/altera_uart.c
796 F:      include/linux/altera_jtaguart.h
797 F:      include/linux/altera_uart.h
798
799 AMAZON ANNAPURNA LABS FIC DRIVER
800 M:      Talel Shenhar <[email protected]>
801 S:      Maintained
802 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
803 F:      drivers/irqchip/irq-al-fic.c
804
805 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
806 M:      Talel Shenhar <[email protected]>
807 M:      Talel Shenhar <[email protected]>
808 S:      Maintained
809 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
810 F:      drivers/edac/al_mc_edac.c
811
812 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
813 M:      Talel Shenhar <[email protected]>
814 S:      Maintained
815 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
816 F:      drivers/thermal/thermal_mmio.c
817
818 AMAZON ETHERNET DRIVERS
819 M:      Netanel Belgazal <[email protected]>
820 M:      Arthur Kiyanovski <[email protected]>
821 R:      Guy Tzalik <[email protected]>
822 R:      Saeed Bishara <[email protected]>
823 R:      Zorik Machulsky <[email protected]>
824 L:      [email protected]
825 S:      Supported
826 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
827 F:      drivers/net/ethernet/amazon/
828
829 AMAZON RDMA EFA DRIVER
830 M:      Gal Pressman <[email protected]>
831 R:      Yossi Leybovich <[email protected]>
832 L:      [email protected]
833 S:      Supported
834 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
835 F:      drivers/infiniband/hw/efa/
836 F:      include/uapi/rdma/efa-abi.h
837
838 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
839 M:      Tom Lendacky <[email protected]>
840 M:      John Allen <[email protected]>
841 L:      [email protected]
842 S:      Supported
843 F:      drivers/crypto/ccp/
844 F:      include/linux/ccp.h
845
846 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
847 M:      Brijesh Singh <[email protected]>
848 M:      Tom Lendacky <[email protected]>
849 L:      [email protected]
850 S:      Supported
851 F:      drivers/crypto/ccp/sev*
852 F:      include/uapi/linux/psp-sev.h
853
854 AMD DISPLAY CORE
855 M:      Harry Wentland <[email protected]>
856 M:      Leo Li <[email protected]>
857 L:      [email protected]
858 S:      Supported
859 T:      git git://people.freedesktop.org/~agd5f/linux
860 F:      drivers/gpu/drm/amd/display/
861
862 AMD ENERGY DRIVER
863 M:      Naveen Krishna Chatradhi <[email protected]>
864 L:      [email protected]
865 S:      Maintained
866 F:      Documentation/hwmon/amd_energy.rst
867 F:      drivers/hwmon/amd_energy.c
868
869 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
870 M:      Huang Rui <[email protected]>
871 L:      [email protected]
872 S:      Supported
873 F:      Documentation/hwmon/fam15h_power.rst
874 F:      drivers/hwmon/fam15h_power.c
875
876 AMD FCH GPIO DRIVER
877 M:      Enrico Weigelt, metux IT consult <[email protected]>
878 L:      [email protected]
879 S:      Maintained
880 F:      drivers/gpio/gpio-amd-fch.c
881 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
882
883 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
884 L:      [email protected] (moderated for non-subscribers)
885 S:      Orphan
886 F:      drivers/usb/gadget/udc/amd5536udc.*
887
888 AMD GEODE PROCESSOR/CHIPSET SUPPORT
889 M:      Andres Salomon <[email protected]>
890 L:      [email protected] (moderated for non-subscribers)
891 S:      Supported
892 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
893 F:      arch/x86/include/asm/geode.h
894 F:      drivers/char/hw_random/geode-rng.c
895 F:      drivers/crypto/geode*
896 F:      drivers/video/fbdev/geode/
897
898 AMD IOMMU (AMD-VI)
899 M:      Joerg Roedel <[email protected]>
900 L:      [email protected]
901 S:      Maintained
902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
903 F:      drivers/iommu/amd/
904 F:      include/linux/amd-iommu.h
905
906 AMD KFD
907 M:      Felix Kuehling <[email protected]>
908 L:      [email protected]
909 S:      Supported
910 T:      git git://people.freedesktop.org/~agd5f/linux
911 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
912 F:      drivers/gpu/drm/amd/amdkfd/
913 F:      drivers/gpu/drm/amd/include/cik_structs.h
914 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
915 F:      drivers/gpu/drm/amd/include/v9_structs.h
916 F:      drivers/gpu/drm/amd/include/vi_structs.h
917 F:      include/uapi/linux/kfd_ioctl.h
918
919 AMD SPI DRIVER
920 M:      Sanjay R Mehta <[email protected]>
921 S:      Maintained
922 F:      drivers/spi/spi-amd.c
923
924 AMD MP2 I2C DRIVER
925 M:      Elie Morisse <[email protected]>
926 M:      Nehal Shah <[email protected]>
927 M:      Shyam Sundar S K <[email protected]>
928 L:      [email protected]
929 S:      Maintained
930 F:      drivers/i2c/busses/i2c-amd-mp2*
931
932 AMD PMC DRIVER
933 M:      Shyam Sundar S K <[email protected]>
934 L:      [email protected]
935 S:      Maintained
936 F:      drivers/platform/x86/amd-pmc.*
937
938 AMD POWERPLAY
939 M:      Evan Quan <[email protected]>
940 L:      [email protected]
941 S:      Supported
942 T:      git git://people.freedesktop.org/~agd5f/linux
943 F:      drivers/gpu/drm/amd/pm/powerplay/
944
945 AMD SEATTLE DEVICE TREE SUPPORT
946 M:      Brijesh Singh <[email protected]>
947 M:      Suravee Suthikulpanit <[email protected]>
948 M:      Tom Lendacky <[email protected]>
949 S:      Supported
950 F:      arch/arm64/boot/dts/amd/
951
952 AMD XGBE DRIVER
953 M:      Tom Lendacky <[email protected]>
954 L:      [email protected]
955 S:      Supported
956 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
957 F:      drivers/net/ethernet/amd/xgbe/
958
959 AMS AS73211 DRIVER
960 M:      Christian Eggers <[email protected]>
961 L:      [email protected]
962 S:      Maintained
963 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
964 F:      drivers/iio/light/as73211.c
965
966 ANALOG DEVICES INC AD7192 DRIVER
967 M:      Alexandru Tachici <[email protected]>
968 L:      [email protected]
969 S:      Supported
970 W:      http://ez.analog.com/community/linux-device-drivers
971 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
972 F:      drivers/iio/adc/ad7192.c
973
974 ANALOG DEVICES INC AD7292 DRIVER
975 M:      Marcelo Schmitt <[email protected]>
976 L:      [email protected]
977 S:      Supported
978 W:      http://ez.analog.com/community/linux-device-drivers
979 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
980 F:      drivers/iio/adc/ad7292.c
981
982 ANALOG DEVICES INC AD7768-1 DRIVER
983 M:      Michael Hennerich <[email protected]>
984 L:      [email protected]
985 S:      Supported
986 W:      http://ez.analog.com/community/linux-device-drivers
987 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
988 F:      drivers/iio/adc/ad7768-1.c
989
990 ANALOG DEVICES INC AD7780 DRIVER
991 M:      Michael Hennerich <[email protected]>
992 M:      Renato Lui Geh <[email protected]>
993 L:      [email protected]
994 S:      Supported
995 W:      http://ez.analog.com/community/linux-device-drivers
996 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
997 F:      drivers/iio/adc/ad7780.c
998
999 ANALOG DEVICES INC AD9389B DRIVER
1000 M:      Hans Verkuil <[email protected]>
1001 L:      [email protected]
1002 S:      Maintained
1003 F:      drivers/media/i2c/ad9389b*
1004
1005 ANALOG DEVICES INC ADGS1408 DRIVER
1006 M:      Mircea Caprioru <[email protected]>
1007 S:      Supported
1008 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1009 F:      drivers/mux/adgs1408.c
1010
1011 ANALOG DEVICES INC ADIN DRIVER
1012 M:      Alexandru Ardelean <[email protected]>
1013 L:      [email protected]
1014 S:      Supported
1015 W:      http://ez.analog.com/community/linux-device-drivers
1016 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1017 F:      drivers/net/phy/adin.c
1018
1019 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1020 M:      Alexandru Ardelean <[email protected]>
1021 L:      [email protected]
1022 S:      Supported
1023 F:      drivers/iio/imu/adis.c
1024 F:      include/linux/iio/imu/adis.h
1025
1026 ANALOG DEVICES INC ADIS16460 DRIVER
1027 M:      Dragos Bogdan <[email protected]>
1028 L:      [email protected]
1029 S:      Supported
1030 W:      http://ez.analog.com/community/linux-device-drivers
1031 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1032 F:      drivers/iio/imu/adis16460.c
1033
1034 ANALOG DEVICES INC ADIS16475 DRIVER
1035 M:      Nuno Sa <[email protected]>
1036 L:      [email protected]
1037 W:      http://ez.analog.com/community/linux-device-drivers
1038 S:      Supported
1039 F:      drivers/iio/imu/adis16475.c
1040 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1041
1042 ANALOG DEVICES INC ADM1177 DRIVER
1043 M:      Michael Hennerich <[email protected]>
1044 L:      [email protected]
1045 S:      Supported
1046 W:      http://ez.analog.com/community/linux-device-drivers
1047 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1048 F:      drivers/hwmon/adm1177.c
1049
1050 ANALOG DEVICES INC ADP5061 DRIVER
1051 M:      Michael Hennerich <[email protected]>
1052 L:      [email protected]
1053 S:      Supported
1054 W:      http://ez.analog.com/community/linux-device-drivers
1055 F:      drivers/power/supply/adp5061.c
1056
1057 ANALOG DEVICES INC ADV7180 DRIVER
1058 M:      Lars-Peter Clausen <[email protected]>
1059 L:      [email protected]
1060 S:      Supported
1061 W:      http://ez.analog.com/community/linux-device-drivers
1062 F:      drivers/media/i2c/adv7180.c
1063 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1064
1065 ANALOG DEVICES INC ADV748X DRIVER
1066 M:      Kieran Bingham <[email protected]>
1067 L:      [email protected]
1068 S:      Maintained
1069 F:      drivers/media/i2c/adv748x/*
1070
1071 ANALOG DEVICES INC ADV7511 DRIVER
1072 M:      Hans Verkuil <[email protected]>
1073 L:      [email protected]
1074 S:      Maintained
1075 F:      drivers/media/i2c/adv7511*
1076
1077 ANALOG DEVICES INC ADV7604 DRIVER
1078 M:      Hans Verkuil <[email protected]>
1079 L:      [email protected]
1080 S:      Maintained
1081 F:      drivers/media/i2c/adv7604*
1082 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1083
1084 ANALOG DEVICES INC ADV7842 DRIVER
1085 M:      Hans Verkuil <[email protected]>
1086 L:      [email protected]
1087 S:      Maintained
1088 F:      drivers/media/i2c/adv7842*
1089
1090 ANALOG DEVICES INC ADXRS290 DRIVER
1091 M:      Nishant Malpani <[email protected]>
1092 L:      [email protected]
1093 S:      Supported
1094 F:      drivers/iio/gyro/adxrs290.c
1095 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1096
1097 ANALOG DEVICES INC ASOC CODEC DRIVERS
1098 M:      Lars-Peter Clausen <[email protected]>
1099 M:      Nuno Sá <[email protected]>
1100 L:      [email protected] (moderated for non-subscribers)
1101 S:      Supported
1102 W:      http://wiki.analog.com/
1103 W:      http://ez.analog.com/community/linux-device-drivers
1104 F:      sound/soc/codecs/ad1*
1105 F:      sound/soc/codecs/ad7*
1106 F:      sound/soc/codecs/adau*
1107 F:      sound/soc/codecs/adav*
1108 F:      sound/soc/codecs/sigmadsp.*
1109 F:      sound/soc/codecs/ssm*
1110
1111 ANALOG DEVICES INC DMA DRIVERS
1112 M:      Lars-Peter Clausen <[email protected]>
1113 S:      Supported
1114 W:      http://ez.analog.com/community/linux-device-drivers
1115 F:      drivers/dma/dma-axi-dmac.c
1116
1117 ANALOG DEVICES INC IIO DRIVERS
1118 M:      Lars-Peter Clausen <[email protected]>
1119 M:      Michael Hennerich <[email protected]>
1120 S:      Supported
1121 W:      http://wiki.analog.com/
1122 W:      http://ez.analog.com/community/linux-device-drivers
1123 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1124 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1125 F:      Documentation/devicetree/bindings/iio/*/adi,*
1126 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
1127 F:      drivers/iio/*/ad*
1128 F:      drivers/iio/adc/ltc249*
1129 F:      drivers/iio/amplifiers/hmc425a.c
1130 F:      drivers/staging/iio/*/ad*
1131 X:      drivers/iio/*/adjd*
1132
1133 ANALOGBITS PLL LIBRARIES
1134 M:      Paul Walmsley <[email protected]>
1135 S:      Supported
1136 F:      drivers/clk/analogbits/*
1137 F:      include/linux/clk/analogbits*
1138
1139 ANDES ARCHITECTURE
1140 M:      Nick Hu <[email protected]>
1141 M:      Greentime Hu <[email protected]>
1142 M:      Vincent Chen <[email protected]>
1143 S:      Supported
1144 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1145 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1146 F:      Documentation/devicetree/bindings/nds32/
1147 F:      arch/nds32/
1148 N:      nds32
1149 K:      nds32
1150
1151 ANDROID CONFIG FRAGMENTS
1152 M:      Rob Herring <[email protected]>
1153 S:      Supported
1154 F:      kernel/configs/android*
1155
1156 ANDROID DRIVERS
1157 M:      Greg Kroah-Hartman <[email protected]>
1158 M:      Arve Hjønnevåg <[email protected]>
1159 M:      Todd Kjos <[email protected]>
1160 M:      Martijn Coenen <[email protected]>
1161 M:      Joel Fernandes <[email protected]>
1162 M:      Christian Brauner <[email protected]>
1163 M:      Hridya Valsaraju <[email protected]>
1164 M:      Suren Baghdasaryan <[email protected]>
1165 L:      [email protected]
1166 S:      Supported
1167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1168 F:      drivers/android/
1169 F:      drivers/staging/android/
1170
1171 ANDROID GOLDFISH PIC DRIVER
1172 M:      Miodrag Dinic <[email protected]>
1173 S:      Supported
1174 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1175 F:      drivers/irqchip/irq-goldfish-pic.c
1176
1177 ANDROID GOLDFISH RTC DRIVER
1178 M:      Miodrag Dinic <[email protected]>
1179 S:      Supported
1180 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1181 F:      drivers/rtc/rtc-goldfish.c
1182
1183 AOA (Apple Onboard Audio) ALSA DRIVER
1184 M:      Johannes Berg <[email protected]>
1185 L:      [email protected]
1186 L:      [email protected] (moderated for non-subscribers)
1187 S:      Maintained
1188 F:      sound/aoa/
1189
1190 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1191 M:      William Breathitt Gray <[email protected]>
1192 L:      [email protected]
1193 S:      Maintained
1194 F:      drivers/iio/adc/stx104.c
1195
1196 APM DRIVER
1197 M:      Jiri Kosina <[email protected]>
1198 S:      Odd fixes
1199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1200 F:      arch/x86/kernel/apm_32.c
1201 F:      drivers/char/apm-emulation.c
1202 F:      include/linux/apm_bios.h
1203 F:      include/uapi/linux/apm_bios.h
1204
1205 APPARMOR SECURITY MODULE
1206 M:      John Johansen <[email protected]>
1207 L:      [email protected] (subscribers-only, general discussion)
1208 S:      Supported
1209 W:      wiki.apparmor.net
1210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1211 F:      Documentation/admin-guide/LSM/apparmor.rst
1212 F:      security/apparmor/
1213
1214 APPLE BCM5974 MULTITOUCH DRIVER
1215 M:      Henrik Rydberg <[email protected]>
1216 L:      [email protected]
1217 S:      Odd fixes
1218 F:      drivers/input/mouse/bcm5974.c
1219
1220 APPLE SMC DRIVER
1221 M:      Henrik Rydberg <[email protected]>
1222 L:      [email protected]
1223 S:      Odd fixes
1224 F:      drivers/hwmon/applesmc.c
1225
1226 APPLETALK NETWORK LAYER
1227 L:      [email protected]
1228 S:      Odd fixes
1229 F:      drivers/net/appletalk/
1230 F:      include/linux/atalk.h
1231 F:      include/uapi/linux/atalk.h
1232 F:      net/appletalk/
1233
1234 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1235 M:      Khuong Dinh <[email protected]>
1236 S:      Supported
1237 F:      arch/arm64/boot/dts/apm/
1238
1239 APPLIED MICRO (APM) X-GENE SOC EDAC
1240 M:      Khuong Dinh <[email protected]>
1241 S:      Supported
1242 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1243 F:      drivers/edac/xgene_edac.c
1244
1245 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1246 M:      Iyappan Subramanian <[email protected]>
1247 M:      Keyur Chudgar <[email protected]>
1248 S:      Supported
1249 F:      drivers/net/ethernet/apm/xgene-v2/
1250
1251 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1252 M:      Iyappan Subramanian <[email protected]>
1253 M:      Keyur Chudgar <[email protected]>
1254 M:      Quan Nguyen <[email protected]>
1255 S:      Supported
1256 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1257 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1258 F:      drivers/net/ethernet/apm/xgene/
1259 F:      drivers/net/mdio/mdio-xgene.c
1260
1261 APPLIED MICRO (APM) X-GENE SOC PMU
1262 M:      Khuong Dinh <[email protected]>
1263 S:      Supported
1264 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1265 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1266 F:      drivers/perf/xgene_pmu.c
1267
1268 APTINA CAMERA SENSOR PLL
1269 M:      Laurent Pinchart <[email protected]>
1270 L:      [email protected]
1271 S:      Maintained
1272 F:      drivers/media/i2c/aptina-pll.*
1273
1274 AQUANTIA ETHERNET DRIVER (atlantic)
1275 M:      Igor Russkikh <[email protected]>
1276 L:      [email protected]
1277 S:      Supported
1278 W:      https://www.marvell.com/
1279 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1280 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1281 F:      drivers/net/ethernet/aquantia/atlantic/
1282
1283 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1284 M:      Egor Pomozov <[email protected]>
1285 L:      [email protected]
1286 S:      Supported
1287 W:      http://www.aquantia.com
1288 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1289
1290 ARASAN NAND CONTROLLER DRIVER
1291 M:      Naga Sureshkumar Relli <[email protected]>
1292 L:      [email protected]
1293 S:      Maintained
1294 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1295 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1296
1297 ARC FRAMEBUFFER DRIVER
1298 M:      Jaya Kumar <[email protected]>
1299 S:      Maintained
1300 F:      drivers/video/fbdev/arcfb.c
1301 F:      drivers/video/fbdev/core/fb_defio.c
1302
1303 ARC PGU DRM DRIVER
1304 M:      Alexey Brodkin <[email protected]>
1305 S:      Supported
1306 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1307 F:      drivers/gpu/drm/arc/
1308
1309 ARCNET NETWORK LAYER
1310 M:      Michael Grzeschik <[email protected]>
1311 L:      [email protected]
1312 S:      Maintained
1313 F:      drivers/net/arcnet/
1314 F:      include/uapi/linux/if_arcnet.h
1315
1316 ARM ARCHITECTED TIMER DRIVER
1317 M:      Mark Rutland <[email protected]>
1318 M:      Marc Zyngier <[email protected]>
1319 L:      [email protected] (moderated for non-subscribers)
1320 S:      Maintained
1321 F:      arch/arm/include/asm/arch_timer.h
1322 F:      arch/arm64/include/asm/arch_timer.h
1323 F:      drivers/clocksource/arm_arch_timer.c
1324
1325 ARM HDLCD DRM DRIVER
1326 M:      Liviu Dudau <[email protected]>
1327 S:      Supported
1328 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1329 F:      drivers/gpu/drm/arm/hdlcd_*
1330
1331 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1332 M:      Linus Walleij <[email protected]>
1333 L:      [email protected] (moderated for non-subscribers)
1334 S:      Maintained
1335 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1336 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1337 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1338 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1339 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1340 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1341 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1342 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1343 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1344 F:      arch/arm/boot/dts/arm-realview-*
1345 F:      arch/arm/boot/dts/integrator*
1346 F:      arch/arm/boot/dts/versatile*
1347 F:      arch/arm/mach-integrator/
1348 F:      arch/arm/mach-realview/
1349 F:      arch/arm/mach-versatile/
1350 F:      arch/arm/plat-versatile/
1351 F:      drivers/bus/arm-integrator-lm.c
1352 F:      drivers/clk/versatile/
1353 F:      drivers/i2c/busses/i2c-versatile.c
1354 F:      drivers/irqchip/irq-versatile-fpga.c
1355 F:      drivers/mtd/maps/physmap-versatile.*
1356 F:      drivers/power/reset/arm-versatile-reboot.c
1357 F:      drivers/soc/versatile/
1358
1359 ARM KOMEDA DRM-KMS DRIVER
1360 M:      James (Qian) Wang <[email protected]>
1361 M:      Liviu Dudau <[email protected]>
1362 M:      Mihail Atanassov <[email protected]>
1363 L:      Mali DP Maintainers <[email protected]>
1364 S:      Supported
1365 T:      git git://anongit.freedesktop.org/drm/drm-misc
1366 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1367 F:      Documentation/gpu/komeda-kms.rst
1368 F:      drivers/gpu/drm/arm/display/include/
1369 F:      drivers/gpu/drm/arm/display/komeda/
1370
1371 ARM MALI PANFROST DRM DRIVER
1372 M:      Rob Herring <[email protected]>
1373 M:      Tomeu Vizoso <[email protected]>
1374 R:      Steven Price <[email protected]>
1375 R:      Alyssa Rosenzweig <[email protected]>
1376 L:      [email protected]
1377 S:      Supported
1378 T:      git git://anongit.freedesktop.org/drm/drm-misc
1379 F:      drivers/gpu/drm/panfrost/
1380 F:      include/uapi/drm/panfrost_drm.h
1381
1382 ARM MALI-DP DRM DRIVER
1383 M:      Liviu Dudau <[email protected]>
1384 M:      Brian Starkey <[email protected]>
1385 L:      Mali DP Maintainers <[email protected]>
1386 S:      Supported
1387 T:      git git://anongit.freedesktop.org/drm/drm-misc
1388 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1389 F:      Documentation/gpu/afbc.rst
1390 F:      drivers/gpu/drm/arm/
1391
1392 ARM MFM AND FLOPPY DRIVERS
1393 M:      Ian Molton <[email protected]>
1394 S:      Maintained
1395 F:      arch/arm/include/asm/floppy.h
1396 F:      arch/arm/mach-rpc/floppydma.S
1397
1398 ARM PMU PROFILING AND DEBUGGING
1399 M:      Will Deacon <[email protected]>
1400 M:      Mark Rutland <[email protected]>
1401 L:      [email protected] (moderated for non-subscribers)
1402 S:      Maintained
1403 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1404 F:      Documentation/devicetree/bindings/perf/
1405 F:      arch/arm*/include/asm/hw_breakpoint.h
1406 F:      arch/arm*/include/asm/perf_event.h
1407 F:      arch/arm*/kernel/hw_breakpoint.c
1408 F:      arch/arm*/kernel/perf_*
1409 F:      arch/arm/oprofile/common.c
1410 F:      drivers/perf/
1411 F:      include/linux/perf/arm_pmu.h
1412
1413 ARM PORT
1414 M:      Russell King <[email protected]>
1415 L:      [email protected] (moderated for non-subscribers)
1416 S:      Odd Fixes
1417 W:      http://www.armlinux.org.uk/
1418 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1419 F:      arch/arm/
1420 X:      arch/arm/boot/dts/
1421
1422 ARM PRIMECELL AACI PL041 DRIVER
1423 M:      Russell King <[email protected]>
1424 S:      Odd Fixes
1425 F:      sound/arm/aaci.*
1426
1427 ARM PRIMECELL BUS SUPPORT
1428 M:      Russell King <[email protected]>
1429 S:      Odd Fixes
1430 F:      drivers/amba/
1431 F:      include/linux/amba/bus.h
1432
1433 ARM PRIMECELL CLCD PL110 DRIVER
1434 M:      Russell King <[email protected]>
1435 S:      Odd Fixes
1436 F:      drivers/video/fbdev/amba-clcd.*
1437
1438 ARM PRIMECELL KMI PL050 DRIVER
1439 M:      Russell King <[email protected]>
1440 S:      Odd Fixes
1441 F:      drivers/input/serio/ambakmi.*
1442 F:      include/linux/amba/kmi.h
1443
1444 ARM PRIMECELL MMCI PL180/1 DRIVER
1445 M:      Russell King <[email protected]>
1446 S:      Odd Fixes
1447 F:      drivers/mmc/host/mmci.*
1448 F:      include/linux/amba/mmci.h
1449
1450 ARM PRIMECELL SSP PL022 SPI DRIVER
1451 M:      Linus Walleij <[email protected]>
1452 L:      [email protected] (moderated for non-subscribers)
1453 S:      Maintained
1454 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1455 F:      drivers/spi/spi-pl022.c
1456
1457 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1458 M:      Russell King <[email protected]>
1459 S:      Odd Fixes
1460 F:      drivers/tty/serial/amba-pl01*.c
1461 F:      include/linux/amba/serial.h
1462
1463 ARM PRIMECELL VIC PL190/PL192 DRIVER
1464 M:      Linus Walleij <[email protected]>
1465 L:      [email protected] (moderated for non-subscribers)
1466 S:      Maintained
1467 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1468 F:      drivers/irqchip/irq-vic.c
1469
1470 ARM SMC WATCHDOG DRIVER
1471 M:      Julius Werner <[email protected]>
1472 R:      Evan Benn <[email protected]>
1473 S:      Maintained
1474 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1475 F:      drivers/watchdog/arm_smc_wdt.c
1476
1477 ARM SMMU DRIVERS
1478 M:      Will Deacon <[email protected]>
1479 R:      Robin Murphy <[email protected]>
1480 L:      [email protected] (moderated for non-subscribers)
1481 S:      Maintained
1482 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1483 F:      drivers/iommu/arm/
1484 F:      drivers/iommu/io-pgtable-arm*
1485
1486 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1487 M:      Arnd Bergmann <[email protected]>
1488 M:      Olof Johansson <[email protected]>
1489 M:      [email protected]
1490 L:      [email protected] (moderated for non-subscribers)
1491 S:      Maintained
1492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1493 F:      arch/arm/boot/dts/Makefile
1494 F:      arch/arm64/boot/dts/Makefile
1495
1496 ARM SUB-ARCHITECTURES
1497 L:      [email protected] (moderated for non-subscribers)
1498 S:      Maintained
1499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1500 F:      arch/arm/mach-*/
1501 F:      arch/arm/plat-*/
1502
1503 ARM/ACTIONS SEMI ARCHITECTURE
1504 M:      Andreas Färber <[email protected]>
1505 M:      Manivannan Sadhasivam <[email protected]>
1506 L:      [email protected] (moderated for non-subscribers)
1507 S:      Maintained
1508 F:      Documentation/devicetree/bindings/arm/actions.yaml
1509 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1510 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1511 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1512 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1513 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1514 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1515 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1516 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1517 F:      arch/arm/boot/dts/owl-*
1518 F:      arch/arm/mach-actions/
1519 F:      arch/arm64/boot/dts/actions/
1520 F:      drivers/clk/actions/
1521 F:      drivers/clocksource/timer-owl*
1522 F:      drivers/dma/owl-dma.c
1523 F:      drivers/i2c/busses/i2c-owl.c
1524 F:      drivers/irqchip/irq-owl-sirq.c
1525 F:      drivers/mmc/host/owl-mmc.c
1526 F:      drivers/pinctrl/actions/*
1527 F:      drivers/soc/actions/
1528 F:      include/dt-bindings/power/owl-*
1529 F:      include/dt-bindings/reset/actions,*
1530 F:      include/linux/soc/actions/
1531 N:      owl
1532
1533 ARM/ADS SPHERE MACHINE SUPPORT
1534 M:      Lennert Buytenhek <[email protected]>
1535 L:      [email protected] (moderated for non-subscribers)
1536 S:      Maintained
1537
1538 ARM/AFEB9260 MACHINE SUPPORT
1539 M:      Sergey Lapin <[email protected]>
1540 L:      [email protected] (moderated for non-subscribers)
1541 S:      Maintained
1542
1543 ARM/AJECO 1ARM MACHINE SUPPORT
1544 M:      Lennert Buytenhek <[email protected]>
1545 L:      [email protected] (moderated for non-subscribers)
1546 S:      Maintained
1547
1548 ARM/Allwinner SoC Clock Support
1549 M:      Emilio López <[email protected]>
1550 S:      Maintained
1551 F:      drivers/clk/sunxi/
1552
1553 ARM/Allwinner sunXi SoC support
1554 M:      Maxime Ripard <[email protected]>
1555 M:      Chen-Yu Tsai <[email protected]>
1556 R:      Jernej Skrabec <[email protected]>
1557 L:      [email protected] (moderated for non-subscribers)
1558 S:      Maintained
1559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1560 F:      arch/arm/mach-sunxi/
1561 F:      arch/arm64/boot/dts/allwinner/
1562 F:      drivers/clk/sunxi-ng/
1563 F:      drivers/pinctrl/sunxi/
1564 F:      drivers/soc/sunxi/
1565 N:      sun[x456789]i
1566 N:      sun50i
1567
1568 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1569 M:      Neil Armstrong <[email protected]>
1570 M:      Jerome Brunet <[email protected]>
1571 L:      [email protected]
1572 S:      Maintained
1573 F:      Documentation/devicetree/bindings/clock/amlogic*
1574 F:      drivers/clk/meson/
1575 F:      include/dt-bindings/clock/gxbb*
1576 F:      include/dt-bindings/clock/meson*
1577
1578 ARM/Amlogic Meson SoC Crypto Drivers
1579 M:      Corentin Labbe <[email protected]>
1580 L:      [email protected]
1581 L:      [email protected]
1582 S:      Maintained
1583 F:      Documentation/devicetree/bindings/crypto/amlogic*
1584 F:      drivers/crypto/amlogic/
1585
1586 ARM/Amlogic Meson SoC Sound Drivers
1587 M:      Jerome Brunet <[email protected]>
1588 L:      [email protected] (moderated for non-subscribers)
1589 S:      Maintained
1590 F:      Documentation/devicetree/bindings/sound/amlogic*
1591 F:      sound/soc/meson/
1592
1593 ARM/Amlogic Meson SoC support
1594 M:      Kevin Hilman <[email protected]>
1595 R:      Neil Armstrong <[email protected]>
1596 R:      Jerome Brunet <[email protected]>
1597 R:      Martin Blumenstingl <[email protected]>
1598 L:      [email protected] (moderated for non-subscribers)
1599 L:      [email protected]
1600 S:      Maintained
1601 W:      http://linux-meson.com/
1602 F:      arch/arm/boot/dts/meson*
1603 F:      arch/arm/mach-meson/
1604 F:      arch/arm64/boot/dts/amlogic/
1605 F:      drivers/mmc/host/meson*
1606 F:      drivers/pinctrl/meson/
1607 F:      drivers/rtc/rtc-meson*
1608 F:      drivers/soc/amlogic/
1609 N:      meson
1610
1611 ARM/Annapurna Labs ALPINE ARCHITECTURE
1612 M:      Tsahee Zidenberg <[email protected]>
1613 M:      Antoine Tenart <[email protected]>
1614 L:      [email protected] (moderated for non-subscribers)
1615 S:      Maintained
1616 F:      arch/arm/boot/dts/alpine*
1617 F:      arch/arm/mach-alpine/
1618 F:      arch/arm64/boot/dts/amazon/
1619 F:      drivers/*/*alpine*
1620
1621 ARM/ARTPEC MACHINE SUPPORT
1622 M:      Jesper Nilsson <[email protected]>
1623 M:      Lars Persson <[email protected]>
1624 L:      [email protected]
1625 S:      Maintained
1626 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1627 F:      arch/arm/boot/dts/artpec6*
1628 F:      arch/arm/mach-artpec
1629 F:      drivers/clk/axis
1630 F:      drivers/crypto/axis
1631 F:      drivers/mmc/host/usdhi6rol0.c
1632 F:      drivers/pinctrl/pinctrl-artpec*
1633
1634 ARM/ASPEED I2C DRIVER
1635 M:      Brendan Higgins <[email protected]>
1636 R:      Benjamin Herrenschmidt <[email protected]>
1637 R:      Joel Stanley <[email protected]>
1638 L:      [email protected]
1639 L:      [email protected] (moderated for non-subscribers)
1640 S:      Maintained
1641 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1642 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1643 F:      drivers/i2c/busses/i2c-aspeed.c
1644 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1645
1646 ARM/ASPEED MACHINE SUPPORT
1647 M:      Joel Stanley <[email protected]>
1648 R:      Andrew Jeffery <[email protected]>
1649 L:      [email protected] (moderated for non-subscribers)
1650 L:      [email protected] (moderated for non-subscribers)
1651 S:      Supported
1652 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1654 F:      arch/arm/boot/dts/aspeed-*
1655 F:      arch/arm/mach-aspeed/
1656 N:      aspeed
1657
1658 ARM/BITMAIN ARCHITECTURE
1659 M:      Manivannan Sadhasivam <[email protected]>
1660 L:      [email protected] (moderated for non-subscribers)
1661 S:      Maintained
1662 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1663 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1664 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1665 F:      arch/arm64/boot/dts/bitmain/
1666 F:      drivers/clk/clk-bm1880.c
1667 F:      drivers/pinctrl/pinctrl-bm1880.c
1668
1669 ARM/CALXEDA HIGHBANK ARCHITECTURE
1670 M:      Andre Przywara <[email protected]>
1671 L:      [email protected] (moderated for non-subscribers)
1672 S:      Maintained
1673 F:      arch/arm/boot/dts/ecx-*.dts*
1674 F:      arch/arm/boot/dts/highbank.dts
1675 F:      arch/arm/mach-highbank/
1676
1677 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1678 M:      Krzysztof Halasa <[email protected]>
1679 S:      Maintained
1680 F:      arch/arm/mach-cns3xxx/
1681
1682 ARM/CAVIUM THUNDER NETWORK DRIVER
1683 M:      Sunil Goutham <[email protected]>
1684 L:      [email protected] (moderated for non-subscribers)
1685 S:      Supported
1686 F:      drivers/net/ethernet/cavium/thunder/
1687
1688 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1689 M:      Lukasz Majewski <[email protected]>
1690 L:      [email protected] (moderated for non-subscribers)
1691 S:      Maintained
1692 F:      arch/arm/mach-ep93xx/ts72xx.c
1693
1694 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1695 M:      Alexander Shiyan <[email protected]>
1696 L:      [email protected] (moderated for non-subscribers)
1697 S:      Odd Fixes
1698 N:      clps711x
1699
1700 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1701 M:      Lennert Buytenhek <[email protected]>
1702 L:      [email protected] (moderated for non-subscribers)
1703 S:      Maintained
1704
1705 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1706 M:      Hartley Sweeten <[email protected]>
1707 M:      Alexander Sverdlin <[email protected]>
1708 L:      [email protected] (moderated for non-subscribers)
1709 S:      Maintained
1710 F:      arch/arm/mach-ep93xx/
1711 F:      arch/arm/mach-ep93xx/include/mach/
1712
1713 ARM/CLKDEV SUPPORT
1714 M:      Russell King <[email protected]>
1715 L:      [email protected] (moderated for non-subscribers)
1716 S:      Maintained
1717 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1718 F:      drivers/clk/clkdev.c
1719
1720 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1721 M:      Baruch Siach <[email protected]>
1722 L:      [email protected] (moderated for non-subscribers)
1723 S:      Maintained
1724 F:      arch/arm/boot/dts/cx92755*
1725 N:      digicolor
1726
1727 ARM/CONTEC MICRO9 MACHINE SUPPORT
1728 M:      Hubert Feurstein <[email protected]>
1729 S:      Maintained
1730 F:      arch/arm/mach-ep93xx/micro9.c
1731
1732 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1733 M:      Mathieu Poirier <[email protected]>
1734 M:      Suzuki K Poulose <[email protected]>
1735 R:      Mike Leach <[email protected]>
1736 R:      Leo Yan <[email protected]>
1737 L:      [email protected] (moderated for non-subscribers)
1738 L:      [email protected] (moderated for non-subscribers)
1739 S:      Maintained
1740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1741 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1742 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1743 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1744 F:      Documentation/devicetree/bindings/arm/coresight.txt
1745 F:      Documentation/trace/coresight/*
1746 F:      drivers/hwtracing/coresight/*
1747 F:      include/dt-bindings/arm/coresight-cti-dt.h
1748 F:      tools/perf/arch/arm/util/auxtrace.c
1749 F:      tools/perf/arch/arm/util/cs-etm.c
1750 F:      tools/perf/arch/arm/util/cs-etm.h
1751 F:      tools/perf/arch/arm/util/pmu.c
1752 F:      tools/perf/util/cs-etm-decoder/*
1753 F:      tools/perf/util/cs-etm.*
1754
1755 ARM/CORGI MACHINE SUPPORT
1756 M:      Richard Purdie <[email protected]>
1757 S:      Maintained
1758
1759 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1760 M:      Hans Ulli Kroll <[email protected]>
1761 M:      Linus Walleij <[email protected]>
1762 L:      [email protected] (moderated for non-subscribers)
1763 S:      Maintained
1764 T:      git git://github.com/ulli-kroll/linux.git
1765 F:      Documentation/devicetree/bindings/arm/gemini.txt
1766 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1767 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1768 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1769 F:      arch/arm/mach-gemini/
1770 F:      drivers/net/ethernet/cortina/
1771 F:      drivers/pinctrl/pinctrl-gemini.c
1772 F:      drivers/rtc/rtc-ftrtc010.c
1773
1774 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1775 M:      Barry Song <[email protected]>
1776 L:      [email protected] (moderated for non-subscribers)
1777 S:      Maintained
1778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1779 F:      arch/arm/boot/dts/prima2*
1780 F:      arch/arm/mach-prima2/
1781 F:      drivers/clk/sirf/
1782 F:      drivers/clocksource/timer-atlas7.c
1783 F:      drivers/clocksource/timer-prima2.c
1784 X:      drivers/gnss
1785 N:      [^a-z]sirf
1786
1787 ARM/CZ.NIC TURRIS MOX SUPPORT
1788 M:      Marek Behun <[email protected]>
1789 S:      Maintained
1790 W:      http://mox.turris.cz
1791 F:      Documentation/ABI/testing/debugfs-moxtet
1792 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1793 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1794 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1795 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1796 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1797 F:      drivers/bus/moxtet.c
1798 F:      drivers/firmware/turris-mox-rwtm.c
1799 F:      drivers/gpio/gpio-moxtet.c
1800 F:      include/linux/moxtet.h
1801
1802 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1803 M:      Uwe Kleine-König <[email protected]>
1804 R:      Pengutronix Kernel Team <[email protected]>
1805 L:      [email protected] (moderated for non-subscribers)
1806 S:      Maintained
1807 N:      efm32
1808
1809 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1810 M:      Robert Jarzmik <[email protected]>
1811 L:      [email protected] (moderated for non-subscribers)
1812 S:      Maintained
1813 F:      arch/arm/mach-pxa/ezx.c
1814
1815 ARM/FARADAY FA526 PORT
1816 M:      Hans Ulli Kroll <[email protected]>
1817 L:      [email protected] (moderated for non-subscribers)
1818 S:      Maintained
1819 T:      git git://git.berlios.de/gemini-board
1820 F:      arch/arm/mm/*-fa*
1821
1822 ARM/FOOTBRIDGE ARCHITECTURE
1823 M:      Russell King <[email protected]>
1824 L:      [email protected] (moderated for non-subscribers)
1825 S:      Maintained
1826 W:      http://www.armlinux.org.uk/
1827 F:      arch/arm/include/asm/hardware/dec21285.h
1828 F:      arch/arm/mach-footbridge/
1829
1830 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1831 M:      Shawn Guo <[email protected]>
1832 M:      Sascha Hauer <[email protected]>
1833 R:      Pengutronix Kernel Team <[email protected]>
1834 R:      Fabio Estevam <[email protected]>
1835 R:      NXP Linux Team <[email protected]>
1836 L:      [email protected] (moderated for non-subscribers)
1837 S:      Maintained
1838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1839 X:      drivers/media/i2c/
1840 N:      imx
1841 N:      mxs
1842
1843 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1844 M:      Shawn Guo <[email protected]>
1845 M:      Li Yang <[email protected]>
1846 L:      [email protected] (moderated for non-subscribers)
1847 S:      Maintained
1848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1849 F:      arch/arm/boot/dts/ls1021a*
1850 F:      arch/arm64/boot/dts/freescale/fsl-*
1851 F:      arch/arm64/boot/dts/freescale/qoriq-*
1852
1853 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1854 M:      Shawn Guo <[email protected]>
1855 M:      Sascha Hauer <[email protected]>
1856 R:      Pengutronix Kernel Team <[email protected]>
1857 R:      Stefan Agner <[email protected]>
1858 L:      [email protected] (moderated for non-subscribers)
1859 S:      Maintained
1860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1861 F:      arch/arm/boot/dts/vf*
1862 F:      arch/arm/mach-imx/*vf610*
1863
1864 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1865 M:      Lennert Buytenhek <[email protected]>
1866 L:      [email protected] (moderated for non-subscribers)
1867 S:      Maintained
1868
1869 ARM/GUMSTIX MACHINE SUPPORT
1870 M:      Steve Sakoman <[email protected]>
1871 L:      [email protected] (moderated for non-subscribers)
1872 S:      Maintained
1873
1874 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1875 M:      Philipp Zabel <[email protected]>
1876 M:      Paul Parsons <[email protected]>
1877 L:      [email protected] (moderated for non-subscribers)
1878 S:      Maintained
1879 F:      arch/arm/mach-pxa/hx4700.c
1880 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1881 F:      sound/soc/pxa/hx4700.c
1882
1883 ARM/HISILICON SOC SUPPORT
1884 M:      Wei Xu <[email protected]>
1885 L:      [email protected] (moderated for non-subscribers)
1886 S:      Supported
1887 W:      http://www.hisilicon.com
1888 T:      git git://github.com/hisilicon/linux-hisi.git
1889 F:      arch/arm/boot/dts/hi3*
1890 F:      arch/arm/boot/dts/hip*
1891 F:      arch/arm/boot/dts/hisi*
1892 F:      arch/arm/mach-hisi/
1893 F:      arch/arm64/boot/dts/hisilicon/
1894
1895 ARM/HP JORNADA 7XX MACHINE SUPPORT
1896 M:      Kristoffer Ericson <[email protected]>
1897 S:      Maintained
1898 W:      www.jlime.com
1899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1900 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1901 F:      arch/arm/mach-sa1100/jornada720.c
1902
1903 ARM/IGEP MACHINE SUPPORT
1904 M:      Enric Balletbo i Serra <[email protected]>
1905 M:      Javier Martinez Canillas <[email protected]>
1906 L:      [email protected]
1907 L:      [email protected] (moderated for non-subscribers)
1908 S:      Maintained
1909 F:      arch/arm/boot/dts/omap3-igep*
1910
1911 ARM/INCOME PXA270 SUPPORT
1912 M:      Marek Vasut <[email protected]>
1913 L:      [email protected] (moderated for non-subscribers)
1914 S:      Maintained
1915 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1916
1917 ARM/INTEL IOP32X ARM ARCHITECTURE
1918 M:      Lennert Buytenhek <[email protected]>
1919 L:      [email protected] (moderated for non-subscribers)
1920 S:      Maintained
1921
1922 ARM/INTEL IQ81342EX MACHINE SUPPORT
1923 M:      Lennert Buytenhek <[email protected]>
1924 L:      [email protected] (moderated for non-subscribers)
1925 S:      Maintained
1926
1927 ARM/INTEL IXDP2850 MACHINE SUPPORT
1928 M:      Lennert Buytenhek <[email protected]>
1929 L:      [email protected] (moderated for non-subscribers)
1930 S:      Maintained
1931
1932 ARM/INTEL IXP4XX ARM ARCHITECTURE
1933 M:      Linus Walleij <[email protected]>
1934 M:      Imre Kaloz <[email protected]>
1935 M:      Krzysztof Halasa <[email protected]>
1936 L:      [email protected] (moderated for non-subscribers)
1937 S:      Maintained
1938 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1939 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1940 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1941 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1942 F:      arch/arm/mach-ixp4xx/
1943 F:      drivers/clocksource/timer-ixp4xx.c
1944 F:      drivers/gpio/gpio-ixp4xx.c
1945 F:      drivers/irqchip/irq-ixp4xx.c
1946 F:      include/linux/irqchip/irq-ixp4xx.h
1947 F:      include/linux/platform_data/timer-ixp4xx.h
1948
1949 ARM/INTEL KEEMBAY ARCHITECTURE
1950 M:      Paul J. Murphy <[email protected]>
1951 M:      Daniele Alessandrelli <[email protected]>
1952 S:      Maintained
1953 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1954 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1955 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1956
1957 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1958 M:      Jonathan Cameron <[email protected]>
1959 L:      [email protected] (moderated for non-subscribers)
1960 S:      Maintained
1961 F:      arch/arm/mach-pxa/stargate2.c
1962 F:      drivers/pcmcia/pxa2xx_stargate2.c
1963
1964 ARM/INTEL XSC3 (MANZANO) ARM CORE
1965 M:      Lennert Buytenhek <[email protected]>
1966 L:      [email protected] (moderated for non-subscribers)
1967 S:      Maintained
1968
1969 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1970 M:      Lennert Buytenhek <[email protected]>
1971 L:      [email protected] (moderated for non-subscribers)
1972 S:      Maintained
1973
1974 ARM/LG1K ARCHITECTURE
1975 M:      Chanho Min <[email protected]>
1976 L:      [email protected] (moderated for non-subscribers)
1977 S:      Maintained
1978 F:      arch/arm64/boot/dts/lg/
1979
1980 ARM/LOGICPD PXA270 MACHINE SUPPORT
1981 M:      Lennert Buytenhek <[email protected]>
1982 L:      [email protected] (moderated for non-subscribers)
1983 S:      Maintained
1984
1985 ARM/LPC18XX ARCHITECTURE
1986 M:      Vladimir Zapolskiy <[email protected]>
1987 L:      [email protected] (moderated for non-subscribers)
1988 S:      Maintained
1989 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1990 F:      arch/arm/boot/dts/lpc43*
1991 F:      drivers/i2c/busses/i2c-lpc2k.c
1992 F:      drivers/memory/pl172.c
1993 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1994 F:      drivers/rtc/rtc-lpc24xx.c
1995 N:      lpc18xx
1996
1997 ARM/LPC32XX SOC SUPPORT
1998 M:      Vladimir Zapolskiy <[email protected]>
1999 L:      [email protected] (moderated for non-subscribers)
2000 S:      Maintained
2001 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2002 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2003 F:      arch/arm/boot/dts/lpc32*
2004 F:      arch/arm/mach-lpc32xx/
2005 F:      drivers/i2c/busses/i2c-pnx.c
2006 F:      drivers/net/ethernet/nxp/lpc_eth.c
2007 F:      drivers/usb/host/ohci-nxp.c
2008 F:      drivers/watchdog/pnx4008_wdt.c
2009 N:      lpc32xx
2010
2011 ARM/MAGICIAN MACHINE SUPPORT
2012 M:      Philipp Zabel <[email protected]>
2013 S:      Maintained
2014
2015 ARM/Marvell Dove/MV78xx0/Orion SOC support
2016 M:      Andrew Lunn <[email protected]>
2017 M:      Sebastian Hesselbarth <[email protected]>
2018 M:      Gregory Clement <[email protected]>
2019 L:      [email protected] (moderated for non-subscribers)
2020 S:      Maintained
2021 T:      git git://git.infradead.org/linux-mvebu.git
2022 F:      Documentation/devicetree/bindings/soc/dove/
2023 F:      arch/arm/boot/dts/dove*
2024 F:      arch/arm/boot/dts/orion5x*
2025 F:      arch/arm/mach-dove/
2026 F:      arch/arm/mach-mv78xx0/
2027 F:      arch/arm/mach-orion5x/
2028 F:      arch/arm/plat-orion/
2029 F:      drivers/soc/dove/
2030
2031 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2032 M:      Andrew Lunn <[email protected]>
2033 M:      Gregory Clement <[email protected]>
2034 M:      Sebastian Hesselbarth <[email protected]>
2035 L:      [email protected] (moderated for non-subscribers)
2036 S:      Maintained
2037 T:      git git://git.infradead.org/linux-mvebu.git
2038 F:      arch/arm/boot/dts/armada*
2039 F:      arch/arm/boot/dts/kirkwood*
2040 F:      arch/arm/configs/mvebu_*_defconfig
2041 F:      arch/arm/mach-mvebu/
2042 F:      arch/arm64/boot/dts/marvell/armada*
2043 F:      arch/arm64/boot/dts/marvell/cn913*
2044 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2045 F:      drivers/cpufreq/armada-8k-cpufreq.c
2046 F:      drivers/cpufreq/mvebu-cpufreq.c
2047 F:      drivers/irqchip/irq-armada-370-xp.c
2048 F:      drivers/irqchip/irq-mvebu-*
2049 F:      drivers/pinctrl/mvebu/
2050 F:      drivers/rtc/rtc-armada38x.c
2051
2052 ARM/Mediatek RTC DRIVER
2053 M:      Eddie Huang <[email protected]>
2054 M:      Sean Wang <[email protected]>
2055 L:      [email protected] (moderated for non-subscribers)
2056 L:      [email protected] (moderated for non-subscribers)
2057 S:      Maintained
2058 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2059 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2060 F:      drivers/rtc/rtc-mt2712.c
2061 F:      drivers/rtc/rtc-mt6397.c
2062 F:      drivers/rtc/rtc-mt7622.c
2063
2064 ARM/Mediatek SoC support
2065 M:      Matthias Brugger <[email protected]>
2066 L:      [email protected] (moderated for non-subscribers)
2067 L:      [email protected] (moderated for non-subscribers)
2068 S:      Maintained
2069 W:      https://mtk.bcnfs.org/
2070 C:      irc://chat.freenode.net/linux-mediatek
2071 F:      arch/arm/boot/dts/mt6*
2072 F:      arch/arm/boot/dts/mt7*
2073 F:      arch/arm/boot/dts/mt8*
2074 F:      arch/arm/mach-mediatek/
2075 F:      arch/arm64/boot/dts/mediatek/
2076 F:      drivers/soc/mediatek/
2077 N:      mtk
2078 N:      mt[678]
2079 K:      mediatek
2080
2081 ARM/Mediatek USB3 PHY DRIVER
2082 M:      Chunfeng Yun <[email protected]>
2083 L:      [email protected] (moderated for non-subscribers)
2084 L:      [email protected] (moderated for non-subscribers)
2085 S:      Maintained
2086 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2087 F:      drivers/phy/mediatek/
2088
2089 ARM/Microchip (AT91) SoC support
2090 M:      Nicolas Ferre <[email protected]>
2091 M:      Alexandre Belloni <[email protected]>
2092 M:      Ludovic Desroches <[email protected]>
2093 L:      [email protected] (moderated for non-subscribers)
2094 S:      Supported
2095 W:      http://www.linux4sam.org
2096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2097 F:      arch/arm/boot/dts/at91*.dts
2098 F:      arch/arm/boot/dts/at91*.dtsi
2099 F:      arch/arm/boot/dts/sama*.dts
2100 F:      arch/arm/boot/dts/sama*.dtsi
2101 F:      arch/arm/include/debug/at91.S
2102 F:      arch/arm/mach-at91/
2103 F:      drivers/memory/atmel*
2104 F:      drivers/watchdog/sama5d4_wdt.c
2105 F:      include/soc/at91/
2106 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2107 X:      drivers/net/wireless/atmel/
2108 N:      at91
2109 N:      atmel
2110
2111 ARM/Microchip Sparx5 SoC support
2112 M:      Lars Povlsen <[email protected]>
2113 M:      Steen Hegelund <[email protected]>
2114 M:      Microchip Linux Driver Support <[email protected]>
2115 L:      [email protected] (moderated for non-subscribers)
2116 S:      Supported
2117 T:      git git://github.com/microchip-ung/linux-upstream.git
2118 F:      arch/arm64/boot/dts/microchip/
2119 N:      sparx5
2120
2121 Microchip Timer Counter Block (TCB) Capture Driver
2122 M:      Kamel Bouhara <[email protected]>
2123 L:      [email protected] (moderated for non-subscribers)
2124 L:      [email protected]
2125 S:      Maintained
2126 F:      drivers/counter/microchip-tcb-capture.c
2127
2128 ARM/MIOA701 MACHINE SUPPORT
2129 M:      Robert Jarzmik <[email protected]>
2130 L:      [email protected] (moderated for non-subscribers)
2131 S:      Maintained
2132 F:      arch/arm/mach-pxa/mioa701.c
2133
2134 ARM/MStar/Sigmastar Armv7 SoC support
2135 M:      Daniel Palmer <[email protected]>
2136 L:      [email protected] (moderated for non-subscribers)
2137 S:      Maintained
2138 W:      http://linux-chenxing.org/
2139 F:      Documentation/devicetree/bindings/arm/mstar/*
2140 F:      arch/arm/boot/dts/mstar-*
2141 F:      arch/arm/mach-mstar/
2142
2143 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2144 M:      Michael Petchkovsky <[email protected]>
2145 S:      Maintained
2146
2147 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2148 M:      Linus Walleij <[email protected]>
2149 L:      [email protected] (moderated for non-subscribers)
2150 S:      Maintained
2151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2152 F:      Documentation/devicetree/bindings/arm/ste-*
2153 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2154 F:      Documentation/devicetree/bindings/arm/ux500/
2155 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2156 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2157 F:      arch/arm/boot/dts/ste-*
2158 F:      arch/arm/mach-nomadik/
2159 F:      arch/arm/mach-u300/
2160 F:      arch/arm/mach-ux500/
2161 F:      drivers/clk/clk-nomadik.c
2162 F:      drivers/clk/clk-u300.c
2163 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2164 F:      drivers/clocksource/timer-u300.c
2165 F:      drivers/dma/coh901318*
2166 F:      drivers/dma/ste_dma40*
2167 F:      drivers/hwspinlock/u8500_hsem.c
2168 F:      drivers/i2c/busses/i2c-nomadik.c
2169 F:      drivers/i2c/busses/i2c-stu300.c
2170 F:      drivers/iio/adc/ab8500-gpadc.c
2171 F:      drivers/mfd/ab3100*
2172 F:      drivers/mfd/ab8500*
2173 F:      drivers/mfd/abx500*
2174 F:      drivers/mfd/db8500*
2175 F:      drivers/mfd/dbx500*
2176 F:      drivers/pinctrl/nomadik/
2177 F:      drivers/pinctrl/pinctrl-coh901*
2178 F:      drivers/pinctrl/pinctrl-u300.c
2179 F:      drivers/rtc/rtc-ab3100.c
2180 F:      drivers/rtc/rtc-ab8500.c
2181 F:      drivers/rtc/rtc-coh901331.c
2182 F:      drivers/rtc/rtc-pl031.c
2183 F:      drivers/soc/ux500/
2184 F:      drivers/watchdog/coh901327_wdt.c
2185
2186 ARM/NUVOTON NPCM ARCHITECTURE
2187 M:      Avi Fishman <[email protected]>
2188 M:      Tomer Maimon <[email protected]>
2189 M:      Tali Perry <[email protected]>
2190 R:      Patrick Venture <[email protected]>
2191 R:      Nancy Yuen <[email protected]>
2192 R:      Benjamin Fair <[email protected]>
2193 L:      [email protected] (moderated for non-subscribers)
2194 S:      Supported
2195 F:      Documentation/devicetree/bindings/*/*/*npcm*
2196 F:      Documentation/devicetree/bindings/*/*npcm*
2197 F:      arch/arm/boot/dts/nuvoton-npcm*
2198 F:      arch/arm/mach-npcm/
2199 F:      drivers/*/*npcm*
2200 F:      drivers/*/*/*npcm*
2201 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2202
2203 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2204 L:      [email protected] (subscribers-only)
2205 S:      Orphan
2206 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2207 F:      arch/arm/mach-s3c/gta02.h
2208 F:      arch/arm/mach-s3c/mach-gta02.c
2209
2210 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2211 M:      Alexander Clouter <[email protected]>
2212 L:      [email protected] (moderated for non-subscribers)
2213 S:      Maintained
2214 W:      http://www.digriz.org.uk/ts78xx/kernel
2215 F:      arch/arm/mach-orion5x/ts78xx-*
2216
2217 ARM/OXNAS platform support
2218 M:      Neil Armstrong <[email protected]>
2219 L:      [email protected] (moderated for non-subscribers)
2220 L:      [email protected] (moderated for non-subscribers)
2221 S:      Maintained
2222 F:      arch/arm/boot/dts/ox8*.dts*
2223 F:      arch/arm/mach-oxnas/
2224 F:      drivers/power/reset/oxnas-restart.c
2225 N:      oxnas
2226
2227 ARM/PALM TREO SUPPORT
2228 M:      Tomas Cech <[email protected]>
2229 L:      [email protected]
2230 S:      Maintained
2231 W:      http://hackndev.com
2232 F:      arch/arm/mach-pxa/palmtreo.*
2233
2234 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2235 M:      Marek Vasut <[email protected]>
2236 L:      [email protected]
2237 S:      Maintained
2238 W:      http://hackndev.com
2239 F:      arch/arm/mach-pxa/include/mach/palmld.h
2240 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2241 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2242 F:      arch/arm/mach-pxa/palmld.c
2243 F:      arch/arm/mach-pxa/palmt5.*
2244 F:      arch/arm/mach-pxa/palmtc.c
2245 F:      arch/arm/mach-pxa/palmte2.*
2246 F:      arch/arm/mach-pxa/palmtx.c
2247
2248 ARM/PALMZ72 SUPPORT
2249 M:      Sergey Lapin <[email protected]>
2250 L:      [email protected]
2251 S:      Maintained
2252 W:      http://hackndev.com
2253 F:      arch/arm/mach-pxa/palmz72.*
2254
2255 ARM/PLEB SUPPORT
2256 M:      Peter Chubb <[email protected]>
2257 S:      Maintained
2258 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2259
2260 ARM/PT DIGITAL BOARD PORT
2261 M:      Stefan Eletzhofer <[email protected]>
2262 L:      [email protected] (moderated for non-subscribers)
2263 S:      Maintained
2264 W:      http://www.armlinux.org.uk/
2265
2266 ARM/QUALCOMM SUPPORT
2267 M:      Andy Gross <[email protected]>
2268 M:      Bjorn Andersson <[email protected]>
2269 L:      [email protected]
2270 S:      Maintained
2271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2272 F:      Documentation/devicetree/bindings/*/qcom*
2273 F:      Documentation/devicetree/bindings/soc/qcom/
2274 F:      arch/arm/boot/dts/qcom-*.dts
2275 F:      arch/arm/boot/dts/qcom-*.dtsi
2276 F:      arch/arm/mach-qcom/
2277 F:      arch/arm64/boot/dts/qcom/
2278 F:      drivers/*/*/qcom*
2279 F:      drivers/*/*/qcom/
2280 F:      drivers/*/pm8???-*
2281 F:      drivers/*/qcom*
2282 F:      drivers/*/qcom/
2283 F:      drivers/bluetooth/btqcomsmd.c
2284 F:      drivers/clocksource/timer-qcom.c
2285 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2286 F:      drivers/extcon/extcon-qcom*
2287 F:      drivers/i2c/busses/i2c-qcom-geni.c
2288 F:      drivers/i2c/busses/i2c-qup.c
2289 F:      drivers/iommu/msm*
2290 F:      drivers/mfd/ssbi.c
2291 F:      drivers/mmc/host/mmci_qcom*
2292 F:      drivers/mmc/host/sdhci-msm.c
2293 F:      drivers/pci/controller/dwc/pcie-qcom.c
2294 F:      drivers/phy/qualcomm/
2295 F:      drivers/power/*/msm*
2296 F:      drivers/reset/reset-qcom-*
2297 F:      drivers/scsi/ufs/ufs-qcom*
2298 F:      drivers/spi/spi-geni-qcom.c
2299 F:      drivers/spi/spi-qcom-qspi.c
2300 F:      drivers/spi/spi-qup.c
2301 F:      drivers/tty/serial/msm_serial.c
2302 F:      drivers/usb/dwc3/dwc3-qcom.c
2303 F:      include/dt-bindings/*/qcom*
2304 F:      include/linux/*/qcom*
2305
2306 ARM/RADISYS ENP2611 MACHINE SUPPORT
2307 M:      Lennert Buytenhek <[email protected]>
2308 L:      [email protected] (moderated for non-subscribers)
2309 S:      Maintained
2310
2311 ARM/RDA MICRO ARCHITECTURE
2312 M:      Manivannan Sadhasivam <[email protected]>
2313 L:      [email protected] (moderated for non-subscribers)
2314 L:      [email protected] (moderated for non-subscribers)
2315 S:      Maintained
2316 F:      Documentation/devicetree/bindings/arm/rda.yaml
2317 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2318 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2319 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2320 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2321 F:      arch/arm/boot/dts/rda8810pl-*
2322 F:      drivers/clocksource/timer-rda.c
2323 F:      drivers/gpio/gpio-rda.c
2324 F:      drivers/irqchip/irq-rda-intc.c
2325 F:      drivers/tty/serial/rda-uart.c
2326
2327 ARM/REALTEK ARCHITECTURE
2328 M:      Andreas Färber <[email protected]>
2329 L:      [email protected] (moderated for non-subscribers)
2330 L:      [email protected] (moderated for non-subscribers)
2331 S:      Maintained
2332 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2333 F:      arch/arm/boot/dts/rtd*
2334 F:      arch/arm/mach-realtek/
2335 F:      arch/arm64/boot/dts/realtek/
2336
2337 ARM/RENESAS ARM64 ARCHITECTURE
2338 M:      Geert Uytterhoeven <[email protected]>
2339 M:      Magnus Damm <[email protected]>
2340 L:      [email protected]
2341 S:      Supported
2342 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2344 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2345 F:      arch/arm64/boot/dts/renesas/
2346 F:      drivers/soc/renesas/
2347 F:      include/linux/soc/renesas/
2348
2349 ARM/RISCPC ARCHITECTURE
2350 M:      Russell King <[email protected]>
2351 L:      [email protected] (moderated for non-subscribers)
2352 S:      Maintained
2353 W:      http://www.armlinux.org.uk/
2354 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2355 F:      arch/arm/include/asm/hardware/ioc.h
2356 F:      arch/arm/include/asm/hardware/iomd.h
2357 F:      arch/arm/include/asm/hardware/memc.h
2358 F:      arch/arm/mach-rpc/
2359 F:      drivers/net/ethernet/8390/etherh.c
2360 F:      drivers/net/ethernet/i825xx/ether1*
2361 F:      drivers/net/ethernet/seeq/ether3*
2362 F:      drivers/scsi/arm/
2363
2364 ARM/Rockchip SoC support
2365 M:      Heiko Stuebner <[email protected]>
2366 L:      [email protected] (moderated for non-subscribers)
2367 L:      [email protected]
2368 S:      Maintained
2369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2370 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2371 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2372 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2373 F:      arch/arm/boot/dts/rk3*
2374 F:      arch/arm/boot/dts/rv1108*
2375 F:      arch/arm/mach-rockchip/
2376 F:      drivers/*/*/*rockchip*
2377 F:      drivers/*/*rockchip*
2378 F:      drivers/clk/rockchip/
2379 F:      drivers/i2c/busses/i2c-rk3x.c
2380 F:      sound/soc/rockchip/
2381 N:      rockchip
2382
2383 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2384 M:      Krzysztof Kozlowski <[email protected]>
2385 L:      [email protected] (moderated for non-subscribers)
2386 L:      [email protected]
2387 S:      Maintained
2388 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2389 F:      Documentation/arm/samsung/
2390 F:      Documentation/devicetree/bindings/arm/samsung/
2391 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2392 F:      arch/arm/boot/dts/exynos*
2393 F:      arch/arm/boot/dts/s3c*
2394 F:      arch/arm/boot/dts/s5p*
2395 F:      arch/arm/mach-exynos*/
2396 F:      arch/arm/mach-s3c/
2397 F:      arch/arm/mach-s5p*/
2398 F:      arch/arm64/boot/dts/exynos/
2399 F:      drivers/*/*/*s3c24*
2400 F:      drivers/*/*s3c24*
2401 F:      drivers/*/*s3c64xx*
2402 F:      drivers/*/*s5pv210*
2403 F:      drivers/memory/samsung/
2404 F:      drivers/soc/samsung/
2405 F:      drivers/tty/serial/samsung*
2406 F:      include/linux/soc/samsung/
2407 N:      exynos
2408 N:      s3c2410
2409 N:      s3c64xx
2410 N:      s5pv210
2411
2412 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2413 M:      Andrzej Hajda <[email protected]>
2414 L:      [email protected]
2415 L:      [email protected]
2416 S:      Maintained
2417 F:      drivers/media/platform/s5p-g2d/
2418
2419 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2420 M:      Marek Szyprowski <[email protected]>
2421 L:      [email protected]
2422 L:      [email protected]
2423 S:      Maintained
2424 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2425 F:      drivers/media/cec/platform/s5p/
2426
2427 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2428 M:      Andrzej Pietrasiewicz <[email protected]>
2429 M:      Jacek Anaszewski <[email protected]>
2430 M:      Sylwester Nawrocki <[email protected]>
2431 L:      [email protected]
2432 L:      [email protected]
2433 S:      Maintained
2434 F:      drivers/media/platform/s5p-jpeg/
2435
2436 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2437 M:      Andrzej Hajda <[email protected]>
2438 L:      [email protected]
2439 L:      [email protected]
2440 S:      Maintained
2441 F:      drivers/media/platform/s5p-mfc/
2442
2443 ARM/SHMOBILE ARM ARCHITECTURE
2444 M:      Geert Uytterhoeven <[email protected]>
2445 M:      Magnus Damm <[email protected]>
2446 L:      [email protected]
2447 S:      Supported
2448 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2450 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2451 F:      arch/arm/boot/dts/emev2*
2452 F:      arch/arm/boot/dts/gr-peach*
2453 F:      arch/arm/boot/dts/iwg20d-q7*
2454 F:      arch/arm/boot/dts/r7s*
2455 F:      arch/arm/boot/dts/r8a*
2456 F:      arch/arm/boot/dts/r9a*
2457 F:      arch/arm/boot/dts/sh*
2458 F:      arch/arm/configs/shmobile_defconfig
2459 F:      arch/arm/include/debug/renesas-scif.S
2460 F:      arch/arm/mach-shmobile/
2461 F:      drivers/soc/renesas/
2462 F:      include/linux/soc/renesas/
2463
2464 ARM/SOCFPGA ARCHITECTURE
2465 M:      Dinh Nguyen <[email protected]>
2466 S:      Maintained
2467 W:      http://www.rocketboards.org
2468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2469 F:      arch/arm/boot/dts/socfpga*
2470 F:      arch/arm/configs/socfpga_defconfig
2471 F:      arch/arm/mach-socfpga/
2472 F:      arch/arm64/boot/dts/altera/
2473 F:      arch/arm64/boot/dts/intel/
2474
2475 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2476 M:      Dinh Nguyen <[email protected]>
2477 S:      Maintained
2478 F:      drivers/clk/socfpga/
2479
2480 ARM/SOCFPGA EDAC SUPPORT
2481 M:      Dinh Nguyen <[email protected]>
2482 S:      Maintained
2483 F:      drivers/edac/altera_edac.[ch]
2484
2485 ARM/SPREADTRUM SoC SUPPORT
2486 M:      Orson Zhai <[email protected]>
2487 M:      Baolin Wang <[email protected]>
2488 M:      Chunyan Zhang <[email protected]>
2489 S:      Maintained
2490 F:      arch/arm64/boot/dts/sprd
2491 N:      sprd
2492 N:      sc27xx
2493 N:      sc2731
2494
2495 ARM/STI ARCHITECTURE
2496 M:      Patrice Chotard <[email protected]>
2497 L:      [email protected] (moderated for non-subscribers)
2498 S:      Maintained
2499 W:      http://www.stlinux.com
2500 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2501 F:      arch/arm/boot/dts/sti*
2502 F:      arch/arm/mach-sti/
2503 F:      drivers/ata/ahci_st.c
2504 F:      drivers/char/hw_random/st-rng.c
2505 F:      drivers/clocksource/arm_global_timer.c
2506 F:      drivers/clocksource/clksrc_st_lpc.c
2507 F:      drivers/cpufreq/sti-cpufreq.c
2508 F:      drivers/dma/st_fdma*
2509 F:      drivers/i2c/busses/i2c-st.c
2510 F:      drivers/media/platform/sti/c8sectpfe/
2511 F:      drivers/media/rc/st_rc.c
2512 F:      drivers/mmc/host/sdhci-st.c
2513 F:      drivers/phy/st/phy-miphy28lp.c
2514 F:      drivers/phy/st/phy-stih407-usb.c
2515 F:      drivers/pinctrl/pinctrl-st.c
2516 F:      drivers/remoteproc/st_remoteproc.c
2517 F:      drivers/remoteproc/st_slim_rproc.c
2518 F:      drivers/reset/sti/
2519 F:      drivers/rtc/rtc-st-lpc.c
2520 F:      drivers/tty/serial/st-asc.c
2521 F:      drivers/usb/dwc3/dwc3-st.c
2522 F:      drivers/usb/host/ehci-st.c
2523 F:      drivers/usb/host/ohci-st.c
2524 F:      drivers/watchdog/st_lpc_wdt.c
2525 F:      include/linux/remoteproc/st_slim_rproc.h
2526
2527 ARM/STM32 ARCHITECTURE
2528 M:      Maxime Coquelin <[email protected]>
2529 M:      Alexandre Torgue <[email protected]>
2530 L:      [email protected] (moderated for non-subscribers)
2531 L:      [email protected] (moderated for non-subscribers)
2532 S:      Maintained
2533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2534 F:      arch/arm/boot/dts/stm32*
2535 F:      arch/arm/mach-stm32/
2536 F:      drivers/clocksource/armv7m_systick.c
2537 N:      stm32
2538 N:      stm
2539
2540 ARM/Synaptics SoC support
2541 M:      Jisheng Zhang <[email protected]>
2542 M:      Sebastian Hesselbarth <[email protected]>
2543 L:      [email protected] (moderated for non-subscribers)
2544 S:      Maintained
2545 F:      arch/arm/boot/dts/berlin*
2546 F:      arch/arm/mach-berlin/
2547 F:      arch/arm64/boot/dts/synaptics/
2548
2549 ARM/TANGO ARCHITECTURE
2550 M:      Marc Gonzalez <[email protected]>
2551 M:      Mans Rullgard <[email protected]>
2552 L:      [email protected]
2553 S:      Odd Fixes
2554 N:      tango
2555
2556 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2557 M:      Lennert Buytenhek <[email protected]>
2558 L:      [email protected] (moderated for non-subscribers)
2559 S:      Maintained
2560
2561 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2562 M:      Hans Verkuil <[email protected]>
2563 L:      [email protected]
2564 L:      [email protected]
2565 S:      Maintained
2566 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2567 F:      drivers/media/cec/platform/tegra/
2568
2569 ARM/TETON BGA MACHINE SUPPORT
2570 M:      "Mark F. Brown" <[email protected]>
2571 L:      [email protected] (moderated for non-subscribers)
2572 S:      Maintained
2573
2574 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2575 M:      Santosh Shilimkar <[email protected]>
2576 L:      [email protected]
2577 S:      Maintained
2578 F:      drivers/memory/*emif*
2579
2580 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2581 M:      Santosh Shilimkar <[email protected]>
2582 L:      [email protected] (moderated for non-subscribers)
2583 S:      Maintained
2584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2585 F:      arch/arm/boot/dts/keystone-*
2586 F:      arch/arm/mach-keystone/
2587
2588 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2589 M:      Santosh Shilimkar <[email protected]>
2590 L:      [email protected]
2591 S:      Maintained
2592 F:      drivers/clk/keystone/
2593
2594 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2595 M:      Santosh Shilimkar <[email protected]>
2596 L:      [email protected] (moderated for non-subscribers)
2597 L:      [email protected]
2598 S:      Maintained
2599 F:      drivers/clocksource/timer-keystone.c
2600
2601 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2602 M:      Santosh Shilimkar <[email protected]>
2603 L:      [email protected]
2604 S:      Maintained
2605 F:      drivers/power/reset/keystone-reset.c
2606
2607 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2608 M:      Tero Kristo <[email protected]>
2609 M:      Nishanth Menon <[email protected]>
2610 L:      [email protected] (moderated for non-subscribers)
2611 S:      Supported
2612 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2613 F:      arch/arm64/boot/dts/ti/Makefile
2614 F:      arch/arm64/boot/dts/ti/k3-*
2615 F:      include/dt-bindings/pinctrl/k3.h
2616
2617 ARM/THECUS N2100 MACHINE SUPPORT
2618 M:      Lennert Buytenhek <[email protected]>
2619 L:      [email protected] (moderated for non-subscribers)
2620 S:      Maintained
2621
2622 ARM/TOSA MACHINE SUPPORT
2623 M:      Dmitry Eremin-Solenikov <[email protected]>
2624 M:      Dirk Opfer <[email protected]>
2625 S:      Maintained
2626
2627 ARM/TOSHIBA VISCONTI ARCHITECTURE
2628 M:      Nobuhiro Iwamatsu <[email protected]>
2629 L:      [email protected] (moderated for non-subscribers)
2630 S:      Supported
2631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2632 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2633 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2634 F:      arch/arm64/boot/dts/toshiba/
2635 F:      drivers/pinctrl/visconti/
2636 N:      visconti
2637
2638 ARM/UNIPHIER ARCHITECTURE
2639 L:      [email protected] (moderated for non-subscribers)
2640 S:      Orphan
2641 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2642 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2643 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2644 F:      arch/arm/boot/dts/uniphier*
2645 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2646 F:      arch/arm/mach-uniphier/
2647 F:      arch/arm/mm/cache-uniphier.c
2648 F:      arch/arm64/boot/dts/socionext/uniphier*
2649 F:      drivers/bus/uniphier-system-bus.c
2650 F:      drivers/clk/uniphier/
2651 F:      drivers/dma/uniphier-mdmac.c
2652 F:      drivers/gpio/gpio-uniphier.c
2653 F:      drivers/i2c/busses/i2c-uniphier*
2654 F:      drivers/irqchip/irq-uniphier-aidet.c
2655 F:      drivers/mmc/host/uniphier-sd.c
2656 F:      drivers/pinctrl/uniphier/
2657 F:      drivers/reset/reset-uniphier.c
2658 F:      drivers/tty/serial/8250/8250_uniphier.c
2659 N:      uniphier
2660
2661 ARM/VERSATILE EXPRESS PLATFORM
2662 M:      Liviu Dudau <[email protected]>
2663 M:      Sudeep Holla <[email protected]>
2664 M:      Lorenzo Pieralisi <[email protected]>
2665 L:      [email protected] (moderated for non-subscribers)
2666 S:      Maintained
2667 F:      */*/*/vexpress*
2668 F:      */*/vexpress*
2669 F:      arch/arm/boot/dts/vexpress*
2670 F:      arch/arm/mach-vexpress/
2671 F:      arch/arm64/boot/dts/arm/
2672 F:      drivers/clk/versatile/clk-vexpress-osc.c
2673 F:      drivers/clocksource/timer-versatile.c
2674 N:      mps2
2675
2676 ARM/VFP SUPPORT
2677 M:      Russell King <[email protected]>
2678 L:      [email protected] (moderated for non-subscribers)
2679 S:      Maintained
2680 W:      http://www.armlinux.org.uk/
2681 F:      arch/arm/vfp/
2682
2683 ARM/VOIPAC PXA270 SUPPORT
2684 M:      Marek Vasut <[email protected]>
2685 L:      [email protected] (moderated for non-subscribers)
2686 S:      Maintained
2687 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2688 F:      arch/arm/mach-pxa/vpac270.c
2689
2690 ARM/VT8500 ARM ARCHITECTURE
2691 M:      Tony Prisk <[email protected]>
2692 L:      [email protected] (moderated for non-subscribers)
2693 S:      Maintained
2694 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2695 F:      arch/arm/mach-vt8500/
2696 F:      drivers/clocksource/timer-vt8500.c
2697 F:      drivers/i2c/busses/i2c-wmt.c
2698 F:      drivers/mmc/host/wmt-sdmmc.c
2699 F:      drivers/pwm/pwm-vt8500.c
2700 F:      drivers/rtc/rtc-vt8500.c
2701 F:      drivers/tty/serial/vt8500_serial.c
2702 F:      drivers/usb/host/ehci-platform.c
2703 F:      drivers/usb/host/uhci-platform.c
2704 F:      drivers/video/fbdev/vt8500lcdfb.*
2705 F:      drivers/video/fbdev/wm8505fb*
2706 F:      drivers/video/fbdev/wmt_ge_rops.*
2707
2708 ARM/ZIPIT Z2 SUPPORT
2709 M:      Marek Vasut <[email protected]>
2710 L:      [email protected] (moderated for non-subscribers)
2711 S:      Maintained
2712 F:      arch/arm/mach-pxa/include/mach/z2.h
2713 F:      arch/arm/mach-pxa/z2.c
2714
2715 ARM/ZTE ARCHITECTURE
2716 M:      Jun Nie <[email protected]>
2717 M:      Shawn Guo <[email protected]>
2718 L:      [email protected] (moderated for non-subscribers)
2719 S:      Maintained
2720 F:      Documentation/devicetree/bindings/arm/zte.yaml
2721 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2722 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2723 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2724 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2725 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2726 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2727 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2728 F:      Documentation/devicetree/bindings/soc/zte/
2729 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2730 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2731 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2732 F:      arch/arm/boot/dts/zx2967*
2733 F:      arch/arm/mach-zx/
2734 F:      arch/arm64/boot/dts/zte/
2735 F:      drivers/clk/zte/
2736 F:      drivers/dma/zx_dma.c
2737 F:      drivers/gpio/gpio-zx.c
2738 F:      drivers/i2c/busses/i2c-zx2967.c
2739 F:      drivers/mmc/host/dw_mmc-zx.*
2740 F:      drivers/pinctrl/zte/
2741 F:      drivers/soc/zte/
2742 F:      drivers/thermal/zx2967_thermal.c
2743 F:      drivers/watchdog/zx2967_wdt.c
2744 F:      include/dt-bindings/clock/zx2967*.h
2745 F:      include/dt-bindings/soc/zte,*.h
2746 F:      sound/soc/codecs/zx_aud96p22.c
2747 F:      sound/soc/zte/
2748
2749 ARM/ZYNQ ARCHITECTURE
2750 M:      Michal Simek <[email protected]>
2751 L:      [email protected] (moderated for non-subscribers)
2752 S:      Supported
2753 W:      http://wiki.xilinx.com
2754 T:      git https://github.com/Xilinx/linux-xlnx.git
2755 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2756 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2757 F:      arch/arm/mach-zynq/
2758 F:      drivers/block/xsysace.c
2759 F:      drivers/clocksource/timer-cadence-ttc.c
2760 F:      drivers/cpuidle/cpuidle-zynq.c
2761 F:      drivers/edac/synopsys_edac.c
2762 F:      drivers/i2c/busses/i2c-cadence.c
2763 F:      drivers/i2c/busses/i2c-xiic.c
2764 F:      drivers/mmc/host/sdhci-of-arasan.c
2765 N:      zynq
2766 N:      xilinx
2767
2768 ARM64 PORT (AARCH64 ARCHITECTURE)
2769 M:      Catalin Marinas <[email protected]>
2770 M:      Will Deacon <[email protected]>
2771 L:      [email protected] (moderated for non-subscribers)
2772 S:      Maintained
2773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2774 F:      Documentation/arm64/
2775 F:      arch/arm64/
2776 F:      tools/testing/selftests/arm64/
2777 X:      arch/arm64/boot/dts/
2778
2779 AS3645A LED FLASH CONTROLLER DRIVER
2780 M:      Sakari Ailus <[email protected]>
2781 L:      [email protected]
2782 S:      Maintained
2783 F:      drivers/leds/leds-as3645a.c
2784
2785 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2786 M:      Tianshu Qiu <[email protected]>
2787 L:      [email protected]
2788 S:      Maintained
2789 T:      git git://linuxtv.org/media_tree.git
2790 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2791 F:      drivers/media/i2c/ak7375.c
2792
2793 ASAHI KASEI AK8974 DRIVER
2794 M:      Linus Walleij <[email protected]>
2795 L:      [email protected]
2796 S:      Supported
2797 W:      http://www.akm.com/
2798 F:      drivers/iio/magnetometer/ak8974.c
2799
2800 ASC7621 HARDWARE MONITOR DRIVER
2801 M:      George Joseph <[email protected]>
2802 L:      [email protected]
2803 S:      Maintained
2804 F:      Documentation/hwmon/asc7621.rst
2805 F:      drivers/hwmon/asc7621.c
2806
2807 ASPEED PINCTRL DRIVERS
2808 M:      Andrew Jeffery <[email protected]>
2809 L:      [email protected] (moderated for non-subscribers)
2810 L:      [email protected] (moderated for non-subscribers)
2811 L:      [email protected]
2812 S:      Maintained
2813 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2814 F:      drivers/pinctrl/aspeed/
2815
2816 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2817 M:      Eddie James <[email protected]>
2818 L:      [email protected] (moderated for non-subscribers)
2819 S:      Maintained
2820 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2821 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2822 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2823
2824 ASPEED VIDEO ENGINE DRIVER
2825 M:      Eddie James <[email protected]>
2826 L:      [email protected]
2827 L:      [email protected] (moderated for non-subscribers)
2828 S:      Maintained
2829 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2830 F:      drivers/media/platform/aspeed-video.c
2831
2832 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2833 M:      Corentin Chary <[email protected]>
2834 L:      [email protected]
2835 L:      [email protected]
2836 S:      Maintained
2837 W:      http://acpi4asus.sf.net
2838 F:      drivers/platform/x86/asus*.c
2839 F:      drivers/platform/x86/eeepc*.c
2840
2841 ASUS WIRELESS RADIO CONTROL DRIVER
2842 M:      João Paulo Rechi Vita <[email protected]>
2843 L:      [email protected]
2844 S:      Maintained
2845 F:      drivers/platform/x86/asus-wireless.c
2846
2847 ASYMMETRIC KEYS
2848 M:      David Howells <[email protected]>
2849 L:      [email protected]
2850 S:      Maintained
2851 F:      Documentation/crypto/asymmetric-keys.rst
2852 F:      crypto/asymmetric_keys/
2853 F:      include/crypto/pkcs7.h
2854 F:      include/crypto/public_key.h
2855 F:      include/linux/verification.h
2856
2857 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2858 R:      Dan Williams <[email protected]>
2859 S:      Odd fixes
2860 W:      http://sourceforge.net/projects/xscaleiop
2861 F:      Documentation/crypto/async-tx-api.rst
2862 F:      crypto/async_tx/
2863 F:      drivers/dma/
2864 F:      include/linux/async_tx.h
2865 F:      include/linux/dmaengine.h
2866
2867 AT24 EEPROM DRIVER
2868 M:      Bartosz Golaszewski <[email protected]>
2869 L:      [email protected]
2870 S:      Maintained
2871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2872 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2873 F:      drivers/misc/eeprom/at24.c
2874
2875 ATA OVER ETHERNET (AOE) DRIVER
2876 M:      "Justin Sanders" <[email protected]>
2877 S:      Supported
2878 W:      http://www.openaoe.org/
2879 F:      Documentation/admin-guide/aoe/
2880 F:      drivers/block/aoe/
2881
2882 ATHEROS 71XX/9XXX GPIO DRIVER
2883 M:      Alban Bedel <[email protected]>
2884 S:      Maintained
2885 W:      https://github.com/AlbanBedel/linux
2886 T:      git git://github.com/AlbanBedel/linux
2887 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2888 F:      drivers/gpio/gpio-ath79.c
2889
2890 ATHEROS 71XX/9XXX USB PHY DRIVER
2891 M:      Alban Bedel <[email protected]>
2892 S:      Maintained
2893 W:      https://github.com/AlbanBedel/linux
2894 T:      git git://github.com/AlbanBedel/linux
2895 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2896 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2897
2898 ATHEROS ATH GENERIC UTILITIES
2899 M:      Kalle Valo <[email protected]>
2900 L:      [email protected]
2901 S:      Supported
2902 F:      drivers/net/wireless/ath/*
2903
2904 ATHEROS ATH5K WIRELESS DRIVER
2905 M:      Jiri Slaby <[email protected]>
2906 M:      Nick Kossifidis <[email protected]>
2907 M:      Luis Chamberlain <[email protected]>
2908 L:      [email protected]
2909 S:      Maintained
2910 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2911 F:      drivers/net/wireless/ath/ath5k/
2912
2913 ATHEROS ATH6KL WIRELESS DRIVER
2914 M:      Kalle Valo <[email protected]>
2915 L:      [email protected]
2916 S:      Supported
2917 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2919 F:      drivers/net/wireless/ath/ath6kl/
2920
2921 ATI_REMOTE2 DRIVER
2922 M:      Ville Syrjala <[email protected]>
2923 S:      Maintained
2924 F:      drivers/input/misc/ati_remote2.c
2925
2926 ATK0110 HWMON DRIVER
2927 M:      Luca Tettamanti <[email protected]>
2928 L:      [email protected]
2929 S:      Maintained
2930 F:      drivers/hwmon/asus_atk0110.c
2931
2932 ATLX ETHERNET DRIVERS
2933 M:      Jay Cliburn <[email protected]>
2934 M:      Chris Snook <[email protected]>
2935 L:      [email protected]
2936 S:      Maintained
2937 W:      http://sourceforge.net/projects/atl1
2938 W:      http://atl1.sourceforge.net
2939 F:      drivers/net/ethernet/atheros/
2940
2941 ATM
2942 M:      Chas Williams <[email protected]>
2943 L:      [email protected] (moderated for non-subscribers)
2944 L:      [email protected]
2945 S:      Maintained
2946 W:      http://linux-atm.sourceforge.net
2947 F:      drivers/atm/
2948 F:      include/linux/atm*
2949 F:      include/uapi/linux/atm*
2950
2951 ATMEL MACB ETHERNET DRIVER
2952 M:      Nicolas Ferre <[email protected]>
2953 M:      Claudiu Beznea <[email protected]>
2954 S:      Supported
2955 F:      drivers/net/ethernet/cadence/
2956
2957 ATMEL MAXTOUCH DRIVER
2958 M:      Nick Dyer <[email protected]>
2959 S:      Maintained
2960 T:      git git://github.com/ndyer/linux.git
2961 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
2962 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2963
2964 ATMEL WIRELESS DRIVER
2965 M:      Simon Kelley <[email protected]>
2966 L:      [email protected]
2967 S:      Maintained
2968 W:      http://www.thekelleys.org.uk/atmel
2969 W:      http://atmelwlandriver.sourceforge.net/
2970 F:      drivers/net/wireless/atmel/atmel*
2971
2972 ATOMIC INFRASTRUCTURE
2973 M:      Will Deacon <[email protected]>
2974 M:      Peter Zijlstra <[email protected]>
2975 R:      Boqun Feng <[email protected]>
2976 L:      [email protected]
2977 S:      Maintained
2978 F:      arch/*/include/asm/atomic*.h
2979 F:      include/*/atomic*.h
2980 F:      include/linux/refcount.h
2981 F:      Documentation/atomic_*.txt
2982 F:      scripts/atomic/
2983
2984 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2985 M:      Bradley Grove <[email protected]>
2986 L:      [email protected]
2987 S:      Supported
2988 W:      http://www.attotech.com
2989 F:      drivers/scsi/esas2r
2990
2991 ATUSB IEEE 802.15.4 RADIO DRIVER
2992 M:      Stefan Schmidt <[email protected]>
2993 L:      [email protected]
2994 S:      Maintained
2995 F:      drivers/net/ieee802154/at86rf230.h
2996 F:      drivers/net/ieee802154/atusb.c
2997 F:      drivers/net/ieee802154/atusb.h
2998
2999 AUDIT SUBSYSTEM
3000 M:      Paul Moore <[email protected]>
3001 M:      Eric Paris <[email protected]>
3002 L:      [email protected] (moderated for non-subscribers)
3003 S:      Supported
3004 W:      https://github.com/linux-audit
3005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3006 F:      include/linux/audit.h
3007 F:      include/uapi/linux/audit.h
3008 F:      kernel/audit*
3009
3010 AUXILIARY DISPLAY DRIVERS
3011 M:      Miguel Ojeda Sandonis <[email protected]>
3012 S:      Maintained
3013 F:      drivers/auxdisplay/
3014 F:      include/linux/cfag12864b.h
3015
3016 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3017 M:      Andreas Klinger <[email protected]>
3018 L:      [email protected]
3019 S:      Maintained
3020 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3021 F:      drivers/iio/adc/hx711.c
3022
3023 AX.25 NETWORK LAYER
3024 M:      Ralf Baechle <[email protected]>
3025 L:      [email protected]
3026 S:      Maintained
3027 W:      http://www.linux-ax25.org/
3028 F:      include/net/ax25.h
3029 F:      include/uapi/linux/ax25.h
3030 F:      net/ax25/
3031
3032 AXENTIA ARM DEVICES
3033 M:      Peter Rosin <[email protected]>
3034 L:      [email protected] (moderated for non-subscribers)
3035 S:      Maintained
3036 F:      arch/arm/boot/dts/at91-linea.dtsi
3037 F:      arch/arm/boot/dts/at91-natte.dtsi
3038 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3039 F:      arch/arm/boot/dts/at91-tse850-3.dts
3040
3041 AXENTIA ASOC DRIVERS
3042 M:      Peter Rosin <[email protected]>
3043 L:      [email protected] (moderated for non-subscribers)
3044 S:      Maintained
3045 F:      Documentation/devicetree/bindings/sound/axentia,*
3046 F:      sound/soc/atmel/tse850-pcm5142.c
3047
3048 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3049 M:      Nuno Sá <[email protected]>
3050 L:      [email protected]
3051 S:      Supported
3052 W:      http://ez.analog.com/community/linux-device-drivers
3053 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3054 F:      drivers/hwmon/axi-fan-control.c
3055
3056 AXXIA I2C CONTROLLER
3057 M:      Krzysztof Adamski <[email protected]>
3058 L:      [email protected]
3059 S:      Maintained
3060 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3061 F:      drivers/i2c/busses/i2c-axxia.c
3062
3063 AZ6007 DVB DRIVER
3064 M:      Mauro Carvalho Chehab <[email protected]>
3065 L:      [email protected]
3066 S:      Maintained
3067 W:      https://linuxtv.org
3068 T:      git git://linuxtv.org/media_tree.git
3069 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3070
3071 AZTECH FM RADIO RECEIVER DRIVER
3072 M:      Hans Verkuil <[email protected]>
3073 L:      [email protected]
3074 S:      Maintained
3075 W:      https://linuxtv.org
3076 T:      git git://linuxtv.org/media_tree.git
3077 F:      drivers/media/radio/radio-aztech*
3078
3079 B43 WIRELESS DRIVER
3080 L:      [email protected]
3081 L:      [email protected]
3082 S:      Odd Fixes
3083 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3084 F:      drivers/net/wireless/broadcom/b43/
3085
3086 B43LEGACY WIRELESS DRIVER
3087 M:      Larry Finger <[email protected]>
3088 L:      [email protected]
3089 L:      [email protected]
3090 S:      Maintained
3091 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3092 F:      drivers/net/wireless/broadcom/b43legacy/
3093
3094 BACKLIGHT CLASS/SUBSYSTEM
3095 M:      Lee Jones <[email protected]>
3096 M:      Daniel Thompson <[email protected]>
3097 M:      Jingoo Han <[email protected]>
3098 L:      [email protected]
3099 S:      Maintained
3100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3101 F:      Documentation/ABI/stable/sysfs-class-backlight
3102 F:      Documentation/ABI/testing/sysfs-class-backlight
3103 F:      Documentation/devicetree/bindings/leds/backlight
3104 F:      drivers/video/backlight/
3105 F:      include/linux/backlight.h
3106 F:      include/linux/pwm_backlight.h
3107
3108 BATMAN ADVANCED
3109 M:      Marek Lindner <[email protected]>
3110 M:      Simon Wunderlich <[email protected]>
3111 M:      Antonio Quartulli <[email protected]>
3112 M:      Sven Eckelmann <[email protected]>
3113 L:      [email protected] (moderated for non-subscribers)
3114 S:      Maintained
3115 W:      https://www.open-mesh.org/
3116 Q:      https://patchwork.open-mesh.org/project/batman/list/
3117 B:      https://www.open-mesh.org/projects/batman-adv/issues
3118 C:      irc://chat.freenode.net/batman
3119 T:      git https://git.open-mesh.org/linux-merge.git
3120 F:      Documentation/networking/batman-adv.rst
3121 F:      include/uapi/linux/batadv_packet.h
3122 F:      include/uapi/linux/batman_adv.h
3123 F:      net/batman-adv/
3124
3125 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3126 M:      Thomas Sailer <[email protected]>
3127 L:      [email protected]
3128 S:      Maintained
3129 W:      http://www.baycom.org/~tom/ham/ham.html
3130 F:      drivers/net/hamradio/baycom*
3131
3132 BCACHE (BLOCK LAYER CACHE)
3133 M:      Coly Li <[email protected]>
3134 M:      Kent Overstreet <[email protected]>
3135 L:      [email protected]
3136 S:      Maintained
3137 W:      http://bcache.evilpiepirate.org
3138 C:      irc://irc.oftc.net/bcache
3139 F:      drivers/md/bcache/
3140
3141 BDISP ST MEDIA DRIVER
3142 M:      Fabien Dessenne <[email protected]>
3143 L:      [email protected]
3144 S:      Supported
3145 W:      https://linuxtv.org
3146 T:      git git://linuxtv.org/media_tree.git
3147 F:      drivers/media/platform/sti/bdisp
3148
3149 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3150 M:      Dariusz Marcinkiewicz <[email protected]>
3151 L:      [email protected]
3152 S:      Maintained
3153 F:      drivers/net/ethernet/ec_bhf.c
3154
3155 BEFS FILE SYSTEM
3156 M:      Luis de Bethencourt <[email protected]>
3157 M:      Salah Triki <[email protected]>
3158 S:      Maintained
3159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3160 F:      Documentation/filesystems/befs.rst
3161 F:      fs/befs/
3162
3163 BFQ I/O SCHEDULER
3164 M:      Paolo Valente <[email protected]>
3165 M:      Jens Axboe <[email protected]>
3166 L:      [email protected]
3167 S:      Maintained
3168 F:      Documentation/block/bfq-iosched.rst
3169 F:      block/bfq-*
3170
3171 BFS FILE SYSTEM
3172 M:      "Tigran A. Aivazian" <[email protected]>
3173 S:      Maintained
3174 F:      Documentation/filesystems/bfs.rst
3175 F:      fs/bfs/
3176 F:      include/uapi/linux/bfs_fs.h
3177
3178 BLINKM RGB LED DRIVER
3179 M:      Jan-Simon Moeller <[email protected]>
3180 S:      Maintained
3181 F:      drivers/leds/leds-blinkm.c
3182
3183 BLOCK LAYER
3184 M:      Jens Axboe <[email protected]>
3185 L:      [email protected]
3186 S:      Maintained
3187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3188 F:      block/
3189 F:      drivers/block/
3190 F:      include/linux/blk*
3191 F:      kernel/trace/blktrace.c
3192 F:      lib/sbitmap.c
3193
3194 BLOCK2MTD DRIVER
3195 M:      Joern Engel <[email protected]>
3196 L:      [email protected]
3197 S:      Maintained
3198 F:      drivers/mtd/devices/block2mtd.c
3199
3200 BLUETOOTH DRIVERS
3201 M:      Marcel Holtmann <[email protected]>
3202 M:      Johan Hedberg <[email protected]>
3203 M:      Luiz Augusto von Dentz <[email protected]>
3204 L:      [email protected]
3205 S:      Supported
3206 W:      http://www.bluez.org/
3207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3209 F:      drivers/bluetooth/
3210
3211 BLUETOOTH SUBSYSTEM
3212 M:      Marcel Holtmann <[email protected]>
3213 M:      Johan Hedberg <[email protected]>
3214 M:      Luiz Augusto von Dentz <[email protected]>
3215 L:      [email protected]
3216 S:      Supported
3217 W:      http://www.bluez.org/
3218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3220 F:      include/net/bluetooth/
3221 F:      net/bluetooth/
3222
3223 BONDING DRIVER
3224 M:      Jay Vosburgh <[email protected]>
3225 M:      Veaceslav Falico <[email protected]>
3226 M:      Andy Gospodarek <[email protected]>
3227 L:      [email protected]
3228 S:      Supported
3229 W:      http://sourceforge.net/projects/bonding/
3230 F:      drivers/net/bonding/
3231 F:      include/uapi/linux/if_bonding.h
3232
3233 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3234 M:      Dan Robertson <[email protected]>
3235 L:      [email protected]
3236 S:      Maintained
3237 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3238 F:      drivers/iio/accel/bma400*
3239
3240 BPF (Safe dynamic programs and tools)
3241 M:      Alexei Starovoitov <[email protected]>
3242 M:      Daniel Borkmann <[email protected]>
3243 M:      Andrii Nakryiko <[email protected]>
3244 R:      Martin KaFai Lau <[email protected]>
3245 R:      Song Liu <[email protected]>
3246 R:      Yonghong Song <[email protected]>
3247 R:      John Fastabend <[email protected]>
3248 R:      KP Singh <[email protected]>
3249 L:      [email protected]
3250 L:      [email protected]
3251 S:      Supported
3252 W:      https://bpf.io/
3253 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3256 F:      Documentation/bpf/
3257 F:      Documentation/networking/filter.rst
3258 F:      arch/*/net/*
3259 F:      include/linux/bpf*
3260 F:      include/linux/filter.h
3261 F:      include/trace/events/xdp.h
3262 F:      include/uapi/linux/bpf*
3263 F:      include/uapi/linux/filter.h
3264 F:      kernel/bpf/
3265 F:      kernel/trace/bpf_trace.c
3266 F:      lib/test_bpf.c
3267 F:      net/bpf/
3268 F:      net/core/filter.c
3269 F:      net/sched/act_bpf.c
3270 F:      net/sched/cls_bpf.c
3271 F:      samples/bpf/
3272 F:      tools/bpf/
3273 F:      tools/lib/bpf/
3274 F:      tools/testing/selftests/bpf/
3275 N:      bpf
3276 K:      bpf
3277
3278 BPF JIT for ARM
3279 M:      Shubham Bansal <[email protected]>
3280 L:      [email protected]
3281 L:      [email protected]
3282 S:      Maintained
3283 F:      arch/arm/net/
3284
3285 BPF JIT for ARM64
3286 M:      Daniel Borkmann <[email protected]>
3287 M:      Alexei Starovoitov <[email protected]>
3288 M:      Zi Shen Lim <[email protected]>
3289 L:      [email protected]
3290 L:      [email protected]
3291 S:      Supported
3292 F:      arch/arm64/net/
3293
3294 BPF JIT for MIPS (32-BIT AND 64-BIT)
3295 M:      Paul Burton <[email protected]>
3296 L:      [email protected]
3297 L:      [email protected]
3298 S:      Maintained
3299 F:      arch/mips/net/
3300
3301 BPF JIT for NFP NICs
3302 M:      Jakub Kicinski <[email protected]>
3303 L:      [email protected]
3304 L:      [email protected]
3305 S:      Supported
3306 F:      drivers/net/ethernet/netronome/nfp/bpf/
3307
3308 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3309 M:      Naveen N. Rao <[email protected]>
3310 M:      Sandipan Das <[email protected]>
3311 L:      [email protected]
3312 L:      [email protected]
3313 S:      Maintained
3314 F:      arch/powerpc/net/
3315
3316 BPF JIT for RISC-V (32-bit)
3317 M:      Luke Nelson <[email protected]>
3318 M:      Xi Wang <[email protected]>
3319 L:      [email protected]
3320 L:      [email protected]
3321 S:      Maintained
3322 F:      arch/riscv/net/
3323 X:      arch/riscv/net/bpf_jit_comp64.c
3324
3325 BPF JIT for RISC-V (64-bit)
3326 M:      Björn Töpel <[email protected]>
3327 L:      [email protected]
3328 L:      [email protected]
3329 S:      Maintained
3330 F:      arch/riscv/net/
3331 X:      arch/riscv/net/bpf_jit_comp32.c
3332
3333 BPF JIT for S390
3334 M:      Ilya Leoshkevich <[email protected]>
3335 M:      Heiko Carstens <[email protected]>
3336 M:      Vasily Gorbik <[email protected]>
3337 L:      [email protected]
3338 L:      [email protected]
3339 S:      Maintained
3340 F:      arch/s390/net/
3341 X:      arch/s390/net/pnet.c
3342
3343 BPF JIT for SPARC (32-BIT AND 64-BIT)
3344 M:      David S. Miller <[email protected]>
3345 L:      [email protected]
3346 L:      [email protected]
3347 S:      Maintained
3348 F:      arch/sparc/net/
3349
3350 BPF JIT for X86 32-BIT
3351 M:      Wang YanQing <[email protected]>
3352 L:      [email protected]
3353 L:      [email protected]
3354 S:      Maintained
3355 F:      arch/x86/net/bpf_jit_comp32.c
3356
3357 BPF JIT for X86 64-BIT
3358 M:      Alexei Starovoitov <[email protected]>
3359 M:      Daniel Borkmann <[email protected]>
3360 L:      [email protected]
3361 L:      [email protected]
3362 S:      Supported
3363 F:      arch/x86/net/
3364 X:      arch/x86/net/bpf_jit_comp32.c
3365
3366 BPF LSM (Security Audit and Enforcement using BPF)
3367 M:      KP Singh <[email protected]>
3368 R:      Florent Revest <[email protected]>
3369 R:      Brendan Jackman <[email protected]>
3370 L:      [email protected]
3371 S:      Maintained
3372 F:      Documentation/bpf/bpf_lsm.rst
3373 F:      include/linux/bpf_lsm.h
3374 F:      kernel/bpf/bpf_lsm.c
3375 F:      security/bpf/
3376
3377 BROADCOM B44 10/100 ETHERNET DRIVER
3378 M:      Michael Chan <[email protected]>
3379 L:      [email protected]
3380 S:      Supported
3381 F:      drivers/net/ethernet/broadcom/b44.*
3382
3383 BROADCOM B53 ETHERNET SWITCH DRIVER
3384 M:      Florian Fainelli <[email protected]>
3385 L:      [email protected]
3386 L:      [email protected] (subscribers-only)
3387 S:      Supported
3388 F:      Documentation/devicetree/bindings/net/dsa/b53.txt
3389 F:      drivers/net/dsa/b53/*
3390 F:      include/linux/platform_data/b53.h
3391
3392 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3393 M:      Nicolas Saenz Julienne <[email protected]>
3394 L:      [email protected]
3395 L:      [email protected] (moderated for non-subscribers)
3396 L:      [email protected] (moderated for non-subscribers)
3397 S:      Maintained
3398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3399 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3400 F:      drivers/pci/controller/pcie-brcmstb.c
3401 F:      drivers/staging/vc04_services
3402 N:      bcm2711
3403 N:      bcm2835
3404
3405 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3406 M:      Florian Fainelli <[email protected]>
3407 M:      Ray Jui <[email protected]>
3408 M:      Scott Branden <[email protected]>
3409 M:      [email protected]
3410 S:      Maintained
3411 T:      git git://github.com/broadcom/mach-bcm
3412 F:      arch/arm/mach-bcm/
3413 N:      bcm281*
3414 N:      bcm113*
3415 N:      bcm216*
3416 N:      kona
3417
3418 BROADCOM BCM47XX MIPS ARCHITECTURE
3419 M:      Hauke Mehrtens <[email protected]>
3420 M:      Rafał Miłecki <[email protected]>
3421 L:      [email protected]
3422 S:      Maintained
3423 F:      Documentation/devicetree/bindings/mips/brcm/
3424 F:      arch/mips/bcm47xx/*
3425 F:      arch/mips/include/asm/mach-bcm47xx/*
3426
3427 BROADCOM BCM5301X ARM ARCHITECTURE
3428 M:      Hauke Mehrtens <[email protected]>
3429 M:      Rafał Miłecki <[email protected]>
3430 M:      [email protected]
3431 L:      [email protected]
3432 S:      Maintained
3433 F:      arch/arm/boot/dts/bcm470*
3434 F:      arch/arm/boot/dts/bcm5301*
3435 F:      arch/arm/boot/dts/bcm953012*
3436 F:      arch/arm/mach-bcm/bcm_5301x.c
3437
3438 BROADCOM BCM53573 ARM ARCHITECTURE
3439 M:      Rafał Miłecki <[email protected]>
3440 L:      [email protected]
3441 L:      [email protected]
3442 S:      Maintained
3443 F:      arch/arm/boot/dts/bcm47189*
3444 F:      arch/arm/boot/dts/bcm53573*
3445
3446 BROADCOM BCM63XX ARM ARCHITECTURE
3447 M:      Florian Fainelli <[email protected]>
3448 M:      [email protected]
3449 L:      [email protected] (moderated for non-subscribers)
3450 S:      Maintained
3451 T:      git git://github.com/broadcom/stblinux.git
3452 N:      bcm63xx
3453
3454 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3455 M:      Kevin Cernekee <[email protected]>
3456 L:      [email protected]
3457 S:      Maintained
3458 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3459
3460 BROADCOM BCM7XXX ARM ARCHITECTURE
3461 M:      Florian Fainelli <[email protected]>
3462 M:      [email protected]
3463 L:      [email protected] (moderated for non-subscribers)
3464 S:      Maintained
3465 T:      git git://github.com/broadcom/stblinux.git
3466 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3467 F:      arch/arm/boot/dts/bcm7*.dts*
3468 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3469 F:      arch/arm/mach-bcm/*brcmstb*
3470 F:      arch/arm/mm/cache-b15-rac.c
3471 F:      drivers/bus/brcmstb_gisb.c
3472 F:      drivers/pci/controller/pcie-brcmstb.c
3473 N:      brcmstb
3474
3475 BROADCOM BDC DRIVER
3476 M:      Al Cooper <[email protected]>
3477 L:      [email protected]
3478 L:      [email protected]
3479 S:      Maintained
3480 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3481 F:      drivers/usb/gadget/udc/bdc/
3482
3483 BROADCOM BMIPS CPUFREQ DRIVER
3484 M:      Markus Mayer <[email protected]>
3485 M:      [email protected]
3486 L:      [email protected]
3487 S:      Maintained
3488 F:      drivers/cpufreq/bmips-cpufreq.c
3489
3490 BROADCOM BMIPS MIPS ARCHITECTURE
3491 M:      Florian Fainelli <[email protected]>
3492 L:      [email protected]
3493 L:      [email protected]
3494 S:      Maintained
3495 T:      git git://github.com/broadcom/stblinux.git
3496 F:      arch/mips/bmips/*
3497 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3498 F:      arch/mips/include/asm/mach-bmips/*
3499 F:      arch/mips/kernel/*bmips*
3500 F:      drivers/soc/bcm/bcm63xx
3501 F:      drivers/irqchip/irq-bcm63*
3502 F:      drivers/irqchip/irq-bcm7*
3503 F:      drivers/irqchip/irq-brcmstb*
3504 F:      include/linux/bcm963xx_nvram.h
3505 F:      include/linux/bcm963xx_tag.h
3506
3507 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3508 M:      Rasesh Mody <[email protected]>
3509 M:      [email protected]
3510 L:      [email protected]
3511 S:      Supported
3512 F:      drivers/net/ethernet/broadcom/bnx2.*
3513 F:      drivers/net/ethernet/broadcom/bnx2_*
3514
3515 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3516 M:      Saurav Kashyap <[email protected]>
3517 M:      Javed Hasan <[email protected]>
3518 M:      [email protected]
3519 L:      [email protected]
3520 S:      Supported
3521 F:      drivers/scsi/bnx2fc/
3522
3523 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3524 M:      Nilesh Javali <[email protected]>
3525 M:      Manish Rangankar <[email protected]>
3526 M:      [email protected]
3527 L:      [email protected]
3528 S:      Supported
3529 F:      drivers/scsi/bnx2i/
3530
3531 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3532 M:      Ariel Elior <[email protected]>
3533 M:      Sudarsana Kalluru <[email protected]>
3534 M:      [email protected]
3535 L:      [email protected]
3536 S:      Supported
3537 F:      drivers/net/ethernet/broadcom/bnx2x/
3538
3539 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3540 M:      Michael Chan <[email protected]>
3541 L:      [email protected]
3542 S:      Supported
3543 F:      drivers/net/ethernet/broadcom/bnxt/
3544
3545 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3546 M:      Arend van Spriel <[email protected]>
3547 M:      Franky Lin <[email protected]>
3548 M:      Hante Meuleman <[email protected]>
3549 M:      Chi-hsien Lin <[email protected]>
3550 M:      Wright Feng <[email protected]>
3551 M:      Chung-hsien Hsu <[email protected]>
3552 L:      [email protected]
3553 L:      [email protected]
3554 L:      [email protected]
3555 S:      Supported
3556 F:      drivers/net/wireless/broadcom/brcm80211/
3557
3558 BROADCOM BRCMSTB GPIO DRIVER
3559 M:      Gregory Fong <[email protected]>
3560 L:      [email protected]
3561 S:      Supported
3562 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3563 F:      drivers/gpio/gpio-brcmstb.c
3564
3565 BROADCOM BRCMSTB I2C DRIVER
3566 M:      Kamal Dasu <[email protected]>
3567 L:      [email protected]
3568 L:      [email protected]
3569 S:      Supported
3570 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3571 F:      drivers/i2c/busses/i2c-brcmstb.c
3572
3573 BROADCOM BRCMSTB USB EHCI DRIVER
3574 M:      Al Cooper <[email protected]>
3575 L:      [email protected]
3576 L:      [email protected]
3577 S:      Maintained
3578 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3579 F:      drivers/usb/host/ehci-brcm.*
3580
3581 BROADCOM BRCMSTB USB PIN MAP DRIVER
3582 M:      Al Cooper <[email protected]>
3583 L:      [email protected]
3584 L:      [email protected]
3585 S:      Maintained
3586 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3587 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3588
3589 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3590 M:      Al Cooper <[email protected]>
3591 L:      [email protected]
3592 L:      [email protected]
3593 S:      Maintained
3594 F:      drivers/phy/broadcom/phy-brcm-usb*
3595
3596 BROADCOM ETHERNET PHY DRIVERS
3597 M:      Florian Fainelli <[email protected]>
3598 L:      [email protected]
3599 L:      [email protected]
3600 S:      Supported
3601 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3602 F:      drivers/net/phy/bcm*.[ch]
3603 F:      drivers/net/phy/broadcom.c
3604 F:      include/linux/brcmphy.h
3605
3606 BROADCOM GENET ETHERNET DRIVER
3607 M:      Doug Berger <[email protected]>
3608 M:      Florian Fainelli <[email protected]>
3609 L:      [email protected]
3610 L:      [email protected]
3611 S:      Supported
3612 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3613 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3614 F:      drivers/net/ethernet/broadcom/genet/
3615 F:      drivers/net/mdio/mdio-bcm-unimac.c
3616 F:      include/linux/platform_data/bcmgenet.h
3617 F:      include/linux/platform_data/mdio-bcm-unimac.h
3618
3619 BROADCOM IPROC ARM ARCHITECTURE
3620 M:      Ray Jui <[email protected]>
3621 M:      Scott Branden <[email protected]>
3622 M:      [email protected]
3623 L:      [email protected] (moderated for non-subscribers)
3624 S:      Maintained
3625 T:      git git://github.com/broadcom/cygnus-linux.git
3626 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3627 F:      arch/arm64/boot/dts/broadcom/stingray/*
3628 F:      drivers/clk/bcm/clk-ns*
3629 F:      drivers/clk/bcm/clk-sr*
3630 F:      drivers/pinctrl/bcm/pinctrl-ns*
3631 F:      include/dt-bindings/clock/bcm-sr*
3632 N:      iproc
3633 N:      cygnus
3634 N:      bcm[-_]nsp
3635 N:      bcm9113*
3636 N:      bcm9583*
3637 N:      bcm9585*
3638 N:      bcm9586*
3639 N:      bcm988312
3640 N:      bcm113*
3641 N:      bcm583*
3642 N:      bcm585*
3643 N:      bcm586*
3644 N:      bcm88312
3645 N:      hr2
3646 N:      stingray
3647
3648 BROADCOM KONA GPIO DRIVER
3649 M:      Ray Jui <[email protected]>
3650 L:      [email protected]
3651 S:      Supported
3652 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3653 F:      drivers/gpio/gpio-bcm-kona.c
3654
3655 BROADCOM NETXTREME-E ROCE DRIVER
3656 M:      Selvin Xavier <[email protected]>
3657 M:      Devesh Sharma <[email protected]>
3658 M:      Somnath Kotur <[email protected]>
3659 M:      Sriharsha Basavapatna <[email protected]>
3660 M:      Naresh Kumar PBS <[email protected]>
3661 L:      [email protected]
3662 S:      Supported
3663 W:      http://www.broadcom.com
3664 F:      drivers/infiniband/hw/bnxt_re/
3665 F:      include/uapi/rdma/bnxt_re-abi.h
3666
3667 BROADCOM NVRAM DRIVER
3668 M:      Rafał Miłecki <[email protected]>
3669 L:      [email protected]
3670 S:      Maintained
3671 F:      drivers/firmware/broadcom/*
3672
3673 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3674 M:      Rafał Miłecki <[email protected]>
3675 L:      [email protected]
3676 S:      Maintained
3677 F:      drivers/bcma/
3678 F:      include/linux/bcma/
3679
3680 BROADCOM SPI DRIVER
3681 M:      Kamal Dasu <[email protected]>
3682 M:      [email protected]
3683 S:      Maintained
3684 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3685 F:      drivers/spi/spi-bcm-qspi.*
3686 F:      drivers/spi/spi-brcmstb-qspi.c
3687 F:      drivers/spi/spi-iproc-qspi.c
3688
3689 BROADCOM STB AVS CPUFREQ DRIVER
3690 M:      Markus Mayer <[email protected]>
3691 M:      [email protected]
3692 L:      [email protected]
3693 S:      Maintained
3694 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3695 F:      drivers/cpufreq/brcmstb*
3696
3697 BROADCOM STB AVS TMON DRIVER
3698 M:      Markus Mayer <[email protected]>
3699 M:      [email protected]
3700 L:      [email protected]
3701 S:      Maintained
3702 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3703 F:      drivers/thermal/broadcom/brcmstb*
3704
3705 BROADCOM STB DPFE DRIVER
3706 M:      Markus Mayer <[email protected]>
3707 M:      [email protected]
3708 L:      [email protected] (moderated for non-subscribers)
3709 S:      Maintained
3710 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3711 F:      drivers/memory/brcmstb_dpfe.c
3712
3713 BROADCOM STB NAND FLASH DRIVER
3714 M:      Brian Norris <[email protected]>
3715 M:      Kamal Dasu <[email protected]>
3716 L:      [email protected]
3717 L:      [email protected]
3718 S:      Maintained
3719 F:      drivers/mtd/nand/raw/brcmnand/
3720
3721 BROADCOM SYSTEMPORT ETHERNET DRIVER
3722 M:      Florian Fainelli <[email protected]>
3723 L:      [email protected]
3724 L:      [email protected]
3725 S:      Supported
3726 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3727
3728 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3729 M:      Siva Reddy Kallam <[email protected]>
3730 M:      Prashant Sreedharan <[email protected]>
3731 M:      Michael Chan <[email protected]>
3732 L:      [email protected]
3733 S:      Supported
3734 F:      drivers/net/ethernet/broadcom/tg3.*
3735
3736 BROCADE BFA FC SCSI DRIVER
3737 M:      Anil Gurumurthy <[email protected]>
3738 M:      Sudarsana Kalluru <[email protected]>
3739 L:      [email protected]
3740 S:      Supported
3741 F:      drivers/scsi/bfa/
3742
3743 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3744 M:      Rasesh Mody <[email protected]>
3745 M:      Sudarsana Kalluru <[email protected]>
3746 M:      [email protected]
3747 L:      [email protected]
3748 S:      Supported
3749 F:      drivers/net/ethernet/brocade/bna/
3750
3751 BSG (block layer generic sg v4 driver)
3752 M:      FUJITA Tomonori <[email protected]>
3753 L:      [email protected]
3754 S:      Supported
3755 F:      block/bsg.c
3756 F:      include/linux/bsg.h
3757 F:      include/uapi/linux/bsg.h
3758
3759 BT87X AUDIO DRIVER
3760 M:      Clemens Ladisch <[email protected]>
3761 L:      [email protected] (moderated for non-subscribers)
3762 S:      Maintained
3763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3764 F:      Documentation/sound/cards/bt87x.rst
3765 F:      sound/pci/bt87x.c
3766
3767 BT8XXGPIO DRIVER
3768 M:      Michael Buesch <[email protected]>
3769 S:      Maintained
3770 W:      http://bu3sch.de/btgpio.php
3771 F:      drivers/gpio/gpio-bt8xx.c
3772
3773 BTRFS FILE SYSTEM
3774 M:      Chris Mason <[email protected]>
3775 M:      Josef Bacik <[email protected]>
3776 M:      David Sterba <[email protected]>
3777 L:      [email protected]
3778 S:      Maintained
3779 W:      http://btrfs.wiki.kernel.org/
3780 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3782 F:      Documentation/filesystems/btrfs.rst
3783 F:      fs/btrfs/
3784 F:      include/linux/btrfs*
3785 F:      include/uapi/linux/btrfs*
3786
3787 BTTV VIDEO4LINUX DRIVER
3788 M:      Mauro Carvalho Chehab <[email protected]>
3789 L:      [email protected]
3790 S:      Odd fixes
3791 W:      https://linuxtv.org
3792 T:      git git://linuxtv.org/media_tree.git
3793 F:      Documentation/driver-api/media/drivers/bttv*
3794 F:      drivers/media/pci/bt8xx/bttv*
3795
3796 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3797 M:      Chanwoo Choi <[email protected]>
3798 L:      [email protected]
3799 L:      [email protected]
3800 S:      Maintained
3801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3802 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3803 F:      drivers/devfreq/exynos-bus.c
3804
3805 BUSLOGIC SCSI DRIVER
3806 M:      Khalid Aziz <[email protected]>
3807 L:      [email protected]
3808 S:      Maintained
3809 F:      drivers/scsi/BusLogic.*
3810 F:      drivers/scsi/FlashPoint.*
3811
3812 C-MEDIA CMI8788 DRIVER
3813 M:      Clemens Ladisch <[email protected]>
3814 L:      [email protected] (moderated for non-subscribers)
3815 S:      Maintained
3816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3817 F:      sound/pci/oxygen/
3818
3819 C-SKY ARCHITECTURE
3820 M:      Guo Ren <[email protected]>
3821 L:      [email protected]
3822 S:      Supported
3823 T:      git https://github.com/c-sky/csky-linux.git
3824 F:      Documentation/devicetree/bindings/csky/
3825 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3826 F:      Documentation/devicetree/bindings/timer/csky,*
3827 F:      arch/csky/
3828 F:      drivers/clocksource/timer-gx6605s.c
3829 F:      drivers/clocksource/timer-mp-csky.c
3830 F:      drivers/irqchip/irq-csky-*
3831 N:      csky
3832 K:      csky
3833
3834 C6X ARCHITECTURE
3835 M:      Mark Salter <[email protected]>
3836 M:      Aurelien Jacquiot <[email protected]>
3837 L:      [email protected]
3838 S:      Maintained
3839 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3840 F:      arch/c6x/
3841
3842 CA8210 IEEE-802.15.4 RADIO DRIVER
3843 M:      Harry Morris <[email protected]>
3844 L:      [email protected]
3845 S:      Maintained
3846 W:      https://github.com/Cascoda/ca8210-linux.git
3847 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3848 F:      drivers/net/ieee802154/ca8210.c
3849
3850 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3851 M:      David Howells <[email protected]>
3852 L:      [email protected] (moderated for non-subscribers)
3853 S:      Supported
3854 F:      Documentation/filesystems/caching/cachefiles.rst
3855 F:      fs/cachefiles/
3856
3857 CADENCE MIPI-CSI2 BRIDGES
3858 M:      Maxime Ripard <[email protected]>
3859 L:      [email protected]
3860 S:      Maintained
3861 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3862 F:      drivers/media/platform/cadence/cdns-csi2*
3863
3864 CADENCE NAND DRIVER
3865 L:      [email protected]
3866 S:      Orphan
3867 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3868 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3869
3870 CADENCE USB3 DRD IP DRIVER
3871 M:      Peter Chen <[email protected]>
3872 M:      Pawel Laszczak <[email protected]>
3873 M:      Roger Quadros <[email protected]>
3874 R:      Aswath Govindraju <[email protected]>
3875 L:      [email protected]
3876 S:      Maintained
3877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3878 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
3879 F:      drivers/usb/cdns3/
3880
3881 CADET FM/AM RADIO RECEIVER DRIVER
3882 M:      Hans Verkuil <[email protected]>
3883 L:      [email protected]
3884 S:      Maintained
3885 W:      https://linuxtv.org
3886 T:      git git://linuxtv.org/media_tree.git
3887 F:      drivers/media/radio/radio-cadet*
3888
3889 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3890 L:      [email protected]
3891 S:      Orphan
3892 T:      git git://linuxtv.org/media_tree.git
3893 F:      Documentation/admin-guide/media/cafe_ccic*
3894 F:      drivers/media/platform/marvell-ccic/
3895
3896 CAIF NETWORK LAYER
3897 L:      [email protected]
3898 S:      Orphan
3899 F:      Documentation/networking/caif/
3900 F:      drivers/net/caif/
3901 F:      include/net/caif/
3902 F:      include/uapi/linux/caif/
3903 F:      net/caif/
3904
3905 CAKE QDISC
3906 M:      Toke Høiland-Jørgensen <[email protected]>
3907 L:      [email protected] (moderated for non-subscribers)
3908 S:      Maintained
3909 F:      net/sched/sch_cake.c
3910
3911 CAN NETWORK DRIVERS
3912 M:      Wolfgang Grandegger <[email protected]>
3913 M:      Marc Kleine-Budde <[email protected]>
3914 L:      [email protected]
3915 S:      Maintained
3916 W:      https://github.com/linux-can
3917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3919 F:      Documentation/devicetree/bindings/net/can/
3920 F:      drivers/net/can/
3921 F:      include/linux/can/dev.h
3922 F:      include/linux/can/led.h
3923 F:      include/linux/can/platform/
3924 F:      include/linux/can/rx-offload.h
3925 F:      include/uapi/linux/can/error.h
3926 F:      include/uapi/linux/can/netlink.h
3927 F:      include/uapi/linux/can/vxcan.h
3928
3929 CAN NETWORK LAYER
3930 M:      Oliver Hartkopp <[email protected]>
3931 M:      Marc Kleine-Budde <[email protected]>
3932 L:      [email protected]
3933 S:      Maintained
3934 W:      https://github.com/linux-can
3935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3937 F:      Documentation/networking/can.rst
3938 F:      include/linux/can/core.h
3939 F:      include/linux/can/skb.h
3940 F:      include/net/netns/can.h
3941 F:      include/uapi/linux/can.h
3942 F:      include/uapi/linux/can/bcm.h
3943 F:      include/uapi/linux/can/gw.h
3944 F:      include/uapi/linux/can/isotp.h
3945 F:      include/uapi/linux/can/raw.h
3946 F:      net/can/
3947
3948 CAN-J1939 NETWORK LAYER
3949 M:      Robin van der Gracht <[email protected]>
3950 M:      Oleksij Rempel <[email protected]>
3951 R:      Pengutronix Kernel Team <[email protected]>
3952 L:      [email protected]
3953 S:      Maintained
3954 F:      Documentation/networking/j1939.rst
3955 F:      include/uapi/linux/can/j1939.h
3956 F:      net/can/j1939/
3957
3958 CAPABILITIES
3959 M:      Serge Hallyn <[email protected]>
3960 L:      [email protected]
3961 S:      Supported
3962 F:      include/linux/capability.h
3963 F:      include/uapi/linux/capability.h
3964 F:      kernel/capability.c
3965 F:      security/commoncap.c
3966
3967 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3968 M:      Kevin Tsai <[email protected]>
3969 S:      Maintained
3970 F:      drivers/iio/light/cm*
3971
3972 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3973 M:      Christian Lamparter <[email protected]>
3974 L:      [email protected]
3975 S:      Maintained
3976 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3977 F:      drivers/net/wireless/ath/carl9170/
3978
3979 CAVIUM I2C DRIVER
3980 M:      Robert Richter <[email protected]>
3981 S:      Odd Fixes
3982 W:      http://www.marvell.com
3983 F:      drivers/i2c/busses/i2c-octeon*
3984 F:      drivers/i2c/busses/i2c-thunderx*
3985
3986 CAVIUM LIQUIDIO NETWORK DRIVER
3987 M:      Derek Chickles <[email protected]>
3988 M:      Satanand Burla <[email protected]>
3989 M:      Felix Manlunas <[email protected]>
3990 L:      [email protected]
3991 S:      Supported
3992 W:      http://www.marvell.com
3993 F:      drivers/net/ethernet/cavium/liquidio/
3994
3995 CAVIUM MMC DRIVER
3996 M:      Robert Richter <[email protected]>
3997 S:      Odd Fixes
3998 W:      http://www.marvell.com
3999 F:      drivers/mmc/host/cavium*
4000
4001 CAVIUM OCTEON-TX CRYPTO DRIVER
4002 M:      George Cherian <[email protected]>
4003 L:      [email protected]
4004 S:      Supported
4005 W:      http://www.marvell.com
4006 F:      drivers/crypto/cavium/cpt/
4007
4008 CAVIUM THUNDERX2 ARM64 SOC
4009 M:      Robert Richter <[email protected]>
4010 L:      [email protected] (moderated for non-subscribers)
4011 S:      Odd Fixes
4012 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4013 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4014
4015 CC2520 IEEE-802.15.4 RADIO DRIVER
4016 M:      Varka Bhadram <[email protected]>
4017 L:      [email protected]
4018 S:      Maintained
4019 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4020 F:      drivers/net/ieee802154/cc2520.c
4021 F:      include/linux/spi/cc2520.h
4022
4023 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4024 M:      Gilad Ben-Yossef <[email protected]>
4025 L:      [email protected]
4026 S:      Supported
4027 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4028 F:      drivers/crypto/ccree/
4029
4030 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4031 M:      Hadar Gat <[email protected]>
4032 L:      [email protected]
4033 S:      Supported
4034 F:      drivers/char/hw_random/cctrng.c
4035 F:      drivers/char/hw_random/cctrng.h
4036 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4037 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4038
4039 CEC FRAMEWORK
4040 M:      Hans Verkuil <[email protected]>
4041 L:      [email protected]
4042 S:      Supported
4043 W:      http://linuxtv.org
4044 T:      git git://linuxtv.org/media_tree.git
4045 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4046 F:      Documentation/devicetree/bindings/media/cec.txt
4047 F:      Documentation/driver-api/media/cec-core.rst
4048 F:      Documentation/userspace-api/media/cec
4049 F:      drivers/media/cec/
4050 F:      drivers/media/rc/keymaps/rc-cec.c
4051 F:      include/media/cec-notifier.h
4052 F:      include/media/cec.h
4053 F:      include/uapi/linux/cec-funcs.h
4054 F:      include/uapi/linux/cec.h
4055
4056 CEC GPIO DRIVER
4057 M:      Hans Verkuil <[email protected]>
4058 L:      [email protected]
4059 S:      Supported
4060 W:      http://linuxtv.org
4061 T:      git git://linuxtv.org/media_tree.git
4062 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4063 F:      drivers/media/cec/platform/cec-gpio/
4064
4065 CELL BROADBAND ENGINE ARCHITECTURE
4066 M:      Arnd Bergmann <[email protected]>
4067 L:      [email protected]
4068 S:      Supported
4069 W:      http://www.ibm.com/developerworks/power/cell/
4070 F:      arch/powerpc/include/asm/cell*.h
4071 F:      arch/powerpc/include/asm/spu*.h
4072 F:      arch/powerpc/include/uapi/asm/spu*.h
4073 F:      arch/powerpc/oprofile/*cell*
4074 F:      arch/powerpc/platforms/cell/
4075
4076 CELLWISE CW2015 BATTERY DRIVER
4077 M:      Tobias Schrammm <[email protected]>
4078 S:      Maintained
4079 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4080 F:      drivers/power/supply/cw2015_battery.c
4081
4082 CEPH COMMON CODE (LIBCEPH)
4083 M:      Ilya Dryomov <[email protected]>
4084 M:      Jeff Layton <[email protected]>
4085 L:      [email protected]
4086 S:      Supported
4087 W:      http://ceph.com/
4088 T:      git git://github.com/ceph/ceph-client.git
4089 F:      include/linux/ceph/
4090 F:      include/linux/crush/
4091 F:      net/ceph/
4092
4093 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4094 M:      Jeff Layton <[email protected]>
4095 M:      Ilya Dryomov <[email protected]>
4096 L:      [email protected]
4097 S:      Supported
4098 W:      http://ceph.com/
4099 T:      git git://github.com/ceph/ceph-client.git
4100 F:      Documentation/filesystems/ceph.rst
4101 F:      fs/ceph/
4102
4103 CERTIFICATE HANDLING
4104 M:      David Howells <[email protected]>
4105 M:      David Woodhouse <[email protected]>
4106 L:      [email protected]
4107 S:      Maintained
4108 F:      Documentation/admin-guide/module-signing.rst
4109 F:      certs/
4110 F:      scripts/extract-cert.c
4111 F:      scripts/sign-file.c
4112
4113 CFAG12864B LCD DRIVER
4114 M:      Miguel Ojeda Sandonis <[email protected]>
4115 S:      Maintained
4116 F:      drivers/auxdisplay/cfag12864b.c
4117 F:      include/linux/cfag12864b.h
4118
4119 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4120 M:      Miguel Ojeda Sandonis <[email protected]>
4121 S:      Maintained
4122 F:      drivers/auxdisplay/cfag12864bfb.c
4123 F:      include/linux/cfag12864b.h
4124
4125 CHAR and MISC DRIVERS
4126 M:      Arnd Bergmann <[email protected]>
4127 M:      Greg Kroah-Hartman <[email protected]>
4128 S:      Supported
4129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4130 F:      drivers/char/
4131 F:      drivers/misc/
4132 F:      include/linux/miscdevice.h
4133 X:      drivers/char/agp/
4134 X:      drivers/char/hw_random/
4135 X:      drivers/char/ipmi/
4136 X:      drivers/char/random.c
4137 X:      drivers/char/tpm/
4138
4139 CHECKPATCH
4140 M:      Andy Whitcroft <[email protected]>
4141 M:      Joe Perches <[email protected]>
4142 S:      Maintained
4143 F:      scripts/checkpatch.pl
4144
4145 CHINESE DOCUMENTATION
4146 M:      Harry Wei <[email protected]>
4147 M:      Alex Shi <[email protected]>
4148 L:      [email protected] (subscribers-only)
4149 S:      Maintained
4150 F:      Documentation/translations/zh_CN/
4151
4152 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4153 M:      Peter Chen <[email protected]>
4154 L:      [email protected]
4155 S:      Maintained
4156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4157 F:      drivers/usb/chipidea/
4158
4159 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4160 M:      Hans de Goede <[email protected]>
4161 L:      [email protected]
4162 S:      Maintained
4163 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4164 F:      drivers/input/touchscreen/chipone_icn8318.c
4165
4166 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4167 M:      Hans de Goede <[email protected]>
4168 L:      [email protected]
4169 S:      Maintained
4170 F:      drivers/input/touchscreen/chipone_icn8505.c
4171
4172 CHROME HARDWARE PLATFORM SUPPORT
4173 M:      Benson Leung <[email protected]>
4174 M:      Enric Balletbo i Serra <[email protected]>
4175 S:      Maintained
4176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4177 F:      drivers/platform/chrome/
4178
4179 CHROMEOS EC CODEC DRIVER
4180 M:      Cheng-Yi Chiang <[email protected]>
4181 R:      Enric Balletbo i Serra <[email protected]>
4182 R:      Guenter Roeck <[email protected]>
4183 S:      Maintained
4184 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4185 F:      sound/soc/codecs/cros_ec_codec.*
4186
4187 CHROMEOS EC SUBDRIVERS
4188 M:      Benson Leung <[email protected]>
4189 M:      Enric Balletbo i Serra <[email protected]>
4190 R:      Guenter Roeck <[email protected]>
4191 S:      Maintained
4192 F:      drivers/power/supply/cros_usbpd-charger.c
4193 N:      cros_ec
4194 N:      cros-ec
4195
4196 CHRONTEL CH7322 CEC DRIVER
4197 M:      Jeff Chase <[email protected]>
4198 L:      [email protected]
4199 S:      Maintained
4200 T:      git git://linuxtv.org/media_tree.git
4201 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4202 F:      drivers/media/cec/i2c/ch7322.c
4203
4204 CIRRUS LOGIC AUDIO CODEC DRIVERS
4205 M:      James Schulman <[email protected]>
4206 M:      David Rhodes <[email protected]>
4207 L:      [email protected] (moderated for non-subscribers)
4208 L:      [email protected]
4209 S:      Maintained
4210 F:      sound/soc/codecs/cs*
4211
4212 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4213 M:      Hartley Sweeten <[email protected]>
4214 L:      [email protected]
4215 S:      Maintained
4216 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4217
4218 CIRRUS LOGIC LOCHNAGAR DRIVER
4219 M:      Charles Keepax <[email protected]>
4220 M:      Richard Fitzgerald <[email protected]>
4221 L:      [email protected]
4222 S:      Supported
4223 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4224 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4225 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4226 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4227 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4228 F:      Documentation/hwmon/lochnagar.rst
4229 F:      drivers/clk/clk-lochnagar.c
4230 F:      drivers/hwmon/lochnagar-hwmon.c
4231 F:      drivers/mfd/lochnagar-i2c.c
4232 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4233 F:      drivers/regulator/lochnagar-regulator.c
4234 F:      include/dt-bindings/clk/lochnagar.h
4235 F:      include/dt-bindings/pinctrl/lochnagar.h
4236 F:      include/linux/mfd/lochnagar*
4237 F:      sound/soc/codecs/lochnagar-sc.c
4238
4239 CIRRUS LOGIC MADERA CODEC DRIVERS
4240 M:      Charles Keepax <[email protected]>
4241 M:      Richard Fitzgerald <[email protected]>
4242 L:      [email protected] (moderated for non-subscribers)
4243 L:      [email protected]
4244 S:      Supported
4245 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4246 T:      git https://github.com/CirrusLogic/linux-drivers.git
4247 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4248 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4249 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4250 F:      drivers/gpio/gpio-madera*
4251 F:      drivers/irqchip/irq-madera*
4252 F:      drivers/mfd/cs47l*
4253 F:      drivers/mfd/madera*
4254 F:      drivers/pinctrl/cirrus/*
4255 F:      include/dt-bindings/sound/madera*
4256 F:      include/linux/irqchip/irq-madera*
4257 F:      include/linux/mfd/madera/*
4258 F:      include/sound/madera*
4259 F:      sound/soc/codecs/cs47l*
4260 F:      sound/soc/codecs/madera*
4261
4262 CISCO FCOE HBA DRIVER
4263 M:      Satish Kharat <[email protected]>
4264 M:      Sesidhar Baddela <[email protected]>
4265 M:      Karan Tilak Kumar <[email protected]>
4266 L:      [email protected]
4267 S:      Supported
4268 F:      drivers/scsi/fnic/
4269
4270 CISCO SCSI HBA DRIVER
4271 M:      Karan Tilak Kumar <[email protected]>
4272 M:      Sesidhar Baddela <[email protected]>
4273 L:      [email protected]
4274 S:      Supported
4275 F:      drivers/scsi/snic/
4276
4277 CISCO VIC ETHERNET NIC DRIVER
4278 M:      Christian Benvenuti <[email protected]>
4279 M:      Govindarajulu Varadarajan <[email protected]>
4280 S:      Supported
4281 F:      drivers/net/ethernet/cisco/enic/
4282
4283 CISCO VIC LOW LATENCY NIC DRIVER
4284 M:      Christian Benvenuti <[email protected]>
4285 M:      Nelson Escobar <[email protected]>
4286 S:      Supported
4287 F:      drivers/infiniband/hw/usnic/
4288
4289 CLANG-FORMAT FILE
4290 M:      Miguel Ojeda <[email protected]>
4291 S:      Maintained
4292 F:      .clang-format
4293
4294 CLANG/LLVM BUILD SUPPORT
4295 M:      Nathan Chancellor <[email protected]>
4296 M:      Nick Desaulniers <[email protected]>
4297 L:      [email protected]
4298 S:      Supported
4299 W:      https://clangbuiltlinux.github.io/
4300 B:      https://github.com/ClangBuiltLinux/linux/issues
4301 C:      irc://chat.freenode.net/clangbuiltlinux
4302 F:      Documentation/kbuild/llvm.rst
4303 F:      scripts/clang-tools/
4304 F:      scripts/lld-version.sh
4305 K:      \b(?i:clang|llvm)\b
4306
4307 CLEANCACHE API
4308 M:      Konrad Rzeszutek Wilk <[email protected]>
4309 L:      [email protected]
4310 S:      Maintained
4311 F:      include/linux/cleancache.h
4312 F:      mm/cleancache.c
4313
4314 CLK API
4315 M:      Russell King <[email protected]>
4316 L:      [email protected]
4317 S:      Maintained
4318 F:      include/linux/clk.h
4319
4320 CLOCKSOURCE, CLOCKEVENT DRIVERS
4321 M:      Daniel Lezcano <[email protected]>
4322 M:      Thomas Gleixner <[email protected]>
4323 L:      [email protected]
4324 S:      Supported
4325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4326 F:      Documentation/devicetree/bindings/timer/
4327 F:      drivers/clocksource/
4328
4329 CMPC ACPI DRIVER
4330 M:      Thadeu Lima de Souza Cascardo <[email protected]>
4331 M:      Daniel Oliveira Nascimento <[email protected]>
4332 L:      [email protected]
4333 S:      Supported
4334 F:      drivers/platform/x86/classmate-laptop.c
4335
4336 COBALT MEDIA DRIVER
4337 M:      Hans Verkuil <[email protected]>
4338 L:      [email protected]
4339 S:      Supported
4340 W:      https://linuxtv.org
4341 T:      git git://linuxtv.org/media_tree.git
4342 F:      drivers/media/pci/cobalt/
4343
4344 COCCINELLE/Semantic Patches (SmPL)
4345 M:      Julia Lawall <[email protected]>
4346 M:      Gilles Muller <[email protected]>
4347 M:      Nicolas Palix <[email protected]>
4348 M:      Michal Marek <[email protected]>
4349 L:      [email protected] (moderated for non-subscribers)
4350 S:      Supported
4351 W:      http://coccinelle.lip6.fr/
4352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4353 F:      Documentation/dev-tools/coccinelle.rst
4354 F:      scripts/coccicheck
4355 F:      scripts/coccinelle/
4356
4357 CODA FILE SYSTEM
4358 M:      Jan Harkes <[email protected]>
4359 M:      [email protected]
4360 L:      [email protected]
4361 S:      Maintained
4362 W:      http://www.coda.cs.cmu.edu/
4363 F:      Documentation/filesystems/coda.rst
4364 F:      fs/coda/
4365 F:      include/linux/coda*.h
4366 F:      include/uapi/linux/coda*.h
4367
4368 CODA V4L2 MEM2MEM DRIVER
4369 M:      Philipp Zabel <[email protected]>
4370 L:      [email protected]
4371 S:      Maintained
4372 F:      Documentation/devicetree/bindings/media/coda.yaml
4373 F:      drivers/media/platform/coda/
4374
4375 CODE OF CONDUCT
4376 M:      Greg Kroah-Hartman <[email protected]>
4377 S:      Supported
4378 F:      Documentation/process/code-of-conduct-interpretation.rst
4379 F:      Documentation/process/code-of-conduct.rst
4380
4381 COMMON CLK FRAMEWORK
4382 M:      Michael Turquette <[email protected]>
4383 M:      Stephen Boyd <[email protected]>
4384 L:      [email protected]
4385 S:      Maintained
4386 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4388 F:      Documentation/devicetree/bindings/clock/
4389 F:      drivers/clk/
4390 F:      include/linux/clk-pr*
4391 F:      include/linux/clk/
4392 F:      include/linux/of_clk.h
4393 X:      drivers/clk/clkdev.c
4394
4395 COMMON INTERNET FILE SYSTEM (CIFS)
4396 M:      Steve French <[email protected]>
4397 L:      [email protected]
4398 L:      [email protected] (moderated for non-subscribers)
4399 S:      Supported
4400 W:      http://linux-cifs.samba.org/
4401 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4402 F:      Documentation/admin-guide/cifs/
4403 F:      fs/cifs/
4404
4405 COMPACTPCI HOTPLUG CORE
4406 M:      Scott Murray <[email protected]>
4407 L:      [email protected]
4408 S:      Maintained
4409 F:      drivers/pci/hotplug/cpci_hotplug*
4410
4411 COMPACTPCI HOTPLUG GENERIC DRIVER
4412 M:      Scott Murray <[email protected]>
4413 L:      [email protected]
4414 S:      Maintained
4415 F:      drivers/pci/hotplug/cpcihp_generic.c
4416
4417 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4418 M:      Scott Murray <[email protected]>
4419 L:      [email protected]
4420 S:      Maintained
4421 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4422
4423 COMPAL LAPTOP SUPPORT
4424 M:      Cezary Jackiewicz <[email protected]>
4425 L:      [email protected]
4426 S:      Maintained
4427 F:      drivers/platform/x86/compal-laptop.c
4428
4429 COMPILER ATTRIBUTES
4430 M:      Miguel Ojeda <[email protected]>
4431 S:      Maintained
4432 F:      include/linux/compiler_attributes.h
4433
4434 CONEXANT ACCESSRUNNER USB DRIVER
4435 L:      [email protected]
4436 S:      Orphan
4437 W:      http://accessrunner.sourceforge.net/
4438 F:      drivers/usb/atm/cxacru.c
4439
4440 CONFIGFS
4441 M:      Joel Becker <[email protected]>
4442 M:      Christoph Hellwig <[email protected]>
4443 S:      Supported
4444 T:      git git://git.infradead.org/users/hch/configfs.git
4445 F:      fs/configfs/
4446 F:      include/linux/configfs.h
4447 F:      samples/configfs/
4448
4449 CONSOLE SUBSYSTEM
4450 M:      Greg Kroah-Hartman <[email protected]>
4451 S:      Supported
4452 F:      drivers/video/console/
4453 F:      include/linux/console*
4454
4455 CONTROL GROUP (CGROUP)
4456 M:      Tejun Heo <[email protected]>
4457 M:      Li Zefan <[email protected]>
4458 M:      Johannes Weiner <[email protected]>
4459 L:      [email protected]
4460 S:      Maintained
4461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4462 F:      Documentation/admin-guide/cgroup-v1/
4463 F:      Documentation/admin-guide/cgroup-v2.rst
4464 F:      include/linux/cgroup*
4465 F:      kernel/cgroup/
4466
4467 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4468 M:      Tejun Heo <[email protected]>
4469 M:      Jens Axboe <[email protected]>
4470 L:      [email protected]
4471 L:      [email protected]
4472 T:      git git://git.kernel.dk/linux-block
4473 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4474 F:      block/bfq-cgroup.c
4475 F:      block/blk-cgroup.c
4476 F:      block/blk-iolatency.c
4477 F:      block/blk-throttle.c
4478 F:      include/linux/blk-cgroup.h
4479
4480 CONTROL GROUP - CPUSET
4481 M:      Li Zefan <[email protected]>
4482 L:      [email protected]
4483 S:      Maintained
4484 W:      http://www.bullopensource.org/cpuset/
4485 W:      http://oss.sgi.com/projects/cpusets/
4486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4487 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4488 F:      include/linux/cpuset.h
4489 F:      kernel/cgroup/cpuset.c
4490
4491 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4492 M:      Johannes Weiner <[email protected]>
4493 M:      Michal Hocko <[email protected]>
4494 M:      Vladimir Davydov <[email protected]>
4495 L:      [email protected]
4496 L:      [email protected]
4497 S:      Maintained
4498 F:      mm/memcontrol.c
4499 F:      mm/swap_cgroup.c
4500
4501 CORETEMP HARDWARE MONITORING DRIVER
4502 M:      Fenghua Yu <[email protected]>
4503 L:      [email protected]
4504 S:      Maintained
4505 F:      Documentation/hwmon/coretemp.rst
4506 F:      drivers/hwmon/coretemp.c
4507
4508 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4509 M:      Marius Zachmann <[email protected]>
4510 L:      [email protected]
4511 S:      Maintained
4512 F:      drivers/hwmon/corsair-cpro.c
4513
4514 CORSAIR-PSU HARDWARE MONITOR DRIVER
4515 M:      Wilken Gottwalt <[email protected]>
4516 L:      [email protected]
4517 S:      Maintained
4518 F:      Documentation/hwmon/corsair-psu.rst
4519 F:      drivers/hwmon/corsair-psu.c
4520
4521 COSA/SRP SYNC SERIAL DRIVER
4522 M:      Jan "Yenya" Kasprzak <[email protected]>
4523 S:      Maintained
4524 W:      http://www.fi.muni.cz/~kas/cosa/
4525 F:      drivers/net/wan/cosa*
4526
4527 COUNTER SUBSYSTEM
4528 M:      William Breathitt Gray <[email protected]>
4529 L:      [email protected]
4530 S:      Maintained
4531 F:      Documentation/ABI/testing/sysfs-bus-counter*
4532 F:      Documentation/driver-api/generic-counter.rst
4533 F:      drivers/counter/
4534 F:      include/linux/counter.h
4535 F:      include/linux/counter_enum.h
4536
4537 CPMAC ETHERNET DRIVER
4538 M:      Florian Fainelli <[email protected]>
4539 L:      [email protected]
4540 S:      Maintained
4541 F:      drivers/net/ethernet/ti/cpmac.c
4542
4543 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4544 M:      Viresh Kumar <[email protected]>
4545 M:      Sudeep Holla <[email protected]>
4546 L:      [email protected]
4547 S:      Maintained
4548 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4549 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4550
4551 CPU FREQUENCY SCALING FRAMEWORK
4552 M:      "Rafael J. Wysocki" <[email protected]>
4553 M:      Viresh Kumar <[email protected]>
4554 L:      [email protected]
4555 S:      Maintained
4556 B:      https://bugzilla.kernel.org
4557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4559 F:      Documentation/admin-guide/pm/cpufreq.rst
4560 F:      Documentation/admin-guide/pm/intel_pstate.rst
4561 F:      Documentation/cpu-freq/
4562 F:      Documentation/devicetree/bindings/cpufreq/
4563 F:      drivers/cpufreq/
4564 F:      include/linux/cpufreq.h
4565 F:      include/linux/sched/cpufreq.h
4566 F:      kernel/sched/cpufreq*.c
4567 F:      tools/testing/selftests/cpufreq/
4568
4569 CPU IDLE TIME MANAGEMENT FRAMEWORK
4570 M:      "Rafael J. Wysocki" <[email protected]>
4571 M:      Daniel Lezcano <[email protected]>
4572 L:      [email protected]
4573 S:      Maintained
4574 B:      https://bugzilla.kernel.org
4575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4576 F:      Documentation/admin-guide/pm/cpuidle.rst
4577 F:      Documentation/driver-api/pm/cpuidle.rst
4578 F:      drivers/cpuidle/*
4579 F:      include/linux/cpuidle.h
4580
4581 CPU POWER MONITORING SUBSYSTEM
4582 M:      Thomas Renninger <[email protected]>
4583 M:      Shuah Khan <[email protected]>
4584 M:      Shuah Khan <[email protected]>
4585 L:      [email protected]
4586 S:      Maintained
4587 F:      tools/power/cpupower/
4588
4589 CPUID/MSR DRIVER
4590 M:      "H. Peter Anvin" <[email protected]>
4591 S:      Maintained
4592 F:      arch/x86/kernel/cpuid.c
4593 F:      arch/x86/kernel/msr.c
4594
4595 CPUIDLE DRIVER - ARM BIG LITTLE
4596 M:      Lorenzo Pieralisi <[email protected]>
4597 M:      Daniel Lezcano <[email protected]>
4598 L:      [email protected]
4599 L:      [email protected]
4600 S:      Maintained
4601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4602 F:      drivers/cpuidle/cpuidle-big_little.c
4603
4604 CPUIDLE DRIVER - ARM EXYNOS
4605 M:      Bartlomiej Zolnierkiewicz <[email protected]>
4606 M:      Daniel Lezcano <[email protected]>
4607 M:      Kukjin Kim <[email protected]>
4608 L:      [email protected]
4609 L:      [email protected]
4610 S:      Supported
4611 F:      arch/arm/mach-exynos/pm.c
4612 F:      drivers/cpuidle/cpuidle-exynos.c
4613
4614 CPUIDLE DRIVER - ARM PSCI
4615 M:      Lorenzo Pieralisi <[email protected]>
4616 M:      Sudeep Holla <[email protected]>
4617 L:      [email protected]
4618 L:      [email protected]
4619 S:      Supported
4620 F:      drivers/cpuidle/cpuidle-psci.c
4621
4622 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4623 M:      Ulf Hansson <[email protected]>
4624 L:      [email protected]
4625 L:      [email protected]
4626 S:      Supported
4627 F:      drivers/cpuidle/cpuidle-psci.h
4628 F:      drivers/cpuidle/cpuidle-psci-domain.c
4629
4630 CRAMFS FILESYSTEM
4631 M:      Nicolas Pitre <[email protected]>
4632 S:      Maintained
4633 F:      Documentation/filesystems/cramfs.rst
4634 F:      fs/cramfs/
4635
4636 CREATIVE SB0540
4637 M:      Bastien Nocera <[email protected]>
4638 L:      [email protected]
4639 S:      Maintained
4640 F:      drivers/hid/hid-creative-sb0540.c
4641
4642 CRYPTO API
4643 M:      Herbert Xu <[email protected]>
4644 M:      "David S. Miller" <[email protected]>
4645 L:      [email protected]
4646 S:      Maintained
4647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4649 F:      Documentation/crypto/
4650 F:      Documentation/devicetree/bindings/crypto/
4651 F:      arch/*/crypto/
4652 F:      crypto/
4653 F:      drivers/crypto/
4654 F:      include/crypto/
4655 F:      include/linux/crypto*
4656 F:      lib/crypto/
4657
4658 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4659 M:      Neil Horman <[email protected]>
4660 L:      [email protected]
4661 S:      Maintained
4662 F:      crypto/ansi_cprng.c
4663 F:      crypto/rng.c
4664
4665 CS3308 MEDIA DRIVER
4666 M:      Hans Verkuil <[email protected]>
4667 L:      [email protected]
4668 S:      Odd Fixes
4669 W:      http://linuxtv.org
4670 T:      git git://linuxtv.org/media_tree.git
4671 F:      drivers/media/i2c/cs3308.c
4672
4673 CS5535 Audio ALSA driver
4674 M:      Jaya Kumar <[email protected]>
4675 S:      Maintained
4676 F:      sound/pci/cs5535audio/
4677
4678 CSI DRIVERS FOR ALLWINNER V3s
4679 M:      Yong Deng <[email protected]>
4680 L:      [email protected]
4681 S:      Maintained
4682 T:      git git://linuxtv.org/media_tree.git
4683 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4684 F:      drivers/media/platform/sunxi/sun6i-csi/
4685
4686 CW1200 WLAN driver
4687 M:      Solomon Peachy <[email protected]>
4688 S:      Maintained
4689 F:      drivers/net/wireless/st/cw1200/
4690
4691 CX18 VIDEO4LINUX DRIVER
4692 M:      Andy Walls <[email protected]>
4693 L:      [email protected]
4694 S:      Maintained
4695 W:      https://linuxtv.org
4696 T:      git git://linuxtv.org/media_tree.git
4697 F:      drivers/media/pci/cx18/
4698 F:      include/uapi/linux/ivtv*
4699
4700 CX2341X MPEG ENCODER HELPER MODULE
4701 M:      Hans Verkuil <[email protected]>
4702 L:      [email protected]
4703 S:      Maintained
4704 W:      https://linuxtv.org
4705 T:      git git://linuxtv.org/media_tree.git
4706 F:      drivers/media/common/cx2341x*
4707 F:      include/media/drv-intf/cx2341x.h
4708
4709 CX24120 MEDIA DRIVER
4710 M:      Jemma Denson <[email protected]>
4711 M:      Patrick Boettcher <[email protected]>
4712 L:      [email protected]
4713 S:      Maintained
4714 W:      https://linuxtv.org
4715 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4716 F:      drivers/media/dvb-frontends/cx24120*
4717
4718 CX88 VIDEO4LINUX DRIVER
4719 M:      Mauro Carvalho Chehab <[email protected]>
4720 L:      [email protected]
4721 S:      Odd fixes
4722 W:      https://linuxtv.org
4723 T:      git git://linuxtv.org/media_tree.git
4724 F:      Documentation/driver-api/media/drivers/cx88*
4725 F:      drivers/media/pci/cx88/
4726
4727 CXD2820R MEDIA DRIVER
4728 M:      Antti Palosaari <[email protected]>
4729 L:      [email protected]
4730 S:      Maintained
4731 W:      https://linuxtv.org
4732 W:      http://palosaari.fi/linux/
4733 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4734 T:      git git://linuxtv.org/anttip/media_tree.git
4735 F:      drivers/media/dvb-frontends/cxd2820r*
4736
4737 CXGB3 ETHERNET DRIVER (CXGB3)
4738 M:      Raju Rangoju <[email protected]>
4739 L:      [email protected]
4740 S:      Supported
4741 W:      http://www.chelsio.com
4742 F:      drivers/net/ethernet/chelsio/cxgb3/
4743
4744 CXGB3 ISCSI DRIVER (CXGB3I)
4745 M:      Karen Xie <[email protected]>
4746 L:      [email protected]
4747 S:      Supported
4748 W:      http://www.chelsio.com
4749 F:      drivers/scsi/cxgbi/cxgb3i
4750
4751 CXGB4 CRYPTO DRIVER (chcr)
4752 M:      Ayush Sawal <[email protected]>
4753 M:      Vinay Kumar Yadav <[email protected]>
4754 M:      Rohit Maheshwari <[email protected]>
4755 L:      [email protected]
4756 S:      Supported
4757 W:      http://www.chelsio.com
4758 F:      drivers/crypto/chelsio
4759
4760 CXGB4 INLINE CRYPTO DRIVER
4761 M:      Ayush Sawal <[email protected]>
4762 M:      Vinay Kumar Yadav <[email protected]>
4763 M:      Rohit Maheshwari <[email protected]>
4764 L:      [email protected]
4765 S:      Supported
4766 W:      http://www.chelsio.com
4767 F:      drivers/net/ethernet/chelsio/inline_crypto/
4768
4769 CXGB4 ETHERNET DRIVER (CXGB4)
4770 M:      Raju Rangoju <[email protected]>
4771 L:      [email protected]
4772 S:      Supported
4773 W:      http://www.chelsio.com
4774 F:      drivers/net/ethernet/chelsio/cxgb4/
4775
4776 CXGB4 ISCSI DRIVER (CXGB4I)
4777 M:      Karen Xie <[email protected]>
4778 L:      [email protected]
4779 S:      Supported
4780 W:      http://www.chelsio.com
4781 F:      drivers/scsi/cxgbi/cxgb4i
4782
4783 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4784 M:      Potnuri Bharat Teja <[email protected]>
4785 L:      [email protected]
4786 S:      Supported
4787 W:      http://www.openfabrics.org
4788 F:      drivers/infiniband/hw/cxgb4/
4789 F:      include/uapi/rdma/cxgb4-abi.h
4790
4791 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4792 M:      Raju Rangoju <[email protected]>
4793 L:      [email protected]
4794 S:      Supported
4795 W:      http://www.chelsio.com
4796 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4797
4798 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4799 M:      Frederic Barrat <[email protected]>
4800 M:      Andrew Donnellan <[email protected]>
4801 L:      [email protected]
4802 S:      Supported
4803 F:      Documentation/ABI/testing/sysfs-class-cxl
4804 F:      Documentation/powerpc/cxl.rst
4805 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4806 F:      drivers/misc/cxl/
4807 F:      include/misc/cxl*
4808 F:      include/uapi/misc/cxl.h
4809
4810 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4811 M:      Manoj N. Kumar <[email protected]>
4812 M:      Matthew R. Ochs <[email protected]>
4813 M:      Uma Krishnan <[email protected]>
4814 L:      [email protected]
4815 S:      Supported
4816 F:      Documentation/powerpc/cxlflash.rst
4817 F:      drivers/scsi/cxlflash/
4818 F:      include/uapi/scsi/cxlflash_ioctl.h
4819
4820 CYBERPRO FB DRIVER
4821 M:      Russell King <[email protected]>
4822 L:      [email protected] (moderated for non-subscribers)
4823 S:      Maintained
4824 W:      http://www.armlinux.org.uk/
4825 F:      drivers/video/fbdev/cyber2000fb.*
4826
4827 CYCLADES ASYNC MUX DRIVER
4828 S:      Orphan
4829 W:      http://www.cyclades.com/
4830 F:      drivers/tty/cyclades.c
4831 F:      include/linux/cyclades.h
4832 F:      include/uapi/linux/cyclades.h
4833
4834 CYCLADES PC300 DRIVER
4835 S:      Orphan
4836 W:      http://www.cyclades.com/
4837 F:      drivers/net/wan/pc300*
4838
4839 CYPRESS_FIRMWARE MEDIA DRIVER
4840 M:      Antti Palosaari <[email protected]>
4841 L:      [email protected]
4842 S:      Maintained
4843 W:      https://linuxtv.org
4844 W:      http://palosaari.fi/linux/
4845 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4846 T:      git git://linuxtv.org/anttip/media_tree.git
4847 F:      drivers/media/common/cypress_firmware*
4848
4849 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4850 M:      Linus Walleij <[email protected]>
4851 L:      [email protected]
4852 S:      Maintained
4853 F:      drivers/input/touchscreen/cy8ctma140.c
4854
4855 CYTTSP TOUCHSCREEN DRIVER
4856 M:      Ferruh Yigit <[email protected]>
4857 L:      [email protected]
4858 S:      Supported
4859 F:      drivers/input/touchscreen/cyttsp*
4860 F:      include/linux/input/cyttsp.h
4861
4862 D-LINK DIR-685 TOUCHKEYS DRIVER
4863 M:      Linus Walleij <[email protected]>
4864 L:      [email protected]
4865 S:      Supported
4866 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4867
4868 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4869 M:      Joshua Kinard <[email protected]>
4870 S:      Maintained
4871 F:      drivers/rtc/rtc-ds1685.c
4872 F:      include/linux/rtc/ds1685.h
4873
4874 DAMA SLAVE for AX.25
4875 M:      Joerg Reuter <[email protected]>
4876 L:      [email protected]
4877 S:      Maintained
4878 W:      http://yaina.de/jreuter/
4879 W:      http://www.qsl.net/dl1bke/
4880 F:      net/ax25/af_ax25.c
4881 F:      net/ax25/ax25_dev.c
4882 F:      net/ax25/ax25_ds_*
4883 F:      net/ax25/ax25_in.c
4884 F:      net/ax25/ax25_out.c
4885 F:      net/ax25/ax25_timer.c
4886 F:      net/ax25/sysctl_net_ax25.c
4887
4888 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4889 L:      [email protected]
4890 S:      Orphan
4891 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
4892 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4893
4894 DC390/AM53C974 SCSI driver
4895 M:      Hannes Reinecke <[email protected]>
4896 L:      [email protected]
4897 S:      Maintained
4898 F:      drivers/scsi/am53c974.c
4899
4900 DC395x SCSI driver
4901 M:      Oliver Neukum <[email protected]>
4902 M:      Ali Akcaagac <[email protected]>
4903 M:      Jamie Lenehan <[email protected]>
4904 L:      [email protected]
4905 S:      Maintained
4906 W:      http://twibble.org/dist/dc395x/
4907 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4908 F:      Documentation/scsi/dc395x.rst
4909 F:      drivers/scsi/dc395x.*
4910
4911 DCCP PROTOCOL
4912 M:      Gerrit Renker <[email protected]>
4913 L:      [email protected]
4914 S:      Maintained
4915 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4916 F:      include/linux/dccp.h
4917 F:      include/linux/tfrc.h
4918 F:      include/uapi/linux/dccp.h
4919 F:      net/dccp/
4920
4921 DECnet NETWORK LAYER
4922 L:      [email protected]
4923 S:      Orphan
4924 W:      http://linux-decnet.sourceforge.net
4925 F:      Documentation/networking/decnet.rst
4926 F:      net/decnet/
4927
4928 DECSTATION PLATFORM SUPPORT
4929 M:      "Maciej W. Rozycki" <[email protected]>
4930 L:      [email protected]
4931 S:      Maintained
4932 W:      http://www.linux-mips.org/wiki/DECstation
4933 F:      arch/mips/dec/
4934 F:      arch/mips/include/asm/dec/
4935 F:      arch/mips/include/asm/mach-dec/
4936
4937 DEFXX FDDI NETWORK DRIVER
4938 M:      "Maciej W. Rozycki" <[email protected]>
4939 S:      Maintained
4940 F:      drivers/net/fddi/defxx.*
4941
4942 DEFZA FDDI NETWORK DRIVER
4943 M:      "Maciej W. Rozycki" <[email protected]>
4944 S:      Maintained
4945 F:      drivers/net/fddi/defza.*
4946
4947 DEINTERLACE DRIVERS FOR ALLWINNER H3
4948 M:      Jernej Skrabec <[email protected]>
4949 L:      [email protected]
4950 S:      Maintained
4951 T:      git git://linuxtv.org/media_tree.git
4952 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4953 F:      drivers/media/platform/sunxi/sun8i-di/
4954
4955 DELL LAPTOP DRIVER
4956 M:      Matthew Garrett <[email protected]>
4957 M:      Pali Rohár <[email protected]>
4958 L:      [email protected]
4959 S:      Maintained
4960 F:      drivers/platform/x86/dell-laptop.c
4961
4962 DELL LAPTOP FREEFALL DRIVER
4963 M:      Pali Rohár <[email protected]>
4964 S:      Maintained
4965 F:      drivers/platform/x86/dell-smo8800.c
4966
4967 DELL LAPTOP RBTN DRIVER
4968 M:      Pali Rohár <[email protected]>
4969 S:      Maintained
4970 F:      drivers/platform/x86/dell-rbtn.*
4971
4972 DELL LAPTOP SMM DRIVER
4973 M:      Pali Rohár <[email protected]>
4974 S:      Maintained
4975 F:      drivers/hwmon/dell-smm-hwmon.c
4976 F:      include/uapi/linux/i8k.h
4977
4978 DELL REMOTE BIOS UPDATE DRIVER
4979 M:      Stuart Hayes <[email protected]>
4980 L:      [email protected]
4981 S:      Maintained
4982 F:      drivers/platform/x86/dell_rbu.c
4983
4984 DELL SMBIOS DRIVER
4985 M:      Pali Rohár <[email protected]>
4986 M:      Mario Limonciello <[email protected]>
4987 L:      [email protected]
4988 S:      Maintained
4989 F:      drivers/platform/x86/dell-smbios.*
4990
4991 DELL SMBIOS SMM DRIVER
4992 M:      Mario Limonciello <[email protected]>
4993 L:      [email protected]
4994 S:      Maintained
4995 F:      drivers/platform/x86/dell-smbios-smm.c
4996
4997 DELL SMBIOS WMI DRIVER
4998 M:      Mario Limonciello <[email protected]>
4999 L:      [email protected]
5000 S:      Maintained
5001 F:      drivers/platform/x86/dell-smbios-wmi.c
5002 F:      tools/wmi/dell-smbios-example.c
5003
5004 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5005 M:      Stuart Hayes <[email protected]>
5006 L:      [email protected]
5007 S:      Maintained
5008 F:      Documentation/driver-api/dcdbas.rst
5009 F:      drivers/platform/x86/dcdbas.*
5010
5011 DELL WMI DESCRIPTOR DRIVER
5012 M:      Mario Limonciello <[email protected]>
5013 S:      Maintained
5014 F:      drivers/platform/x86/dell-wmi-descriptor.c
5015
5016 DELL WMI SYSMAN DRIVER
5017 M:      Divya Bharathi <[email protected]>
5018 M:      Mario Limonciello <[email protected]>
5019 M:      Prasanth Ksr <[email protected]>
5020 L:      [email protected]
5021 S:      Maintained
5022 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5023 F:      drivers/platform/x86/dell-wmi-sysman/
5024
5025 DELL WMI NOTIFICATIONS DRIVER
5026 M:      Matthew Garrett <[email protected]>
5027 M:      Pali Rohár <[email protected]>
5028 S:      Maintained
5029 F:      drivers/platform/x86/dell-wmi.c
5030
5031 DELTA ST MEDIA DRIVER
5032 M:      Hugues Fruchet <[email protected]>
5033 L:      [email protected]
5034 S:      Supported
5035 W:      https://linuxtv.org
5036 T:      git git://linuxtv.org/media_tree.git
5037 F:      drivers/media/platform/sti/delta
5038
5039 DENALI NAND DRIVER
5040 L:      [email protected]
5041 S:      Orphan
5042 F:      drivers/mtd/nand/raw/denali*
5043
5044 DESIGNWARE EDMA CORE IP DRIVER
5045 M:      Gustavo Pimentel <[email protected]>
5046 L:      [email protected]
5047 S:      Maintained
5048 F:      drivers/dma/dw-edma/
5049 F:      include/linux/dma/edma.h
5050
5051 DESIGNWARE USB2 DRD IP DRIVER
5052 M:      Minas Harutyunyan <[email protected]>
5053 L:      [email protected]
5054 S:      Maintained
5055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5056 F:      drivers/usb/dwc2/
5057
5058 DESIGNWARE USB3 DRD IP DRIVER
5059 M:      Felipe Balbi <[email protected]>
5060 L:      [email protected]
5061 S:      Maintained
5062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5063 F:      drivers/usb/dwc3/
5064
5065 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5066 M:      Andreas Klinger <[email protected]>
5067 L:      [email protected]
5068 S:      Maintained
5069 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5070 F:      drivers/iio/proximity/srf*.c
5071
5072 DEVICE COREDUMP (DEV_COREDUMP)
5073 M:      Johannes Berg <[email protected]>
5074 L:      [email protected]
5075 S:      Maintained
5076 F:      drivers/base/devcoredump.c
5077 F:      include/linux/devcoredump.h
5078
5079 DEVICE DEPENDENCY HELPER SCRIPT
5080 M:      Saravana Kannan <[email protected]>
5081 L:      [email protected]
5082 S:      Maintained
5083 F:      scripts/dev-needs.sh
5084
5085 DEVICE DIRECT ACCESS (DAX)
5086 M:      Dan Williams <[email protected]>
5087 M:      Vishal Verma <[email protected]>
5088 M:      Dave Jiang <[email protected]>
5089 L:      [email protected]
5090 S:      Supported
5091 F:      drivers/dax/
5092
5093 DEVICE FREQUENCY (DEVFREQ)
5094 M:      MyungJoo Ham <[email protected]>
5095 M:      Kyungmin Park <[email protected]>
5096 M:      Chanwoo Choi <[email protected]>
5097 L:      [email protected]
5098 S:      Maintained
5099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5100 F:      Documentation/devicetree/bindings/devfreq/
5101 F:      drivers/devfreq/
5102 F:      include/linux/devfreq.h
5103 F:      include/trace/events/devfreq.h
5104
5105 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5106 M:      Chanwoo Choi <[email protected]>
5107 L:      [email protected]
5108 S:      Supported
5109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5110 F:      Documentation/devicetree/bindings/devfreq/event/
5111 F:      drivers/devfreq/devfreq-event.c
5112 F:      drivers/devfreq/event/
5113 F:      include/dt-bindings/pmu/exynos_ppmu.h
5114 F:      include/linux/devfreq-event.h
5115
5116 DEVICE NUMBER REGISTRY
5117 M:      Torben Mathiasen <[email protected]>
5118 S:      Maintained
5119 W:      http://lanana.org/docs/device-list/index.html
5120
5121 DEVICE-MAPPER  (LVM)
5122 M:      Alasdair Kergon <[email protected]>
5123 M:      Mike Snitzer <[email protected]>
5124 M:      [email protected]
5125 L:      [email protected]
5126 S:      Maintained
5127 W:      http://sources.redhat.com/dm
5128 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5130 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5131 F:      Documentation/admin-guide/device-mapper/
5132 F:      drivers/md/Kconfig
5133 F:      drivers/md/Makefile
5134 F:      drivers/md/dm*
5135 F:      drivers/md/persistent-data/
5136 F:      include/linux/device-mapper.h
5137 F:      include/linux/dm-*.h
5138 F:      include/uapi/linux/dm-*.h
5139
5140 DEVLINK
5141 M:      Jiri Pirko <[email protected]>
5142 L:      [email protected]
5143 S:      Supported
5144 F:      Documentation/networking/devlink
5145 F:      include/net/devlink.h
5146 F:      include/uapi/linux/devlink.h
5147 F:      net/core/devlink.c
5148
5149 DIALOG SEMICONDUCTOR DRIVERS
5150 M:      Support Opensource <[email protected]>
5151 S:      Supported
5152 W:      http://www.dialog-semiconductor.com/products
5153 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5154 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5155 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5156 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5157 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5158 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5159 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5160 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5161 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5162 F:      Documentation/hwmon/da90??.rst
5163 F:      drivers/gpio/gpio-da90??.c
5164 F:      drivers/hwmon/da90??-hwmon.c
5165 F:      drivers/iio/adc/da91??-*.c
5166 F:      drivers/input/misc/da72??.[ch]
5167 F:      drivers/input/misc/da90??_onkey.c
5168 F:      drivers/input/touchscreen/da9052_tsi.c
5169 F:      drivers/leds/leds-da90??.c
5170 F:      drivers/mfd/da903x.c
5171 F:      drivers/mfd/da90??-*.c
5172 F:      drivers/mfd/da91??-*.c
5173 F:      drivers/pinctrl/pinctrl-da90??.c
5174 F:      drivers/power/supply/da9052-battery.c
5175 F:      drivers/power/supply/da91??-*.c
5176 F:      drivers/regulator/da9???-regulator.[ch]
5177 F:      drivers/regulator/slg51000-regulator.[ch]
5178 F:      drivers/rtc/rtc-da90??.c
5179 F:      drivers/thermal/da90??-thermal.c
5180 F:      drivers/video/backlight/da90??_bl.c
5181 F:      drivers/watchdog/da90??_wdt.c
5182 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5183 F:      include/linux/mfd/da903x.h
5184 F:      include/linux/mfd/da9052/
5185 F:      include/linux/mfd/da9055/
5186 F:      include/linux/mfd/da9062/
5187 F:      include/linux/mfd/da9063/
5188 F:      include/linux/mfd/da9150/
5189 F:      include/linux/regulator/da9211.h
5190 F:      include/sound/da[79]*.h
5191 F:      sound/soc/codecs/da[79]*.[ch]
5192
5193 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5194 M:      William Breathitt Gray <[email protected]>
5195 L:      [email protected]
5196 S:      Maintained
5197 F:      drivers/gpio/gpio-gpio-mm.c
5198
5199 DIOLAN U2C-12 I2C DRIVER
5200 M:      Guenter Roeck <[email protected]>
5201 L:      [email protected]
5202 S:      Maintained
5203 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5204
5205 DIRECTORY NOTIFICATION (DNOTIFY)
5206 M:      Jan Kara <[email protected]>
5207 R:      Amir Goldstein <[email protected]>
5208 L:      [email protected]
5209 S:      Maintained
5210 F:      Documentation/filesystems/dnotify.rst
5211 F:      fs/notify/dnotify/
5212 F:      include/linux/dnotify.h
5213
5214 DISK GEOMETRY AND PARTITION HANDLING
5215 M:      Andries Brouwer <[email protected]>
5216 S:      Maintained
5217 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5218 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5219 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5220
5221 DISKQUOTA
5222 M:      Jan Kara <[email protected]>
5223 S:      Maintained
5224 F:      Documentation/filesystems/quota.rst
5225 F:      fs/quota/
5226 F:      include/linux/quota*.h
5227 F:      include/uapi/linux/quota*.h
5228
5229 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5230 M:      Bernie Thompson <[email protected]>
5231 L:      [email protected]
5232 S:      Maintained
5233 W:      http://plugable.com/category/projects/udlfb/
5234 F:      Documentation/fb/udlfb.rst
5235 F:      drivers/video/fbdev/udlfb.c
5236 F:      include/video/udlfb.h
5237
5238 DISTRIBUTED LOCK MANAGER (DLM)
5239 M:      Christine Caulfield <[email protected]>
5240 M:      David Teigland <[email protected]>
5241 L:      [email protected]
5242 S:      Supported
5243 W:      http://sources.redhat.com/cluster/
5244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5245 F:      fs/dlm/
5246
5247 DMA BUFFER SHARING FRAMEWORK
5248 M:      Sumit Semwal <[email protected]>
5249 M:      Christian König <[email protected]>
5250 L:      [email protected]
5251 L:      [email protected]
5252 L:      [email protected] (moderated for non-subscribers)
5253 S:      Maintained
5254 T:      git git://anongit.freedesktop.org/drm/drm-misc
5255 F:      Documentation/driver-api/dma-buf.rst
5256 F:      drivers/dma-buf/
5257 F:      include/linux/*fence.h
5258 F:      include/linux/dma-buf*
5259 F:      include/linux/dma-resv.h
5260 K:      \bdma_(?:buf|fence|resv)\b
5261
5262 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5263 M:      Vinod Koul <[email protected]>
5264 L:      [email protected]
5265 S:      Maintained
5266 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5268 F:      Documentation/devicetree/bindings/dma/
5269 F:      Documentation/driver-api/dmaengine/
5270 F:      drivers/dma/
5271 F:      include/linux/dmaengine.h
5272 F:      include/linux/of_dma.h
5273
5274 DMA MAPPING HELPERS
5275 M:      Christoph Hellwig <[email protected]>
5276 M:      Marek Szyprowski <[email protected]>
5277 R:      Robin Murphy <[email protected]>
5278 L:      [email protected]
5279 S:      Supported
5280 W:      http://git.infradead.org/users/hch/dma-mapping.git
5281 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5282 F:      include/asm-generic/dma-mapping.h
5283 F:      include/linux/dma-direct.h
5284 F:      include/linux/dma-mapping.h
5285 F:      include/linux/dma-map-ops.h
5286 F:      kernel/dma/
5287
5288 DMA-BUF HEAPS FRAMEWORK
5289 M:      Sumit Semwal <[email protected]>
5290 R:      Benjamin Gaignard <[email protected]>
5291 R:      Liam Mark <[email protected]>
5292 R:      Laura Abbott <[email protected]>
5293 R:      Brian Starkey <[email protected]>
5294 R:      John Stultz <[email protected]>
5295 L:      [email protected]
5296 L:      [email protected]
5297 L:      [email protected] (moderated for non-subscribers)
5298 S:      Maintained
5299 T:      git git://anongit.freedesktop.org/drm/drm-misc
5300 F:      drivers/dma-buf/dma-heap.c
5301 F:      drivers/dma-buf/heaps/*
5302 F:      include/linux/dma-heap.h
5303 F:      include/uapi/linux/dma-heap.h
5304
5305 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5306 M:      Lukasz Luba <[email protected]>
5307 L:      [email protected]
5308 L:      [email protected]
5309 S:      Maintained
5310 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5311 F:      drivers/memory/samsung/exynos5422-dmc.c
5312
5313 DME1737 HARDWARE MONITOR DRIVER
5314 M:      Juerg Haefliger <[email protected]>
5315 L:      [email protected]
5316 S:      Maintained
5317 F:      Documentation/hwmon/dme1737.rst
5318 F:      drivers/hwmon/dme1737.c
5319
5320 DMI/SMBIOS SUPPORT
5321 M:      Jean Delvare <[email protected]>
5322 S:      Maintained
5323 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5324 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5325 F:      drivers/firmware/dmi-id.c
5326 F:      drivers/firmware/dmi_scan.c
5327 F:      include/linux/dmi.h
5328
5329 DOCUMENTATION
5330 M:      Jonathan Corbet <[email protected]>
5331 L:      [email protected]
5332 S:      Maintained
5333 P:      Documentation/doc-guide/maintainer-profile.rst
5334 T:      git git://git.lwn.net/linux.git docs-next
5335 F:      Documentation/
5336 F:      scripts/documentation-file-ref-check
5337 F:      scripts/kernel-doc
5338 F:      scripts/sphinx-pre-install
5339 X:      Documentation/ABI/
5340 X:      Documentation/admin-guide/media/
5341 X:      Documentation/devicetree/
5342 X:      Documentation/driver-api/media/
5343 X:      Documentation/firmware-guide/acpi/
5344 X:      Documentation/i2c/
5345 X:      Documentation/power/
5346 X:      Documentation/spi/
5347 X:      Documentation/userspace-api/media/
5348
5349 DOCUMENTATION SCRIPTS
5350 M:      Mauro Carvalho Chehab <[email protected]>
5351 L:      [email protected]
5352 S:      Maintained
5353 F:      Documentation/sphinx/parse-headers.pl
5354 F:      scripts/documentation-file-ref-check
5355 F:      scripts/sphinx-pre-install
5356
5357 DOCUMENTATION/ITALIAN
5358 M:      Federico Vaga <[email protected]>
5359 L:      [email protected]
5360 S:      Maintained
5361 F:      Documentation/translations/it_IT
5362
5363 DONGWOON DW9714 LENS VOICE COIL DRIVER
5364 M:      Sakari Ailus <[email protected]>
5365 L:      [email protected]
5366 S:      Maintained
5367 T:      git git://linuxtv.org/media_tree.git
5368 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5369 F:      drivers/media/i2c/dw9714.c
5370
5371 DONGWOON DW9768 LENS VOICE COIL DRIVER
5372 M:      Dongchun Zhu <[email protected]>
5373 L:      [email protected]
5374 S:      Maintained
5375 T:      git git://linuxtv.org/media_tree.git
5376 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5377 F:      drivers/media/i2c/dw9768.c
5378
5379 DONGWOON DW9807 LENS VOICE COIL DRIVER
5380 M:      Sakari Ailus <[email protected]>
5381 L:      [email protected]
5382 S:      Maintained
5383 T:      git git://linuxtv.org/media_tree.git
5384 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5385 F:      drivers/media/i2c/dw9807-vcm.c
5386
5387 DOUBLETALK DRIVER
5388 M:      "James R. Van Zandt" <[email protected]>
5389 L:      [email protected]
5390 S:      Maintained
5391 F:      drivers/char/dtlk.c
5392 F:      include/linux/dtlk.h
5393
5394 DPAA2 DATAPATH I/O (DPIO) DRIVER
5395 M:      Roy Pledge <[email protected]>
5396 L:      [email protected]
5397 S:      Maintained
5398 F:      drivers/soc/fsl/dpio
5399
5400 DPAA2 ETHERNET DRIVER
5401 M:      Ioana Ciornei <[email protected]>
5402 M:      Ioana Radulescu <[email protected]>
5403 L:      [email protected]
5404 S:      Maintained
5405 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5406 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5407 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5408 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5409 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5410 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5411 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5412 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5413 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5414
5415 DPAA2 ETHERNET SWITCH DRIVER
5416 M:      Ioana Radulescu <[email protected]>
5417 M:      Ioana Ciornei <[email protected]>
5418 L:      [email protected]
5419 S:      Maintained
5420 F:      drivers/staging/fsl-dpaa2/ethsw
5421
5422 DPT_I2O SCSI RAID DRIVER
5423 M:      Adaptec OEM Raid Solutions <[email protected]>
5424 L:      [email protected]
5425 S:      Maintained
5426 W:      http://www.adaptec.com/
5427 F:      drivers/scsi/dpt*
5428 F:      drivers/scsi/dpt/
5429
5430 DRBD DRIVER
5431 M:      Philipp Reisner <[email protected]>
5432 M:      Lars Ellenberg <[email protected]>
5433 L:      [email protected]
5434 S:      Supported
5435 W:      http://www.drbd.org
5436 T:      git git://git.linbit.com/linux-drbd.git
5437 T:      git git://git.linbit.com/drbd-8.4.git
5438 F:      Documentation/admin-guide/blockdev/
5439 F:      drivers/block/drbd/
5440 F:      lib/lru_cache.c
5441
5442 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5443 M:      Greg Kroah-Hartman <[email protected]>
5444 R:      "Rafael J. Wysocki" <[email protected]>
5445 S:      Supported
5446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5447 F:      Documentation/core-api/kobject.rst
5448 F:      drivers/base/
5449 F:      fs/debugfs/
5450 F:      fs/sysfs/
5451 F:      include/linux/debugfs.h
5452 F:      include/linux/kobj*
5453 F:      lib/kobj*
5454
5455 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5456 M:      Nishanth Menon <[email protected]>
5457 L:      [email protected]
5458 S:      Maintained
5459 F:      drivers/soc/ti/smartreflex.c
5460 F:      include/linux/power/smartreflex.h
5461
5462 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5463 M:      Maxime Ripard <[email protected]>
5464 M:      Chen-Yu Tsai <[email protected]>
5465 R:      Jernej Skrabec <[email protected]>
5466 L:      [email protected]
5467 S:      Supported
5468 T:      git git://anongit.freedesktop.org/drm/drm-misc
5469 F:      drivers/gpu/drm/sun4i/sun8i*
5470
5471 DRM DRIVER FOR ARM PL111 CLCD
5472 M:      Eric Anholt <[email protected]>
5473 S:      Supported
5474 T:      git git://anongit.freedesktop.org/drm/drm-misc
5475 F:      drivers/gpu/drm/pl111/
5476
5477 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5478 M:      Linus Walleij <[email protected]>
5479 S:      Maintained
5480 T:      git git://anongit.freedesktop.org/drm/drm-misc
5481 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5482 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5483
5484 DRM DRIVER FOR ASPEED BMC GFX
5485 M:      Joel Stanley <[email protected]>
5486 L:      [email protected] (moderated for non-subscribers)
5487 S:      Supported
5488 T:      git git://anongit.freedesktop.org/drm/drm-misc
5489 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5490 F:      drivers/gpu/drm/aspeed/
5491
5492 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5493 M:      Dave Airlie <[email protected]>
5494 R:      Thomas Zimmermann <[email protected]>
5495 L:      [email protected]
5496 S:      Supported
5497 T:      git git://anongit.freedesktop.org/drm/drm-misc
5498 F:      drivers/gpu/drm/ast/
5499
5500 DRM DRIVER FOR BOCHS VIRTUAL GPU
5501 M:      Gerd Hoffmann <[email protected]>
5502 L:      [email protected]
5503 S:      Maintained
5504 T:      git git://anongit.freedesktop.org/drm/drm-misc
5505 F:      drivers/gpu/drm/bochs/
5506
5507 DRM DRIVER FOR BOE HIMAX8279D PANELS
5508 M:      Jerry Han <[email protected]>
5509 S:      Maintained
5510 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5511 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5512
5513 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5514 M:      Linus Walleij <[email protected]>
5515 S:      Maintained
5516 T:      git git://anongit.freedesktop.org/drm/drm-misc
5517 F:      drivers/gpu/drm/tve200/
5518
5519 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5520 M:      Icenowy Zheng <[email protected]>
5521 S:      Maintained
5522 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5523 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5524
5525 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5526 M:      Jagan Teki <[email protected]>
5527 S:      Maintained
5528 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5529 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5530
5531 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5532 M:      Hans de Goede <[email protected]>
5533 S:      Maintained
5534 T:      git git://anongit.freedesktop.org/drm/drm-misc
5535 F:      drivers/gpu/drm/tiny/gm12u320.c
5536
5537 DRM DRIVER FOR HX8357D PANELS
5538 M:      Eric Anholt <[email protected]>
5539 S:      Maintained
5540 T:      git git://anongit.freedesktop.org/drm/drm-misc
5541 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5542 F:      drivers/gpu/drm/tiny/hx8357d.c
5543
5544 DRM DRIVER FOR ILITEK ILI9225 PANELS
5545 M:      David Lechner <[email protected]>
5546 S:      Maintained
5547 T:      git git://anongit.freedesktop.org/drm/drm-misc
5548 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5549 F:      drivers/gpu/drm/tiny/ili9225.c
5550
5551 DRM DRIVER FOR ILITEK ILI9486 PANELS
5552 M:      Kamlesh Gurudasani <[email protected]>
5553 S:      Maintained
5554 T:      git git://anongit.freedesktop.org/drm/drm-misc
5555 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5556 F:      drivers/gpu/drm/tiny/ili9486.c
5557
5558 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5559 S:      Orphan / Obsolete
5560 F:      drivers/gpu/drm/i810/
5561 F:      include/uapi/drm/i810_drm.h
5562
5563 DRM DRIVER FOR LVDS PANELS
5564 M:      Laurent Pinchart <[email protected]>
5565 L:      [email protected]
5566 T:      git git://anongit.freedesktop.org/drm/drm-misc
5567 S:      Maintained
5568 F:      drivers/gpu/drm/panel/panel-lvds.c
5569 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5570
5571 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5572 M:      Guido Günther <[email protected]>
5573 R:      Purism Kernel Team <[email protected]>
5574 S:      Maintained
5575 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5576 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5577
5578 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5579 S:      Orphan / Obsolete
5580 F:      drivers/gpu/drm/mga/
5581 F:      include/uapi/drm/mga_drm.h
5582
5583 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5584 M:      Dave Airlie <[email protected]>
5585 R:      Thomas Zimmermann <[email protected]>
5586 L:      [email protected]
5587 S:      Supported
5588 T:      git git://anongit.freedesktop.org/drm/drm-misc
5589 F:      drivers/gpu/drm/mgag200/
5590
5591 DRM DRIVER FOR MI0283QT
5592 M:      Noralf Trønnes <[email protected]>
5593 S:      Maintained
5594 T:      git git://anongit.freedesktop.org/drm/drm-misc
5595 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5596 F:      drivers/gpu/drm/tiny/mi0283qt.c
5597
5598 DRM DRIVER FOR MSM ADRENO GPU
5599 M:      Rob Clark <[email protected]>
5600 M:      Sean Paul <[email protected]>
5601 L:      [email protected]
5602 L:      [email protected]
5603 L:      [email protected]
5604 S:      Maintained
5605 T:      git https://gitlab.freedesktop.org/drm/msm.git
5606 F:      Documentation/devicetree/bindings/display/msm/
5607 F:      drivers/gpu/drm/msm/
5608 F:      include/uapi/drm/msm_drm.h
5609
5610 DRM DRIVER FOR NOVATEK NT35510 PANELS
5611 M:      Linus Walleij <[email protected]>
5612 S:      Maintained
5613 T:      git git://anongit.freedesktop.org/drm/drm-misc
5614 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5615 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5616
5617 DRM DRIVER FOR NOVATEK NT36672A PANELS
5618 M:      Sumit Semwal <[email protected]>
5619 S:      Maintained
5620 T:      git git://anongit.freedesktop.org/drm/drm-misc
5621 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5622 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5623
5624 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5625 M:      Ben Skeggs <[email protected]>
5626 L:      [email protected]
5627 L:      [email protected]
5628 S:      Supported
5629 T:      git git://github.com/skeggsb/linux
5630 F:      drivers/gpu/drm/nouveau/
5631 F:      include/uapi/drm/nouveau_drm.h
5632
5633 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5634 M:      Stefan Mavrodiev <[email protected]>
5635 S:      Maintained
5636 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5637 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5638
5639 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5640 M:      Noralf Trønnes <[email protected]>
5641 S:      Maintained
5642 T:      git git://anongit.freedesktop.org/drm/drm-misc
5643 F:      Documentation/devicetree/bindings/display/repaper.txt
5644 F:      drivers/gpu/drm/tiny/repaper.c
5645
5646 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5647 M:      Dave Airlie <[email protected]>
5648 M:      Gerd Hoffmann <[email protected]>
5649 L:      [email protected]
5650 S:      Obsolete
5651 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5652 T:      git git://anongit.freedesktop.org/drm/drm-misc
5653 F:      drivers/gpu/drm/tiny/cirrus.c
5654
5655 DRM DRIVER FOR QXL VIRTUAL GPU
5656 M:      Dave Airlie <[email protected]>
5657 M:      Gerd Hoffmann <[email protected]>
5658 L:      [email protected]
5659 L:      [email protected]
5660 S:      Maintained
5661 T:      git git://anongit.freedesktop.org/drm/drm-misc
5662 F:      drivers/gpu/drm/qxl/
5663 F:      include/uapi/drm/qxl_drm.h
5664
5665 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5666 S:      Orphan / Obsolete
5667 F:      drivers/gpu/drm/r128/
5668 F:      include/uapi/drm/r128_drm.h
5669
5670 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5671 M:      Robert Chiras <[email protected]>
5672 S:      Maintained
5673 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5674 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5675
5676 DRM DRIVER FOR SITRONIX ST7703 PANELS
5677 M:      Guido Günther <[email protected]>
5678 R:      Purism Kernel Team <[email protected]>
5679 R:      Ondrej Jirman <[email protected]>
5680 S:      Maintained
5681 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5682 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5683
5684 DRM DRIVER FOR SAVAGE VIDEO CARDS
5685 S:      Orphan / Obsolete
5686 F:      drivers/gpu/drm/savage/
5687 F:      include/uapi/drm/savage_drm.h
5688
5689 DRM DRIVER FOR SIS VIDEO CARDS
5690 S:      Orphan / Obsolete
5691 F:      drivers/gpu/drm/sis/
5692 F:      include/uapi/drm/sis_drm.h
5693
5694 DRM DRIVER FOR SITRONIX ST7586 PANELS
5695 M:      David Lechner <[email protected]>
5696 S:      Maintained
5697 T:      git git://anongit.freedesktop.org/drm/drm-misc
5698 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5699 F:      drivers/gpu/drm/tiny/st7586.c
5700
5701 DRM DRIVER FOR SITRONIX ST7701 PANELS
5702 M:      Jagan Teki <[email protected]>
5703 S:      Maintained
5704 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5705 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5706
5707 DRM DRIVER FOR SITRONIX ST7735R PANELS
5708 M:      David Lechner <[email protected]>
5709 S:      Maintained
5710 T:      git git://anongit.freedesktop.org/drm/drm-misc
5711 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5712 F:      drivers/gpu/drm/tiny/st7735r.c
5713
5714 DRM DRIVER FOR SONY ACX424AKP PANELS
5715 M:      Linus Walleij <[email protected]>
5716 S:      Maintained
5717 T:      git git://anongit.freedesktop.org/drm/drm-misc
5718 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5719
5720 DRM DRIVER FOR ST-ERICSSON MCDE
5721 M:      Linus Walleij <[email protected]>
5722 S:      Maintained
5723 T:      git git://anongit.freedesktop.org/drm/drm-misc
5724 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5725 F:      drivers/gpu/drm/mcde/
5726
5727 DRM DRIVER FOR TDFX VIDEO CARDS
5728 S:      Orphan / Obsolete
5729 F:      drivers/gpu/drm/tdfx/
5730
5731 DRM DRIVER FOR TPO TPG110 PANELS
5732 M:      Linus Walleij <[email protected]>
5733 S:      Maintained
5734 T:      git git://anongit.freedesktop.org/drm/drm-misc
5735 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5736 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5737
5738 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5739 M:      Dave Airlie <[email protected]>
5740 R:      Sean Paul <[email protected]>
5741 R:      Thomas Zimmermann <[email protected]>
5742 L:      [email protected]
5743 S:      Supported
5744 T:      git git://anongit.freedesktop.org/drm/drm-misc
5745 F:      drivers/gpu/drm/udl/
5746
5747 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5748 M:      Rodrigo Siqueira <[email protected]>
5749 M:      Melissa Wen <[email protected]>
5750 R:      Haneen Mohammed <[email protected]>
5751 R:      Daniel Vetter <[email protected]>
5752 L:      [email protected]
5753 S:      Maintained
5754 T:      git git://anongit.freedesktop.org/drm/drm-misc
5755 F:      Documentation/gpu/vkms.rst
5756 F:      drivers/gpu/drm/vkms/
5757
5758 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5759 M:      Hans de Goede <[email protected]>
5760 L:      [email protected]
5761 S:      Maintained
5762 T:      git git://anongit.freedesktop.org/drm/drm-misc
5763 F:      drivers/gpu/drm/vboxvideo/
5764
5765 DRM DRIVER FOR VMWARE VIRTUAL GPU
5766 M:      "VMware Graphics" <[email protected]>
5767 M:      Roland Scheidegger <[email protected]>
5768 L:      [email protected]
5769 S:      Supported
5770 T:      git git://people.freedesktop.org/~sroland/linux
5771 F:      drivers/gpu/drm/vmwgfx/
5772 F:      include/uapi/drm/vmwgfx_drm.h
5773
5774 DRM DRIVERS
5775 M:      David Airlie <[email protected]>
5776 M:      Daniel Vetter <[email protected]>
5777 L:      [email protected]
5778 S:      Maintained
5779 B:      https://bugs.freedesktop.org/
5780 C:      irc://chat.freenode.net/dri-devel
5781 T:      git git://anongit.freedesktop.org/drm/drm
5782 F:      Documentation/devicetree/bindings/display/
5783 F:      Documentation/devicetree/bindings/gpu/
5784 F:      Documentation/gpu/
5785 F:      drivers/gpu/drm/
5786 F:      drivers/gpu/vga/
5787 F:      include/drm/
5788 F:      include/linux/vga*
5789 F:      include/uapi/drm/
5790
5791 DRM DRIVERS AND MISC GPU PATCHES
5792 M:      Maarten Lankhorst <[email protected]>
5793 M:      Maxime Ripard <[email protected]>
5794 M:      Thomas Zimmermann <[email protected]>
5795 S:      Maintained
5796 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5797 T:      git git://anongit.freedesktop.org/drm/drm-misc
5798 F:      Documentation/gpu/
5799 F:      drivers/gpu/drm/*
5800 F:      drivers/gpu/vga/
5801 F:      include/drm/drm*
5802 F:      include/linux/vga*
5803 F:      include/uapi/drm/drm*
5804
5805 DRM DRIVERS FOR ALLWINNER A10
5806 M:      Maxime Ripard <[email protected]>
5807 M:      Chen-Yu Tsai <[email protected]>
5808 L:      [email protected]
5809 S:      Supported
5810 T:      git git://anongit.freedesktop.org/drm/drm-misc
5811 F:      Documentation/devicetree/bindings/display/allwinner*
5812 F:      drivers/gpu/drm/sun4i/
5813
5814 DRM DRIVERS FOR AMLOGIC SOCS
5815 M:      Neil Armstrong <[email protected]>
5816 L:      [email protected]
5817 L:      [email protected]
5818 S:      Supported
5819 W:      http://linux-meson.com/
5820 T:      git git://anongit.freedesktop.org/drm/drm-misc
5821 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5822 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5823 F:      Documentation/gpu/meson.rst
5824 F:      drivers/gpu/drm/meson/
5825
5826 DRM DRIVERS FOR ATMEL HLCDC
5827 M:      Sam Ravnborg <[email protected]>
5828 M:      Boris Brezillon <[email protected]>
5829 L:      [email protected]
5830 S:      Supported
5831 T:      git git://anongit.freedesktop.org/drm/drm-misc
5832 F:      Documentation/devicetree/bindings/display/atmel/
5833 F:      drivers/gpu/drm/atmel-hlcdc/
5834
5835 DRM DRIVERS FOR BRIDGE CHIPS
5836 M:      Andrzej Hajda <[email protected]>
5837 M:      Neil Armstrong <[email protected]>
5838 R:      Laurent Pinchart <[email protected]>
5839 R:      Jonas Karlman <[email protected]>
5840 R:      Jernej Skrabec <[email protected]>
5841 S:      Maintained
5842 T:      git git://anongit.freedesktop.org/drm/drm-misc
5843 F:      drivers/gpu/drm/bridge/
5844
5845 DRM DRIVERS FOR EXYNOS
5846 M:      Inki Dae <[email protected]>
5847 M:      Joonyoung Shim <[email protected]>
5848 M:      Seung-Woo Kim <[email protected]>
5849 M:      Kyungmin Park <[email protected]>
5850 L:      [email protected]
5851 S:      Supported
5852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5853 F:      Documentation/devicetree/bindings/display/exynos/
5854 F:      drivers/gpu/drm/exynos/
5855 F:      include/uapi/drm/exynos_drm.h
5856
5857 DRM DRIVERS FOR FREESCALE DCU
5858 M:      Stefan Agner <[email protected]>
5859 M:      Alison Wang <[email protected]>
5860 L:      [email protected]
5861 S:      Supported
5862 T:      git git://anongit.freedesktop.org/drm/drm-misc
5863 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5864 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5865 F:      drivers/gpu/drm/fsl-dcu/
5866
5867 DRM DRIVERS FOR FREESCALE IMX
5868 M:      Philipp Zabel <[email protected]>
5869 L:      [email protected]
5870 S:      Maintained
5871 F:      Documentation/devicetree/bindings/display/imx/
5872 F:      drivers/gpu/drm/imx/
5873 F:      drivers/gpu/ipu-v3/
5874
5875 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5876 M:      Patrik Jakobsson <[email protected]>
5877 L:      [email protected]
5878 S:      Maintained
5879 T:      git git://github.com/patjak/drm-gma500
5880 F:      drivers/gpu/drm/gma500/
5881
5882 DRM DRIVERS FOR HISILICON
5883 M:      Xinliang Liu <[email protected]>
5884 M:      Tian Tao  <[email protected]>
5885 R:      John Stultz <[email protected]>
5886 R:      Xinwei Kong <[email protected]>
5887 R:      Chen Feng <[email protected]>
5888 L:      [email protected]
5889 S:      Maintained
5890 T:      git git://anongit.freedesktop.org/drm/drm-misc
5891 F:      Documentation/devicetree/bindings/display/hisilicon/
5892 F:      drivers/gpu/drm/hisilicon/
5893
5894 DRM DRIVERS FOR LIMA
5895 M:      Qiang Yu <[email protected]>
5896 L:      [email protected]
5897 L:      [email protected] (moderated for non-subscribers)
5898 S:      Maintained
5899 T:      git git://anongit.freedesktop.org/drm/drm-misc
5900 F:      drivers/gpu/drm/lima/
5901 F:      include/uapi/drm/lima_drm.h
5902
5903 DRM DRIVERS FOR MEDIATEK
5904 M:      Chun-Kuang Hu <[email protected]>
5905 M:      Philipp Zabel <[email protected]>
5906 L:      [email protected]
5907 S:      Supported
5908 F:      Documentation/devicetree/bindings/display/mediatek/
5909 F:      drivers/gpu/drm/mediatek/
5910 F:      drivers/phy/mediatek/phy-mtk-hdmi*
5911 F:      drivers/phy/mediatek/phy-mtk-mipi*
5912
5913 DRM DRIVERS FOR NVIDIA TEGRA
5914 M:      Thierry Reding <[email protected]>
5915 L:      [email protected]
5916 L:      [email protected]
5917 S:      Supported
5918 T:      git git://anongit.freedesktop.org/tegra/linux.git
5919 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5920 F:      drivers/gpu/drm/tegra/
5921 F:      drivers/gpu/host1x/
5922 F:      include/linux/host1x.h
5923 F:      include/uapi/drm/tegra_drm.h
5924
5925 DRM DRIVERS FOR RENESAS
5926 M:      Laurent Pinchart <[email protected]>
5927 M:      Kieran Bingham <[email protected]>
5928 L:      [email protected]
5929 L:      [email protected]
5930 S:      Supported
5931 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5932 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5933 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
5934 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5935 F:      drivers/gpu/drm/rcar-du/
5936 F:      drivers/gpu/drm/shmobile/
5937 F:      include/linux/platform_data/shmob_drm.h
5938
5939 DRM DRIVERS FOR ROCKCHIP
5940 M:      Sandy Huang <[email protected]>
5941 M:      Heiko Stübner <[email protected]>
5942 L:      [email protected]
5943 S:      Maintained
5944 T:      git git://anongit.freedesktop.org/drm/drm-misc
5945 F:      Documentation/devicetree/bindings/display/rockchip/
5946 F:      drivers/gpu/drm/rockchip/
5947
5948 DRM DRIVERS FOR STI
5949 M:      Benjamin Gaignard <[email protected]>
5950 M:      Vincent Abriou <[email protected]>
5951 L:      [email protected]
5952 S:      Maintained
5953 T:      git git://anongit.freedesktop.org/drm/drm-misc
5954 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5955 F:      drivers/gpu/drm/sti
5956
5957 DRM DRIVERS FOR STM
5958 M:      Yannick Fertre <[email protected]>
5959 M:      Philippe Cornu <[email protected]>
5960 M:      Benjamin Gaignard <[email protected]>
5961 M:      Vincent Abriou <[email protected]>
5962 L:      [email protected]
5963 S:      Maintained
5964 T:      git git://anongit.freedesktop.org/drm/drm-misc
5965 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5966 F:      drivers/gpu/drm/stm
5967
5968 DRM DRIVERS FOR TI KEYSTONE
5969 M:      Jyri Sarha <[email protected]>
5970 M:      Tomi Valkeinen <[email protected]>
5971 L:      [email protected]
5972 S:      Maintained
5973 T:      git git://anongit.freedesktop.org/drm/drm-misc
5974 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5975 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5976 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5977 F:      drivers/gpu/drm/tidss/
5978
5979 DRM DRIVERS FOR TI LCDC
5980 M:      Jyri Sarha <[email protected]>
5981 R:      Tomi Valkeinen <[email protected]>
5982 L:      [email protected]
5983 S:      Maintained
5984 F:      Documentation/devicetree/bindings/display/tilcdc/
5985 F:      drivers/gpu/drm/tilcdc/
5986
5987 DRM DRIVERS FOR TI OMAP
5988 M:      Tomi Valkeinen <[email protected]>
5989 L:      [email protected]
5990 S:      Maintained
5991 F:      Documentation/devicetree/bindings/display/ti/
5992 F:      drivers/gpu/drm/omapdrm/
5993
5994 DRM DRIVERS FOR V3D
5995 M:      Eric Anholt <[email protected]>
5996 S:      Supported
5997 T:      git git://anongit.freedesktop.org/drm/drm-misc
5998 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5999 F:      drivers/gpu/drm/v3d/
6000 F:      include/uapi/drm/v3d_drm.h
6001
6002 DRM DRIVERS FOR VC4
6003 M:      Eric Anholt <[email protected]>
6004 M:      Maxime Ripard <[email protected]>
6005 S:      Supported
6006 T:      git git://github.com/anholt/linux
6007 T:      git git://anongit.freedesktop.org/drm/drm-misc
6008 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6009 F:      drivers/gpu/drm/vc4/
6010 F:      include/uapi/drm/vc4_drm.h
6011
6012 DRM DRIVERS FOR VIVANTE GPU IP
6013 M:      Lucas Stach <[email protected]>
6014 R:      Russell King <[email protected]>
6015 R:      Christian Gmeiner <[email protected]>
6016 L:      [email protected] (moderated for non-subscribers)
6017 L:      [email protected]
6018 S:      Maintained
6019 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6020 F:      drivers/gpu/drm/etnaviv/
6021 F:      include/uapi/drm/etnaviv_drm.h
6022
6023 DRM DRIVERS FOR XEN
6024 M:      Oleksandr Andrushchenko <[email protected]>
6025 L:      [email protected]
6026 L:      [email protected] (moderated for non-subscribers)
6027 S:      Supported
6028 T:      git git://anongit.freedesktop.org/drm/drm-misc
6029 F:      Documentation/gpu/xen-front.rst
6030 F:      drivers/gpu/drm/xen/
6031
6032 DRM DRIVERS FOR XILINX
6033 M:      Hyun Kwon <[email protected]>
6034 M:      Laurent Pinchart <[email protected]>
6035 L:      [email protected]
6036 S:      Maintained
6037 T:      git git://anongit.freedesktop.org/drm/drm-misc
6038 F:      Documentation/devicetree/bindings/display/xlnx/
6039 F:      drivers/gpu/drm/xlnx/
6040
6041 DRM DRIVERS FOR ZTE ZX
6042 M:      Shawn Guo <[email protected]>
6043 L:      [email protected]
6044 S:      Maintained
6045 T:      git git://anongit.freedesktop.org/drm/drm-misc
6046 F:      Documentation/devicetree/bindings/display/zte,vou.txt
6047 F:      drivers/gpu/drm/zte/
6048
6049 DRM PANEL DRIVERS
6050 M:      Thierry Reding <[email protected]>
6051 R:      Sam Ravnborg <[email protected]>
6052 L:      [email protected]
6053 S:      Maintained
6054 T:      git git://anongit.freedesktop.org/drm/drm-misc
6055 F:      Documentation/devicetree/bindings/display/panel/
6056 F:      drivers/gpu/drm/drm_panel.c
6057 F:      drivers/gpu/drm/panel/
6058 F:      include/drm/drm_panel.h
6059
6060 DRM TTM SUBSYSTEM
6061 M:      Christian Koenig <[email protected]>
6062 M:      Huang Rui <[email protected]>
6063 L:      [email protected]
6064 S:      Maintained
6065 T:      git git://people.freedesktop.org/~agd5f/linux
6066 F:      drivers/gpu/drm/ttm/
6067 F:      include/drm/ttm/
6068
6069 DSBR100 USB FM RADIO DRIVER
6070 M:      Alexey Klimov <[email protected]>
6071 L:      [email protected]
6072 S:      Maintained
6073 T:      git git://linuxtv.org/media_tree.git
6074 F:      drivers/media/radio/dsbr100.c
6075
6076 DT3155 MEDIA DRIVER
6077 M:      Hans Verkuil <[email protected]>
6078 L:      [email protected]
6079 S:      Odd Fixes
6080 W:      https://linuxtv.org
6081 T:      git git://linuxtv.org/media_tree.git
6082 F:      drivers/media/pci/dt3155/
6083
6084 DVB_USB_AF9015 MEDIA DRIVER
6085 M:      Antti Palosaari <[email protected]>
6086 L:      [email protected]
6087 S:      Maintained
6088 W:      https://linuxtv.org
6089 W:      http://palosaari.fi/linux/
6090 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6091 T:      git git://linuxtv.org/anttip/media_tree.git
6092 F:      drivers/media/usb/dvb-usb-v2/af9015*
6093
6094 DVB_USB_AF9035 MEDIA DRIVER
6095 M:      Antti Palosaari <[email protected]>
6096 L:      [email protected]
6097 S:      Maintained
6098 W:      https://linuxtv.org
6099 W:      http://palosaari.fi/linux/
6100 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6101 T:      git git://linuxtv.org/anttip/media_tree.git
6102 F:      drivers/media/usb/dvb-usb-v2/af9035*
6103
6104 DVB_USB_ANYSEE MEDIA DRIVER
6105 M:      Antti Palosaari <[email protected]>
6106 L:      [email protected]
6107 S:      Maintained
6108 W:      https://linuxtv.org
6109 W:      http://palosaari.fi/linux/
6110 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6111 T:      git git://linuxtv.org/anttip/media_tree.git
6112 F:      drivers/media/usb/dvb-usb-v2/anysee*
6113
6114 DVB_USB_AU6610 MEDIA DRIVER
6115 M:      Antti Palosaari <[email protected]>
6116 L:      [email protected]
6117 S:      Maintained
6118 W:      https://linuxtv.org
6119 W:      http://palosaari.fi/linux/
6120 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6121 T:      git git://linuxtv.org/anttip/media_tree.git
6122 F:      drivers/media/usb/dvb-usb-v2/au6610*
6123
6124 DVB_USB_CE6230 MEDIA DRIVER
6125 M:      Antti Palosaari <[email protected]>
6126 L:      [email protected]
6127 S:      Maintained
6128 W:      https://linuxtv.org
6129 W:      http://palosaari.fi/linux/
6130 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6131 T:      git git://linuxtv.org/anttip/media_tree.git
6132 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6133
6134 DVB_USB_CXUSB MEDIA DRIVER
6135 M:      Michael Krufky <[email protected]>
6136 L:      [email protected]
6137 S:      Maintained
6138 W:      https://linuxtv.org
6139 W:      http://github.com/mkrufky
6140 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6141 T:      git git://linuxtv.org/media_tree.git
6142 F:      drivers/media/usb/dvb-usb/cxusb*
6143
6144 DVB_USB_EC168 MEDIA DRIVER
6145 M:      Antti Palosaari <[email protected]>
6146 L:      [email protected]
6147 S:      Maintained
6148 W:      https://linuxtv.org
6149 W:      http://palosaari.fi/linux/
6150 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6151 T:      git git://linuxtv.org/anttip/media_tree.git
6152 F:      drivers/media/usb/dvb-usb-v2/ec168*
6153
6154 DVB_USB_GL861 MEDIA DRIVER
6155 M:      Antti Palosaari <[email protected]>
6156 L:      [email protected]
6157 S:      Maintained
6158 W:      https://linuxtv.org
6159 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6160 T:      git git://linuxtv.org/anttip/media_tree.git
6161 F:      drivers/media/usb/dvb-usb-v2/gl861*
6162
6163 DVB_USB_MXL111SF MEDIA DRIVER
6164 M:      Michael Krufky <[email protected]>
6165 L:      [email protected]
6166 S:      Maintained
6167 W:      https://linuxtv.org
6168 W:      http://github.com/mkrufky
6169 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6170 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6171 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6172
6173 DVB_USB_RTL28XXU MEDIA DRIVER
6174 M:      Antti Palosaari <[email protected]>
6175 L:      [email protected]
6176 S:      Maintained
6177 W:      https://linuxtv.org
6178 W:      http://palosaari.fi/linux/
6179 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6180 T:      git git://linuxtv.org/anttip/media_tree.git
6181 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6182
6183 DVB_USB_V2 MEDIA DRIVER
6184 M:      Antti Palosaari <[email protected]>
6185 L:      [email protected]
6186 S:      Maintained
6187 W:      https://linuxtv.org
6188 W:      http://palosaari.fi/linux/
6189 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6190 T:      git git://linuxtv.org/anttip/media_tree.git
6191 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6192 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6193
6194 DYNAMIC DEBUG
6195 M:      Jason Baron <[email protected]>
6196 S:      Maintained
6197 F:      include/linux/dynamic_debug.h
6198 F:      lib/dynamic_debug.c
6199
6200 DYNAMIC INTERRUPT MODERATION
6201 M:      Tal Gilboa <[email protected]>
6202 S:      Maintained
6203 F:      Documentation/networking/net_dim.rst
6204 F:      include/linux/dim.h
6205 F:      lib/dim/
6206
6207 DZ DECSTATION DZ11 SERIAL DRIVER
6208 M:      "Maciej W. Rozycki" <[email protected]>
6209 S:      Maintained
6210 F:      drivers/tty/serial/dz.*
6211
6212 E3X0 POWER BUTTON DRIVER
6213 M:      Moritz Fischer <[email protected]>
6214 L:      [email protected]
6215 S:      Supported
6216 W:      http://www.ettus.com
6217 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6218 F:      drivers/input/misc/e3x0-button.c
6219
6220 E4000 MEDIA DRIVER
6221 M:      Antti Palosaari <[email protected]>
6222 L:      [email protected]
6223 S:      Maintained
6224 W:      https://linuxtv.org
6225 W:      http://palosaari.fi/linux/
6226 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6227 T:      git git://linuxtv.org/anttip/media_tree.git
6228 F:      drivers/media/tuners/e4000*
6229
6230 EARTH_PT1 MEDIA DRIVER
6231 M:      Akihiro Tsukada <[email protected]>
6232 L:      [email protected]
6233 S:      Odd Fixes
6234 F:      drivers/media/pci/pt1/
6235
6236 EARTH_PT3 MEDIA DRIVER
6237 M:      Akihiro Tsukada <[email protected]>
6238 L:      [email protected]
6239 S:      Odd Fixes
6240 F:      drivers/media/pci/pt3/
6241
6242 EC100 MEDIA DRIVER
6243 M:      Antti Palosaari <[email protected]>
6244 L:      [email protected]
6245 S:      Maintained
6246 W:      https://linuxtv.org
6247 W:      http://palosaari.fi/linux/
6248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6249 T:      git git://linuxtv.org/anttip/media_tree.git
6250 F:      drivers/media/dvb-frontends/ec100*
6251
6252 ECRYPT FILE SYSTEM
6253 M:      Tyler Hicks <[email protected]>
6254 L:      [email protected]
6255 S:      Odd Fixes
6256 W:      http://ecryptfs.org
6257 W:      https://launchpad.net/ecryptfs
6258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6259 F:      Documentation/filesystems/ecryptfs.rst
6260 F:      fs/ecryptfs/
6261
6262 EDAC-AMD64
6263 M:      Borislav Petkov <[email protected]>
6264 L:      [email protected]
6265 S:      Maintained
6266 F:      drivers/edac/amd64_edac*
6267
6268 EDAC-ARMADA
6269 M:      Jan Luebbe <[email protected]>
6270 L:      [email protected]
6271 S:      Maintained
6272 F:      drivers/edac/armada_xp_*
6273
6274 EDAC-AST2500
6275 M:      Stefan Schaeckeler <[email protected]>
6276 S:      Supported
6277 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6278 F:      drivers/edac/aspeed_edac.c
6279
6280 EDAC-BLUEFIELD
6281 M:      Shravan Kumar Ramani <[email protected]>
6282 S:      Supported
6283 F:      drivers/edac/bluefield_edac.c
6284
6285 EDAC-CALXEDA
6286 M:      Andre Przywara <[email protected]>
6287 L:      [email protected]
6288 S:      Maintained
6289 F:      drivers/edac/highbank*
6290
6291 EDAC-CAVIUM OCTEON
6292 M:      Ralf Baechle <[email protected]>
6293 L:      [email protected]
6294 L:      [email protected]
6295 S:      Supported
6296 F:      drivers/edac/octeon_edac*
6297
6298 EDAC-CAVIUM THUNDERX
6299 M:      Robert Richter <[email protected]>
6300 L:      [email protected]
6301 S:      Odd Fixes
6302 F:      drivers/edac/thunderx_edac*
6303
6304 EDAC-CORE
6305 M:      Borislav Petkov <[email protected]>
6306 M:      Mauro Carvalho Chehab <[email protected]>
6307 M:      Tony Luck <[email protected]>
6308 R:      James Morse <[email protected]>
6309 R:      Robert Richter <[email protected]>
6310 L:      [email protected]
6311 S:      Supported
6312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6313 F:      Documentation/admin-guide/ras.rst
6314 F:      Documentation/driver-api/edac.rst
6315 F:      drivers/edac/
6316 F:      include/linux/edac.h
6317
6318 EDAC-DMC520
6319 M:      Lei Wang <[email protected]>
6320 L:      [email protected]
6321 S:      Supported
6322 F:      drivers/edac/dmc520_edac.c
6323
6324 EDAC-E752X
6325 M:      Mark Gross <[email protected]>
6326 L:      [email protected]
6327 S:      Maintained
6328 F:      drivers/edac/e752x_edac.c
6329
6330 EDAC-E7XXX
6331 L:      [email protected]
6332 S:      Maintained
6333 F:      drivers/edac/e7xxx_edac.c
6334
6335 EDAC-FSL_DDR
6336 M:      York Sun <[email protected]>
6337 L:      [email protected]
6338 S:      Maintained
6339 F:      drivers/edac/fsl_ddr_edac.*
6340
6341 EDAC-GHES
6342 M:      Mauro Carvalho Chehab <[email protected]>
6343 L:      [email protected]
6344 S:      Maintained
6345 F:      drivers/edac/ghes_edac.c
6346
6347 EDAC-I10NM
6348 M:      Tony Luck <[email protected]>
6349 L:      [email protected]
6350 S:      Maintained
6351 F:      drivers/edac/i10nm_base.c
6352
6353 EDAC-I3000
6354 L:      [email protected]
6355 S:      Orphan
6356 F:      drivers/edac/i3000_edac.c
6357
6358 EDAC-I5000
6359 L:      [email protected]
6360 S:      Maintained
6361 F:      drivers/edac/i5000_edac.c
6362
6363 EDAC-I5400
6364 M:      Mauro Carvalho Chehab <[email protected]>
6365 L:      [email protected]
6366 S:      Maintained
6367 F:      drivers/edac/i5400_edac.c
6368
6369 EDAC-I7300
6370 M:      Mauro Carvalho Chehab <[email protected]>
6371 L:      [email protected]
6372 S:      Maintained
6373 F:      drivers/edac/i7300_edac.c
6374
6375 EDAC-I7CORE
6376 M:      Mauro Carvalho Chehab <[email protected]>
6377 L:      [email protected]
6378 S:      Maintained
6379 F:      drivers/edac/i7core_edac.c
6380
6381 EDAC-I82443BXGX
6382 M:      Tim Small <[email protected]>
6383 L:      [email protected]
6384 S:      Maintained
6385 F:      drivers/edac/i82443bxgx_edac.c
6386
6387 EDAC-I82975X
6388 M:      "Arvind R." <[email protected]>
6389 L:      [email protected]
6390 S:      Maintained
6391 F:      drivers/edac/i82975x_edac.c
6392
6393 EDAC-IE31200
6394 M:      Jason Baron <[email protected]>
6395 L:      [email protected]
6396 S:      Maintained
6397 F:      drivers/edac/ie31200_edac.c
6398
6399 EDAC-IGEN6
6400 M:      Tony Luck <[email protected]>
6401 R:      Qiuxu Zhuo <[email protected]>
6402 L:      [email protected]
6403 S:      Maintained
6404 F:      drivers/edac/igen6_edac.c
6405
6406 EDAC-MPC85XX
6407 M:      Johannes Thumshirn <[email protected]>
6408 L:      [email protected]
6409 S:      Maintained
6410 F:      drivers/edac/mpc85xx_edac.[ch]
6411
6412 EDAC-PASEMI
6413 M:      Egor Martovetsky <[email protected]>
6414 L:      [email protected]
6415 S:      Maintained
6416 F:      drivers/edac/pasemi_edac.c
6417
6418 EDAC-PND2
6419 M:      Tony Luck <[email protected]>
6420 L:      [email protected]
6421 S:      Maintained
6422 F:      drivers/edac/pnd2_edac.[ch]
6423
6424 EDAC-QCOM
6425 M:      Channagoud Kadabi <[email protected]>
6426 M:      Venkata Narendra Kumar Gutta <[email protected]>
6427 L:      [email protected]
6428 L:      [email protected]
6429 S:      Maintained
6430 F:      drivers/edac/qcom_edac.c
6431
6432 EDAC-R82600
6433 M:      Tim Small <[email protected]>
6434 L:      [email protected]
6435 S:      Maintained
6436 F:      drivers/edac/r82600_edac.c
6437
6438 EDAC-SBRIDGE
6439 M:      Tony Luck <[email protected]>
6440 R:      Qiuxu Zhuo <[email protected]>
6441 L:      [email protected]
6442 S:      Maintained
6443 F:      drivers/edac/sb_edac.c
6444
6445 EDAC-SIFIVE
6446 M:      Yash Shah <[email protected]>
6447 L:      [email protected]
6448 S:      Supported
6449 F:      drivers/edac/sifive_edac.c
6450
6451 EDAC-SKYLAKE
6452 M:      Tony Luck <[email protected]>
6453 L:      [email protected]
6454 S:      Maintained
6455 F:      drivers/edac/skx_*.[ch]
6456
6457 EDAC-TI
6458 M:      Tero Kristo <[email protected]>
6459 L:      [email protected]
6460 S:      Maintained
6461 F:      drivers/edac/ti_edac.c
6462
6463 EDIROL UA-101/UA-1000 DRIVER
6464 M:      Clemens Ladisch <[email protected]>
6465 L:      [email protected] (moderated for non-subscribers)
6466 S:      Maintained
6467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6468 F:      sound/usb/misc/ua101.c
6469
6470 EFI TEST DRIVER
6471 M:      Ivan Hu <[email protected]>
6472 M:      Ard Biesheuvel <[email protected]>
6473 L:      [email protected]
6474 S:      Maintained
6475 F:      drivers/firmware/efi/test/
6476
6477 EFI VARIABLE FILESYSTEM
6478 M:      Matthew Garrett <[email protected]>
6479 M:      Jeremy Kerr <[email protected]>
6480 M:      Ard Biesheuvel <[email protected]>
6481 L:      [email protected]
6482 S:      Maintained
6483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6484 F:      fs/efivarfs/
6485
6486 EFIFB FRAMEBUFFER DRIVER
6487 M:      Peter Jones <[email protected]>
6488 L:      [email protected]
6489 S:      Maintained
6490 F:      drivers/video/fbdev/efifb.c
6491
6492 EFS FILESYSTEM
6493 S:      Orphan
6494 W:      http://aeschi.ch.eu.org/efs/
6495 F:      fs/efs/
6496
6497 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6498 M:      Douglas Miller <[email protected]>
6499 L:      [email protected]
6500 S:      Maintained
6501 F:      drivers/net/ethernet/ibm/ehea/
6502
6503 EM28XX VIDEO4LINUX DRIVER
6504 M:      Mauro Carvalho Chehab <[email protected]>
6505 L:      [email protected]
6506 S:      Maintained
6507 W:      https://linuxtv.org
6508 T:      git git://linuxtv.org/media_tree.git
6509 F:      Documentation/admin-guide/media/em28xx*
6510 F:      drivers/media/usb/em28xx/
6511
6512 EMBEDDED LINUX
6513 M:      Paul Gortmaker <[email protected]>
6514 M:      Matt Mackall <[email protected]>
6515 M:      David Woodhouse <[email protected]>
6516 L:      [email protected]
6517 S:      Maintained
6518
6519 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6520 M:      Adrian Hunter <[email protected]>
6521 M:      Ritesh Harjani <[email protected]>
6522 M:      Asutosh Das <[email protected]>
6523 L:      [email protected]
6524 S:      Maintained
6525 F:      drivers/mmc/host/cqhci*
6526
6527 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6528 M:      Subbu Seetharaman <[email protected]>
6529 M:      Ketan Mukadam <[email protected]>
6530 M:      Jitendra Bhivare <[email protected]>
6531 L:      [email protected]
6532 S:      Supported
6533 W:      http://www.broadcom.com
6534 F:      drivers/scsi/be2iscsi/
6535
6536 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6537 M:      Ajit Khaparde <[email protected]>
6538 M:      Sriharsha Basavapatna <[email protected]>
6539 M:      Somnath Kotur <[email protected]>
6540 L:      [email protected]
6541 S:      Supported
6542 W:      http://www.emulex.com
6543 F:      drivers/net/ethernet/emulex/benet/
6544
6545 EMULEX ONECONNECT ROCE DRIVER
6546 M:      Selvin Xavier <[email protected]>
6547 M:      Devesh Sharma <[email protected]>
6548 L:      [email protected]
6549 S:      Odd Fixes
6550 W:      http://www.broadcom.com
6551 F:      drivers/infiniband/hw/ocrdma/
6552 F:      include/uapi/rdma/ocrdma-abi.h
6553
6554 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6555 M:      James Smart <[email protected]>
6556 M:      Dick Kennedy <[email protected]>
6557 L:      [email protected]
6558 S:      Supported
6559 W:      http://www.broadcom.com
6560 F:      drivers/scsi/lpfc/
6561
6562 ENE CB710 FLASH CARD READER DRIVER
6563 M:      Michał Mirosław <[email protected]>
6564 S:      Maintained
6565 F:      drivers/misc/cb710/
6566 F:      drivers/mmc/host/cb710-mmc.*
6567 F:      include/linux/cb710.h
6568
6569 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6570 M:      Maxim Levitsky <[email protected]>
6571 S:      Maintained
6572 F:      drivers/media/rc/ene_ir.*
6573
6574 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6575 M:      Laurentiu Tudor <[email protected]>
6576 L:      [email protected]
6577 S:      Maintained
6578 F:      drivers/tty/ehv_bytechan.c
6579
6580 EPSON S1D13XXX FRAMEBUFFER DRIVER
6581 M:      Kristoffer Ericson <[email protected]>
6582 S:      Maintained
6583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6584 F:      drivers/video/fbdev/s1d13xxxfb.c
6585 F:      include/video/s1d13xxxfb.h
6586
6587 EROFS FILE SYSTEM
6588 M:      Gao Xiang <[email protected]>
6589 M:      Chao Yu <[email protected]>
6590 L:      [email protected]
6591 S:      Maintained
6592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6593 F:      Documentation/filesystems/erofs.rst
6594 F:      fs/erofs/
6595 F:      include/trace/events/erofs.h
6596
6597 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6598 M:      Jeff Layton <[email protected]>
6599 S:      Maintained
6600 F:      include/linux/errseq.h
6601 F:      lib/errseq.c
6602
6603 ET131X NETWORK DRIVER
6604 M:      Mark Einon <[email protected]>
6605 S:      Odd Fixes
6606 F:      drivers/net/ethernet/agere/
6607
6608 ETHERNET BRIDGE
6609 M:      Roopa Prabhu <[email protected]>
6610 M:      Nikolay Aleksandrov <[email protected]>
6611 L:      [email protected] (moderated for non-subscribers)
6612 L:      [email protected]
6613 S:      Maintained
6614 W:      http://www.linuxfoundation.org/en/Net:Bridge
6615 F:      include/linux/netfilter_bridge/
6616 F:      net/bridge/
6617
6618 ETHERNET PHY LIBRARY
6619 M:      Andrew Lunn <[email protected]>
6620 M:      Heiner Kallweit <[email protected]>
6621 R:      Russell King <[email protected]>
6622 L:      [email protected]
6623 S:      Maintained
6624 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6625 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6626 F:      Documentation/devicetree/bindings/net/mdio*
6627 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6628 F:      Documentation/networking/phy.rst
6629 F:      drivers/net/mdio/
6630 F:      drivers/net/mdio/of_mdio.c
6631 F:      drivers/net/pcs/
6632 F:      drivers/net/phy/
6633 F:      drivers/of/of_net.c
6634 F:      include/dt-bindings/net/qca-ar803x.h
6635 F:      include/linux/*mdio*.h
6636 F:      include/linux/mdio/*.h
6637 F:      include/linux/of_net.h
6638 F:      include/linux/phy.h
6639 F:      include/linux/phy_fixed.h
6640 F:      include/linux/platform_data/mdio-bcm-unimac.h
6641 F:      include/linux/platform_data/mdio-gpio.h
6642 F:      include/trace/events/mdio.h
6643 F:      include/uapi/linux/mdio.h
6644 F:      include/uapi/linux/mii.h
6645
6646 EXFAT FILE SYSTEM
6647 M:      Namjae Jeon <[email protected]>
6648 M:      Sungjong Seo <[email protected]>
6649 L:      [email protected]
6650 S:      Maintained
6651 F:      fs/exfat/
6652
6653 EXT2 FILE SYSTEM
6654 M:      Jan Kara <[email protected]>
6655 L:      [email protected]
6656 S:      Maintained
6657 F:      Documentation/filesystems/ext2.rst
6658 F:      fs/ext2/
6659 F:      include/linux/ext2*
6660
6661 EXT4 FILE SYSTEM
6662 M:      "Theodore Ts'o" <[email protected]>
6663 M:      Andreas Dilger <[email protected]>
6664 L:      [email protected]
6665 S:      Maintained
6666 W:      http://ext4.wiki.kernel.org
6667 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6669 F:      Documentation/filesystems/ext4/
6670 F:      fs/ext4/
6671 F:      include/trace/events/ext4.h
6672
6673 Extended Verification Module (EVM)
6674 M:      Mimi Zohar <[email protected]>
6675 L:      [email protected]
6676 S:      Supported
6677 F:      security/integrity/evm/
6678
6679 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6680 M:      Ard Biesheuvel <[email protected]>
6681 L:      [email protected]
6682 S:      Maintained
6683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6684 F:      Documentation/admin-guide/efi-stub.rst
6685 F:      arch/*/include/asm/efi.h
6686 F:      arch/*/kernel/efi.c
6687 F:      arch/arm/boot/compressed/efi-header.S
6688 F:      arch/arm64/kernel/efi-entry.S
6689 F:      arch/x86/platform/efi/
6690 F:      drivers/firmware/efi/
6691 F:      include/linux/efi*.h
6692
6693 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6694 M:      MyungJoo Ham <[email protected]>
6695 M:      Chanwoo Choi <[email protected]>
6696 L:      [email protected]
6697 S:      Maintained
6698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6699 F:      Documentation/devicetree/bindings/extcon/
6700 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6701 F:      drivers/extcon/
6702 F:      include/linux/extcon.h
6703 F:      include/linux/extcon/
6704
6705 EXTRA BOOT CONFIG
6706 M:      Masami Hiramatsu <[email protected]>
6707 S:      Maintained
6708 F:      Documentation/admin-guide/bootconfig.rst
6709 F:      fs/proc/bootconfig.c
6710 F:      include/linux/bootconfig.h
6711 F:      lib/bootconfig.c
6712 F:      tools/bootconfig/*
6713 F:      tools/bootconfig/scripts/*
6714
6715 EXYNOS DP DRIVER
6716 M:      Jingoo Han <[email protected]>
6717 L:      [email protected]
6718 S:      Maintained
6719 F:      drivers/gpu/drm/exynos/exynos_dp*
6720
6721 EXYNOS SYSMMU (IOMMU) driver
6722 M:      Marek Szyprowski <[email protected]>
6723 L:      [email protected]
6724 S:      Maintained
6725 F:      drivers/iommu/exynos-iommu.c
6726
6727 F2FS FILE SYSTEM
6728 M:      Jaegeuk Kim <[email protected]>
6729 M:      Chao Yu <[email protected]>
6730 L:      [email protected]
6731 S:      Maintained
6732 W:      https://f2fs.wiki.kernel.org/
6733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6734 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6735 F:      Documentation/filesystems/f2fs.rst
6736 F:      fs/f2fs/
6737 F:      include/linux/f2fs_fs.h
6738 F:      include/trace/events/f2fs.h
6739
6740 F71805F HARDWARE MONITORING DRIVER
6741 M:      Jean Delvare <[email protected]>
6742 L:      [email protected]
6743 S:      Maintained
6744 F:      Documentation/hwmon/f71805f.rst
6745 F:      drivers/hwmon/f71805f.c
6746
6747 FADDR2LINE
6748 M:      Josh Poimboeuf <[email protected]>
6749 S:      Maintained
6750 F:      scripts/faddr2line
6751
6752 FAILOVER MODULE
6753 M:      Sridhar Samudrala <[email protected]>
6754 L:      [email protected]
6755 S:      Supported
6756 F:      Documentation/networking/failover.rst
6757 F:      include/net/failover.h
6758 F:      net/core/failover.c
6759
6760 FANOTIFY
6761 M:      Jan Kara <[email protected]>
6762 R:      Amir Goldstein <[email protected]>
6763 L:      [email protected]
6764 S:      Maintained
6765 F:      fs/notify/fanotify/
6766 F:      include/linux/fanotify.h
6767 F:      include/uapi/linux/fanotify.h
6768
6769 FARSYNC SYNCHRONOUS DRIVER
6770 M:      Kevin Curtis <[email protected]>
6771 S:      Supported
6772 W:      http://www.farsite.co.uk/
6773 F:      drivers/net/wan/farsync.*
6774
6775 FAULT INJECTION SUPPORT
6776 M:      Akinobu Mita <[email protected]>
6777 S:      Supported
6778 F:      Documentation/fault-injection/
6779 F:      lib/fault-inject.c
6780
6781 FBTFT Framebuffer drivers
6782 L:      [email protected]
6783 L:      [email protected]
6784 S:      Orphan
6785 F:      drivers/staging/fbtft/
6786
6787 FC0011 TUNER DRIVER
6788 M:      Michael Buesch <[email protected]>
6789 L:      [email protected]
6790 S:      Maintained
6791 F:      drivers/media/tuners/fc0011.c
6792 F:      drivers/media/tuners/fc0011.h
6793
6794 FC2580 MEDIA DRIVER
6795 M:      Antti Palosaari <[email protected]>
6796 L:      [email protected]
6797 S:      Maintained
6798 W:      https://linuxtv.org
6799 W:      http://palosaari.fi/linux/
6800 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6801 T:      git git://linuxtv.org/anttip/media_tree.git
6802 F:      drivers/media/tuners/fc2580*
6803
6804 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6805 M:      Hannes Reinecke <[email protected]>
6806 L:      [email protected]
6807 S:      Supported
6808 W:      www.Open-FCoE.org
6809 F:      drivers/scsi/fcoe/
6810 F:      drivers/scsi/libfc/
6811 F:      include/scsi/fc/
6812 F:      include/scsi/libfc.h
6813 F:      include/scsi/libfcoe.h
6814 F:      include/uapi/scsi/fc/
6815
6816 FILE LOCKING (flock() and fcntl()/lockf())
6817 M:      Jeff Layton <[email protected]>
6818 M:      "J. Bruce Fields" <[email protected]>
6819 L:      [email protected]
6820 S:      Maintained
6821 F:      fs/fcntl.c
6822 F:      fs/locks.c
6823 F:      include/linux/fcntl.h
6824 F:      include/uapi/linux/fcntl.h
6825
6826 FILESYSTEM DIRECT ACCESS (DAX)
6827 M:      Dan Williams <[email protected]>
6828 R:      Matthew Wilcox <[email protected]>
6829 R:      Jan Kara <[email protected]>
6830 L:      [email protected]
6831 L:      [email protected]
6832 S:      Supported
6833 F:      fs/dax.c
6834 F:      include/linux/dax.h
6835 F:      include/trace/events/fs_dax.h
6836
6837 FILESYSTEMS (VFS and infrastructure)
6838 M:      Alexander Viro <[email protected]>
6839 L:      [email protected]
6840 S:      Maintained
6841 F:      fs/*
6842 F:      include/linux/fs.h
6843 F:      include/linux/fs_types.h
6844 F:      include/uapi/linux/fs.h
6845 F:      include/uapi/linux/openat2.h
6846
6847 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6848 M:      Riku Voipio <[email protected]>
6849 L:      [email protected]
6850 S:      Maintained
6851 F:      drivers/hwmon/f75375s.c
6852 F:      include/linux/f75375s.h
6853
6854 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6855 M:      Clemens Ladisch <[email protected]>
6856 M:      Takashi Sakamoto <[email protected]>
6857 L:      [email protected] (moderated for non-subscribers)
6858 S:      Maintained
6859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6860 F:      include/uapi/sound/firewire.h
6861 F:      sound/firewire/
6862
6863 FIREWIRE MEDIA DRIVERS (firedtv)
6864 M:      Stefan Richter <[email protected]>
6865 L:      [email protected]
6866 L:      [email protected]
6867 S:      Maintained
6868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6869 F:      drivers/media/firewire/
6870
6871 FIREWIRE SBP-2 TARGET
6872 M:      Chris Boot <[email protected]>
6873 L:      [email protected]
6874 L:      [email protected]
6875 L:      [email protected]
6876 S:      Maintained
6877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6878 F:      drivers/target/sbp/
6879
6880 FIREWIRE SUBSYSTEM
6881 M:      Stefan Richter <[email protected]>
6882 L:      [email protected]
6883 S:      Maintained
6884 W:      http://ieee1394.wiki.kernel.org/
6885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6886 F:      drivers/firewire/
6887 F:      include/linux/firewire.h
6888 F:      include/uapi/linux/firewire*.h
6889 F:      tools/firewire/
6890
6891 FIRMWARE LOADER (request_firmware)
6892 M:      Luis Chamberlain <[email protected]>
6893 L:      [email protected]
6894 S:      Maintained
6895 F:      Documentation/firmware_class/
6896 F:      drivers/base/firmware_loader/
6897 F:      include/linux/firmware.h
6898
6899 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6900 M:      Joshua Morris <[email protected]>
6901 M:      Philip Kelleher <[email protected]>
6902 S:      Maintained
6903 F:      drivers/block/rsxx/
6904
6905 FLEXTIMER FTM-QUADDEC DRIVER
6906 M:      Patrick Havelange <[email protected]>
6907 L:      [email protected]
6908 S:      Maintained
6909 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6910 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6911 F:      drivers/counter/ftm-quaddec.c
6912
6913 FLOPPY DRIVER
6914 M:      Denis Efremov <[email protected]>
6915 L:      [email protected]
6916 S:      Odd Fixes
6917 F:      drivers/block/floppy.c
6918
6919 FLYSKY FSIA6B RC RECEIVER
6920 M:      Markus Koch <[email protected]>
6921 L:      [email protected]
6922 S:      Maintained
6923 F:      drivers/input/joystick/fsia6b.c
6924
6925 FORCEDETH GIGABIT ETHERNET DRIVER
6926 M:      Rain River <[email protected]>
6927 M:      Zhu Yanjun <[email protected]>
6928 L:      [email protected]
6929 S:      Maintained
6930 F:      drivers/net/ethernet/nvidia/*
6931
6932 FPGA DFL DRIVERS
6933 M:      Wu Hao <[email protected]>
6934 R:      Tom Rix <[email protected]>
6935 L:      [email protected]
6936 S:      Maintained
6937 F:      Documentation/ABI/testing/sysfs-bus-dfl
6938 F:      Documentation/fpga/dfl.rst
6939 F:      drivers/fpga/dfl*
6940 F:      include/uapi/linux/fpga-dfl.h
6941
6942 FPGA MANAGER FRAMEWORK
6943 M:      Moritz Fischer <[email protected]>
6944 R:      Tom Rix <[email protected]>
6945 L:      [email protected]
6946 S:      Maintained
6947 W:      http://www.rocketboards.org
6948 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6950 F:      Documentation/devicetree/bindings/fpga/
6951 F:      Documentation/driver-api/fpga/
6952 F:      Documentation/fpga/
6953 F:      drivers/fpga/
6954 F:      include/linux/fpga/
6955
6956 FPU EMULATOR
6957 M:      Bill Metzenthen <[email protected]>
6958 S:      Maintained
6959 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6960 F:      arch/x86/math-emu/
6961
6962 FRAMEBUFFER LAYER
6963 L:      [email protected]
6964 L:      [email protected]
6965 S:      Orphan
6966 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6967 T:      git git://anongit.freedesktop.org/drm/drm-misc
6968 F:      Documentation/fb/
6969 F:      drivers/video/
6970 F:      include/linux/fb.h
6971 F:      include/uapi/linux/fb.h
6972 F:      include/uapi/video/
6973 F:      include/video/
6974
6975 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6976 M:      Horia Geantă <[email protected]>
6977 M:      Aymen Sghaier <[email protected]>
6978 L:      [email protected]
6979 S:      Maintained
6980 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6981 F:      drivers/crypto/caam/
6982
6983 FREESCALE COLDFIRE M5441X MMC DRIVER
6984 M:      Angelo Dureghello <[email protected]>
6985 L:      [email protected]
6986 S:      Maintained
6987 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6988 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6989
6990 FREESCALE DIU FRAMEBUFFER DRIVER
6991 M:      Timur Tabi <[email protected]>
6992 L:      [email protected]
6993 S:      Maintained
6994 F:      drivers/video/fbdev/fsl-diu-fb.*
6995
6996 FREESCALE DMA DRIVER
6997 M:      Li Yang <[email protected]>
6998 M:      Zhang Wei <[email protected]>
6999 L:      [email protected]
7000 S:      Maintained
7001 F:      drivers/dma/fsldma.*
7002
7003 FREESCALE DSPI DRIVER
7004 M:      Vladimir Oltean <[email protected]>
7005 L:      [email protected]
7006 S:      Maintained
7007 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7008 F:      drivers/spi/spi-fsl-dspi.c
7009 F:      include/linux/spi/spi-fsl-dspi.h
7010
7011 FREESCALE ENETC ETHERNET DRIVERS
7012 M:      Claudiu Manoil <[email protected]>
7013 L:      [email protected]
7014 S:      Maintained
7015 F:      drivers/net/ethernet/freescale/enetc/
7016
7017 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7018 M:      Claudiu Manoil <[email protected]>
7019 L:      [email protected]
7020 S:      Maintained
7021 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7022 F:      drivers/net/ethernet/freescale/gianfar*
7023
7024 FREESCALE GPMI NAND DRIVER
7025 M:      Han Xu <[email protected]>
7026 L:      [email protected]
7027 S:      Maintained
7028 F:      drivers/mtd/nand/raw/gpmi-nand/*
7029
7030 FREESCALE I2C CPM DRIVER
7031 M:      Jochen Friedrich <[email protected]>
7032 L:      [email protected]
7033 L:      [email protected]
7034 S:      Maintained
7035 F:      drivers/i2c/busses/i2c-cpm.c
7036
7037 FREESCALE IMX / MXC FEC DRIVER
7038 M:      Fugang Duan <[email protected]>
7039 L:      [email protected]
7040 S:      Maintained
7041 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7042 F:      drivers/net/ethernet/freescale/fec.h
7043 F:      drivers/net/ethernet/freescale/fec_main.c
7044 F:      drivers/net/ethernet/freescale/fec_ptp.c
7045
7046 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7047 M:      Sascha Hauer <[email protected]>
7048 R:      Pengutronix Kernel Team <[email protected]>
7049 L:      [email protected]
7050 L:      [email protected] (moderated for non-subscribers)
7051 S:      Maintained
7052 F:      drivers/video/fbdev/imxfb.c
7053 F:      include/linux/platform_data/video-imxfb.h
7054
7055 FREESCALE IMX DDR PMU DRIVER
7056 M:      Frank Li <[email protected]>
7057 L:      [email protected]
7058 S:      Maintained
7059 F:      Documentation/admin-guide/perf/imx-ddr.rst
7060 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7061 F:      drivers/perf/fsl_imx8_ddr_perf.c
7062
7063 FREESCALE IMX I2C DRIVER
7064 M:      Oleksij Rempel <[email protected]>
7065 R:      Pengutronix Kernel Team <[email protected]>
7066 L:      [email protected]
7067 S:      Maintained
7068 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7069 F:      drivers/i2c/busses/i2c-imx.c
7070
7071 FREESCALE IMX LPI2C DRIVER
7072 M:      Dong Aisheng <[email protected]>
7073 L:      [email protected]
7074 L:      [email protected]
7075 S:      Maintained
7076 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7077 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7078
7079 FREESCALE QORIQ DPAA ETHERNET DRIVER
7080 M:      Madalin Bucur <[email protected]>
7081 L:      [email protected]
7082 S:      Maintained
7083 F:      drivers/net/ethernet/freescale/dpaa
7084
7085 FREESCALE QORIQ DPAA FMAN DRIVER
7086 M:      Madalin Bucur <[email protected]>
7087 L:      [email protected]
7088 S:      Maintained
7089 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7090 F:      drivers/net/ethernet/freescale/fman
7091
7092 FREESCALE QORIQ PTP CLOCK DRIVER
7093 M:      Yangbo Lu <[email protected]>
7094 L:      [email protected]
7095 S:      Maintained
7096 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7097 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7098 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7099 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7100 F:      drivers/ptp/ptp_qoriq.c
7101 F:      drivers/ptp/ptp_qoriq_debugfs.c
7102 F:      include/linux/fsl/ptp_qoriq.h
7103
7104 FREESCALE QUAD SPI DRIVER
7105 M:      Han Xu <[email protected]>
7106 L:      [email protected]
7107 S:      Maintained
7108 F:      drivers/spi/spi-fsl-qspi.c
7109
7110 FREESCALE QUICC ENGINE LIBRARY
7111 M:      Qiang Zhao <[email protected]>
7112 L:      [email protected]
7113 S:      Maintained
7114 F:      drivers/soc/fsl/qe/
7115 F:      include/soc/fsl/*qe*.h
7116 F:      include/soc/fsl/*ucc*.h
7117
7118 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7119 M:      Li Yang <[email protected]>
7120 L:      [email protected]
7121 L:      [email protected]
7122 S:      Maintained
7123 F:      drivers/net/ethernet/freescale/ucc_geth*
7124
7125 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7126 M:      Zhao Qiang <[email protected]>
7127 L:      [email protected]
7128 L:      [email protected]
7129 S:      Maintained
7130 F:      drivers/net/wan/fsl_ucc_hdlc*
7131
7132 FREESCALE QUICC ENGINE UCC UART DRIVER
7133 M:      Timur Tabi <[email protected]>
7134 L:      [email protected]
7135 S:      Maintained
7136 F:      drivers/tty/serial/ucc_uart.c
7137
7138 FREESCALE SOC DRIVERS
7139 M:      Li Yang <[email protected]>
7140 L:      [email protected]
7141 L:      [email protected]
7142 S:      Maintained
7143 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
7144 F:      Documentation/devicetree/bindings/soc/fsl/
7145 F:      drivers/soc/fsl/
7146 F:      include/linux/fsl/
7147
7148 FREESCALE SOC FS_ENET DRIVER
7149 M:      Pantelis Antoniou <[email protected]>
7150 L:      [email protected]
7151 L:      [email protected]
7152 S:      Maintained
7153 F:      drivers/net/ethernet/freescale/fs_enet/
7154 F:      include/linux/fs_enet_pd.h
7155
7156 FREESCALE SOC SOUND DRIVERS
7157 M:      Timur Tabi <[email protected]>
7158 M:      Nicolin Chen <[email protected]>
7159 M:      Xiubo Li <[email protected]>
7160 R:      Fabio Estevam <[email protected]>
7161 R:      Shengjiu Wang <[email protected]>
7162 L:      [email protected] (moderated for non-subscribers)
7163 L:      [email protected]
7164 S:      Maintained
7165 F:      sound/soc/fsl/fsl*
7166 F:      sound/soc/fsl/imx*
7167 F:      sound/soc/fsl/mpc8610_hpcd.c
7168
7169 FREESCALE USB PERIPHERAL DRIVERS
7170 M:      Li Yang <[email protected]>
7171 L:      [email protected]
7172 L:      [email protected]
7173 S:      Maintained
7174 F:      drivers/usb/gadget/udc/fsl*
7175
7176 FREESCALE USB PHY DRIVER
7177 M:      Ran Wang <[email protected]>
7178 L:      [email protected]
7179 L:      [email protected]
7180 S:      Maintained
7181 F:      drivers/usb/phy/phy-fsl-usb*
7182
7183 FREEVXFS FILESYSTEM
7184 M:      Christoph Hellwig <[email protected]>
7185 S:      Maintained
7186 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7187 F:      fs/freevxfs/
7188
7189 FREEZER
7190 M:      "Rafael J. Wysocki" <[email protected]>
7191 M:      Pavel Machek <[email protected]>
7192 L:      [email protected]
7193 S:      Supported
7194 F:      Documentation/power/freezing-of-tasks.rst
7195 F:      include/linux/freezer.h
7196 F:      kernel/freezer.c
7197
7198 FRONTSWAP API
7199 M:      Konrad Rzeszutek Wilk <[email protected]>
7200 L:      [email protected]
7201 S:      Maintained
7202 F:      include/linux/frontswap.h
7203 F:      mm/frontswap.c
7204
7205 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7206 M:      David Howells <[email protected]>
7207 L:      [email protected] (moderated for non-subscribers)
7208 S:      Supported
7209 F:      Documentation/filesystems/caching/
7210 F:      fs/fscache/
7211 F:      include/linux/fscache*.h
7212
7213 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7214 M:      Theodore Y. Ts'o <[email protected]>
7215 M:      Jaegeuk Kim <[email protected]>
7216 M:      Eric Biggers <[email protected]>
7217 L:      [email protected]
7218 S:      Supported
7219 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7220 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7221 F:      Documentation/filesystems/fscrypt.rst
7222 F:      fs/crypto/
7223 F:      include/linux/fscrypt*.h
7224 F:      include/uapi/linux/fscrypt.h
7225
7226 FSI SUBSYSTEM
7227 M:      Jeremy Kerr <[email protected]>
7228 M:      Joel Stanley <[email protected]>
7229 R:      Alistar Popple <[email protected]>
7230 R:      Eddie James <[email protected]>
7231 L:      [email protected]
7232 S:      Supported
7233 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7235 F:      drivers/fsi/
7236 F:      include/linux/fsi*.h
7237 F:      include/trace/events/fsi*.h
7238
7239 FSI-ATTACHED I2C DRIVER
7240 M:      Eddie James <[email protected]>
7241 L:      [email protected]
7242 L:      [email protected] (moderated for non-subscribers)
7243 S:      Maintained
7244 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7245 F:      drivers/i2c/busses/i2c-fsi.c
7246
7247 FSI-ATTACHED SPI DRIVER
7248 M:      Eddie James <[email protected]>
7249 L:      [email protected]
7250 S:      Maintained
7251 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7252 F:      drivers/spi/spi-fsi.c
7253
7254 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7255 M:      Jan Kara <[email protected]>
7256 R:      Amir Goldstein <[email protected]>
7257 L:      [email protected]
7258 S:      Maintained
7259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7260 F:      fs/notify/
7261 F:      include/linux/fsnotify*.h
7262
7263 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7264 M:      Eric Biggers <[email protected]>
7265 M:      Theodore Y. Ts'o <[email protected]>
7266 L:      [email protected]
7267 S:      Supported
7268 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7269 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7270 F:      Documentation/filesystems/fsverity.rst
7271 F:      fs/verity/
7272 F:      include/linux/fsverity.h
7273 F:      include/uapi/linux/fsverity.h
7274
7275 FUJITSU LAPTOP EXTRAS
7276 M:      Jonathan Woithe <[email protected]>
7277 L:      [email protected]
7278 S:      Maintained
7279 F:      drivers/platform/x86/fujitsu-laptop.c
7280
7281 FUJITSU M-5MO LS CAMERA ISP DRIVER
7282 M:      Kyungmin Park <[email protected]>
7283 M:      Heungjun Kim <[email protected]>
7284 L:      [email protected]
7285 S:      Maintained
7286 F:      drivers/media/i2c/m5mols/
7287 F:      include/media/i2c/m5mols.h
7288
7289 FUJITSU TABLET EXTRAS
7290 M:      Robert Gerlach <[email protected]>
7291 L:      [email protected]
7292 S:      Maintained
7293 F:      drivers/platform/x86/fujitsu-tablet.c
7294
7295 FUSE: FILESYSTEM IN USERSPACE
7296 M:      Miklos Szeredi <[email protected]>
7297 L:      [email protected]
7298 S:      Maintained
7299 W:      https://github.com/libfuse/
7300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7301 F:      Documentation/filesystems/fuse.rst
7302 F:      fs/fuse/
7303 F:      include/uapi/linux/fuse.h
7304
7305 FUTEX SUBSYSTEM
7306 M:      Thomas Gleixner <[email protected]>
7307 M:      Ingo Molnar <[email protected]>
7308 R:      Peter Zijlstra <[email protected]>
7309 R:      Darren Hart <[email protected]>
7310 L:      [email protected]
7311 S:      Maintained
7312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7313 F:      Documentation/locking/*futex*
7314 F:      include/asm-generic/futex.h
7315 F:      include/linux/futex.h
7316 F:      include/uapi/linux/futex.h
7317 F:      kernel/futex.c
7318 F:      tools/perf/bench/futex*
7319 F:      tools/testing/selftests/futex/
7320
7321 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7322 M:      Tim Harvey <[email protected]>
7323 M:      Robert Jones <[email protected]>
7324 S:      Maintained
7325 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7326 F:      drivers/mfd/gateworks-gsc.c
7327 F:      include/linux/mfd/gsc.h
7328 F:      Documentation/hwmon/gsc-hwmon.rst
7329 F:      drivers/hwmon/gsc-hwmon.c
7330 F:      include/linux/platform_data/gsc_hwmon.h
7331
7332 GASKET DRIVER FRAMEWORK
7333 M:      Rob Springer <[email protected]>
7334 M:      Todd Poynor <[email protected]>
7335 M:      Ben Chan <[email protected]>
7336 M:      Richard Yeh <[email protected]>
7337 S:      Maintained
7338 F:      drivers/staging/gasket/
7339
7340 GCC PLUGINS
7341 M:      Kees Cook <[email protected]>
7342 R:      Emese Revfy <[email protected]>
7343 L:      [email protected]
7344 S:      Maintained
7345 F:      Documentation/kbuild/gcc-plugins.rst
7346 F:      scripts/Makefile.gcc-plugins
7347 F:      scripts/gcc-plugin.sh
7348 F:      scripts/gcc-plugins/
7349
7350 GCOV BASED KERNEL PROFILING
7351 M:      Peter Oberparleiter <[email protected]>
7352 S:      Maintained
7353 F:      Documentation/dev-tools/gcov.rst
7354 F:      kernel/gcov/
7355
7356 GDB KERNEL DEBUGGING HELPER SCRIPTS
7357 M:      Jan Kiszka <[email protected]>
7358 M:      Kieran Bingham <[email protected]>
7359 S:      Supported
7360 F:      scripts/gdb/
7361
7362 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7363 M:      Achim Leubner <[email protected]>
7364 L:      [email protected]
7365 S:      Supported
7366 W:      http://www.icp-vortex.com/
7367 F:      drivers/scsi/gdt*
7368
7369 GEMTEK FM RADIO RECEIVER DRIVER
7370 M:      Hans Verkuil <[email protected]>
7371 L:      [email protected]
7372 S:      Maintained
7373 W:      https://linuxtv.org
7374 T:      git git://linuxtv.org/media_tree.git
7375 F:      drivers/media/radio/radio-gemtek*
7376
7377 GENERIC ARCHITECTURE TOPOLOGY
7378 M:      Sudeep Holla <[email protected]>
7379 L:      [email protected]
7380 S:      Maintained
7381 F:      drivers/base/arch_topology.c
7382 F:      include/linux/arch_topology.h
7383
7384 GENERIC ENTRY CODE
7385 M:      Thomas Gleixner <[email protected]>
7386 M:      Peter Zijlstra <[email protected]>
7387 M:      Andy Lutomirski <[email protected]>
7388 L:      [email protected]
7389 S:      Maintained
7390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7391 F:      include/linux/entry-common.h
7392 F:      include/linux/entry-kvm.h
7393 F:      kernel/entry/
7394
7395 GENERIC GPIO I2C DRIVER
7396 M:      Wolfram Sang <[email protected]>
7397 S:      Supported
7398 F:      drivers/i2c/busses/i2c-gpio.c
7399 F:      include/linux/platform_data/i2c-gpio.h
7400
7401 GENERIC GPIO I2C MULTIPLEXER DRIVER
7402 M:      Peter Korsgaard <[email protected]>
7403 L:      [email protected]
7404 S:      Supported
7405 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7406 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7407 F:      include/linux/platform_data/i2c-mux-gpio.h
7408
7409 GENERIC HDLC (WAN) DRIVERS
7410 M:      Krzysztof Halasa <[email protected]>
7411 S:      Maintained
7412 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7413 F:      drivers/net/wan/c101.c
7414 F:      drivers/net/wan/hd6457*
7415 F:      drivers/net/wan/hdlc*
7416 F:      drivers/net/wan/n2.c
7417 F:      drivers/net/wan/pc300too.c
7418 F:      drivers/net/wan/pci200syn.c
7419 F:      drivers/net/wan/wanxl*
7420
7421 GENERIC INCLUDE/ASM HEADER FILES
7422 M:      Arnd Bergmann <[email protected]>
7423 L:      [email protected]
7424 S:      Maintained
7425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7426 F:      include/asm-generic/
7427 F:      include/uapi/asm-generic/
7428
7429 GENERIC PHY FRAMEWORK
7430 M:      Kishon Vijay Abraham I <[email protected]>
7431 M:      Vinod Koul <[email protected]>
7432 L:      [email protected]
7433 S:      Supported
7434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7435 F:      Documentation/devicetree/bindings/phy/
7436 F:      drivers/phy/
7437 F:      include/linux/phy/
7438
7439 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7440 M:      Wolfram Sang <[email protected]>
7441 S:      Supported
7442 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7443
7444 GENERIC PM DOMAINS
7445 M:      "Rafael J. Wysocki" <[email protected]>
7446 M:      Kevin Hilman <[email protected]>
7447 M:      Ulf Hansson <[email protected]>
7448 L:      [email protected]
7449 S:      Supported
7450 F:      Documentation/devicetree/bindings/power/power?domain*
7451 F:      drivers/base/power/domain*.c
7452 F:      include/linux/pm_domain.h
7453
7454 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7455 M:      Eugen Hristev <[email protected]>
7456 L:      [email protected]
7457 S:      Maintained
7458 F:      drivers/input/touchscreen/resistive-adc-touch.c
7459
7460 GENERIC UIO DRIVER FOR PCI DEVICES
7461 M:      "Michael S. Tsirkin" <[email protected]>
7462 L:      [email protected]
7463 S:      Supported
7464 F:      drivers/uio/uio_pci_generic.c
7465
7466 GENERIC VDSO LIBRARY
7467 M:      Andy Lutomirski <[email protected]>
7468 M:      Thomas Gleixner <[email protected]>
7469 M:      Vincenzo Frascino <[email protected]>
7470 L:      [email protected]
7471 S:      Maintained
7472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7473 F:      include/asm-generic/vdso/vsyscall.h
7474 F:      include/vdso/
7475 F:      kernel/time/vsyscall.c
7476 F:      lib/vdso/
7477
7478 GENWQE (IBM Generic Workqueue Card)
7479 M:      Frank Haverkamp <[email protected]>
7480 S:      Supported
7481 F:      drivers/misc/genwqe/
7482
7483 GET_MAINTAINER SCRIPT
7484 M:      Joe Perches <[email protected]>
7485 S:      Maintained
7486 F:      scripts/get_maintainer.pl
7487
7488 GFS2 FILE SYSTEM
7489 M:      Bob Peterson <[email protected]>
7490 M:      Andreas Gruenbacher <[email protected]>
7491 L:      [email protected]
7492 S:      Supported
7493 W:      http://sources.redhat.com/cluster/
7494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7495 F:      Documentation/filesystems/gfs2*
7496 F:      fs/gfs2/
7497 F:      include/uapi/linux/gfs2_ondisk.h
7498
7499 GNSS SUBSYSTEM
7500 M:      Johan Hovold <[email protected]>
7501 S:      Maintained
7502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7503 F:      Documentation/ABI/testing/sysfs-class-gnss
7504 F:      Documentation/devicetree/bindings/gnss/
7505 F:      drivers/gnss/
7506 F:      include/linux/gnss.h
7507
7508 GO7007 MPEG CODEC
7509 M:      Hans Verkuil <[email protected]>
7510 L:      [email protected]
7511 S:      Maintained
7512 F:      drivers/media/usb/go7007/
7513
7514 GOODIX TOUCHSCREEN
7515 M:      Bastien Nocera <[email protected]>
7516 L:      [email protected]
7517 S:      Maintained
7518 F:      drivers/input/touchscreen/goodix.c
7519
7520 GOOGLE ETHERNET DRIVERS
7521 M:      Catherine Sullivan <[email protected]>
7522 R:      Sagi Shahar <[email protected]>
7523 R:      Jon Olson <[email protected]>
7524 L:      [email protected]
7525 S:      Supported
7526 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7527 F:      drivers/net/ethernet/google
7528
7529 GPD POCKET FAN DRIVER
7530 M:      Hans de Goede <[email protected]>
7531 L:      [email protected]
7532 S:      Maintained
7533 F:      drivers/platform/x86/gpd-pocket-fan.c
7534
7535 GPIO ACPI SUPPORT
7536 M:      Mika Westerberg <[email protected]>
7537 M:      Andy Shevchenko <[email protected]>
7538 L:      [email protected]
7539 L:      [email protected]
7540 S:      Maintained
7541 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7542 F:      drivers/gpio/gpiolib-acpi.c
7543 F:      drivers/gpio/gpiolib-acpi.h
7544
7545 GPIO AGGREGATOR
7546 M:      Geert Uytterhoeven <[email protected]>
7547 L:      [email protected]
7548 S:      Supported
7549 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7550 F:      drivers/gpio/gpio-aggregator.c
7551
7552 GPIO IR Transmitter
7553 M:      Sean Young <[email protected]>
7554 L:      [email protected]
7555 S:      Maintained
7556 F:      drivers/media/rc/gpio-ir-tx.c
7557
7558 GPIO MOCKUP DRIVER
7559 M:      Bamvor Jian Zhang <[email protected]>
7560 L:      [email protected]
7561 S:      Maintained
7562 F:      drivers/gpio/gpio-mockup.c
7563 F:      tools/testing/selftests/gpio/
7564
7565 GPIO REGMAP
7566 R:      Michael Walle <[email protected]>
7567 S:      Maintained
7568 F:      drivers/gpio/gpio-regmap.c
7569 F:      include/linux/gpio/regmap.h
7570
7571 GPIO SUBSYSTEM
7572 M:      Linus Walleij <[email protected]>
7573 M:      Bartosz Golaszewski <[email protected]>
7574 L:      [email protected]
7575 S:      Maintained
7576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7577 F:      Documentation/ABI/obsolete/sysfs-gpio
7578 F:      Documentation/ABI/testing/gpio-cdev
7579 F:      Documentation/admin-guide/gpio/
7580 F:      Documentation/devicetree/bindings/gpio/
7581 F:      Documentation/driver-api/gpio/
7582 F:      drivers/gpio/
7583 F:      include/asm-generic/gpio.h
7584 F:      include/linux/gpio.h
7585 F:      include/linux/gpio/
7586 F:      include/linux/of_gpio.h
7587 F:      include/uapi/linux/gpio.h
7588 F:      tools/gpio/
7589
7590 GRE DEMULTIPLEXER DRIVER
7591 M:      Dmitry Kozlov <[email protected]>
7592 L:      [email protected]
7593 S:      Maintained
7594 F:      include/net/gre.h
7595 F:      net/ipv4/gre_demux.c
7596 F:      net/ipv4/gre_offload.c
7597
7598 GRETH 10/100/1G Ethernet MAC device driver
7599 M:      Andreas Larsson <[email protected]>
7600 L:      [email protected]
7601 S:      Maintained
7602 F:      drivers/net/ethernet/aeroflex/
7603
7604 GREYBUS AUDIO PROTOCOLS DRIVERS
7605 M:      Vaibhav Agarwal <[email protected]>
7606 M:      Mark Greer <[email protected]>
7607 S:      Maintained
7608 F:      drivers/staging/greybus/audio_apbridgea.c
7609 F:      drivers/staging/greybus/audio_apbridgea.h
7610 F:      drivers/staging/greybus/audio_codec.c
7611 F:      drivers/staging/greybus/audio_codec.h
7612 F:      drivers/staging/greybus/audio_gb.c
7613 F:      drivers/staging/greybus/audio_manager.c
7614 F:      drivers/staging/greybus/audio_manager.h
7615 F:      drivers/staging/greybus/audio_manager_module.c
7616 F:      drivers/staging/greybus/audio_manager_private.h
7617 F:      drivers/staging/greybus/audio_manager_sysfs.c
7618 F:      drivers/staging/greybus/audio_module.c
7619 F:      drivers/staging/greybus/audio_topology.c
7620
7621 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7622 M:      Viresh Kumar <[email protected]>
7623 S:      Maintained
7624 F:      drivers/staging/greybus/authentication.c
7625 F:      drivers/staging/greybus/bootrom.c
7626 F:      drivers/staging/greybus/firmware.h
7627 F:      drivers/staging/greybus/fw-core.c
7628 F:      drivers/staging/greybus/fw-download.c
7629 F:      drivers/staging/greybus/fw-management.c
7630 F:      drivers/staging/greybus/greybus_authentication.h
7631 F:      drivers/staging/greybus/greybus_firmware.h
7632 F:      drivers/staging/greybus/hid.c
7633 F:      drivers/staging/greybus/i2c.c
7634 F:      drivers/staging/greybus/spi.c
7635 F:      drivers/staging/greybus/spilib.c
7636 F:      drivers/staging/greybus/spilib.h
7637
7638 GREYBUS LOOPBACK DRIVER
7639 M:      Bryan O'Donoghue <[email protected]>
7640 S:      Maintained
7641 F:      drivers/staging/greybus/loopback.c
7642
7643 GREYBUS PLATFORM DRIVERS
7644 M:      Vaibhav Hiremath <[email protected]>
7645 S:      Maintained
7646 F:      drivers/staging/greybus/arche-apb-ctrl.c
7647 F:      drivers/staging/greybus/arche-platform.c
7648 F:      drivers/staging/greybus/arche_platform.h
7649
7650 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7651 M:      Rui Miguel Silva <[email protected]>
7652 S:      Maintained
7653 F:      drivers/staging/greybus/gpio.c
7654 F:      drivers/staging/greybus/light.c
7655 F:      drivers/staging/greybus/power_supply.c
7656 F:      drivers/staging/greybus/sdio.c
7657 F:      drivers/staging/greybus/spi.c
7658 F:      drivers/staging/greybus/spilib.c
7659
7660 GREYBUS SUBSYSTEM
7661 M:      Johan Hovold <[email protected]>
7662 M:      Alex Elder <[email protected]>
7663 M:      Greg Kroah-Hartman <[email protected]>
7664 L:      [email protected] (moderated for non-subscribers)
7665 S:      Maintained
7666 F:      drivers/greybus/
7667 F:      drivers/staging/greybus/
7668 F:      include/linux/greybus.h
7669 F:      include/linux/greybus/
7670
7671 GREYBUS UART PROTOCOLS DRIVERS
7672 M:      David Lin <[email protected]>
7673 S:      Maintained
7674 F:      drivers/staging/greybus/log.c
7675 F:      drivers/staging/greybus/uart.c
7676
7677 GS1662 VIDEO SERIALIZER
7678 M:      Charles-Antoine Couret <[email protected]>
7679 L:      [email protected]
7680 S:      Maintained
7681 T:      git git://linuxtv.org/media_tree.git
7682 F:      drivers/media/spi/gs1662.c
7683
7684 GSPCA FINEPIX SUBDRIVER
7685 M:      Frank Zago <[email protected]>
7686 L:      [email protected]
7687 S:      Maintained
7688 T:      git git://linuxtv.org/media_tree.git
7689 F:      drivers/media/usb/gspca/finepix.c
7690
7691 GSPCA GL860 SUBDRIVER
7692 M:      Olivier Lorin <[email protected]>
7693 L:      [email protected]
7694 S:      Maintained
7695 T:      git git://linuxtv.org/media_tree.git
7696 F:      drivers/media/usb/gspca/gl860/
7697
7698 GSPCA M5602 SUBDRIVER
7699 M:      Erik Andren <[email protected]>
7700 L:      [email protected]
7701 S:      Maintained
7702 T:      git git://linuxtv.org/media_tree.git
7703 F:      drivers/media/usb/gspca/m5602/
7704
7705 GSPCA PAC207 SONIXB SUBDRIVER
7706 M:      Hans Verkuil <[email protected]>
7707 L:      [email protected]
7708 S:      Odd Fixes
7709 T:      git git://linuxtv.org/media_tree.git
7710 F:      drivers/media/usb/gspca/pac207.c
7711
7712 GSPCA SN9C20X SUBDRIVER
7713 M:      Brian Johnson <[email protected]>
7714 L:      [email protected]
7715 S:      Maintained
7716 T:      git git://linuxtv.org/media_tree.git
7717 F:      drivers/media/usb/gspca/sn9c20x.c
7718
7719 GSPCA T613 SUBDRIVER
7720 M:      Leandro Costantino <[email protected]>
7721 L:      [email protected]
7722 S:      Maintained
7723 T:      git git://linuxtv.org/media_tree.git
7724 F:      drivers/media/usb/gspca/t613.c
7725
7726 GSPCA USB WEBCAM DRIVER
7727 M:      Hans Verkuil <[email protected]>
7728 L:      [email protected]
7729 S:      Odd Fixes
7730 T:      git git://linuxtv.org/media_tree.git
7731 F:      drivers/media/usb/gspca/
7732
7733 GTP (GPRS Tunneling Protocol)
7734 M:      Pablo Neira Ayuso <[email protected]>
7735 M:      Harald Welte <[email protected]>
7736 L:      [email protected]
7737 S:      Maintained
7738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7739 F:      drivers/net/gtp.c
7740
7741 GUID PARTITION TABLE (GPT)
7742 M:      Davidlohr Bueso <[email protected]>
7743 L:      [email protected]
7744 S:      Maintained
7745 F:      block/partitions/efi.*
7746
7747 H8/300 ARCHITECTURE
7748 M:      Yoshinori Sato <[email protected]>
7749 L:      [email protected] (moderated for non-subscribers)
7750 S:      Maintained
7751 W:      http://uclinux-h8.sourceforge.jp
7752 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7753 F:      arch/h8300/
7754 F:      drivers/clk/h8300/
7755 F:      drivers/clocksource/h8300_*.c
7756 F:      drivers/irqchip/irq-renesas-h8*.c
7757
7758 HABANALABS PCI DRIVER
7759 M:      Oded Gabbay <[email protected]>
7760 S:      Supported
7761 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
7762 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7763 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7764 F:      drivers/misc/habanalabs/
7765 F:      include/uapi/misc/habanalabs.h
7766
7767 HACKRF MEDIA DRIVER
7768 M:      Antti Palosaari <[email protected]>
7769 L:      [email protected]
7770 S:      Maintained
7771 W:      https://linuxtv.org
7772 W:      http://palosaari.fi/linux/
7773 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7774 T:      git git://linuxtv.org/anttip/media_tree.git
7775 F:      drivers/media/usb/hackrf/
7776
7777 HANTRO VPU CODEC DRIVER
7778 M:      Ezequiel Garcia <[email protected]>
7779 M:      Philipp Zabel <[email protected]>
7780 L:      [email protected]
7781 L:      [email protected]
7782 S:      Maintained
7783 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7784 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7785 F:      drivers/staging/media/hantro/
7786
7787 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7788 M:      Frank Seidel <[email protected]>
7789 L:      [email protected]
7790 S:      Maintained
7791 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7792 F:      drivers/platform/x86/hdaps.c
7793
7794 HARDWARE MONITORING
7795 M:      Jean Delvare <[email protected]>
7796 M:      Guenter Roeck <[email protected]>
7797 L:      [email protected]
7798 S:      Maintained
7799 W:      http://hwmon.wiki.kernel.org/
7800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7801 F:      Documentation/devicetree/bindings/hwmon/
7802 F:      Documentation/hwmon/
7803 F:      drivers/hwmon/
7804 F:      include/linux/hwmon*.h
7805 F:      include/trace/events/hwmon*.h
7806
7807 HARDWARE RANDOM NUMBER GENERATOR CORE
7808 M:      Matt Mackall <[email protected]>
7809 M:      Herbert Xu <[email protected]>
7810 L:      [email protected]
7811 S:      Odd fixes
7812 F:      Documentation/admin-guide/hw_random.rst
7813 F:      Documentation/devicetree/bindings/rng/
7814 F:      drivers/char/hw_random/
7815 F:      include/linux/hw_random.h
7816
7817 HARDWARE SPINLOCK CORE
7818 M:      Ohad Ben-Cohen <[email protected]>
7819 M:      Bjorn Andersson <[email protected]>
7820 R:      Baolin Wang <[email protected]>
7821 L:      [email protected]
7822 S:      Maintained
7823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7824 F:      Documentation/devicetree/bindings/hwlock/
7825 F:      Documentation/locking/hwspinlock.rst
7826 F:      drivers/hwspinlock/
7827 F:      include/linux/hwspinlock.h
7828
7829 HARDWARE TRACING FACILITIES
7830 M:      Alexander Shishkin <[email protected]>
7831 S:      Maintained
7832 F:      drivers/hwtracing/
7833
7834 HARMONY SOUND DRIVER
7835 L:      [email protected]
7836 S:      Maintained
7837 F:      sound/parisc/harmony.*
7838
7839 HDPVR USB VIDEO ENCODER DRIVER
7840 M:      Hans Verkuil <[email protected]>
7841 L:      [email protected]
7842 S:      Odd Fixes
7843 W:      https://linuxtv.org
7844 T:      git git://linuxtv.org/media_tree.git
7845 F:      drivers/media/usb/hdpvr/
7846
7847 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7848 M:      Jerry Hoemann <[email protected]>
7849 S:      Supported
7850 F:      Documentation/watchdog/hpwdt.rst
7851 F:      drivers/watchdog/hpwdt.c
7852
7853 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7854 M:      Don Brace <[email protected]>
7855 L:      [email protected]
7856 L:      [email protected]
7857 S:      Supported
7858 F:      Documentation/scsi/hpsa.rst
7859 F:      drivers/scsi/hpsa*.[ch]
7860 F:      include/linux/cciss*.h
7861 F:      include/uapi/linux/cciss*.h
7862
7863 HFI1 DRIVER
7864 M:      Mike Marciniszyn <[email protected]>
7865 M:      Dennis Dalessandro <[email protected]>
7866 L:      [email protected]
7867 S:      Supported
7868 F:      drivers/infiniband/hw/hfi1
7869
7870 HFS FILESYSTEM
7871 L:      [email protected]
7872 S:      Orphan
7873 F:      Documentation/filesystems/hfs.rst
7874 F:      fs/hfs/
7875
7876 HFSPLUS FILESYSTEM
7877 L:      [email protected]
7878 S:      Orphan
7879 F:      Documentation/filesystems/hfsplus.rst
7880 F:      fs/hfsplus/
7881
7882 HGA FRAMEBUFFER DRIVER
7883 M:      Ferenc Bakonyi <[email protected]>
7884 L:      [email protected]
7885 S:      Maintained
7886 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7887 F:      drivers/video/fbdev/hgafb.c
7888
7889 HIBERNATION (aka Software Suspend, aka swsusp)
7890 M:      "Rafael J. Wysocki" <[email protected]>
7891 M:      Pavel Machek <[email protected]>
7892 L:      [email protected]
7893 S:      Supported
7894 B:      https://bugzilla.kernel.org
7895 F:      arch/*/include/asm/suspend*.h
7896 F:      arch/x86/power/
7897 F:      drivers/base/power/
7898 F:      include/linux/freezer.h
7899 F:      include/linux/pm.h
7900 F:      include/linux/suspend.h
7901 F:      kernel/power/
7902
7903 HID CORE LAYER
7904 M:      Jiri Kosina <[email protected]>
7905 M:      Benjamin Tissoires <[email protected]>
7906 L:      [email protected]
7907 S:      Maintained
7908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7909 F:      drivers/hid/
7910 F:      include/linux/hid*
7911 F:      include/uapi/linux/hid*
7912
7913 HID SENSOR HUB DRIVERS
7914 M:      Jiri Kosina <[email protected]>
7915 M:      Jonathan Cameron <[email protected]>
7916 M:      Srinivas Pandruvada <[email protected]>
7917 L:      [email protected]
7918 L:      [email protected]
7919 S:      Maintained
7920 F:      Documentation/hid/hid-sensor*
7921 F:      drivers/hid/hid-sensor-*
7922 F:      drivers/iio/*/hid-*
7923 F:      include/linux/hid-sensor-*
7924
7925 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7926 M:      Thomas Gleixner <[email protected]>
7927 L:      [email protected]
7928 S:      Maintained
7929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7930 F:      Documentation/timers/
7931 F:      include/linux/clockchips.h
7932 F:      include/linux/hrtimer.h
7933 F:      kernel/time/clockevents.c
7934 F:      kernel/time/hrtimer.c
7935 F:      kernel/time/timer_*.c
7936
7937 HIGH-SPEED SCC DRIVER FOR AX.25
7938 L:      [email protected]
7939 S:      Orphan
7940 F:      drivers/net/hamradio/dmascc.c
7941 F:      drivers/net/hamradio/scc.c
7942
7943 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7944 M:      HighPoint Linux Team <[email protected]>
7945 S:      Supported
7946 W:      http://www.highpoint-tech.com
7947 F:      Documentation/scsi/hptiop.rst
7948 F:      drivers/scsi/hptiop.c
7949
7950 HIPPI
7951 M:      Jes Sorensen <[email protected]>
7952 L:      [email protected]
7953 S:      Maintained
7954 F:      drivers/net/hippi/
7955 F:      include/linux/hippidevice.h
7956 F:      include/uapi/linux/if_hippi.h
7957 F:      net/802/hippi.c
7958
7959 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
7960 M:      Kurt Kanzenbach <[email protected]>
7961 L:      [email protected]
7962 S:      Maintained
7963 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
7964 F:      drivers/net/dsa/hirschmann/*
7965 F:      include/linux/platform_data/hirschmann-hellcreek.h
7966 F:      net/dsa/tag_hellcreek.c
7967
7968 HISILICON DMA DRIVER
7969 M:      Zhou Wang <[email protected]>
7970 L:      [email protected]
7971 S:      Maintained
7972 F:      drivers/dma/hisi_dma.c
7973
7974 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7975 M:      Zaibo Xu <[email protected]>
7976 L:      [email protected]
7977 S:      Maintained
7978 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7979 F:      drivers/crypto/hisilicon/hpre/hpre.h
7980 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7981 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7982
7983 HISILICON LPC BUS DRIVER
7984 M:      [email protected]
7985 S:      Maintained
7986 W:      http://www.hisilicon.com
7987 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
7988 F:      drivers/bus/hisi_lpc.c
7989
7990 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7991 M:      Yisen Zhuang <[email protected]>
7992 M:      Salil Mehta <[email protected]>
7993 L:      [email protected]
7994 S:      Maintained
7995 W:      http://www.hisilicon.com
7996 F:      drivers/net/ethernet/hisilicon/hns3/
7997
7998 HISILICON NETWORK SUBSYSTEM DRIVER
7999 M:      Yisen Zhuang <[email protected]>
8000 M:      Salil Mehta <[email protected]>
8001 L:      [email protected]
8002 S:      Maintained
8003 W:      http://www.hisilicon.com
8004 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8005 F:      drivers/net/ethernet/hisilicon/
8006
8007 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8008 M:      John Stultz <[email protected]>
8009 L:      [email protected]
8010 S:      Maintained
8011 F:      drivers/misc/hisi_hikey_usb.c
8012 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8013
8014 HISILICON PMU DRIVER
8015 M:      Shaokun Zhang <[email protected]>
8016 S:      Supported
8017 W:      http://www.hisilicon.com
8018 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8019 F:      drivers/perf/hisilicon
8020
8021 HISILICON QM AND ZIP Controller DRIVER
8022 M:      Zhou Wang <[email protected]>
8023 L:      [email protected]
8024 S:      Maintained
8025 F:      Documentation/ABI/testing/debugfs-hisi-zip
8026 F:      drivers/crypto/hisilicon/qm.c
8027 F:      drivers/crypto/hisilicon/qm.h
8028 F:      drivers/crypto/hisilicon/sgl.c
8029 F:      drivers/crypto/hisilicon/zip/
8030
8031 HISILICON ROCE DRIVER
8032 M:      Lijun Ou <[email protected]>
8033 M:      Wei Hu(Xavier) <[email protected]>
8034 M:      Weihang Li <[email protected]>
8035 L:      [email protected]
8036 S:      Maintained
8037 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8038 F:      drivers/infiniband/hw/hns/
8039
8040 HISILICON SAS Controller
8041 M:      John Garry <[email protected]>
8042 S:      Supported
8043 W:      http://www.hisilicon.com
8044 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8045 F:      drivers/scsi/hisi_sas/
8046
8047 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8048 M:      Zaibo Xu <[email protected]>
8049 L:      [email protected]
8050 S:      Maintained
8051 F:      Documentation/ABI/testing/debugfs-hisi-sec
8052 F:      drivers/crypto/hisilicon/sec2/sec.h
8053 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8054 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8055 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8056
8057 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8058 M:      Mauro Carvalho Chehab <[email protected]>
8059 L:      [email protected]
8060 S:      Maintained
8061 F:      drivers/staging/hikey9xx/
8062
8063 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8064 M:      Zaibo Xu <[email protected]>
8065 S:      Maintained
8066 F:      drivers/crypto/hisilicon/trng/trng.c
8067
8068 HISILICON V3XX SPI NOR FLASH Controller Driver
8069 M:      John Garry <[email protected]>
8070 S:      Maintained
8071 W:      http://www.hisilicon.com
8072 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8073
8074 HMM - Heterogeneous Memory Management
8075 M:      Jérôme Glisse <[email protected]>
8076 L:      [email protected]
8077 S:      Maintained
8078 F:      Documentation/vm/hmm.rst
8079 F:      include/linux/hmm*
8080 F:      lib/test_hmm*
8081 F:      mm/hmm*
8082 F:      tools/testing/selftests/vm/*hmm*
8083
8084 HOST AP DRIVER
8085 M:      Jouni Malinen <[email protected]>
8086 L:      [email protected]
8087 S:      Obsolete
8088 W:      http://w1.fi/hostap-driver.html
8089 F:      drivers/net/wireless/intersil/hostap/
8090
8091 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8092 L:      [email protected]
8093 S:      Orphan
8094 F:      drivers/platform/x86/tc1100-wmi.c
8095
8096 HPET:   High Precision Event Timers driver
8097 M:      Clemens Ladisch <[email protected]>
8098 S:      Maintained
8099 F:      Documentation/timers/hpet.rst
8100 F:      drivers/char/hpet.c
8101 F:      include/linux/hpet.h
8102 F:      include/uapi/linux/hpet.h
8103
8104 HPET:   x86
8105 S:      Orphan
8106 F:      arch/x86/include/asm/hpet.h
8107 F:      arch/x86/kernel/hpet.c
8108
8109 HPFS FILESYSTEM
8110 M:      Mikulas Patocka <[email protected]>
8111 S:      Maintained
8112 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8113 F:      fs/hpfs/
8114
8115 HSI SUBSYSTEM
8116 M:      Sebastian Reichel <[email protected]>
8117 S:      Maintained
8118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8119 F:      Documentation/ABI/testing/sysfs-bus-hsi
8120 F:      Documentation/driver-api/hsi.rst
8121 F:      drivers/hsi/
8122 F:      include/linux/hsi/
8123 F:      include/uapi/linux/hsi/
8124
8125 HSO 3G MODEM DRIVER
8126 L:      [email protected]
8127 S:      Orphan
8128 F:      drivers/net/usb/hso.c
8129
8130 HSR NETWORK PROTOCOL
8131 L:      [email protected]
8132 S:      Orphan
8133 F:      net/hsr/
8134
8135 HT16K33 LED CONTROLLER DRIVER
8136 M:      Robin van der Gracht <[email protected]>
8137 S:      Maintained
8138 F:      Documentation/devicetree/bindings/display/ht16k33.txt
8139 F:      drivers/auxdisplay/ht16k33.c
8140
8141 HTCPEN TOUCHSCREEN DRIVER
8142 M:      Pau Oliva Fora <[email protected]>
8143 L:      [email protected]
8144 S:      Maintained
8145 F:      drivers/input/touchscreen/htcpen.c
8146
8147 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8148 M:      Lorenzo Bianconi <[email protected]>
8149 L:      [email protected]
8150 S:      Maintained
8151 W:      http://www.st.com/
8152 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
8153 F:      drivers/iio/humidity/hts221*
8154
8155 HUAWEI ETHERNET DRIVER
8156 M:      Bin Luo <[email protected]>
8157 L:      [email protected]
8158 S:      Supported
8159 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8160 F:      drivers/net/ethernet/huawei/hinic/
8161
8162 HUGETLB FILESYSTEM
8163 M:      Mike Kravetz <[email protected]>
8164 L:      [email protected]
8165 S:      Maintained
8166 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8167 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8168 F:      Documentation/vm/hugetlbfs_reserv.rst
8169 F:      fs/hugetlbfs/
8170 F:      include/linux/hugetlb.h
8171 F:      mm/hugetlb.c
8172
8173 HVA ST MEDIA DRIVER
8174 M:      Jean-Christophe Trotin <[email protected]>
8175 L:      [email protected]
8176 S:      Supported
8177 W:      https://linuxtv.org
8178 T:      git git://linuxtv.org/media_tree.git
8179 F:      drivers/media/platform/sti/hva
8180
8181 HWPOISON MEMORY FAILURE HANDLING
8182 M:      Naoya Horiguchi <[email protected]>
8183 L:      [email protected]
8184 S:      Maintained
8185 F:      mm/hwpoison-inject.c
8186 F:      mm/memory-failure.c
8187
8188 HYGON PROCESSOR SUPPORT
8189 M:      Pu Wen <[email protected]>
8190 L:      [email protected]
8191 S:      Maintained
8192 F:      arch/x86/kernel/cpu/hygon.c
8193
8194 HYNIX HI556 SENSOR DRIVER
8195 M:      Shawn Tu <[email protected]>
8196 L:      [email protected]
8197 S:      Maintained
8198 T:      git git://linuxtv.org/media_tree.git
8199 F:      drivers/media/i2c/hi556.c
8200
8201 Hyper-V CORE AND DRIVERS
8202 M:      "K. Y. Srinivasan" <[email protected]>
8203 M:      Haiyang Zhang <[email protected]>
8204 M:      Stephen Hemminger <[email protected]>
8205 M:      Wei Liu <[email protected]>
8206 L:      [email protected]
8207 S:      Supported
8208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8209 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8210 F:      Documentation/ABI/testing/debugfs-hyperv
8211 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8212 F:      arch/x86/hyperv
8213 F:      arch/x86/include/asm/hyperv-tlfs.h
8214 F:      arch/x86/include/asm/mshyperv.h
8215 F:      arch/x86/include/asm/trace/hyperv.h
8216 F:      arch/x86/kernel/cpu/mshyperv.c
8217 F:      drivers/clocksource/hyperv_timer.c
8218 F:      drivers/hid/hid-hyperv.c
8219 F:      drivers/hv/
8220 F:      drivers/input/serio/hyperv-keyboard.c
8221 F:      drivers/iommu/hyperv-iommu.c
8222 F:      drivers/net/hyperv/
8223 F:      drivers/pci/controller/pci-hyperv-intf.c
8224 F:      drivers/pci/controller/pci-hyperv.c
8225 F:      drivers/scsi/storvsc_drv.c
8226 F:      drivers/uio/uio_hv_generic.c
8227 F:      drivers/video/fbdev/hyperv_fb.c
8228 F:      include/asm-generic/hyperv-tlfs.h
8229 F:      include/asm-generic/mshyperv.h
8230 F:      include/clocksource/hyperv_timer.h
8231 F:      include/linux/hyperv.h
8232 F:      include/uapi/linux/hyperv.h
8233 F:      net/vmw_vsock/hyperv_transport.c
8234 F:      tools/hv/
8235
8236 HYPERBUS SUPPORT
8237 M:      Vignesh Raghavendra <[email protected]>
8238 L:      [email protected]
8239 S:      Supported
8240 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8241 C:      irc://irc.oftc.net/mtd
8242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8243 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8244 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8245 F:      drivers/mtd/hyperbus/
8246 F:      include/linux/mtd/hyperbus.h
8247
8248 HYPERVISOR VIRTUAL CONSOLE DRIVER
8249 L:      [email protected]
8250 S:      Odd Fixes
8251 F:      drivers/tty/hvc/
8252
8253 I2C ACPI SUPPORT
8254 M:      Mika Westerberg <[email protected]>
8255 L:      [email protected]
8256 L:      [email protected]
8257 S:      Maintained
8258 F:      drivers/i2c/i2c-core-acpi.c
8259
8260 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8261 M:      Ajay Gupta <[email protected]>
8262 L:      [email protected]
8263 S:      Maintained
8264 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8265 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8266
8267 I2C MUXES
8268 M:      Peter Rosin <[email protected]>
8269 L:      [email protected]
8270 S:      Maintained
8271 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8272 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8273 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8274 F:      Documentation/i2c/i2c-topology.rst
8275 F:      Documentation/i2c/muxes/
8276 F:      drivers/i2c/i2c-mux.c
8277 F:      drivers/i2c/muxes/
8278 F:      include/linux/i2c-mux.h
8279
8280 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8281 M:      Gregory CLEMENT <[email protected]>
8282 L:      [email protected]
8283 S:      Maintained
8284 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8285 F:      drivers/i2c/busses/i2c-mv64xxx.c
8286
8287 I2C OVER PARALLEL PORT
8288 M:      Jean Delvare <[email protected]>
8289 L:      [email protected]
8290 S:      Maintained
8291 F:      Documentation/i2c/busses/i2c-parport.rst
8292 F:      drivers/i2c/busses/i2c-parport.c
8293
8294 I2C SUBSYSTEM
8295 M:      Wolfram Sang <[email protected]>
8296 L:      [email protected]
8297 S:      Maintained
8298 W:      https://i2c.wiki.kernel.org/
8299 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8301 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8302 F:      Documentation/i2c/
8303 F:      drivers/i2c/*
8304 F:      include/linux/i2c-dev.h
8305 F:      include/linux/i2c-smbus.h
8306 F:      include/linux/i2c.h
8307 F:      include/uapi/linux/i2c-*.h
8308 F:      include/uapi/linux/i2c.h
8309
8310 I2C SUBSYSTEM HOST DRIVERS
8311 L:      [email protected]
8312 S:      Odd Fixes
8313 W:      https://i2c.wiki.kernel.org/
8314 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8316 F:      Documentation/devicetree/bindings/i2c/
8317 F:      drivers/i2c/algos/
8318 F:      drivers/i2c/busses/
8319
8320 I2C-TAOS-EVM DRIVER
8321 M:      Jean Delvare <[email protected]>
8322 L:      [email protected]
8323 S:      Maintained
8324 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8325 F:      drivers/i2c/busses/i2c-taos-evm.c
8326
8327 I2C-TINY-USB DRIVER
8328 M:      Till Harbaum <[email protected]>
8329 L:      [email protected]
8330 S:      Maintained
8331 W:      http://www.harbaum.org/till/i2c_tiny_usb
8332 F:      drivers/i2c/busses/i2c-tiny-usb.c
8333
8334 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8335 M:      Jean Delvare <[email protected]>
8336 L:      [email protected]
8337 S:      Maintained
8338 F:      Documentation/i2c/busses/i2c-ali1535.rst
8339 F:      Documentation/i2c/busses/i2c-ali1563.rst
8340 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8341 F:      Documentation/i2c/busses/i2c-amd756.rst
8342 F:      Documentation/i2c/busses/i2c-amd8111.rst
8343 F:      Documentation/i2c/busses/i2c-i801.rst
8344 F:      Documentation/i2c/busses/i2c-nforce2.rst
8345 F:      Documentation/i2c/busses/i2c-piix4.rst
8346 F:      Documentation/i2c/busses/i2c-sis5595.rst
8347 F:      Documentation/i2c/busses/i2c-sis630.rst
8348 F:      Documentation/i2c/busses/i2c-sis96x.rst
8349 F:      Documentation/i2c/busses/i2c-via.rst
8350 F:      Documentation/i2c/busses/i2c-viapro.rst
8351 F:      drivers/i2c/busses/i2c-ali1535.c
8352 F:      drivers/i2c/busses/i2c-ali1563.c
8353 F:      drivers/i2c/busses/i2c-ali15x3.c
8354 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8355 F:      drivers/i2c/busses/i2c-amd756.c
8356 F:      drivers/i2c/busses/i2c-amd8111.c
8357 F:      drivers/i2c/busses/i2c-i801.c
8358 F:      drivers/i2c/busses/i2c-isch.c
8359 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8360 F:      drivers/i2c/busses/i2c-nforce2.c
8361 F:      drivers/i2c/busses/i2c-piix4.c
8362 F:      drivers/i2c/busses/i2c-sis5595.c
8363 F:      drivers/i2c/busses/i2c-sis630.c
8364 F:      drivers/i2c/busses/i2c-sis96x.c
8365 F:      drivers/i2c/busses/i2c-via.c
8366 F:      drivers/i2c/busses/i2c-viapro.c
8367
8368 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8369 M:      Hans de Goede <[email protected]>
8370 L:      [email protected]
8371 S:      Maintained
8372 F:      drivers/i2c/busses/i2c-cht-wc.c
8373
8374 I2C/SMBUS ISMT DRIVER
8375 M:      Seth Heasley <[email protected]>
8376 M:      Neil Horman <[email protected]>
8377 L:      [email protected]
8378 F:      Documentation/i2c/busses/i2c-ismt.rst
8379 F:      drivers/i2c/busses/i2c-ismt.c
8380
8381 I2C/SMBUS STUB DRIVER
8382 M:      Jean Delvare <[email protected]>
8383 L:      [email protected]
8384 S:      Maintained
8385 F:      drivers/i2c/i2c-stub.c
8386
8387 I3C DRIVER FOR CADENCE I3C MASTER IP
8388 M:      Przemysław Gaj <[email protected]>
8389 S:      Maintained
8390 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8391 F:      drivers/i3c/master/i3c-master-cdns.c
8392
8393 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8394 M:      Vitor Soares <[email protected]>
8395 S:      Maintained
8396 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8397 F:      drivers/i3c/master/dw*
8398
8399 I3C SUBSYSTEM
8400 M:      Boris Brezillon <[email protected]>
8401 L:      [email protected] (moderated for non-subscribers)
8402 S:      Maintained
8403 C:      irc://chat.freenode.net/linux-i3c
8404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8405 F:      Documentation/ABI/testing/sysfs-bus-i3c
8406 F:      Documentation/devicetree/bindings/i3c/
8407 F:      Documentation/driver-api/i3c
8408 F:      drivers/i3c/
8409 F:      include/linux/i3c/
8410
8411 IA64 (Itanium) PLATFORM
8412 M:      Tony Luck <[email protected]>
8413 M:      Fenghua Yu <[email protected]>
8414 L:      [email protected]
8415 S:      Odd Fixes
8416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8417 F:      Documentation/ia64/
8418 F:      arch/ia64/
8419
8420 IBM Power 842 compression accelerator
8421 M:      Haren Myneni <[email protected]>
8422 S:      Supported
8423 F:      crypto/842.c
8424 F:      drivers/crypto/nx/Kconfig
8425 F:      drivers/crypto/nx/Makefile
8426 F:      drivers/crypto/nx/nx-842*
8427 F:      include/linux/sw842.h
8428 F:      lib/842/
8429
8430 IBM Power in-Nest Crypto Acceleration
8431 M:      Breno Leitão <[email protected]>
8432 M:      Nayna Jain <[email protected]>
8433 M:      Paulo Flabiano Smorigo <[email protected]>
8434 L:      [email protected]
8435 S:      Supported
8436 F:      drivers/crypto/nx/Kconfig
8437 F:      drivers/crypto/nx/Makefile
8438 F:      drivers/crypto/nx/nx-aes*
8439 F:      drivers/crypto/nx/nx-sha*
8440 F:      drivers/crypto/nx/nx.*
8441 F:      drivers/crypto/nx/nx_csbcpb.h
8442 F:      drivers/crypto/nx/nx_debugfs.c
8443
8444 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8445 M:      Tyrel Datwyler <[email protected]>
8446 L:      [email protected]
8447 L:      [email protected]
8448 S:      Supported
8449 F:      drivers/pci/hotplug/rpadlpar*
8450
8451 IBM Power Linux RAID adapter
8452 M:      Brian King <[email protected]>
8453 S:      Supported
8454 F:      drivers/scsi/ipr.*
8455
8456 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8457 M:      Tyrel Datwyler <[email protected]>
8458 L:      [email protected]
8459 L:      [email protected]
8460 S:      Supported
8461 F:      drivers/pci/hotplug/rpaphp*
8462
8463 IBM Power SRIOV Virtual NIC Device Driver
8464 M:      Dany Madden <[email protected]>
8465 M:      Lijun Pan <[email protected]>
8466 M:      Sukadev Bhattiprolu <[email protected]>
8467 L:      [email protected]
8468 S:      Supported
8469 F:      drivers/net/ethernet/ibm/ibmvnic.*
8470
8471 IBM Power Virtual Accelerator Switchboard
8472 M:      Sukadev Bhattiprolu <[email protected]>
8473 L:      [email protected]
8474 S:      Supported
8475 F:      arch/powerpc/include/asm/vas.h
8476 F:      arch/powerpc/platforms/powernv/copy-paste.h
8477 F:      arch/powerpc/platforms/powernv/vas*
8478
8479 IBM Power Virtual Ethernet Device Driver
8480 M:      Cristobal Forno <[email protected]>
8481 L:      [email protected]
8482 S:      Supported
8483 F:      drivers/net/ethernet/ibm/ibmveth.*
8484
8485 IBM Power Virtual FC Device Drivers
8486 M:      Tyrel Datwyler <[email protected]>
8487 L:      [email protected]
8488 S:      Supported
8489 F:      drivers/scsi/ibmvscsi/ibmvfc*
8490
8491 IBM Power Virtual Management Channel Driver
8492 M:      Steven Royer <[email protected]>
8493 S:      Supported
8494 F:      drivers/misc/ibmvmc.*
8495
8496 IBM Power Virtual SCSI Device Drivers
8497 M:      Tyrel Datwyler <[email protected]>
8498 L:      [email protected]
8499 S:      Supported
8500 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8501 F:      include/scsi/viosrp.h
8502
8503 IBM Power Virtual SCSI Device Target Driver
8504 M:      Michael Cyr <[email protected]>
8505 L:      [email protected]
8506 L:      [email protected]
8507 S:      Supported
8508 F:      drivers/scsi/ibmvscsi_tgt/
8509
8510 IBM Power VMX Cryptographic instructions
8511 M:      Breno Leitão <[email protected]>
8512 M:      Nayna Jain <[email protected]>
8513 M:      Paulo Flabiano Smorigo <[email protected]>
8514 L:      [email protected]
8515 S:      Supported
8516 F:      drivers/crypto/vmx/Kconfig
8517 F:      drivers/crypto/vmx/Makefile
8518 F:      drivers/crypto/vmx/aes*
8519 F:      drivers/crypto/vmx/ghash*
8520 F:      drivers/crypto/vmx/ppc-xlate.pl
8521 F:      drivers/crypto/vmx/vmx.c
8522
8523 IBM ServeRAID RAID DRIVER
8524 S:      Orphan
8525 F:      drivers/scsi/ips.*
8526
8527 ICH LPC AND GPIO DRIVER
8528 M:      Peter Tyser <[email protected]>
8529 S:      Maintained
8530 F:      drivers/gpio/gpio-ich.c
8531 F:      drivers/mfd/lpc_ich.c
8532
8533 ICY I2C DRIVER
8534 M:      Max Staudt <[email protected]>
8535 L:      [email protected]
8536 S:      Maintained
8537 F:      drivers/i2c/busses/i2c-icy.c
8538
8539 IDE SUBSYSTEM
8540 M:      "David S. Miller" <[email protected]>
8541 L:      [email protected]
8542 S:      Maintained
8543 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8545 F:      Documentation/ide/
8546 F:      drivers/ide/
8547 F:      include/linux/ide.h
8548
8549 IDE/ATAPI DRIVERS
8550 M:      Borislav Petkov <[email protected]>
8551 L:      [email protected]
8552 S:      Maintained
8553 F:      Documentation/cdrom/ide-cd.rst
8554 F:      drivers/ide/ide-cd*
8555
8556 IDEAPAD LAPTOP EXTRAS DRIVER
8557 M:      Ike Panhc <[email protected]>
8558 L:      [email protected]
8559 S:      Maintained
8560 W:      http://launchpad.net/ideapad-laptop
8561 F:      drivers/platform/x86/ideapad-laptop.c
8562
8563 IDEAPAD LAPTOP SLIDEBAR DRIVER
8564 M:      Andrey Moiseev <[email protected]>
8565 L:      [email protected]
8566 S:      Maintained
8567 W:      https://github.com/o2genum/ideapad-slidebar
8568 F:      drivers/input/misc/ideapad_slidebar.c
8569
8570 IDT VersaClock 5 CLOCK DRIVER
8571 M:      Luca Ceresoli <[email protected]>
8572 S:      Maintained
8573 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8574 F:      drivers/clk/clk-versaclock5.c
8575
8576 IEEE 802.15.4 SUBSYSTEM
8577 M:      Alexander Aring <[email protected]>
8578 M:      Stefan Schmidt <[email protected]>
8579 L:      [email protected]
8580 S:      Maintained
8581 W:      https://linux-wpan.org/
8582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8584 F:      Documentation/networking/ieee802154.rst
8585 F:      drivers/net/ieee802154/
8586 F:      include/linux/ieee802154.h
8587 F:      include/linux/nl802154.h
8588 F:      include/net/af_ieee802154.h
8589 F:      include/net/cfg802154.h
8590 F:      include/net/ieee802154_netdev.h
8591 F:      include/net/mac802154.h
8592 F:      include/net/nl802154.h
8593 F:      net/ieee802154/
8594 F:      net/mac802154/
8595
8596 IFE PROTOCOL
8597 M:      Yotam Gigi <[email protected]>
8598 M:      Jamal Hadi Salim <[email protected]>
8599 F:      include/net/ife.h
8600 F:      include/uapi/linux/ife.h
8601 F:      net/ife
8602
8603 IGORPLUG-USB IR RECEIVER
8604 M:      Sean Young <[email protected]>
8605 L:      [email protected]
8606 S:      Maintained
8607 F:      drivers/media/rc/igorplugusb.c
8608
8609 IGUANAWORKS USB IR TRANSCEIVER
8610 M:      Sean Young <[email protected]>
8611 L:      [email protected]
8612 S:      Maintained
8613 F:      drivers/media/rc/iguanair.c
8614
8615 IIO DIGITAL POTENTIOMETER DAC
8616 M:      Peter Rosin <[email protected]>
8617 L:      [email protected]
8618 S:      Maintained
8619 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8620 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8621 F:      drivers/iio/dac/dpot-dac.c
8622
8623 IIO ENVELOPE DETECTOR
8624 M:      Peter Rosin <[email protected]>
8625 L:      [email protected]
8626 S:      Maintained
8627 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8628 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8629 F:      drivers/iio/adc/envelope-detector.c
8630
8631 IIO MULTIPLEXER
8632 M:      Peter Rosin <[email protected]>
8633 L:      [email protected]
8634 S:      Maintained
8635 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8636 F:      drivers/iio/multiplexer/iio-mux.c
8637
8638 IIO SUBSYSTEM AND DRIVERS
8639 M:      Jonathan Cameron <[email protected]>
8640 R:      Lars-Peter Clausen <[email protected]>
8641 R:      Peter Meerwald-Stadler <[email protected]>
8642 L:      [email protected]
8643 S:      Maintained
8644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8645 F:      Documentation/ABI/testing/configfs-iio*
8646 F:      Documentation/ABI/testing/sysfs-bus-iio*
8647 F:      Documentation/devicetree/bindings/iio/
8648 F:      drivers/iio/
8649 F:      drivers/staging/iio/
8650 F:      include/linux/iio/
8651 F:      tools/iio/
8652
8653 IIO UNIT CONVERTER
8654 M:      Peter Rosin <[email protected]>
8655 L:      [email protected]
8656 S:      Maintained
8657 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8658 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8659 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8660 F:      drivers/iio/afe/iio-rescale.c
8661
8662 IKANOS/ADI EAGLE ADSL USB DRIVER
8663 M:      Matthieu Castet <[email protected]>
8664 M:      Stanislaw Gruszka <[email protected]>
8665 S:      Maintained
8666 F:      drivers/usb/atm/ueagle-atm.c
8667
8668 IMGTEC ASCII LCD DRIVER
8669 M:      Paul Burton <[email protected]>
8670 S:      Maintained
8671 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8672 F:      drivers/auxdisplay/img-ascii-lcd.c
8673
8674 IMGTEC IR DECODER DRIVER
8675 S:      Orphan
8676 F:      drivers/media/rc/img-ir/
8677
8678 IMON SOUNDGRAPH USB IR RECEIVER
8679 M:      Sean Young <[email protected]>
8680 L:      [email protected]
8681 S:      Maintained
8682 F:      drivers/media/rc/imon.c
8683 F:      drivers/media/rc/imon_raw.c
8684
8685 IMS TWINTURBO FRAMEBUFFER DRIVER
8686 L:      [email protected]
8687 S:      Orphan
8688 F:      drivers/video/fbdev/imsttfb.c
8689
8690 INA209 HARDWARE MONITOR DRIVER
8691 M:      Guenter Roeck <[email protected]>
8692 L:      [email protected]
8693 S:      Maintained
8694 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
8695 F:      Documentation/hwmon/ina209.rst
8696 F:      drivers/hwmon/ina209.c
8697
8698 INA2XX HARDWARE MONITOR DRIVER
8699 M:      Guenter Roeck <[email protected]>
8700 L:      [email protected]
8701 S:      Maintained
8702 F:      Documentation/hwmon/ina2xx.rst
8703 F:      drivers/hwmon/ina2xx.c
8704 F:      include/linux/platform_data/ina2xx.h
8705
8706 INDUSTRY PACK SUBSYSTEM (IPACK)
8707 M:      Samuel Iglesias Gonsalvez <[email protected]>
8708 M:      Jens Taprogge <[email protected]>
8709 M:      Greg Kroah-Hartman <[email protected]>
8710 L:      [email protected]
8711 S:      Maintained
8712 W:      http://industrypack.sourceforge.net
8713 F:      drivers/ipack/
8714
8715 INFINEON DPS310 Driver
8716 M:      Eddie James <[email protected]>
8717 L:      [email protected]
8718 S:      Maintained
8719 F:      drivers/iio/pressure/dps310.c
8720
8721 INFINIBAND SUBSYSTEM
8722 M:      Doug Ledford <[email protected]>
8723 M:      Jason Gunthorpe <[email protected]>
8724 L:      [email protected]
8725 S:      Supported
8726 W:      https://github.com/linux-rdma/rdma-core
8727 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8729 F:      Documentation/devicetree/bindings/infiniband/
8730 F:      Documentation/infiniband/
8731 F:      drivers/infiniband/
8732 F:      include/rdma/
8733 F:      include/trace/events/ib_mad.h
8734 F:      include/trace/events/ib_umad.h
8735 F:      include/uapi/linux/if_infiniband.h
8736 F:      include/uapi/rdma/
8737 F:      samples/bpf/ibumad_kern.c
8738 F:      samples/bpf/ibumad_user.c
8739
8740 INGENIC JZ4780 DMA Driver
8741 M:      Zubair Lutfullah Kakakhel <[email protected]>
8742 S:      Maintained
8743 F:      drivers/dma/dma-jz4780.c
8744
8745 INGENIC JZ4780 NAND DRIVER
8746 M:      Harvey Hunt <[email protected]>
8747 L:      [email protected]
8748 S:      Maintained
8749 F:      drivers/mtd/nand/raw/ingenic/
8750
8751 INGENIC JZ47xx SoCs
8752 M:      Paul Cercueil <[email protected]>
8753 S:      Maintained
8754 F:      arch/mips/boot/dts/ingenic/
8755 F:      arch/mips/generic/board-ingenic.c
8756 F:      arch/mips/include/asm/mach-ingenic/
8757 F:      arch/mips/ingenic/Kconfig
8758 F:      drivers/clk/ingenic/
8759 F:      drivers/dma/dma-jz4780.c
8760 F:      drivers/gpu/drm/ingenic/
8761 F:      drivers/i2c/busses/i2c-jz4780.c
8762 F:      drivers/iio/adc/ingenic-adc.c
8763 F:      drivers/irqchip/irq-ingenic.c
8764 F:      drivers/memory/jz4780-nemc.c
8765 F:      drivers/mmc/host/jz4740_mmc.c
8766 F:      drivers/mtd/nand/raw/ingenic/
8767 F:      drivers/pinctrl/pinctrl-ingenic.c
8768 F:      drivers/power/supply/ingenic-battery.c
8769 F:      drivers/pwm/pwm-jz4740.c
8770 F:      drivers/remoteproc/ingenic_rproc.c
8771 F:      drivers/rtc/rtc-jz4740.c
8772 F:      drivers/tty/serial/8250/8250_ingenic.c
8773 F:      drivers/usb/musb/jz4740.c
8774 F:      drivers/watchdog/jz4740_wdt.c
8775 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8776 F:      include/linux/mfd/ingenic-tcu.h
8777 F:      sound/soc/codecs/jz47*
8778 F:      sound/soc/jz4740/
8779
8780 INOTIFY
8781 M:      Jan Kara <[email protected]>
8782 R:      Amir Goldstein <[email protected]>
8783 L:      [email protected]
8784 S:      Maintained
8785 F:      Documentation/filesystems/inotify.rst
8786 F:      fs/notify/inotify/
8787 F:      include/linux/inotify.h
8788 F:      include/uapi/linux/inotify.h
8789
8790 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8791 M:      Dmitry Torokhov <[email protected]>
8792 L:      [email protected]
8793 S:      Maintained
8794 Q:      http://patchwork.kernel.org/project/linux-input/list/
8795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8796 F:      Documentation/devicetree/bindings/input/
8797 F:      Documentation/devicetree/bindings/serio/
8798 F:      Documentation/input/
8799 F:      drivers/input/
8800 F:      include/linux/input.h
8801 F:      include/linux/input/
8802 F:      include/uapi/linux/input-event-codes.h
8803 F:      include/uapi/linux/input.h
8804
8805 INPUT MULTITOUCH (MT) PROTOCOL
8806 M:      Henrik Rydberg <[email protected]>
8807 L:      [email protected]
8808 S:      Odd fixes
8809 F:      Documentation/input/multi-touch-protocol.rst
8810 F:      drivers/input/input-mt.c
8811 K:      \b(ABS|SYN)_MT_
8812
8813 INSIDE SECURE CRYPTO DRIVER
8814 M:      Antoine Tenart <[email protected]>
8815 L:      [email protected]
8816 S:      Maintained
8817 F:      drivers/crypto/inside-secure/
8818
8819 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8820 M:      Mimi Zohar <[email protected]>
8821 M:      Dmitry Kasatkin <[email protected]>
8822 L:      [email protected]
8823 S:      Supported
8824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8825 F:      security/integrity/ima/
8826
8827 INTEL 810/815 FRAMEBUFFER DRIVER
8828 M:      Antonino Daplas <[email protected]>
8829 L:      [email protected]
8830 S:      Maintained
8831 F:      drivers/video/fbdev/i810/
8832
8833 INTEL ASoC DRIVERS
8834 M:      Cezary Rojewski <[email protected]>
8835 M:      Pierre-Louis Bossart <[email protected]>
8836 M:      Liam Girdwood <[email protected]>
8837 M:      Jie Yang <[email protected]>
8838 L:      [email protected] (moderated for non-subscribers)
8839 S:      Supported
8840 F:      sound/soc/intel/
8841
8842 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8843 M:      Hans de Goede <[email protected]>
8844 L:      [email protected]
8845 S:      Maintained
8846 F:      drivers/platform/x86/intel_atomisp2_pm.c
8847
8848 INTEL ATOMISP2 LED DRIVER
8849 M:      Hans de Goede <[email protected]>
8850 L:      [email protected]
8851 S:      Maintained
8852 F:      drivers/platform/x86/intel_atomisp2_led.c
8853
8854 INTEL BROXTON PMC DRIVER
8855 M:      Mika Westerberg <[email protected]>
8856 M:      Zha Qipeng <[email protected]>
8857 S:      Maintained
8858 F:      drivers/mfd/intel_pmc_bxt.c
8859 F:      include/linux/mfd/intel_pmc_bxt.h
8860
8861 INTEL C600 SERIES SAS CONTROLLER DRIVER
8862 M:      Intel SCU Linux support <[email protected]>
8863 M:      Artur Paszkiewicz <[email protected]>
8864 L:      [email protected]
8865 S:      Supported
8866 T:      git git://git.code.sf.net/p/intel-sas/isci
8867 F:      drivers/scsi/isci/
8868
8869 INTEL CPU family model numbers
8870 M:      Tony Luck <[email protected]>
8871 M:      [email protected]
8872 L:      [email protected]
8873 S:      Supported
8874 F:      arch/x86/include/asm/intel-family.h
8875
8876 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8877 M:      Jani Nikula <[email protected]>
8878 M:      Joonas Lahtinen <[email protected]>
8879 M:      Rodrigo Vivi <[email protected]>
8880 L:      [email protected]
8881 S:      Supported
8882 W:      https://01.org/linuxgraphics/
8883 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8884 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8885 C:      irc://chat.freenode.net/intel-gfx
8886 T:      git git://anongit.freedesktop.org/drm-intel
8887 F:      Documentation/gpu/i915.rst
8888 F:      drivers/gpu/drm/i915/
8889 F:      include/drm/i915*
8890 F:      include/uapi/drm/i915_drm.h
8891
8892 INTEL ETHERNET DRIVERS
8893 M:      Jesse Brandeburg <[email protected]>
8894 M:      Tony Nguyen <[email protected]>
8895 L:      [email protected] (moderated for non-subscribers)
8896 S:      Supported
8897 W:      http://www.intel.com/support/feedback.htm
8898 W:      http://e1000.sourceforge.net/
8899 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
8901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
8902 F:      Documentation/networking/device_drivers/ethernet/intel/
8903 F:      drivers/net/ethernet/intel/
8904 F:      drivers/net/ethernet/intel/*/
8905 F:      include/linux/avf/virtchnl.h
8906
8907 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8908 M:      Maik Broemme <[email protected]>
8909 L:      [email protected]
8910 S:      Maintained
8911 F:      Documentation/fb/intelfb.rst
8912 F:      drivers/video/fbdev/intelfb/
8913
8914 INTEL GPIO DRIVERS
8915 M:      Andy Shevchenko <[email protected]>
8916 L:      [email protected]
8917 S:      Maintained
8918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8919 F:      drivers/gpio/gpio-ich.c
8920 F:      drivers/gpio/gpio-intel-mid.c
8921 F:      drivers/gpio/gpio-merrifield.c
8922 F:      drivers/gpio/gpio-ml-ioh.c
8923 F:      drivers/gpio/gpio-pch.c
8924 F:      drivers/gpio/gpio-sch.c
8925 F:      drivers/gpio/gpio-sodaville.c
8926
8927 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8928 M:      Zhenyu Wang <[email protected]>
8929 M:      Zhi Wang <[email protected]>
8930 L:      [email protected]
8931 L:      [email protected]
8932 S:      Supported
8933 W:      https://01.org/igvt-g
8934 T:      git https://github.com/intel/gvt-linux.git
8935 F:      drivers/gpu/drm/i915/gvt/
8936
8937 INTEL HID EVENT DRIVER
8938 M:      Alex Hung <[email protected]>
8939 L:      [email protected]
8940 S:      Maintained
8941 F:      drivers/platform/x86/intel-hid.c
8942
8943 INTEL I/OAT DMA DRIVER
8944 M:      Dave Jiang <[email protected]>
8945 R:      Dan Williams <[email protected]>
8946 L:      [email protected]
8947 S:      Supported
8948 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8949 F:      drivers/dma/ioat*
8950
8951 INTEL IADX DRIVER
8952 M:      Dave Jiang <[email protected]>
8953 L:      [email protected]
8954 S:      Supported
8955 F:      drivers/dma/idxd/*
8956 F:      include/uapi/linux/idxd.h
8957
8958 INTEL IDLE DRIVER
8959 M:      Jacob Pan <[email protected]>
8960 M:      Len Brown <[email protected]>
8961 L:      [email protected]
8962 S:      Supported
8963 B:      https://bugzilla.kernel.org
8964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8965 F:      drivers/idle/intel_idle.c
8966
8967 INTEL INTEGRATED SENSOR HUB DRIVER
8968 M:      Srinivas Pandruvada <[email protected]>
8969 M:      Jiri Kosina <[email protected]>
8970 L:      [email protected]
8971 S:      Maintained
8972 F:      drivers/hid/intel-ish-hid/
8973
8974 INTEL IOMMU (VT-d)
8975 M:      David Woodhouse <[email protected]>
8976 M:      Lu Baolu <[email protected]>
8977 L:      [email protected]
8978 S:      Supported
8979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8980 F:      drivers/iommu/intel/
8981 F:      include/linux/intel-iommu.h
8982 F:      include/linux/intel-svm.h
8983
8984 INTEL IOP-ADMA DMA DRIVER
8985 R:      Dan Williams <[email protected]>
8986 S:      Odd fixes
8987 F:      drivers/dma/iop-adma.c
8988
8989 INTEL IPU3 CSI-2 CIO2 DRIVER
8990 M:      Yong Zhi <[email protected]>
8991 M:      Sakari Ailus <[email protected]>
8992 M:      Bingbu Cao <[email protected]>
8993 R:      Tianshu Qiu <[email protected]>
8994 L:      [email protected]
8995 S:      Maintained
8996 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8997 F:      drivers/media/pci/intel/ipu3/
8998
8999 INTEL IPU3 CSI-2 IMGU DRIVER
9000 M:      Sakari Ailus <[email protected]>
9001 R:      Bingbu Cao <[email protected]>
9002 R:      Tianshu Qiu <[email protected]>
9003 L:      [email protected]
9004 S:      Maintained
9005 F:      Documentation/admin-guide/media/ipu3.rst
9006 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9007 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9008 F:      drivers/staging/media/ipu3/
9009
9010 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9011 M:      Krzysztof Halasa <[email protected]>
9012 S:      Maintained
9013 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9014 F:      drivers/net/wan/ixp4xx_hss.c
9015 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9016 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9017 F:      include/linux/soc/ixp4xx/npe.h
9018 F:      include/linux/soc/ixp4xx/qmgr.h
9019
9020 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9021 M:      Deepak Saxena <[email protected]>
9022 S:      Maintained
9023 F:      drivers/char/hw_random/ixp4xx-rng.c
9024
9025 INTEL KEEM BAY DRM DRIVER
9026 M:      Anitha Chrisanthus <[email protected]>
9027 M:      Edmund Dea <[email protected]>
9028 S:      Maintained
9029 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9030 F:      drivers/gpu/drm/kmb/
9031
9032 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9033 M:      Daniele Alessandrelli <[email protected]>
9034 S:      Maintained
9035 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9036 F:      drivers/crypto/keembay/Kconfig
9037 F:      drivers/crypto/keembay/Makefile
9038 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9039 F:      drivers/crypto/keembay/ocs-aes.c
9040 F:      drivers/crypto/keembay/ocs-aes.h
9041
9042 INTEL MANAGEMENT ENGINE (mei)
9043 M:      Tomas Winkler <[email protected]>
9044 L:      [email protected]
9045 S:      Supported
9046 F:      Documentation/driver-api/mei/*
9047 F:      drivers/misc/mei/
9048 F:      drivers/watchdog/mei_wdt.c
9049 F:      include/linux/mei_cl_bus.h
9050 F:      include/uapi/linux/mei.h
9051 F:      samples/mei/*
9052
9053 INTEL MENLOW THERMAL DRIVER
9054 M:      Sujith Thomas <[email protected]>
9055 L:      [email protected]
9056 S:      Supported
9057 W:      https://01.org/linux-acpi
9058 F:      drivers/platform/x86/intel_menlow.c
9059
9060 INTEL P-Unit IPC DRIVER
9061 M:      Zha Qipeng <[email protected]>
9062 L:      [email protected]
9063 S:      Maintained
9064 F:      arch/x86/include/asm/intel_punit_ipc.h
9065 F:      drivers/platform/x86/intel_punit_ipc.c
9066
9067 INTEL PMC CORE DRIVER
9068 M:      Rajneesh Bhardwaj <[email protected]>
9069 M:      David E Box <[email protected]>
9070 L:      [email protected]
9071 S:      Maintained
9072 F:      drivers/platform/x86/intel_pmc_core*
9073
9074 INTEL PMIC GPIO DRIVERS
9075 M:      Andy Shevchenko <[email protected]>
9076 S:      Maintained
9077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9078 F:      drivers/gpio/gpio-*cove.c
9079 F:      drivers/gpio/gpio-msic.c
9080
9081 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9082 M:      Andy Shevchenko <[email protected]>
9083 S:      Maintained
9084 F:      drivers/mfd/intel_msic.c
9085 F:      drivers/mfd/intel_soc_pmic*
9086 F:      include/linux/mfd/intel_msic.h
9087 F:      include/linux/mfd/intel_soc_pmic*
9088
9089 INTEL PMT DRIVER
9090 M:      "David E. Box" <[email protected]>
9091 S:      Maintained
9092 F:      drivers/mfd/intel_pmt.c
9093 F:      drivers/platform/x86/intel_pmt_*
9094
9095 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9096 M:      Stanislav Yakovlev <[email protected]>
9097 L:      [email protected]
9098 S:      Maintained
9099 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9100 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9101 F:      drivers/net/wireless/intel/ipw2x00/
9102
9103 INTEL PSTATE DRIVER
9104 M:      Srinivas Pandruvada <[email protected]>
9105 M:      Len Brown <[email protected]>
9106 L:      [email protected]
9107 S:      Supported
9108 F:      drivers/cpufreq/intel_pstate.c
9109
9110 INTEL RDMA RNIC DRIVER
9111 M:      Faisal Latif <[email protected]>
9112 M:      Shiraz Saleem <[email protected]>
9113 L:      [email protected]
9114 S:      Supported
9115 F:      drivers/infiniband/hw/i40iw/
9116 F:      include/uapi/rdma/i40iw-abi.h
9117
9118 INTEL SCU DRIVERS
9119 M:      Mika Westerberg <[email protected]>
9120 S:      Maintained
9121 F:      arch/x86/include/asm/intel_scu_ipc.h
9122 F:      drivers/platform/x86/intel_scu_*
9123
9124 INTEL SPEED SELECT TECHNOLOGY
9125 M:      Srinivas Pandruvada <[email protected]>
9126 L:      [email protected]
9127 S:      Maintained
9128 F:      drivers/platform/x86/intel_speed_select_if/
9129 F:      include/uapi/linux/isst_if.h
9130 F:      tools/power/x86/intel-speed-select/
9131
9132 INTEL STRATIX10 FIRMWARE DRIVERS
9133 M:      Richard Gong <[email protected]>
9134 L:      [email protected]
9135 S:      Maintained
9136 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9137 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9138 F:      drivers/firmware/stratix10-rsu.c
9139 F:      drivers/firmware/stratix10-svc.c
9140 F:      include/linux/firmware/intel/stratix10-smc.h
9141 F:      include/linux/firmware/intel/stratix10-svc-client.h
9142
9143 INTEL TELEMETRY DRIVER
9144 M:      Rajneesh Bhardwaj <[email protected]>
9145 M:      "David E. Box" <[email protected]>
9146 L:      [email protected]
9147 S:      Maintained
9148 F:      arch/x86/include/asm/intel_telemetry.h
9149 F:      drivers/platform/x86/intel_telemetry*
9150
9151 INTEL UNCORE FREQUENCY CONTROL
9152 M:      Srinivas Pandruvada <[email protected]>
9153 L:      [email protected]
9154 S:      Maintained
9155 F:      drivers/platform/x86/intel-uncore-frequency.c
9156
9157 INTEL VIRTUAL BUTTON DRIVER
9158 M:      AceLan Kao <[email protected]>
9159 L:      [email protected]
9160 S:      Maintained
9161 F:      drivers/platform/x86/intel-vbtn.c
9162
9163 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9164 M:      Stanislaw Gruszka <[email protected]>
9165 L:      [email protected]
9166 S:      Supported
9167 F:      drivers/net/wireless/intel/iwlegacy/
9168
9169 INTEL WIRELESS WIFI LINK (iwlwifi)
9170 M:      Luca Coelho <[email protected]>
9171 L:      [email protected]
9172 S:      Supported
9173 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9175 F:      drivers/net/wireless/intel/iwlwifi/
9176
9177 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9178 M:      Jithu Joseph <[email protected]>
9179 R:      Maurice Ma <[email protected]>
9180 S:      Maintained
9181 W:      https://slimbootloader.github.io/security/firmware-update.html
9182 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9183
9184 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9185 M:      Mario Limonciello <[email protected]>
9186 S:      Maintained
9187 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9188
9189 INTEL(R) TRACE HUB
9190 M:      Alexander Shishkin <[email protected]>
9191 S:      Supported
9192 F:      Documentation/trace/intel_th.rst
9193 F:      drivers/hwtracing/intel_th/
9194 F:      include/linux/intel_th.h
9195
9196 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9197 M:      Ning Sun <[email protected]>
9198 L:      [email protected]
9199 S:      Supported
9200 W:      http://tboot.sourceforge.net
9201 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9202 F:      Documentation/x86/intel_txt.rst
9203 F:      arch/x86/kernel/tboot.c
9204 F:      include/linux/tboot.h
9205
9206 INTEL SGX
9207 M:      Jarkko Sakkinen <[email protected]>
9208 L:      [email protected]
9209 S:      Supported
9210 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-sgx.git
9212 F:      Documentation/x86/sgx.rst
9213 F:      arch/x86/entry/vdso/vsgx.S
9214 F:      arch/x86/include/uapi/asm/sgx.h
9215 F:      arch/x86/kernel/cpu/sgx/*
9216 F:      tools/testing/selftests/sgx/*
9217 K:      \bSGX_
9218
9219 INTERCONNECT API
9220 M:      Georgi Djakov <[email protected]>
9221 L:      [email protected]
9222 S:      Maintained
9223 F:      Documentation/devicetree/bindings/interconnect/
9224 F:      Documentation/driver-api/interconnect.rst
9225 F:      drivers/interconnect/
9226 F:      include/dt-bindings/interconnect/
9227 F:      include/linux/interconnect-provider.h
9228 F:      include/linux/interconnect.h
9229
9230 INVENSENSE ICM-426xx IMU DRIVER
9231 M:      Jean-Baptiste Maneyrol <[email protected]>
9232 L:      [email protected]
9233 S:      Maintained
9234 W:      https://invensense.tdk.com/
9235 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9236 F:      drivers/iio/imu/inv_icm42600/
9237
9238 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9239 M:      Linus Walleij <[email protected]>
9240 L:      [email protected]
9241 S:      Maintained
9242 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
9243 F:      drivers/iio/gyro/mpu3050*
9244
9245 IOC3 ETHERNET DRIVER
9246 M:      Ralf Baechle <[email protected]>
9247 L:      [email protected]
9248 S:      Maintained
9249 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9250
9251 IOMAP FILESYSTEM LIBRARY
9252 M:      Christoph Hellwig <[email protected]>
9253 M:      Darrick J. Wong <[email protected]>
9254 M:      [email protected]
9255 M:      [email protected]
9256 L:      [email protected]
9257 L:      [email protected]
9258 S:      Supported
9259 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9260 F:      fs/iomap/
9261 F:      include/linux/iomap.h
9262
9263 IOMMU DRIVERS
9264 M:      Joerg Roedel <[email protected]>
9265 M:      Will Deacon <[email protected]>
9266 L:      [email protected]
9267 S:      Maintained
9268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9269 F:      Documentation/devicetree/bindings/iommu/
9270 F:      Documentation/userspace-api/iommu.rst
9271 F:      drivers/iommu/
9272 F:      include/linux/iommu.h
9273 F:      include/linux/iova.h
9274 F:      include/linux/of_iommu.h
9275 F:      include/uapi/linux/iommu.h
9276
9277 IO_URING
9278 M:      Jens Axboe <[email protected]>
9279 L:      [email protected]
9280 S:      Maintained
9281 T:      git git://git.kernel.dk/linux-block
9282 T:      git git://git.kernel.dk/liburing
9283 F:      fs/io-wq.c
9284 F:      fs/io-wq.h
9285 F:      fs/io_uring.c
9286 F:      include/uapi/linux/io_uring.h
9287
9288 IPMI SUBSYSTEM
9289 M:      Corey Minyard <[email protected]>
9290 L:      [email protected] (moderated for non-subscribers)
9291 S:      Supported
9292 W:      http://openipmi.sourceforge.net/
9293 F:      Documentation/driver-api/ipmi.rst
9294 F:      Documentation/devicetree/bindings/ipmi/
9295 F:      drivers/char/ipmi/
9296 F:      include/linux/ipmi*
9297 F:      include/uapi/linux/ipmi*
9298
9299 IPS SCSI RAID DRIVER
9300 M:      Adaptec OEM Raid Solutions <[email protected]>
9301 L:      [email protected]
9302 S:      Maintained
9303 W:      http://www.adaptec.com/
9304 F:      drivers/scsi/ips*
9305
9306 IPVS
9307 M:      Wensong Zhang <[email protected]>
9308 M:      Simon Horman <[email protected]>
9309 M:      Julian Anastasov <[email protected]>
9310 L:      [email protected]
9311 L:      [email protected]
9312 S:      Maintained
9313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9315 F:      Documentation/networking/ipvs-sysctl.rst
9316 F:      include/net/ip_vs.h
9317 F:      include/uapi/linux/ip_vs.h
9318 F:      net/netfilter/ipvs/
9319
9320 IPWIRELESS DRIVER
9321 M:      Jiri Kosina <[email protected]>
9322 M:      David Sterba <[email protected]>
9323 S:      Odd Fixes
9324 F:      drivers/tty/ipwireless/
9325
9326 IPX NETWORK LAYER
9327 L:      [email protected]
9328 S:      Obsolete
9329 F:      include/uapi/linux/ipx.h
9330
9331 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9332 M:      Marc Zyngier <[email protected]>
9333 S:      Maintained
9334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9335 F:      Documentation/core-api/irq/irq-domain.rst
9336 F:      include/linux/irqdomain.h
9337 F:      kernel/irq/irqdomain.c
9338 F:      kernel/irq/msi.c
9339
9340 IRQ SUBSYSTEM
9341 M:      Thomas Gleixner <[email protected]>
9342 L:      [email protected]
9343 S:      Maintained
9344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9345 F:      kernel/irq/
9346
9347 IRQCHIP DRIVERS
9348 M:      Thomas Gleixner <[email protected]>
9349 M:      Marc Zyngier <[email protected]>
9350 L:      [email protected]
9351 S:      Maintained
9352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9353 F:      Documentation/devicetree/bindings/interrupt-controller/
9354 F:      drivers/irqchip/
9355
9356 ISA
9357 M:      William Breathitt Gray <[email protected]>
9358 S:      Maintained
9359 F:      Documentation/driver-api/isa.rst
9360 F:      drivers/base/isa.c
9361 F:      include/linux/isa.h
9362
9363 ISA RADIO MODULE
9364 M:      Hans Verkuil <[email protected]>
9365 L:      [email protected]
9366 S:      Maintained
9367 W:      https://linuxtv.org
9368 T:      git git://linuxtv.org/media_tree.git
9369 F:      drivers/media/radio/radio-isa*
9370
9371 ISAPNP
9372 M:      Jaroslav Kysela <[email protected]>
9373 S:      Maintained
9374 F:      Documentation/driver-api/isapnp.rst
9375 F:      drivers/pnp/isapnp/
9376 F:      include/linux/isapnp.h
9377
9378 ISCSI
9379 M:      Lee Duncan <[email protected]>
9380 M:      Chris Leech <[email protected]>
9381 L:      [email protected]
9382 L:      [email protected]
9383 S:      Maintained
9384 W:      www.open-iscsi.com
9385 F:      drivers/scsi/*iscsi*
9386 F:      include/scsi/*iscsi*
9387
9388 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9389 M:      Peter Jones <[email protected]>
9390 M:      Konrad Rzeszutek Wilk <[email protected]>
9391 S:      Maintained
9392 F:      drivers/firmware/iscsi_ibft*
9393
9394 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9395 M:      Sagi Grimberg <[email protected]>
9396 M:      Max Gurtovoy <[email protected]>
9397 L:      [email protected]
9398 S:      Supported
9399 W:      http://www.openfabrics.org
9400 W:      www.open-iscsi.org
9401 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9402 F:      drivers/infiniband/ulp/iser/
9403
9404 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9405 M:      Sagi Grimberg <[email protected]>
9406 L:      [email protected]
9407 L:      [email protected]
9408 S:      Supported
9409 W:      http://www.linux-iscsi.org
9410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9411 F:      drivers/infiniband/ulp/isert
9412
9413 ISDN/CMTP OVER BLUETOOTH
9414 M:      Karsten Keil <[email protected]>
9415 L:      [email protected] (subscribers-only)
9416 L:      [email protected]
9417 S:      Odd Fixes
9418 W:      http://www.isdn4linux.de
9419 F:      Documentation/isdn/
9420 F:      drivers/isdn/capi/
9421 F:      include/linux/isdn/
9422 F:      include/uapi/linux/isdn/
9423 F:      net/bluetooth/cmtp/
9424
9425 ISDN/mISDN SUBSYSTEM
9426 M:      Karsten Keil <[email protected]>
9427 L:      [email protected] (subscribers-only)
9428 L:      [email protected]
9429 S:      Maintained
9430 W:      http://www.isdn4linux.de
9431 F:      drivers/isdn/Kconfig
9432 F:      drivers/isdn/Makefile
9433 F:      drivers/isdn/hardware/
9434 F:      drivers/isdn/mISDN/
9435
9436 IT87 HARDWARE MONITORING DRIVER
9437 M:      Jean Delvare <[email protected]>
9438 L:      [email protected]
9439 S:      Maintained
9440 F:      Documentation/hwmon/it87.rst
9441 F:      drivers/hwmon/it87.c
9442
9443 IT913X MEDIA DRIVER
9444 M:      Antti Palosaari <[email protected]>
9445 L:      [email protected]
9446 S:      Maintained
9447 W:      https://linuxtv.org
9448 W:      http://palosaari.fi/linux/
9449 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9450 T:      git git://linuxtv.org/anttip/media_tree.git
9451 F:      drivers/media/tuners/it913x*
9452
9453 IVTV VIDEO4LINUX DRIVER
9454 M:      Andy Walls <[email protected]>
9455 L:      [email protected]
9456 S:      Maintained
9457 W:      https://linuxtv.org
9458 T:      git git://linuxtv.org/media_tree.git
9459 F:      Documentation/admin-guide/media/ivtv*
9460 F:      drivers/media/pci/ivtv/
9461 F:      include/uapi/linux/ivtv*
9462
9463 IX2505V MEDIA DRIVER
9464 M:      Malcolm Priestley <[email protected]>
9465 L:      [email protected]
9466 S:      Maintained
9467 W:      https://linuxtv.org
9468 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9469 F:      drivers/media/dvb-frontends/ix2505v*
9470
9471 JAILHOUSE HYPERVISOR INTERFACE
9472 M:      Jan Kiszka <[email protected]>
9473 L:      [email protected]
9474 S:      Maintained
9475 F:      arch/x86/include/asm/jailhouse_para.h
9476 F:      arch/x86/kernel/jailhouse.c
9477
9478 JC42.4 TEMPERATURE SENSOR DRIVER
9479 M:      Guenter Roeck <[email protected]>
9480 L:      [email protected]
9481 S:      Maintained
9482 F:      Documentation/hwmon/jc42.rst
9483 F:      drivers/hwmon/jc42.c
9484
9485 JFS FILESYSTEM
9486 M:      Dave Kleikamp <[email protected]>
9487 L:      [email protected]
9488 S:      Maintained
9489 W:      http://jfs.sourceforge.net/
9490 T:      git git://github.com/kleikamp/linux-shaggy.git
9491 F:      Documentation/admin-guide/jfs.rst
9492 F:      fs/jfs/
9493
9494 JME NETWORK DRIVER
9495 M:      Guo-Fu Tseng <[email protected]>
9496 L:      [email protected]
9497 S:      Maintained
9498 F:      drivers/net/ethernet/jme.*
9499
9500 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9501 M:      David Woodhouse <[email protected]>
9502 M:      Richard Weinberger <[email protected]>
9503 L:      [email protected]
9504 S:      Odd Fixes
9505 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9506 T:      git git://git.infradead.org/ubifs-2.6.git
9507 F:      fs/jffs2/
9508 F:      include/uapi/linux/jffs2.h
9509
9510 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9511 M:      "Theodore Ts'o" <[email protected]>
9512 M:      Jan Kara <[email protected]>
9513 L:      [email protected]
9514 S:      Maintained
9515 F:      fs/jbd2/
9516 F:      include/linux/jbd2.h
9517
9518 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9519 M:      Mikhail Ulyanov <[email protected]>
9520 L:      [email protected]
9521 S:      Maintained
9522 F:      drivers/media/platform/rcar_jpu.c
9523
9524 JSM Neo PCI based serial card
9525 L:      [email protected]
9526 S:      Orphan
9527 F:      drivers/tty/serial/jsm/
9528
9529 K10TEMP HARDWARE MONITORING DRIVER
9530 M:      Clemens Ladisch <[email protected]>
9531 L:      [email protected]
9532 S:      Maintained
9533 F:      Documentation/hwmon/k10temp.rst
9534 F:      drivers/hwmon/k10temp.c
9535
9536 K8TEMP HARDWARE MONITORING DRIVER
9537 M:      Rudolf Marek <[email protected]>
9538 L:      [email protected]
9539 S:      Maintained
9540 F:      Documentation/hwmon/k8temp.rst
9541 F:      drivers/hwmon/k8temp.c
9542
9543 KASAN
9544 M:      Andrey Ryabinin <[email protected]>
9545 R:      Alexander Potapenko <[email protected]>
9546 R:      Dmitry Vyukov <[email protected]>
9547 L:      [email protected]
9548 S:      Maintained
9549 F:      Documentation/dev-tools/kasan.rst
9550 F:      arch/*/include/asm/kasan.h
9551 F:      arch/*/mm/kasan_init*
9552 F:      include/linux/kasan*.h
9553 F:      lib/test_kasan.c
9554 F:      mm/kasan/
9555 F:      scripts/Makefile.kasan
9556
9557 KCONFIG
9558 M:      Masahiro Yamada <[email protected]>
9559 L:      [email protected]
9560 S:      Maintained
9561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9562 F:      Documentation/kbuild/kconfig*
9563 F:      scripts/Kconfig.include
9564 F:      scripts/kconfig/
9565
9566 KCOV
9567 R:      Dmitry Vyukov <[email protected]>
9568 R:      Andrey Konovalov <[email protected]>
9569 L:      [email protected]
9570 S:      Maintained
9571 F:      Documentation/dev-tools/kcov.rst
9572 F:      include/linux/kcov.h
9573 F:      include/uapi/linux/kcov.h
9574 F:      kernel/kcov.c
9575 F:      scripts/Makefile.kcov
9576
9577 KCSAN
9578 M:      Marco Elver <[email protected]>
9579 R:      Dmitry Vyukov <[email protected]>
9580 L:      [email protected]
9581 S:      Maintained
9582 F:      Documentation/dev-tools/kcsan.rst
9583 F:      include/linux/kcsan*.h
9584 F:      kernel/kcsan/
9585 F:      lib/Kconfig.kcsan
9586 F:      scripts/Makefile.kcsan
9587
9588 KDUMP
9589 M:      Dave Young <[email protected]>
9590 M:      Baoquan He <[email protected]>
9591 R:      Vivek Goyal <[email protected]>
9592 L:      [email protected]
9593 S:      Maintained
9594 W:      http://lse.sourceforge.net/kdump/
9595 F:      Documentation/admin-guide/kdump/
9596 F:      fs/proc/vmcore.c
9597 F:      include/linux/crash_core.h
9598 F:      include/linux/crash_dump.h
9599 F:      include/uapi/linux/vmcore.h
9600 F:      kernel/crash_*.c
9601
9602 KEENE FM RADIO TRANSMITTER DRIVER
9603 M:      Hans Verkuil <[email protected]>
9604 L:      [email protected]
9605 S:      Maintained
9606 W:      https://linuxtv.org
9607 T:      git git://linuxtv.org/media_tree.git
9608 F:      drivers/media/radio/radio-keene*
9609
9610 KERNEL AUTOMOUNTER
9611 M:      Ian Kent <[email protected]>
9612 L:      [email protected]
9613 S:      Maintained
9614 F:      fs/autofs/
9615
9616 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9617 M:      Masahiro Yamada <[email protected]>
9618 M:      Michal Marek <[email protected]>
9619 L:      [email protected]
9620 S:      Maintained
9621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9622 F:      Documentation/kbuild/
9623 F:      Makefile
9624 F:      scripts/*vmlinux*
9625 F:      scripts/Kbuild*
9626 F:      scripts/Makefile*
9627 F:      scripts/basic/
9628 F:      scripts/mk*
9629 F:      scripts/mod/
9630 F:      scripts/package/
9631
9632 KERNEL JANITORS
9633 L:      [email protected]
9634 S:      Odd Fixes
9635 W:      http://kernelnewbies.org/KernelJanitors
9636
9637 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9638 M:      "J. Bruce Fields" <[email protected]>
9639 M:      Chuck Lever <[email protected]>
9640 L:      [email protected]
9641 S:      Supported
9642 W:      http://nfs.sourceforge.net/
9643 T:      git git://linux-nfs.org/~bfields/linux.git
9644 F:      fs/lockd/
9645 F:      fs/nfs_common/
9646 F:      fs/nfsd/
9647 F:      include/linux/lockd/
9648 F:      include/linux/sunrpc/
9649 F:      include/uapi/linux/nfsd/
9650 F:      include/uapi/linux/sunrpc/
9651 F:      net/sunrpc/
9652 F:      Documentation/filesystems/nfs/
9653
9654 KERNEL SELFTEST FRAMEWORK
9655 M:      Shuah Khan <[email protected]>
9656 M:      Shuah Khan <[email protected]>
9657 L:      [email protected]
9658 S:      Maintained
9659 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9661 F:      Documentation/dev-tools/kselftest*
9662 F:      tools/testing/selftests/
9663
9664 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9665 M:      Brendan Higgins <[email protected]>
9666 L:      [email protected]
9667 L:      [email protected]
9668 S:      Maintained
9669 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9670 F:      Documentation/dev-tools/kunit/
9671 F:      include/kunit/
9672 F:      lib/kunit/
9673 F:      tools/testing/kunit/
9674
9675 KERNEL USERMODE HELPER
9676 M:      Luis Chamberlain <[email protected]>
9677 L:      [email protected]
9678 S:      Maintained
9679 F:      include/linux/umh.h
9680 F:      kernel/umh.c
9681
9682 KERNEL VIRTUAL MACHINE (KVM)
9683 M:      Paolo Bonzini <[email protected]>
9684 L:      [email protected]
9685 S:      Supported
9686 W:      http://www.linux-kvm.org
9687 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9688 F:      Documentation/virt/kvm/
9689 F:      include/asm-generic/kvm*
9690 F:      include/kvm/iodev.h
9691 F:      include/linux/kvm*
9692 F:      include/trace/events/kvm.h
9693 F:      include/uapi/asm-generic/kvm*
9694 F:      include/uapi/linux/kvm*
9695 F:      tools/kvm/
9696 F:      tools/testing/selftests/kvm/
9697 F:      virt/kvm/*
9698
9699 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9700 M:      Marc Zyngier <[email protected]>
9701 R:      James Morse <[email protected]>
9702 R:      Julien Thierry <[email protected]>
9703 R:      Suzuki K Poulose <[email protected]>
9704 L:      [email protected] (moderated for non-subscribers)
9705 L:      [email protected]
9706 S:      Maintained
9707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9708 F:      arch/arm64/include/asm/kvm*
9709 F:      arch/arm64/include/uapi/asm/kvm*
9710 F:      arch/arm64/kvm/
9711 F:      include/kvm/arm_*
9712
9713 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9714 M:      Huacai Chen <[email protected]>
9715 M:      Aleksandar Markovic <[email protected]>
9716 L:      [email protected]
9717 L:      [email protected]
9718 S:      Maintained
9719 F:      arch/mips/include/asm/kvm*
9720 F:      arch/mips/include/uapi/asm/kvm*
9721 F:      arch/mips/kvm/
9722
9723 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9724 M:      Paul Mackerras <[email protected]>
9725 L:      [email protected]
9726 S:      Supported
9727 W:      http://www.linux-kvm.org/
9728 T:      git git://github.com/agraf/linux-2.6.git
9729 F:      arch/powerpc/include/asm/kvm*
9730 F:      arch/powerpc/include/uapi/asm/kvm*
9731 F:      arch/powerpc/kernel/kvm*
9732 F:      arch/powerpc/kvm/
9733
9734 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9735 M:      Christian Borntraeger <[email protected]>
9736 M:      Janosch Frank <[email protected]>
9737 R:      David Hildenbrand <[email protected]>
9738 R:      Cornelia Huck <[email protected]>
9739 R:      Claudio Imbrenda <[email protected]>
9740 L:      [email protected]
9741 S:      Supported
9742 W:      http://www.ibm.com/developerworks/linux/linux390/
9743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9744 F:      Documentation/virt/kvm/s390*
9745 F:      arch/s390/include/asm/gmap.h
9746 F:      arch/s390/include/asm/kvm*
9747 F:      arch/s390/include/uapi/asm/kvm*
9748 F:      arch/s390/kernel/uv.c
9749 F:      arch/s390/kvm/
9750 F:      arch/s390/mm/gmap.c
9751 F:      tools/testing/selftests/kvm/*/s390x/
9752 F:      tools/testing/selftests/kvm/s390x/
9753
9754 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9755 M:      Paolo Bonzini <[email protected]>
9756 R:      Sean Christopherson <[email protected]>
9757 R:      Vitaly Kuznetsov <[email protected]>
9758 R:      Wanpeng Li <[email protected]>
9759 R:      Jim Mattson <[email protected]>
9760 R:      Joerg Roedel <[email protected]>
9761 L:      [email protected]
9762 S:      Supported
9763 W:      http://www.linux-kvm.org
9764 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9765 F:      arch/x86/include/asm/kvm*
9766 F:      arch/x86/include/asm/pvclock-abi.h
9767 F:      arch/x86/include/asm/svm.h
9768 F:      arch/x86/include/asm/vmx*.h
9769 F:      arch/x86/include/uapi/asm/kvm*
9770 F:      arch/x86/include/uapi/asm/svm.h
9771 F:      arch/x86/include/uapi/asm/vmx.h
9772 F:      arch/x86/kernel/kvm.c
9773 F:      arch/x86/kernel/kvmclock.c
9774 F:      arch/x86/kvm/
9775 F:      arch/x86/kvm/*/
9776
9777 KERNFS
9778 M:      Greg Kroah-Hartman <[email protected]>
9779 M:      Tejun Heo <[email protected]>
9780 S:      Supported
9781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9782 F:      fs/kernfs/
9783 F:      include/linux/kernfs.h
9784
9785 KEXEC
9786 M:      Eric Biederman <[email protected]>
9787 L:      [email protected]
9788 S:      Maintained
9789 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9790 F:      include/linux/kexec.h
9791 F:      include/uapi/linux/kexec.h
9792 F:      kernel/kexec*
9793
9794 KEYS-ENCRYPTED
9795 M:      Mimi Zohar <[email protected]>
9796 L:      [email protected]
9797 L:      [email protected]
9798 S:      Supported
9799 F:      Documentation/security/keys/trusted-encrypted.rst
9800 F:      include/keys/encrypted-type.h
9801 F:      security/keys/encrypted-keys/
9802
9803 KEYS-TRUSTED
9804 M:      James Bottomley <[email protected]>
9805 M:      Jarkko Sakkinen <[email protected]>
9806 M:      Mimi Zohar <[email protected]>
9807 L:      [email protected]
9808 L:      [email protected]
9809 S:      Supported
9810 F:      Documentation/security/keys/trusted-encrypted.rst
9811 F:      include/keys/trusted-type.h
9812 F:      include/keys/trusted_tpm.h
9813 F:      security/keys/trusted-keys/
9814
9815 KEYS/KEYRINGS
9816 M:      David Howells <[email protected]>
9817 M:      Jarkko Sakkinen <[email protected]>
9818 L:      [email protected]
9819 S:      Maintained
9820 F:      Documentation/security/keys/core.rst
9821 F:      include/keys/
9822 F:      include/linux/key-type.h
9823 F:      include/linux/key.h
9824 F:      include/linux/keyctl.h
9825 F:      include/uapi/linux/keyctl.h
9826 F:      security/keys/
9827
9828 KFIFO
9829 M:      Stefani Seibold <[email protected]>
9830 S:      Maintained
9831 F:      include/linux/kfifo.h
9832 F:      lib/kfifo.c
9833 F:      samples/kfifo/
9834
9835 KGDB / KDB /debug_core
9836 M:      Jason Wessel <[email protected]>
9837 M:      Daniel Thompson <[email protected]>
9838 R:      Douglas Anderson <[email protected]>
9839 L:      [email protected]
9840 S:      Maintained
9841 W:      http://kgdb.wiki.kernel.org/
9842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9843 F:      Documentation/dev-tools/kgdb.rst
9844 F:      drivers/misc/kgdbts.c
9845 F:      drivers/tty/serial/kgdboc.c
9846 F:      include/linux/kdb.h
9847 F:      include/linux/kgdb.h
9848 F:      kernel/debug/
9849
9850 KHADAS MCU MFD DRIVER
9851 M:      Neil Armstrong <[email protected]>
9852 L:      [email protected]
9853 S:      Maintained
9854 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
9855 F:      drivers/mfd/khadas-mcu.c
9856 F:      include/linux/mfd/khadas-mcu.h
9857 F:      drivers/thermal/khadas_mcu_fan.c
9858
9859 KMEMLEAK
9860 M:      Catalin Marinas <[email protected]>
9861 S:      Maintained
9862 F:      Documentation/dev-tools/kmemleak.rst
9863 F:      include/linux/kmemleak.h
9864 F:      mm/kmemleak.c
9865 F:      samples/kmemleak/kmemleak-test.c
9866
9867 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9868 M:      Luis Chamberlain <[email protected]>
9869 L:      [email protected]
9870 S:      Maintained
9871 F:      include/linux/kmod.h
9872 F:      kernel/kmod.c
9873 F:      lib/test_kmod.c
9874 F:      tools/testing/selftests/kmod/
9875
9876 KPROBES
9877 M:      Naveen N. Rao <[email protected]>
9878 M:      Anil S Keshavamurthy <[email protected]>
9879 M:      "David S. Miller" <[email protected]>
9880 M:      Masami Hiramatsu <[email protected]>
9881 S:      Maintained
9882 F:      Documentation/trace/kprobes.rst
9883 F:      include/asm-generic/kprobes.h
9884 F:      include/linux/kprobes.h
9885 F:      kernel/kprobes.c
9886
9887 KS0108 LCD CONTROLLER DRIVER
9888 M:      Miguel Ojeda Sandonis <[email protected]>
9889 S:      Maintained
9890 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9891 F:      drivers/auxdisplay/ks0108.c
9892 F:      include/linux/ks0108.h
9893
9894 KTD253 BACKLIGHT DRIVER
9895 M:      Linus Walleij <[email protected]>
9896 S:      Maintained
9897 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
9898 F:      drivers/video/backlight/ktd253-backlight.c
9899
9900 L3MDEV
9901 M:      David Ahern <[email protected]>
9902 L:      [email protected]
9903 S:      Maintained
9904 F:      include/net/l3mdev.h
9905 F:      net/l3mdev
9906
9907 L7 BPF FRAMEWORK
9908 M:      John Fastabend <[email protected]>
9909 M:      Daniel Borkmann <[email protected]>
9910 M:      Jakub Sitnicki <[email protected]>
9911 M:      Lorenz Bauer <[email protected]>
9912 L:      [email protected]
9913 L:      [email protected]
9914 S:      Maintained
9915 F:      include/linux/skmsg.h
9916 F:      net/core/skmsg.c
9917 F:      net/core/sock_map.c
9918 F:      net/ipv4/tcp_bpf.c
9919 F:      net/ipv4/udp_bpf.c
9920
9921 LANTIQ / INTEL Ethernet drivers
9922 M:      Hauke Mehrtens <[email protected]>
9923 L:      [email protected]
9924 S:      Maintained
9925 F:      drivers/net/dsa/lantiq_gswip.c
9926 F:      drivers/net/dsa/lantiq_pce.h
9927 F:      drivers/net/ethernet/lantiq_xrx200.c
9928 F:      net/dsa/tag_gswip.c
9929
9930 LANTIQ MIPS ARCHITECTURE
9931 M:      John Crispin <[email protected]>
9932 L:      [email protected]
9933 S:      Maintained
9934 F:      arch/mips/lantiq
9935 F:      drivers/soc/lantiq
9936
9937 LASI 53c700 driver for PARISC
9938 M:      "James E.J. Bottomley" <[email protected]>
9939 L:      [email protected]
9940 S:      Maintained
9941 F:      Documentation/scsi/53c700.rst
9942 F:      drivers/scsi/53c700*
9943
9944 LEAKING_ADDRESSES
9945 M:      Tobin C. Harding <[email protected]>
9946 M:      Tycho Andersen <[email protected]>
9947 L:      [email protected]
9948 S:      Maintained
9949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9950 F:      scripts/leaking_addresses.pl
9951
9952 LED SUBSYSTEM
9953 M:      Pavel Machek <[email protected]>
9954 R:      Dan Murphy <[email protected]>
9955 L:      [email protected]
9956 S:      Maintained
9957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9958 F:      Documentation/devicetree/bindings/leds/
9959 F:      drivers/leds/
9960 F:      include/linux/leds.h
9961
9962 LEGACY EEPROM DRIVER
9963 M:      Jean Delvare <[email protected]>
9964 S:      Maintained
9965 F:      Documentation/misc-devices/eeprom.rst
9966 F:      drivers/misc/eeprom/eeprom.c
9967
9968 LEGO MINDSTORMS EV3
9969 R:      David Lechner <[email protected]>
9970 S:      Maintained
9971 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9972 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9973 F:      drivers/power/supply/lego_ev3_battery.c
9974
9975 LEGO USB Tower driver
9976 M:      Juergen Stuber <[email protected]>
9977 L:      [email protected]
9978 S:      Maintained
9979 W:      http://legousb.sourceforge.net/
9980 F:      drivers/usb/misc/legousbtower.c
9981
9982 LG LAPTOP EXTRAS
9983 M:      Matan Ziv-Av <[email protected]>
9984 L:      [email protected]
9985 S:      Maintained
9986 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9987 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9988 F:      drivers/platform/x86/lg-laptop.c
9989
9990 LG2160 MEDIA DRIVER
9991 M:      Michael Krufky <[email protected]>
9992 L:      [email protected]
9993 S:      Maintained
9994 W:      https://linuxtv.org
9995 W:      http://github.com/mkrufky
9996 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9997 T:      git git://linuxtv.org/mkrufky/tuners.git
9998 F:      drivers/media/dvb-frontends/lg2160.*
9999
10000 LGDT3305 MEDIA DRIVER
10001 M:      Michael Krufky <[email protected]>
10002 L:      [email protected]
10003 S:      Maintained
10004 W:      https://linuxtv.org
10005 W:      http://github.com/mkrufky
10006 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10007 T:      git git://linuxtv.org/mkrufky/tuners.git
10008 F:      drivers/media/dvb-frontends/lgdt3305.*
10009
10010 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10011 M:      Viresh Kumar <[email protected]>
10012 L:      [email protected]
10013 S:      Maintained
10014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10015 F:      drivers/ata/pata_arasan_cf.c
10016 F:      include/linux/pata_arasan_cf_data.h
10017
10018 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10019 M:      Linus Walleij <[email protected]>
10020 L:      [email protected]
10021 S:      Maintained
10022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10023 F:      drivers/ata/pata_ftide010.c
10024 F:      drivers/ata/sata_gemini.c
10025 F:      drivers/ata/sata_gemini.h
10026
10027 LIBATA SATA AHCI PLATFORM devices support
10028 M:      Hans de Goede <[email protected]>
10029 M:      Jens Axboe <[email protected]>
10030 L:      [email protected]
10031 S:      Maintained
10032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10033 F:      drivers/ata/ahci_platform.c
10034 F:      drivers/ata/libahci_platform.c
10035 F:      include/linux/ahci_platform.h
10036
10037 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10038 M:      Mikael Pettersson <[email protected]>
10039 L:      [email protected]
10040 S:      Maintained
10041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10042 F:      drivers/ata/sata_promise.*
10043
10044 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10045 M:      Jens Axboe <[email protected]>
10046 L:      [email protected]
10047 S:      Maintained
10048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10049 F:      Documentation/devicetree/bindings/ata/
10050 F:      drivers/ata/
10051 F:      include/linux/ata.h
10052 F:      include/linux/libata.h
10053
10054 LIBLOCKDEP
10055 M:      Sasha Levin <[email protected]>
10056 S:      Maintained
10057 F:      tools/lib/lockdep/
10058
10059 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10060 M:      Dan Williams <[email protected]>
10061 M:      Vishal Verma <[email protected]>
10062 M:      Dave Jiang <[email protected]>
10063 L:      [email protected]
10064 S:      Supported
10065 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10066 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10067 F:      drivers/nvdimm/blk.c
10068 F:      drivers/nvdimm/region_devs.c
10069
10070 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10071 M:      Vishal Verma <[email protected]>
10072 M:      Dan Williams <[email protected]>
10073 M:      Dave Jiang <[email protected]>
10074 L:      [email protected]
10075 S:      Supported
10076 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10077 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10078 F:      drivers/nvdimm/btt*
10079
10080 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10081 M:      Dan Williams <[email protected]>
10082 M:      Vishal Verma <[email protected]>
10083 M:      Dave Jiang <[email protected]>
10084 L:      [email protected]
10085 S:      Supported
10086 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10087 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10088 F:      drivers/nvdimm/pmem*
10089
10090 LIBNVDIMM: DEVICETREE BINDINGS
10091 M:      Oliver O'Halloran <[email protected]>
10092 L:      [email protected]
10093 S:      Supported
10094 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10095 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10096 F:      drivers/nvdimm/of_pmem.c
10097
10098 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10099 M:      Dan Williams <[email protected]>
10100 M:      Vishal Verma <[email protected]>
10101 M:      Dave Jiang <[email protected]>
10102 M:      Ira Weiny <[email protected]>
10103 L:      [email protected]
10104 S:      Supported
10105 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10106 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10108 F:      drivers/acpi/nfit/*
10109 F:      drivers/nvdimm/*
10110 F:      include/linux/libnvdimm.h
10111 F:      include/linux/nd.h
10112 F:      include/uapi/linux/ndctl.h
10113 F:      tools/testing/nvdimm/
10114
10115 LICENSES and SPDX stuff
10116 M:      Thomas Gleixner <[email protected]>
10117 M:      Greg Kroah-Hartman <[email protected]>
10118 L:      [email protected]
10119 S:      Maintained
10120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10121 F:      COPYING
10122 F:      Documentation/process/license-rules.rst
10123 F:      LICENSES/
10124 F:      scripts/spdxcheck-test.sh
10125 F:      scripts/spdxcheck.py
10126
10127 LIGHTNVM PLATFORM SUPPORT
10128 M:      Matias Bjorling <[email protected]>
10129 L:      [email protected]
10130 S:      Maintained
10131 W:      http://github/OpenChannelSSD
10132 F:      drivers/lightnvm/
10133 F:      include/linux/lightnvm.h
10134 F:      include/uapi/linux/lightnvm.h
10135
10136 LINEAR RANGES HELPERS
10137 M:      Mark Brown <[email protected]>
10138 R:      Matti Vaittinen <[email protected]>
10139 F:      lib/linear_ranges.c
10140 F:      lib/test_linear_ranges.c
10141 F:      include/linux/linear_range.h
10142
10143 LINUX FOR POWER MACINTOSH
10144 M:      Benjamin Herrenschmidt <[email protected]>
10145 L:      [email protected]
10146 S:      Odd Fixes
10147 F:      arch/powerpc/platforms/powermac/
10148 F:      drivers/macintosh/
10149
10150 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10151 M:      Michael Ellerman <[email protected]>
10152 R:      Benjamin Herrenschmidt <[email protected]>
10153 R:      Paul Mackerras <[email protected]>
10154 L:      [email protected]
10155 S:      Supported
10156 W:      https://github.com/linuxppc/wiki/wiki
10157 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10159 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10160 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10161 F:      Documentation/devicetree/bindings/powerpc/
10162 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10163 F:      Documentation/powerpc/
10164 F:      arch/powerpc/
10165 F:      drivers/*/*/*pasemi*
10166 F:      drivers/*/*pasemi*
10167 F:      drivers/char/tpm/tpm_ibmvtpm*
10168 F:      drivers/crypto/nx/
10169 F:      drivers/crypto/vmx/
10170 F:      drivers/i2c/busses/i2c-opal.c
10171 F:      drivers/net/ethernet/ibm/ibmveth.*
10172 F:      drivers/net/ethernet/ibm/ibmvnic.*
10173 F:      drivers/pci/hotplug/pnv_php.c
10174 F:      drivers/pci/hotplug/rpa*
10175 F:      drivers/rtc/rtc-opal.c
10176 F:      drivers/scsi/ibmvscsi/
10177 F:      drivers/tty/hvc/hvc_opal.c
10178 F:      drivers/watchdog/wdrtas.c
10179 F:      tools/testing/selftests/powerpc
10180 N:      /pmac
10181 N:      powermac
10182 N:      powernv
10183 N:      [^a-z0-9]ps3
10184 N:      pseries
10185
10186 LINUX FOR POWERPC EMBEDDED MPC5XXX
10187 M:      Anatolij Gustschin <[email protected]>
10188 L:      [email protected]
10189 S:      Odd Fixes
10190 F:      arch/powerpc/platforms/512x/
10191 F:      arch/powerpc/platforms/52xx/
10192
10193 LINUX FOR POWERPC EMBEDDED PPC4XX
10194 L:      [email protected]
10195 S:      Orphan
10196 F:      arch/powerpc/platforms/40x/
10197 F:      arch/powerpc/platforms/44x/
10198
10199 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10200 M:      Scott Wood <[email protected]>
10201 L:      [email protected]
10202 S:      Odd fixes
10203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10204 F:      Documentation/devicetree/bindings/powerpc/fsl/
10205 F:      arch/powerpc/platforms/83xx/
10206 F:      arch/powerpc/platforms/85xx/
10207
10208 LINUX FOR POWERPC EMBEDDED PPC8XX
10209 M:      Christophe Leroy <[email protected]>
10210 L:      [email protected]
10211 S:      Maintained
10212 F:      arch/powerpc/platforms/8xx/
10213
10214 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10215 M:      Kees Cook <[email protected]>
10216 S:      Maintained
10217 F:      drivers/misc/lkdtm/*
10218 F:      tools/testing/selftests/lkdtm/*
10219
10220 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10221 M:      Alan Stern <[email protected]>
10222 M:      Andrea Parri <[email protected]>
10223 M:      Will Deacon <[email protected]>
10224 M:      Peter Zijlstra <[email protected]>
10225 M:      Boqun Feng <[email protected]>
10226 M:      Nicholas Piggin <[email protected]>
10227 M:      David Howells <[email protected]>
10228 M:      Jade Alglave <[email protected]>
10229 M:      Luc Maranget <[email protected]>
10230 M:      "Paul E. McKenney" <[email protected]>
10231 R:      Akira Yokosawa <[email protected]>
10232 R:      Daniel Lustig <[email protected]>
10233 R:      Joel Fernandes <[email protected]>
10234 L:      [email protected]
10235 L:      [email protected]
10236 S:      Supported
10237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10238 F:      Documentation/atomic_bitops.txt
10239 F:      Documentation/atomic_t.txt
10240 F:      Documentation/core-api/atomic_ops.rst
10241 F:      Documentation/core-api/refcount-vs-atomic.rst
10242 F:      Documentation/litmus-tests/
10243 F:      Documentation/memory-barriers.txt
10244 F:      tools/memory-model/
10245
10246 LIS3LV02D ACCELEROMETER DRIVER
10247 M:      Eric Piel <[email protected]>
10248 S:      Maintained
10249 F:      Documentation/misc-devices/lis3lv02d.rst
10250 F:      drivers/misc/lis3lv02d/
10251 F:      drivers/platform/x86/hp_accel.c
10252
10253 LIST KUNIT TEST
10254 M:      David Gow <[email protected]>
10255 L:      [email protected]
10256 L:      [email protected]
10257 S:      Maintained
10258 F:      lib/list-test.c
10259
10260 LIVE PATCHING
10261 M:      Josh Poimboeuf <[email protected]>
10262 M:      Jiri Kosina <[email protected]>
10263 M:      Miroslav Benes <[email protected]>
10264 M:      Petr Mladek <[email protected]>
10265 R:      Joe Lawrence <[email protected]>
10266 L:      [email protected]
10267 S:      Maintained
10268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10269 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10270 F:      Documentation/livepatch/
10271 F:      arch/powerpc/include/asm/livepatch.h
10272 F:      arch/s390/include/asm/livepatch.h
10273 F:      arch/x86/include/asm/livepatch.h
10274 F:      include/linux/livepatch.h
10275 F:      kernel/livepatch/
10276 F:      lib/livepatch/
10277 F:      samples/livepatch/
10278 F:      tools/testing/selftests/livepatch/
10279
10280 LLC (802.2)
10281 L:      [email protected]
10282 S:      Odd fixes
10283 F:      include/linux/llc.h
10284 F:      include/net/llc*
10285 F:      include/uapi/linux/llc.h
10286 F:      net/llc/
10287
10288 LM73 HARDWARE MONITOR DRIVER
10289 M:      Guillaume Ligneul <[email protected]>
10290 L:      [email protected]
10291 S:      Maintained
10292 F:      drivers/hwmon/lm73.c
10293
10294 LM78 HARDWARE MONITOR DRIVER
10295 M:      Jean Delvare <[email protected]>
10296 L:      [email protected]
10297 S:      Maintained
10298 F:      Documentation/hwmon/lm78.rst
10299 F:      drivers/hwmon/lm78.c
10300
10301 LM83 HARDWARE MONITOR DRIVER
10302 M:      Jean Delvare <[email protected]>
10303 L:      [email protected]
10304 S:      Maintained
10305 F:      Documentation/hwmon/lm83.rst
10306 F:      drivers/hwmon/lm83.c
10307
10308 LM90 HARDWARE MONITOR DRIVER
10309 M:      Jean Delvare <[email protected]>
10310 L:      [email protected]
10311 S:      Maintained
10312 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10313 F:      Documentation/hwmon/lm90.rst
10314 F:      drivers/hwmon/lm90.c
10315 F:      include/dt-bindings/thermal/lm90.h
10316
10317 LM95234 HARDWARE MONITOR DRIVER
10318 M:      Guenter Roeck <[email protected]>
10319 L:      [email protected]
10320 S:      Maintained
10321 F:      Documentation/hwmon/lm95234.rst
10322 F:      drivers/hwmon/lm95234.c
10323
10324 LME2510 MEDIA DRIVER
10325 M:      Malcolm Priestley <[email protected]>
10326 L:      [email protected]
10327 S:      Maintained
10328 W:      https://linuxtv.org
10329 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10330 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10331
10332 LOADPIN SECURITY MODULE
10333 M:      Kees Cook <[email protected]>
10334 S:      Supported
10335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10336 F:      Documentation/admin-guide/LSM/LoadPin.rst
10337 F:      security/loadpin/
10338
10339 LOCKING PRIMITIVES
10340 M:      Peter Zijlstra <[email protected]>
10341 M:      Ingo Molnar <[email protected]>
10342 M:      Will Deacon <[email protected]>
10343 L:      [email protected]
10344 S:      Maintained
10345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10346 F:      Documentation/locking/
10347 F:      arch/*/include/asm/spinlock*.h
10348 F:      include/linux/lockdep.h
10349 F:      include/linux/mutex*.h
10350 F:      include/linux/rwlock*.h
10351 F:      include/linux/rwsem*.h
10352 F:      include/linux/seqlock.h
10353 F:      include/linux/spinlock*.h
10354 F:      kernel/locking/
10355 F:      lib/locking*.[ch]
10356 X:      kernel/locking/locktorture.c
10357
10358 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10359 M:      "Richard Russon (FlatCap)" <[email protected]>
10360 L:      [email protected]
10361 S:      Maintained
10362 W:      http://www.linux-ntfs.org/content/view/19/37/
10363 F:      Documentation/admin-guide/ldm.rst
10364 F:      block/partitions/ldm.*
10365
10366 LOGITECH HID GAMING KEYBOARDS
10367 M:      Hans de Goede <[email protected]>
10368 L:      [email protected]
10369 S:      Maintained
10370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10371 F:      drivers/hid/hid-lg-g15.c
10372
10373 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10374 M:      Sathya Prakash <[email protected]>
10375 M:      Sreekanth Reddy <[email protected]>
10376 M:      Suganath Prabu Subramani <[email protected]>
10377 L:      [email protected]
10378 L:      [email protected]
10379 S:      Supported
10380 W:      http://www.avagotech.com/support/
10381 F:      drivers/message/fusion/
10382 F:      drivers/scsi/mpt3sas/
10383
10384 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10385 M:      Matthew Wilcox <[email protected]>
10386 L:      [email protected]
10387 S:      Maintained
10388 F:      drivers/scsi/sym53c8xx_2/
10389
10390 LTC1660 DAC DRIVER
10391 M:      Marcus Folkesson <[email protected]>
10392 L:      [email protected]
10393 S:      Maintained
10394 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10395 F:      drivers/iio/dac/ltc1660.c
10396
10397 LTC2947 HARDWARE MONITOR DRIVER
10398 M:      Nuno Sá <[email protected]>
10399 L:      [email protected]
10400 S:      Supported
10401 W:      http://ez.analog.com/community/linux-device-drivers
10402 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10403 F:      drivers/hwmon/ltc2947-core.c
10404 F:      drivers/hwmon/ltc2947-i2c.c
10405 F:      drivers/hwmon/ltc2947-spi.c
10406 F:      drivers/hwmon/ltc2947.h
10407
10408 LTC2983 IIO TEMPERATURE DRIVER
10409 M:      Nuno Sá <[email protected]>
10410 L:      [email protected]
10411 S:      Supported
10412 W:      http://ez.analog.com/community/linux-device-drivers
10413 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10414 F:      drivers/iio/temperature/ltc2983.c
10415
10416 LTC4261 HARDWARE MONITOR DRIVER
10417 M:      Guenter Roeck <[email protected]>
10418 L:      [email protected]
10419 S:      Maintained
10420 F:      Documentation/hwmon/ltc4261.rst
10421 F:      drivers/hwmon/ltc4261.c
10422
10423 LTC4306 I2C MULTIPLEXER DRIVER
10424 M:      Michael Hennerich <[email protected]>
10425 L:      [email protected]
10426 S:      Supported
10427 W:      http://ez.analog.com/community/linux-device-drivers
10428 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10429 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10430
10431 LTP (Linux Test Project)
10432 M:      Mike Frysinger <[email protected]>
10433 M:      Cyril Hrubis <[email protected]>
10434 M:      Wanlong Gao <[email protected]>
10435 M:      Jan Stancek <[email protected]>
10436 M:      Stanislav Kholmanskikh <[email protected]>
10437 M:      Alexey Kodanev <[email protected]>
10438 L:      [email protected] (subscribers-only)
10439 S:      Maintained
10440 W:      http://linux-test-project.github.io/
10441 T:      git git://github.com/linux-test-project/ltp.git
10442
10443 LYNX PCS MODULE
10444 M:      Ioana Ciornei <[email protected]>
10445 L:      [email protected]
10446 S:      Supported
10447 F:      drivers/net/pcs/pcs-lynx.c
10448 F:      include/linux/pcs-lynx.h
10449
10450 M68K ARCHITECTURE
10451 M:      Geert Uytterhoeven <[email protected]>
10452 L:      [email protected]
10453 S:      Maintained
10454 W:      http://www.linux-m68k.org/
10455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10456 F:      arch/m68k/
10457 F:      drivers/zorro/
10458
10459 M68K ON APPLE MACINTOSH
10460 M:      Joshua Thompson <[email protected]>
10461 L:      [email protected]
10462 S:      Maintained
10463 W:      http://www.mac.linux-m68k.org/
10464 F:      arch/m68k/mac/
10465 F:      drivers/macintosh/adb-iop.c
10466 F:      drivers/macintosh/via-macii.c
10467
10468 M68K ON HP9000/300
10469 M:      Philip Blundell <[email protected]>
10470 S:      Maintained
10471 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10472 F:      arch/m68k/hp300/
10473
10474 M88DS3103 MEDIA DRIVER
10475 M:      Antti Palosaari <[email protected]>
10476 L:      [email protected]
10477 S:      Maintained
10478 W:      https://linuxtv.org
10479 W:      http://palosaari.fi/linux/
10480 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10481 T:      git git://linuxtv.org/anttip/media_tree.git
10482 F:      drivers/media/dvb-frontends/m88ds3103*
10483
10484 M88RS2000 MEDIA DRIVER
10485 M:      Malcolm Priestley <[email protected]>
10486 L:      [email protected]
10487 S:      Maintained
10488 W:      https://linuxtv.org
10489 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10490 F:      drivers/media/dvb-frontends/m88rs2000*
10491
10492 MA901 MASTERKIT USB FM RADIO DRIVER
10493 M:      Alexey Klimov <[email protected]>
10494 L:      [email protected]
10495 S:      Maintained
10496 T:      git git://linuxtv.org/media_tree.git
10497 F:      drivers/media/radio/radio-ma901.c
10498
10499 MAC80211
10500 M:      Johannes Berg <[email protected]>
10501 L:      [email protected]
10502 S:      Maintained
10503 W:      https://wireless.wiki.kernel.org/
10504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10506 F:      Documentation/networking/mac80211-injection.rst
10507 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10508 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10509 F:      include/net/mac80211.h
10510 F:      net/mac80211/
10511
10512 MAILBOX API
10513 M:      Jassi Brar <[email protected]>
10514 L:      [email protected]
10515 S:      Maintained
10516 F:      drivers/mailbox/
10517 F:      include/linux/mailbox_client.h
10518 F:      include/linux/mailbox_controller.h
10519
10520 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10521 M:      Michael Kerrisk <[email protected]>
10522 L:      [email protected]
10523 S:      Maintained
10524 W:      http://www.kernel.org/doc/man-pages
10525
10526 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10527 M:      Rahul Bedarkar <[email protected]>
10528 L:      [email protected]
10529 S:      Maintained
10530 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10531
10532 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10533 M:      Andrew Lunn <[email protected]>
10534 M:      Vivien Didelot <[email protected]>
10535 L:      [email protected]
10536 S:      Maintained
10537 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10538 F:      Documentation/networking/devlink/mv88e6xxx.rst
10539 F:      drivers/net/dsa/mv88e6xxx/
10540 F:      include/linux/platform_data/mv88e6xxx.h
10541
10542 MARVELL ARMADA 3700 PHY DRIVERS
10543 M:      Miquel Raynal <[email protected]>
10544 S:      Maintained
10545 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10546 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10547 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10548 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10549
10550 MARVELL ARMADA DRM SUPPORT
10551 M:      Russell King <[email protected]>
10552 S:      Maintained
10553 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10554 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10555 F:      Documentation/devicetree/bindings/display/armada/
10556 F:      drivers/gpu/drm/armada/
10557 F:      include/uapi/drm/armada_drm.h
10558
10559 MARVELL CRYPTO DRIVER
10560 M:      Boris Brezillon <[email protected]>
10561 M:      Arnaud Ebalard <[email protected]>
10562 M:      Srujana Challa <[email protected]>
10563 L:      [email protected]
10564 S:      Maintained
10565 F:      drivers/crypto/marvell/
10566 F:      include/linux/soc/marvell/octeontx2/
10567
10568 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10569 M:      Mirko Lindner <[email protected]>
10570 M:      Stephen Hemminger <[email protected]>
10571 L:      [email protected]
10572 S:      Maintained
10573 F:      drivers/net/ethernet/marvell/sk*
10574
10575 MARVELL LIBERTAS WIRELESS DRIVER
10576 L:      [email protected]
10577 S:      Orphan
10578 F:      drivers/net/wireless/marvell/libertas/
10579
10580 MARVELL MACCHIATOBIN SUPPORT
10581 M:      Russell King <[email protected]>
10582 L:      [email protected]
10583 S:      Maintained
10584 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10585
10586 MARVELL MV643XX ETHERNET DRIVER
10587 M:      Sebastian Hesselbarth <[email protected]>
10588 L:      [email protected]
10589 S:      Maintained
10590 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10591 F:      include/linux/mv643xx.h
10592
10593 MARVELL MV88X3310 PHY DRIVER
10594 M:      Russell King <[email protected]>
10595 L:      [email protected]
10596 S:      Maintained
10597 F:      drivers/net/phy/marvell10g.c
10598
10599 MARVELL MVEBU THERMAL DRIVER
10600 M:      Miquel Raynal <[email protected]>
10601 S:      Maintained
10602 F:      drivers/thermal/armada_thermal.c
10603
10604 MARVELL MVNETA ETHERNET DRIVER
10605 M:      Thomas Petazzoni <[email protected]>
10606 L:      [email protected]
10607 S:      Maintained
10608 F:      drivers/net/ethernet/marvell/mvneta.*
10609
10610 MARVELL MVPP2 ETHERNET DRIVER
10611 M:      Marcin Wojtas <[email protected]>
10612 M:      Russell King <[email protected]>
10613 L:      [email protected]
10614 S:      Maintained
10615 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
10616 F:      drivers/net/ethernet/marvell/mvpp2/
10617
10618 MARVELL MWIFIEX WIRELESS DRIVER
10619 M:      Amitkumar Karwar <[email protected]>
10620 M:      Ganapathi Bhat <[email protected]>
10621 M:      Xinming Hu <[email protected]>
10622 L:      [email protected]
10623 S:      Maintained
10624 F:      drivers/net/wireless/marvell/mwifiex/
10625
10626 MARVELL MWL8K WIRELESS DRIVER
10627 M:      Lennert Buytenhek <[email protected]>
10628 L:      [email protected]
10629 S:      Odd Fixes
10630 F:      drivers/net/wireless/marvell/mwl8k.c
10631
10632 MARVELL NAND CONTROLLER DRIVER
10633 M:      Miquel Raynal <[email protected]>
10634 L:      [email protected]
10635 S:      Maintained
10636 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10637 F:      drivers/mtd/nand/raw/marvell_nand.c
10638
10639 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10640 M:      Sunil Goutham <[email protected]>
10641 M:      Geetha sowjanya <[email protected]>
10642 M:      Subbaraya Sundeep <[email protected]>
10643 M:      hariprasad <[email protected]>
10644 L:      [email protected]
10645 S:      Supported
10646 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10647 F:      include/linux/soc/marvell/octeontx2/
10648
10649 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10650 M:      Sunil Goutham <[email protected]>
10651 M:      Linu Cherian <[email protected]>
10652 M:      Geetha sowjanya <[email protected]>
10653 M:      Jerin Jacob <[email protected]>
10654 L:      [email protected]
10655 S:      Supported
10656 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10657 F:      drivers/net/ethernet/marvell/octeontx2/af/
10658
10659 MARVELL PRESTERA ETHERNET SWITCH DRIVER
10660 M:      Vadym Kochan <[email protected]>
10661 M:      Taras Chornyi <[email protected]>
10662 S:      Supported
10663 W:      https://github.com/Marvell-switching/switchdev-prestera
10664 F:      drivers/net/ethernet/marvell/prestera/
10665
10666 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10667 M:      Nicolas Pitre <[email protected]>
10668 S:      Odd Fixes
10669 F:      drivers/mmc/host/mvsdio.*
10670
10671 MARVELL USB MDIO CONTROLLER DRIVER
10672 M:      Tobias Waldekranz <[email protected]>
10673 L:      [email protected]
10674 S:      Maintained
10675 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10676 F:      drivers/net/mdio/mdio-mvusb.c
10677
10678 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10679 M:      Hu Ziji <[email protected]>
10680 L:      [email protected]
10681 S:      Supported
10682 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10683 F:      drivers/mmc/host/sdhci-xenon*
10684
10685 MATROX FRAMEBUFFER DRIVER
10686 L:      [email protected]
10687 S:      Orphan
10688 F:      drivers/video/fbdev/matrox/matroxfb_*
10689 F:      include/uapi/linux/matroxfb.h
10690
10691 MAX16065 HARDWARE MONITOR DRIVER
10692 M:      Guenter Roeck <[email protected]>
10693 L:      [email protected]
10694 S:      Maintained
10695 F:      Documentation/hwmon/max16065.rst
10696 F:      drivers/hwmon/max16065.c
10697
10698 MAX2175 SDR TUNER DRIVER
10699 M:      Ramesh Shanmugasundaram <[email protected]>
10700 L:      [email protected]
10701 S:      Maintained
10702 T:      git git://linuxtv.org/media_tree.git
10703 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10704 F:      Documentation/userspace-api/media/drivers/max2175.rst
10705 F:      drivers/media/i2c/max2175*
10706 F:      include/uapi/linux/max2175.h
10707
10708 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10709 L:      [email protected]
10710 S:      Orphan
10711 F:      Documentation/hwmon/max6650.rst
10712 F:      drivers/hwmon/max6650.c
10713
10714 MAX6697 HARDWARE MONITOR DRIVER
10715 M:      Guenter Roeck <[email protected]>
10716 L:      [email protected]
10717 S:      Maintained
10718 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10719 F:      Documentation/hwmon/max6697.rst
10720 F:      drivers/hwmon/max6697.c
10721 F:      include/linux/platform_data/max6697.h
10722
10723 MAX9286 QUAD GMSL DESERIALIZER DRIVER
10724 M:      Jacopo Mondi <[email protected]>
10725 M:      Kieran Bingham <[email protected]>
10726 M:      Laurent Pinchart <[email protected]>
10727 M:      Niklas Söderlund <[email protected]>
10728 L:      [email protected]
10729 S:      Maintained
10730 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
10731 F:      drivers/media/i2c/max9286.c
10732
10733 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10734 M:      Peter Rosin <[email protected]>
10735 L:      [email protected] (moderated for non-subscribers)
10736 S:      Maintained
10737 F:      Documentation/devicetree/bindings/sound/max9860.txt
10738 F:      sound/soc/codecs/max9860.*
10739
10740 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10741 M:      Andreas Klinger <[email protected]>
10742 L:      [email protected]
10743 S:      Maintained
10744 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10745 F:      drivers/iio/proximity/mb1232.c
10746
10747 MAXIM MAX77650 PMIC MFD DRIVER
10748 M:      Bartosz Golaszewski <[email protected]>
10749 L:      [email protected]
10750 S:      Maintained
10751 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10752 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10753 F:      drivers/gpio/gpio-max77650.c
10754 F:      drivers/input/misc/max77650-onkey.c
10755 F:      drivers/leds/leds-max77650.c
10756 F:      drivers/mfd/max77650.c
10757 F:      drivers/power/supply/max77650-charger.c
10758 F:      drivers/regulator/max77650-regulator.c
10759 F:      include/linux/mfd/max77650.h
10760
10761 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10762 M:      Javier Martinez Canillas <[email protected]>
10763 L:      [email protected]
10764 S:      Supported
10765 F:      Documentation/devicetree/bindings/*/*max77802.txt
10766 F:      drivers/regulator/max77802-regulator.c
10767 F:      include/dt-bindings/*/*max77802.h
10768
10769 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10770 M:      Krzysztof Kozlowski <[email protected]>
10771 M:      Bartlomiej Zolnierkiewicz <[email protected]>
10772 L:      [email protected]
10773 S:      Supported
10774 F:      drivers/power/supply/max14577_charger.c
10775 F:      drivers/power/supply/max77693_charger.c
10776
10777 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10778 M:      Chanwoo Choi <[email protected]>
10779 M:      Krzysztof Kozlowski <[email protected]>
10780 M:      Bartlomiej Zolnierkiewicz <[email protected]>
10781 L:      [email protected]
10782 S:      Supported
10783 F:      Documentation/devicetree/bindings/*/max77686.txt
10784 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10785 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10786 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10787 F:      drivers/*/max14577*.c
10788 F:      drivers/*/max77686*.c
10789 F:      drivers/*/max77693*.c
10790 F:      drivers/clk/clk-max77686.c
10791 F:      drivers/extcon/extcon-max14577.c
10792 F:      drivers/extcon/extcon-max77693.c
10793 F:      drivers/rtc/rtc-max77686.c
10794 F:      include/linux/mfd/max14577*.h
10795 F:      include/linux/mfd/max77686*.h
10796 F:      include/linux/mfd/max77693*.h
10797
10798 MAXIRADIO FM RADIO RECEIVER DRIVER
10799 M:      Hans Verkuil <[email protected]>
10800 L:      [email protected]
10801 S:      Maintained
10802 W:      https://linuxtv.org
10803 T:      git git://linuxtv.org/media_tree.git
10804 F:      drivers/media/radio/radio-maxiradio*
10805
10806 MCAN MMIO DEVICE DRIVER
10807 M:      Dan Murphy <[email protected]>
10808 M:      Sriram Dash <[email protected]>
10809 L:      [email protected]
10810 S:      Maintained
10811 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10812 F:      drivers/net/can/m_can/m_can.c
10813 F:      drivers/net/can/m_can/m_can.h
10814 F:      drivers/net/can/m_can/m_can_platform.c
10815
10816 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10817 M:      Rishi Gupta <[email protected]>
10818 L:      [email protected]
10819 L:      [email protected]
10820 S:      Maintained
10821 F:      drivers/hid/hid-mcp2221.c
10822
10823 MCP251XFD SPI-CAN NETWORK DRIVER
10824 M:      Marc Kleine-Budde <[email protected]>
10825 M:      Manivannan Sadhasivam <[email protected]>
10826 R:      Thomas Kopp <[email protected]>
10827 L:      [email protected]
10828 S:      Maintained
10829 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
10830 F:      drivers/net/can/spi/mcp251xfd/
10831
10832 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10833 M:      Peter Rosin <[email protected]>
10834 L:      [email protected]
10835 S:      Maintained
10836 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10837 F:      drivers/iio/potentiometer/mcp4018.c
10838 F:      drivers/iio/potentiometer/mcp4531.c
10839
10840 MCR20A IEEE-802.15.4 RADIO DRIVER
10841 M:      Xue Liu <[email protected]>
10842 L:      [email protected]
10843 S:      Maintained
10844 W:      https://github.com/xueliu/mcr20a-linux
10845 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10846 F:      drivers/net/ieee802154/mcr20a.c
10847 F:      drivers/net/ieee802154/mcr20a.h
10848
10849 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10850 M:      William Breathitt Gray <[email protected]>
10851 L:      [email protected]
10852 S:      Maintained
10853 F:      drivers/iio/dac/cio-dac.c
10854
10855 MEDIA CONTROLLER FRAMEWORK
10856 M:      Sakari Ailus <[email protected]>
10857 M:      Laurent Pinchart <[email protected]>
10858 L:      [email protected]
10859 S:      Supported
10860 W:      https://www.linuxtv.org
10861 T:      git git://linuxtv.org/media_tree.git
10862 F:      drivers/media/mc/
10863 F:      include/media/media-*.h
10864 F:      include/uapi/linux/media.h
10865
10866 MEDIA DRIVER FOR FREESCALE IMX PXP
10867 M:      Philipp Zabel <[email protected]>
10868 L:      [email protected]
10869 S:      Maintained
10870 T:      git git://linuxtv.org/media_tree.git
10871 F:      drivers/media/platform/imx-pxp.[ch]
10872
10873 MEDIA DRIVERS FOR ASCOT2E
10874 M:      Sergey Kozlov <[email protected]>
10875 M:      Abylay Ospan <[email protected]>
10876 L:      [email protected]
10877 S:      Supported
10878 W:      https://linuxtv.org
10879 W:      http://netup.tv/
10880 T:      git git://linuxtv.org/media_tree.git
10881 F:      drivers/media/dvb-frontends/ascot2e*
10882
10883 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10884 M:      Jasmin Jessich <[email protected]>
10885 L:      [email protected]
10886 S:      Maintained
10887 W:      https://linuxtv.org
10888 T:      git git://linuxtv.org/media_tree.git
10889 F:      drivers/media/dvb-frontends/cxd2099*
10890
10891 MEDIA DRIVERS FOR CXD2841ER
10892 M:      Sergey Kozlov <[email protected]>
10893 M:      Abylay Ospan <[email protected]>
10894 L:      [email protected]
10895 S:      Supported
10896 W:      https://linuxtv.org
10897 W:      http://netup.tv/
10898 T:      git git://linuxtv.org/media_tree.git
10899 F:      drivers/media/dvb-frontends/cxd2841er*
10900
10901 MEDIA DRIVERS FOR CXD2880
10902 M:      Yasunari Takiguchi <[email protected]>
10903 L:      [email protected]
10904 S:      Supported
10905 W:      http://linuxtv.org/
10906 T:      git git://linuxtv.org/media_tree.git
10907 F:      drivers/media/dvb-frontends/cxd2880/*
10908 F:      drivers/media/spi/cxd2880*
10909
10910 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10911 L:      [email protected]
10912 S:      Orphan
10913 W:      https://linuxtv.org
10914 T:      git git://linuxtv.org/media_tree.git
10915 F:      drivers/media/pci/ddbridge/*
10916
10917 MEDIA DRIVERS FOR FREESCALE IMX
10918 M:      Steve Longerbeam <[email protected]>
10919 M:      Philipp Zabel <[email protected]>
10920 L:      [email protected]
10921 S:      Maintained
10922 T:      git git://linuxtv.org/media_tree.git
10923 F:      Documentation/admin-guide/media/imx.rst
10924 F:      Documentation/devicetree/bindings/media/imx.txt
10925 F:      drivers/staging/media/imx/
10926 F:      include/linux/imx-media.h
10927 F:      include/media/imx.h
10928
10929 MEDIA DRIVERS FOR FREESCALE IMX7
10930 M:      Rui Miguel Silva <[email protected]>
10931 L:      [email protected]
10932 S:      Maintained
10933 T:      git git://linuxtv.org/media_tree.git
10934 F:      Documentation/admin-guide/media/imx7.rst
10935 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
10936 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
10937 F:      drivers/staging/media/imx/imx7-media-csi.c
10938 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10939
10940 MEDIA DRIVERS FOR HELENE
10941 M:      Abylay Ospan <[email protected]>
10942 L:      [email protected]
10943 S:      Supported
10944 W:      https://linuxtv.org
10945 W:      http://netup.tv/
10946 T:      git git://linuxtv.org/media_tree.git
10947 F:      drivers/media/dvb-frontends/helene*
10948
10949 MEDIA DRIVERS FOR HORUS3A
10950 M:      Sergey Kozlov <[email protected]>
10951 M:      Abylay Ospan <[email protected]>
10952 L:      [email protected]
10953 S:      Supported
10954 W:      https://linuxtv.org
10955 W:      http://netup.tv/
10956 T:      git git://linuxtv.org/media_tree.git
10957 F:      drivers/media/dvb-frontends/horus3a*
10958
10959 MEDIA DRIVERS FOR LNBH25
10960 M:      Sergey Kozlov <[email protected]>
10961 M:      Abylay Ospan <[email protected]>
10962 L:      [email protected]
10963 S:      Supported
10964 W:      https://linuxtv.org
10965 W:      http://netup.tv/
10966 T:      git git://linuxtv.org/media_tree.git
10967 F:      drivers/media/dvb-frontends/lnbh25*
10968
10969 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10970 L:      [email protected]
10971 S:      Orphan
10972 W:      https://linuxtv.org
10973 T:      git git://linuxtv.org/media_tree.git
10974 F:      drivers/media/dvb-frontends/mxl5xx*
10975
10976 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10977 M:      Sergey Kozlov <[email protected]>
10978 M:      Abylay Ospan <[email protected]>
10979 L:      [email protected]
10980 S:      Supported
10981 W:      https://linuxtv.org
10982 W:      http://netup.tv/
10983 T:      git git://linuxtv.org/media_tree.git
10984 F:      drivers/media/pci/netup_unidvb/*
10985
10986 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10987 M:      Dmitry Osipenko <[email protected]>
10988 L:      [email protected]
10989 L:      [email protected]
10990 S:      Maintained
10991 T:      git git://linuxtv.org/media_tree.git
10992 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10993 F:      drivers/staging/media/tegra-vde/
10994
10995 MEDIA DRIVERS FOR RENESAS - CEU
10996 M:      Jacopo Mondi <[email protected]>
10997 L:      [email protected]
10998 L:      [email protected]
10999 S:      Supported
11000 T:      git git://linuxtv.org/media_tree.git
11001 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11002 F:      drivers/media/platform/renesas-ceu.c
11003 F:      include/media/drv-intf/renesas-ceu.h
11004
11005 MEDIA DRIVERS FOR RENESAS - DRIF
11006 M:      Ramesh Shanmugasundaram <[email protected]>
11007 L:      [email protected]
11008 L:      [email protected]
11009 S:      Supported
11010 T:      git git://linuxtv.org/media_tree.git
11011 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
11012 F:      drivers/media/platform/rcar_drif.c
11013
11014 MEDIA DRIVERS FOR RENESAS - FCP
11015 M:      Laurent Pinchart <[email protected]>
11016 L:      [email protected]
11017 L:      [email protected]
11018 S:      Supported
11019 T:      git git://linuxtv.org/media_tree.git
11020 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11021 F:      drivers/media/platform/rcar-fcp.c
11022 F:      include/media/rcar-fcp.h
11023
11024 MEDIA DRIVERS FOR RENESAS - FDP1
11025 M:      Kieran Bingham <[email protected]>
11026 L:      [email protected]
11027 L:      [email protected]
11028 S:      Supported
11029 T:      git git://linuxtv.org/media_tree.git
11030 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11031 F:      drivers/media/platform/rcar_fdp1.c
11032
11033 MEDIA DRIVERS FOR RENESAS - VIN
11034 M:      Niklas Söderlund <[email protected]>
11035 L:      [email protected]
11036 L:      [email protected]
11037 S:      Supported
11038 T:      git git://linuxtv.org/media_tree.git
11039 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11040 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11041 F:      drivers/media/platform/rcar-vin/
11042
11043 MEDIA DRIVERS FOR RENESAS - VSP1
11044 M:      Laurent Pinchart <[email protected]>
11045 M:      Kieran Bingham <[email protected]>
11046 L:      [email protected]
11047 L:      [email protected]
11048 S:      Supported
11049 T:      git git://linuxtv.org/media_tree.git
11050 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11051 F:      drivers/media/platform/vsp1/
11052
11053 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11054 L:      [email protected]
11055 S:      Orphan
11056 W:      https://linuxtv.org
11057 T:      git git://linuxtv.org/media_tree.git
11058 F:      drivers/media/dvb-frontends/stv0910*
11059
11060 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11061 L:      [email protected]
11062 S:      Orphan
11063 W:      https://linuxtv.org
11064 T:      git git://linuxtv.org/media_tree.git
11065 F:      drivers/media/dvb-frontends/stv6111*
11066
11067 MEDIA DRIVERS FOR STM32 - DCMI
11068 M:      Hugues Fruchet <[email protected]>
11069 L:      [email protected]
11070 S:      Supported
11071 T:      git git://linuxtv.org/media_tree.git
11072 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11073 F:      drivers/media/platform/stm32/stm32-dcmi.c
11074
11075 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11076 M:      Mauro Carvalho Chehab <[email protected]>
11077 L:      [email protected]
11078 S:      Maintained
11079 W:      https://linuxtv.org
11080 Q:      http://patchwork.kernel.org/project/linux-media/list/
11081 T:      git git://linuxtv.org/media_tree.git
11082 F:      Documentation/admin-guide/media/
11083 F:      Documentation/devicetree/bindings/media/
11084 F:      Documentation/driver-api/media/
11085 F:      Documentation/userspace-api/media/
11086 F:      drivers/media/
11087 F:      drivers/staging/media/
11088 F:      include/linux/platform_data/media/
11089 F:      include/media/
11090 F:      include/uapi/linux/dvb/
11091 F:      include/uapi/linux/ivtv*
11092 F:      include/uapi/linux/media.h
11093 F:      include/uapi/linux/meye.h
11094 F:      include/uapi/linux/uvcvideo.h
11095 F:      include/uapi/linux/v4l2-*
11096 F:      include/uapi/linux/videodev2.h
11097
11098 MEDIATEK BLUETOOTH DRIVER
11099 M:      Sean Wang <[email protected]>
11100 L:      [email protected]
11101 L:      [email protected] (moderated for non-subscribers)
11102 S:      Maintained
11103 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11104 F:      drivers/bluetooth/btmtkuart.c
11105
11106 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11107 M:      Sean Wang <[email protected]>
11108 L:      [email protected]
11109 S:      Maintained
11110 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11111 F:      drivers/power/reset/mt6323-poweroff.c
11112
11113 MEDIATEK CIR DRIVER
11114 M:      Sean Wang <[email protected]>
11115 S:      Maintained
11116 F:      drivers/media/rc/mtk-cir.c
11117
11118 MEDIATEK DMA DRIVER
11119 M:      Sean Wang <[email protected]>
11120 L:      [email protected]
11121 L:      [email protected] (moderated for non-subscribers)
11122 L:      [email protected] (moderated for non-subscribers)
11123 S:      Maintained
11124 F:      Documentation/devicetree/bindings/dma/mtk-*
11125 F:      drivers/dma/mediatek/
11126
11127 MEDIATEK ETHERNET DRIVER
11128 M:      Felix Fietkau <[email protected]>
11129 M:      John Crispin <[email protected]>
11130 M:      Sean Wang <[email protected]>
11131 M:      Mark Lee <[email protected]>
11132 L:      [email protected]
11133 S:      Maintained
11134 F:      drivers/net/ethernet/mediatek/
11135
11136 MEDIATEK I2C CONTROLLER DRIVER
11137 M:      Qii Wang <[email protected]>
11138 L:      [email protected]
11139 S:      Maintained
11140 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11141 F:      drivers/i2c/busses/i2c-mt65xx.c
11142
11143 MEDIATEK JPEG DRIVER
11144 M:      Rick Chang <[email protected]>
11145 M:      Bin Liu <[email protected]>
11146 S:      Supported
11147 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11148 F:      drivers/media/platform/mtk-jpeg/
11149
11150 MEDIATEK MDP DRIVER
11151 M:      Minghsiu Tsai <[email protected]>
11152 M:      Houlong Wei <[email protected]>
11153 M:      Andrew-CT Chen <[email protected]>
11154 S:      Supported
11155 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11156 F:      drivers/media/platform/mtk-mdp/
11157 F:      drivers/media/platform/mtk-vpu/
11158
11159 MEDIATEK MEDIA DRIVER
11160 M:      Tiffany Lin <[email protected]>
11161 M:      Andrew-CT Chen <[email protected]>
11162 S:      Supported
11163 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11164 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11165 F:      drivers/media/platform/mtk-vcodec/
11166 F:      drivers/media/platform/mtk-vpu/
11167
11168 MEDIATEK MMC/SD/SDIO DRIVER
11169 M:      Chaotian Jing <[email protected]>
11170 S:      Maintained
11171 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
11172 F:      drivers/mmc/host/mtk-sd.c
11173
11174 MEDIATEK MT76 WIRELESS LAN DRIVER
11175 M:      Felix Fietkau <[email protected]>
11176 M:      Lorenzo Bianconi <[email protected]>
11177 R:      Ryder Lee <[email protected]>
11178 L:      [email protected]
11179 S:      Maintained
11180 F:      drivers/net/wireless/mediatek/mt76/
11181
11182 MEDIATEK MT7601U WIRELESS LAN DRIVER
11183 M:      Jakub Kicinski <[email protected]>
11184 L:      [email protected]
11185 S:      Maintained
11186 F:      drivers/net/wireless/mediatek/mt7601u/
11187
11188 MEDIATEK MT7621/28/88 I2C DRIVER
11189 M:      Stefan Roese <[email protected]>
11190 L:      [email protected]
11191 S:      Maintained
11192 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11193 F:      drivers/i2c/busses/i2c-mt7621.c
11194
11195 MEDIATEK MT7621 PHY PCI DRIVER
11196 M:      Sergio Paracuellos <[email protected]>
11197 S:      Maintained
11198 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11199 F:      drivers/phy/ralink/phy-mt7621-pci.c
11200
11201 MEDIATEK NAND CONTROLLER DRIVER
11202 L:      [email protected]
11203 S:      Orphan
11204 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11205 F:      drivers/mtd/nand/raw/mtk_*
11206
11207 MEDIATEK PMIC LED DRIVER
11208 M:      Sean Wang <[email protected]>
11209 S:      Maintained
11210 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11211 F:      drivers/leds/leds-mt6323.c
11212
11213 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11214 M:      Sean Wang <[email protected]>
11215 S:      Maintained
11216 F:      drivers/char/hw_random/mtk-rng.c
11217
11218 MEDIATEK SWITCH DRIVER
11219 M:      Sean Wang <[email protected]>
11220 M:      Landen Chao <[email protected]>
11221 L:      [email protected]
11222 S:      Maintained
11223 F:      drivers/net/dsa/mt7530.*
11224 F:      net/dsa/tag_mtk.c
11225
11226 MEDIATEK USB3 DRD IP DRIVER
11227 M:      Chunfeng Yun <[email protected]>
11228 L:      [email protected]
11229 L:      [email protected] (moderated for non-subscribers)
11230 L:      [email protected] (moderated for non-subscribers)
11231 S:      Maintained
11232 F:      drivers/usb/mtu3/
11233
11234 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11235 M:      Peter Senna Tschudin <[email protected]>
11236 M:      Martin Donnelly <[email protected]>
11237 M:      Martyn Welch <[email protected]>
11238 S:      Maintained
11239 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11240 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11241
11242 MEGARAID SCSI/SAS DRIVERS
11243 M:      Kashyap Desai <[email protected]>
11244 M:      Sumit Saxena <[email protected]>
11245 M:      Shivasharan S <[email protected]>
11246 L:      [email protected]
11247 L:      [email protected]
11248 S:      Maintained
11249 W:      http://www.avagotech.com/support/
11250 F:      Documentation/scsi/megaraid.rst
11251 F:      drivers/scsi/megaraid.*
11252 F:      drivers/scsi/megaraid/
11253
11254 MELEXIS MLX90614 DRIVER
11255 M:      Crt Mori <[email protected]>
11256 L:      [email protected]
11257 S:      Supported
11258 W:      http://www.melexis.com
11259 F:      drivers/iio/temperature/mlx90614.c
11260
11261 MELEXIS MLX90632 DRIVER
11262 M:      Crt Mori <[email protected]>
11263 L:      [email protected]
11264 S:      Supported
11265 W:      http://www.melexis.com
11266 F:      drivers/iio/temperature/mlx90632.c
11267
11268 MELFAS MIP4 TOUCHSCREEN DRIVER
11269 M:      Sangwon Jee <[email protected]>
11270 S:      Supported
11271 W:      http://www.melfas.com
11272 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11273 F:      drivers/input/touchscreen/melfas_mip4.c
11274
11275 MELLANOX BLUEFIELD I2C DRIVER
11276 M:      Khalil Blaiech <[email protected]>
11277 L:      [email protected]
11278 S:      Supported
11279 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11280 F:      drivers/i2c/busses/i2c-mlxbf.c
11281
11282 MELLANOX ETHERNET DRIVER (mlx4_en)
11283 M:      Tariq Toukan <[email protected]>
11284 L:      [email protected]
11285 S:      Supported
11286 W:      http://www.mellanox.com
11287 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11288 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11289
11290 MELLANOX ETHERNET DRIVER (mlx5e)
11291 M:      Saeed Mahameed <[email protected]>
11292 L:      [email protected]
11293 S:      Supported
11294 W:      http://www.mellanox.com
11295 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11296 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11297
11298 MELLANOX ETHERNET INNOVA DRIVERS
11299 R:      Boris Pismenny <[email protected]>
11300 L:      [email protected]
11301 S:      Supported
11302 W:      http://www.mellanox.com
11303 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11304 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11305 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11306 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11307 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11308
11309 MELLANOX ETHERNET SWITCH DRIVERS
11310 M:      Jiri Pirko <[email protected]>
11311 M:      Ido Schimmel <[email protected]>
11312 L:      [email protected]
11313 S:      Supported
11314 W:      http://www.mellanox.com
11315 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11316 F:      drivers/net/ethernet/mellanox/mlxsw/
11317 F:      tools/testing/selftests/drivers/net/mlxsw/
11318
11319 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11320 M:      [email protected]
11321 L:      [email protected]
11322 S:      Supported
11323 W:      http://www.mellanox.com
11324 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11325 F:      drivers/net/ethernet/mellanox/mlxfw/
11326
11327 MELLANOX HARDWARE PLATFORM SUPPORT
11328 M:      Andy Shevchenko <[email protected]>
11329 M:      Darren Hart <[email protected]>
11330 M:      Vadim Pasternak <[email protected]>
11331 L:      [email protected]
11332 S:      Supported
11333 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11334 F:      drivers/platform/mellanox/
11335 F:      include/linux/platform_data/mlxreg.h
11336
11337 MELLANOX MLX4 core VPI driver
11338 M:      Tariq Toukan <[email protected]>
11339 L:      [email protected]
11340 L:      [email protected]
11341 S:      Supported
11342 W:      http://www.mellanox.com
11343 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11344 F:      drivers/net/ethernet/mellanox/mlx4/
11345 F:      include/linux/mlx4/
11346
11347 MELLANOX MLX4 IB driver
11348 M:      Yishai Hadas <[email protected]>
11349 L:      [email protected]
11350 S:      Supported
11351 W:      http://www.mellanox.com
11352 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11353 F:      drivers/infiniband/hw/mlx4/
11354 F:      include/linux/mlx4/
11355 F:      include/uapi/rdma/mlx4-abi.h
11356
11357 MELLANOX MLX5 core VPI driver
11358 M:      Saeed Mahameed <[email protected]>
11359 M:      Leon Romanovsky <[email protected]>
11360 L:      [email protected]
11361 L:      [email protected]
11362 S:      Supported
11363 W:      http://www.mellanox.com
11364 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11365 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11366 F:      drivers/net/ethernet/mellanox/mlx5/core/
11367 F:      include/linux/mlx5/
11368
11369 MELLANOX MLX5 IB driver
11370 M:      Leon Romanovsky <[email protected]>
11371 L:      [email protected]
11372 S:      Supported
11373 W:      http://www.mellanox.com
11374 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11375 F:      drivers/infiniband/hw/mlx5/
11376 F:      include/linux/mlx5/
11377 F:      include/uapi/rdma/mlx5-abi.h
11378
11379 MELLANOX MLXCPLD I2C AND MUX DRIVER
11380 M:      Vadim Pasternak <[email protected]>
11381 M:      Michael Shych <[email protected]>
11382 L:      [email protected]
11383 S:      Supported
11384 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11385 F:      drivers/i2c/busses/i2c-mlxcpld.c
11386 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11387
11388 MELLANOX MLXCPLD LED DRIVER
11389 M:      Vadim Pasternak <[email protected]>
11390 L:      [email protected]
11391 S:      Supported
11392 F:      Documentation/leds/leds-mlxcpld.rst
11393 F:      drivers/leds/leds-mlxcpld.c
11394 F:      drivers/leds/leds-mlxreg.c
11395
11396 MELLANOX PLATFORM DRIVER
11397 M:      Vadim Pasternak <[email protected]>
11398 L:      [email protected]
11399 S:      Supported
11400 F:      drivers/platform/x86/mlx-platform.c
11401
11402 MEMBARRIER SUPPORT
11403 M:      Mathieu Desnoyers <[email protected]>
11404 M:      "Paul E. McKenney" <[email protected]>
11405 L:      [email protected]
11406 S:      Supported
11407 F:      arch/powerpc/include/asm/membarrier.h
11408 F:      include/uapi/linux/membarrier.h
11409 F:      kernel/sched/membarrier.c
11410
11411 MEMBLOCK
11412 M:      Mike Rapoport <[email protected]>
11413 L:      [email protected]
11414 S:      Maintained
11415 F:      Documentation/core-api/boot-time-mm.rst
11416 F:      include/linux/memblock.h
11417 F:      mm/memblock.c
11418
11419 MEMORY CONTROLLER DRIVERS
11420 M:      Krzysztof Kozlowski <[email protected]>
11421 L:      [email protected]
11422 S:      Maintained
11423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11424 F:      Documentation/devicetree/bindings/memory-controllers/
11425 F:      drivers/memory/
11426
11427 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11428 M:      Dmitry Osipenko <[email protected]>
11429 L:      [email protected]
11430 L:      [email protected]
11431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11432 S:      Maintained
11433 F:      drivers/devfreq/tegra30-devfreq.c
11434
11435 MEMORY MANAGEMENT
11436 M:      Andrew Morton <[email protected]>
11437 L:      [email protected]
11438 S:      Maintained
11439 W:      http://www.linux-mm.org
11440 T:      quilt https://ozlabs.org/~akpm/mmotm/
11441 T:      quilt https://ozlabs.org/~akpm/mmots/
11442 T:      git git://github.com/hnaz/linux-mm.git
11443 F:      include/linux/gfp.h
11444 F:      include/linux/memory_hotplug.h
11445 F:      include/linux/mm.h
11446 F:      include/linux/mmzone.h
11447 F:      include/linux/vmalloc.h
11448 F:      mm/
11449
11450 MEMORY TECHNOLOGY DEVICES (MTD)
11451 M:      Miquel Raynal <[email protected]>
11452 M:      Richard Weinberger <[email protected]>
11453 M:      Vignesh Raghavendra <[email protected]>
11454 L:      [email protected]
11455 S:      Maintained
11456 W:      http://www.linux-mtd.infradead.org/
11457 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11458 C:      irc://irc.oftc.net/mtd
11459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11461 F:      Documentation/devicetree/bindings/mtd/
11462 F:      drivers/mtd/
11463 F:      include/linux/mtd/
11464 F:      include/uapi/mtd/
11465
11466 MEN A21 WATCHDOG DRIVER
11467 M:      Johannes Thumshirn <[email protected]>
11468 L:      [email protected]
11469 S:      Maintained
11470 F:      drivers/watchdog/mena21_wdt.c
11471
11472 MEN CHAMELEON BUS (mcb)
11473 M:      Johannes Thumshirn <[email protected]>
11474 S:      Maintained
11475 F:      Documentation/driver-api/men-chameleon-bus.rst
11476 F:      drivers/mcb/
11477 F:      include/linux/mcb.h
11478
11479 MEN F21BMC (Board Management Controller)
11480 M:      Andreas Werner <[email protected]>
11481 S:      Supported
11482 F:      Documentation/hwmon/menf21bmc.rst
11483 F:      drivers/hwmon/menf21bmc_hwmon.c
11484 F:      drivers/leds/leds-menf21bmc.c
11485 F:      drivers/mfd/menf21bmc.c
11486 F:      drivers/watchdog/menf21bmc_wdt.c
11487
11488 MEN Z069 WATCHDOG DRIVER
11489 M:      Johannes Thumshirn <[email protected]>
11490 L:      [email protected]
11491 S:      Maintained
11492 F:      drivers/watchdog/menz69_wdt.c
11493
11494 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11495 M:      Neil Armstrong <[email protected]>
11496 L:      [email protected]
11497 L:      [email protected]
11498 S:      Supported
11499 W:      http://linux-meson.com/
11500 T:      git git://linuxtv.org/media_tree.git
11501 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11502 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
11503 F:      drivers/media/cec/platform/meson/ao-cec.c
11504
11505 MESON GE2D DRIVER FOR AMLOGIC SOCS
11506 M:      Neil Armstrong <[email protected]>
11507 L:      [email protected]
11508 L:      [email protected]
11509 S:      Supported
11510 T:      git git://linuxtv.org/media_tree.git
11511 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
11512 F:      drivers/media/meson/ge2d/
11513
11514 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11515 M:      Liang Yang <[email protected]>
11516 L:      [email protected]
11517 S:      Maintained
11518 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11519 F:      drivers/mtd/nand/raw/meson_*
11520
11521 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11522 M:      Neil Armstrong <[email protected]>
11523 L:      [email protected]
11524 L:      [email protected]
11525 S:      Supported
11526 T:      git git://linuxtv.org/media_tree.git
11527 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11528 F:      drivers/staging/media/meson/vdec/
11529
11530 METHODE UDPU SUPPORT
11531 M:      Vladimir Vid <[email protected]>
11532 S:      Maintained
11533 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11534
11535 MHI BUS
11536 M:      Manivannan Sadhasivam <[email protected]>
11537 M:      Hemant Kumar <[email protected]>
11538 L:      [email protected]
11539 S:      Maintained
11540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11541 F:      Documentation/ABI/stable/sysfs-bus-mhi
11542 F:      Documentation/mhi/
11543 F:      drivers/bus/mhi/
11544 F:      include/linux/mhi.h
11545
11546 MICROBLAZE ARCHITECTURE
11547 M:      Michal Simek <[email protected]>
11548 S:      Supported
11549 W:      http://www.monstr.eu/fdt/
11550 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11551 F:      arch/microblaze/
11552
11553 MICROCHIP AT91 DMA DRIVERS
11554 M:      Ludovic Desroches <[email protected]>
11555 M:      Tudor Ambarus <[email protected]>
11556 L:      [email protected] (moderated for non-subscribers)
11557 L:      [email protected]
11558 S:      Supported
11559 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11560 F:      drivers/dma/at_hdmac.c
11561 F:      drivers/dma/at_hdmac_regs.h
11562 F:      drivers/dma/at_xdmac.c
11563 F:      include/dt-bindings/dma/at91.h
11564 F:      include/linux/platform_data/dma-atmel.h
11565
11566 MICROCHIP AT91 SERIAL DRIVER
11567 M:      Richard Genoud <[email protected]>
11568 S:      Maintained
11569 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11570 F:      drivers/tty/serial/atmel_serial.c
11571 F:      drivers/tty/serial/atmel_serial.h
11572
11573 MICROCHIP AT91 USART MFD DRIVER
11574 M:      Radu Pirea <[email protected]>
11575 L:      [email protected]
11576 S:      Supported
11577 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11578 F:      drivers/mfd/at91-usart.c
11579 F:      include/dt-bindings/mfd/at91-usart.h
11580
11581 MICROCHIP AT91 USART SPI DRIVER
11582 M:      Radu Pirea <[email protected]>
11583 L:      [email protected]
11584 S:      Supported
11585 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11586 F:      drivers/spi/spi-at91-usart.c
11587
11588 MICROCHIP AUDIO ASOC DRIVERS
11589 M:      Codrin Ciubotariu <[email protected]>
11590 L:      [email protected] (moderated for non-subscribers)
11591 S:      Supported
11592 F:      sound/soc/atmel
11593
11594 MICROCHIP ECC DRIVER
11595 M:      Tudor Ambarus <[email protected]>
11596 L:      [email protected]
11597 S:      Maintained
11598 F:      drivers/crypto/atmel-ecc.*
11599
11600 MICROCHIP I2C DRIVER
11601 M:      Codrin Ciubotariu <[email protected]>
11602 L:      [email protected]
11603 S:      Supported
11604 F:      drivers/i2c/busses/i2c-at91-*.c
11605 F:      drivers/i2c/busses/i2c-at91.h
11606
11607 MICROCHIP ISC DRIVER
11608 M:      Eugen Hristev <[email protected]>
11609 L:      [email protected]
11610 S:      Supported
11611 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11612 F:      drivers/media/platform/atmel/atmel-isc-base.c
11613 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11614 F:      drivers/media/platform/atmel/atmel-isc.h
11615 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11616 F:      include/linux/atmel-isc-media.h
11617
11618 MICROCHIP ISI DRIVER
11619 M:      Eugen Hristev <[email protected]>
11620 L:      [email protected]
11621 S:      Supported
11622 F:      drivers/media/platform/atmel/atmel-isi.c
11623 F:      drivers/media/platform/atmel/atmel-isi.h
11624
11625 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11626 M:      Woojung Huh <[email protected]>
11627 M:      Microchip Linux Driver Support <[email protected]>
11628 L:      [email protected]
11629 S:      Maintained
11630 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
11631 F:      drivers/net/dsa/microchip/*
11632 F:      include/linux/platform_data/microchip-ksz.h
11633 F:      net/dsa/tag_ksz.c
11634
11635 MICROCHIP LAN743X ETHERNET DRIVER
11636 M:      Bryan Whitehead <[email protected]>
11637 M:      Microchip Linux Driver Support <[email protected]>
11638 L:      [email protected]
11639 S:      Maintained
11640 F:      drivers/net/ethernet/microchip/lan743x_*
11641
11642 MICROCHIP LCDFB DRIVER
11643 M:      Nicolas Ferre <[email protected]>
11644 L:      [email protected]
11645 S:      Maintained
11646 F:      drivers/video/fbdev/atmel_lcdfb.c
11647 F:      include/video/atmel_lcdc.h
11648
11649 MICROCHIP MCP16502 PMIC DRIVER
11650 M:      Andrei Stefanescu <[email protected]>
11651 L:      [email protected] (moderated for non-subscribers)
11652 S:      Maintained
11653 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11654 F:      drivers/regulator/mcp16502.c
11655
11656 MICROCHIP MCP3911 ADC DRIVER
11657 M:      Marcus Folkesson <[email protected]>
11658 M:      Kent Gustavsson <[email protected]>
11659 L:      [email protected]
11660 S:      Supported
11661 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11662 F:      drivers/iio/adc/mcp3911.c
11663
11664 MICROCHIP MMC/SD/SDIO MCI DRIVER
11665 M:      Ludovic Desroches <[email protected]>
11666 S:      Maintained
11667 F:      drivers/mmc/host/atmel-mci.c
11668
11669 MICROCHIP NAND DRIVER
11670 M:      Tudor Ambarus <[email protected]>
11671 L:      [email protected]
11672 S:      Supported
11673 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11674 F:      drivers/mtd/nand/raw/atmel/*
11675
11676 MICROCHIP PWM DRIVER
11677 M:      Claudiu Beznea <[email protected]>
11678 L:      [email protected] (moderated for non-subscribers)
11679 L:      [email protected]
11680 S:      Supported
11681 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11682 F:      drivers/pwm/pwm-atmel.c
11683
11684 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11685 M:      Eugen Hristev <[email protected]>
11686 L:      [email protected]
11687 S:      Supported
11688 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11689 F:      drivers/iio/adc/at91-sama5d2_adc.c
11690 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11691
11692 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11693 M:      Claudiu Beznea <[email protected]>
11694 S:      Supported
11695 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11696
11697 MICROCHIP SPI DRIVER
11698 M:      Tudor Ambarus <[email protected]>
11699 S:      Supported
11700 F:      drivers/spi/spi-atmel.*
11701
11702 MICROCHIP SSC DRIVER
11703 M:      Codrin Ciubotariu <[email protected]>
11704 L:      [email protected] (moderated for non-subscribers)
11705 S:      Supported
11706 F:      drivers/misc/atmel-ssc.c
11707 F:      include/linux/atmel-ssc.h
11708
11709 MICROCHIP USB251XB DRIVER
11710 M:      Richard Leitner <[email protected]>
11711 L:      [email protected]
11712 S:      Maintained
11713 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11714 F:      drivers/usb/misc/usb251xb.c
11715
11716 MICROCHIP USBA UDC DRIVER
11717 M:      Cristian Birsan <[email protected]>
11718 L:      [email protected] (moderated for non-subscribers)
11719 S:      Supported
11720 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11721
11722 MICROCHIP WILC1000 WIFI DRIVER
11723 M:      Ajay Singh <[email protected]>
11724 M:      Claudiu Beznea <[email protected]>
11725 L:      [email protected]
11726 S:      Supported
11727 F:      drivers/net/wireless/microchip/wilc1000/
11728
11729 MICROSEMI MIPS SOCS
11730 M:      Alexandre Belloni <[email protected]>
11731 M:      Microchip Linux Driver Support <[email protected]>
11732 L:      [email protected]
11733 S:      Supported
11734 F:      Documentation/devicetree/bindings/mips/mscc.txt
11735 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
11736 F:      arch/mips/boot/dts/mscc/
11737 F:      arch/mips/configs/generic/board-ocelot.config
11738 F:      arch/mips/generic/board-ocelot.c
11739
11740 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11741 M:      Don Brace <[email protected]>
11742 L:      [email protected]
11743 L:      [email protected]
11744 S:      Supported
11745 F:      Documentation/scsi/smartpqi.rst
11746 F:      drivers/scsi/smartpqi/Kconfig
11747 F:      drivers/scsi/smartpqi/Makefile
11748 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11749 F:      include/linux/cciss*.h
11750 F:      include/uapi/linux/cciss*.h
11751
11752 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
11753 M:      Maximilian Luz <[email protected]>
11754 L:      [email protected]
11755 S:      Maintained
11756 F:      drivers/platform/surface/surface_gpe.c
11757
11758 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
11759 M:      Hans de Goede <[email protected]>
11760 M:      Mark Gross <[email protected]>
11761 M:      Maximilian Luz <[email protected]>
11762 L:      [email protected]
11763 S:      Maintained
11764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
11765 F:      drivers/platform/surface/
11766
11767 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11768 M:      Chen Yu <[email protected]>
11769 L:      [email protected]
11770 S:      Supported
11771 F:      drivers/platform/surface/surfacepro3_button.c
11772
11773 MICROTEK X6 SCANNER
11774 M:      Oliver Neukum <[email protected]>
11775 S:      Maintained
11776 F:      drivers/usb/image/microtek.*
11777
11778 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
11779 M:      Sakari Ailus <[email protected]>
11780 L:      [email protected]
11781 S:      Maintained
11782 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
11783 F:      Documentation/driver-api/media/drivers/ccs/
11784 F:      drivers/media/i2c/ccs-pll.c
11785 F:      drivers/media/i2c/ccs-pll.h
11786 F:      drivers/media/i2c/ccs/
11787 F:      include/uapi/linux/smiapp.h
11788
11789 MIPS
11790 M:      Thomas Bogendoerfer <[email protected]>
11791 L:      [email protected]
11792 S:      Maintained
11793 W:      http://www.linux-mips.org/
11794 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11796 F:      Documentation/devicetree/bindings/mips/
11797 F:      Documentation/mips/
11798 F:      arch/mips/
11799 F:      drivers/platform/mips/
11800
11801 MIPS BOSTON DEVELOPMENT BOARD
11802 M:      Paul Burton <[email protected]>
11803 L:      [email protected]
11804 S:      Maintained
11805 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11806 F:      arch/mips/boot/dts/img/boston.dts
11807 F:      arch/mips/configs/generic/board-boston.config
11808 F:      drivers/clk/imgtec/clk-boston.c
11809 F:      include/dt-bindings/clock/boston-clock.h
11810
11811 MIPS CORE DRIVERS
11812 M:      Thomas Bogendoerfer <[email protected]>
11813 M:      Serge Semin <[email protected]>
11814 L:      [email protected]
11815 S:      Supported
11816 F:      drivers/bus/mips_cdmm.c
11817 F:      drivers/clocksource/mips-gic-timer.c
11818 F:      drivers/cpuidle/cpuidle-cps.c
11819 F:      drivers/irqchip/irq-mips-cpu.c
11820 F:      drivers/irqchip/irq-mips-gic.c
11821
11822 MIPS GENERIC PLATFORM
11823 M:      Paul Burton <[email protected]>
11824 L:      [email protected]
11825 S:      Supported
11826 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
11827 F:      arch/mips/generic/
11828 F:      arch/mips/tools/generic-board-config.sh
11829
11830 MIPS RINT INSTRUCTION EMULATION
11831 M:      Aleksandar Markovic <[email protected]>
11832 L:      [email protected]
11833 S:      Supported
11834 F:      arch/mips/math-emu/dp_rint.c
11835 F:      arch/mips/math-emu/sp_rint.c
11836
11837 MIPS/LOONGSON1 ARCHITECTURE
11838 M:      Keguang Zhang <[email protected]>
11839 L:      [email protected]
11840 S:      Maintained
11841 F:      arch/mips/include/asm/mach-loongson32/
11842 F:      arch/mips/loongson32/
11843 F:      drivers/*/*/*loongson1*
11844 F:      drivers/*/*loongson1*
11845
11846 MIPS/LOONGSON2EF ARCHITECTURE
11847 M:      Jiaxun Yang <[email protected]>
11848 L:      [email protected]
11849 S:      Maintained
11850 F:      arch/mips/include/asm/mach-loongson2ef/
11851 F:      arch/mips/loongson2ef/
11852 F:      drivers/*/*/*loongson2*
11853 F:      drivers/*/*loongson2*
11854
11855 MIPS/LOONGSON64 ARCHITECTURE
11856 M:      Huacai Chen <[email protected]>
11857 M:      Jiaxun Yang <[email protected]>
11858 L:      [email protected]
11859 S:      Maintained
11860 F:      arch/mips/include/asm/mach-loongson64/
11861 F:      arch/mips/loongson64/
11862 F:      drivers/*/*/*loongson3*
11863 F:      drivers/*/*loongson3*
11864 F:      drivers/irqchip/irq-loongson*
11865 F:      drivers/platform/mips/cpu_hwmon.c
11866
11867 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11868 M:      Hans Verkuil <[email protected]>
11869 L:      [email protected]
11870 S:      Odd Fixes
11871 W:      https://linuxtv.org
11872 T:      git git://linuxtv.org/media_tree.git
11873 F:      drivers/media/radio/radio-miropcm20*
11874
11875 MMP SUPPORT
11876 R:      Lubomir Rintel <[email protected]>
11877 L:      [email protected] (moderated for non-subscribers)
11878 S:      Odd Fixes
11879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11880 F:      arch/arm/boot/dts/mmp*
11881 F:      arch/arm/mach-mmp/
11882 F:      include/linux/soc/mmp/
11883
11884 MMP USB PHY DRIVERS
11885 R:      Lubomir Rintel <[email protected]>
11886 L:      [email protected] (moderated for non-subscribers)
11887 S:      Maintained
11888 F:      drivers/phy/marvell/phy-mmp3-usb.c
11889 F:      drivers/phy/marvell/phy-pxa-usb.c
11890
11891 MMU GATHER AND TLB INVALIDATION
11892 M:      Will Deacon <[email protected]>
11893 M:      "Aneesh Kumar K.V" <[email protected]>
11894 M:      Andrew Morton <[email protected]>
11895 M:      Nick Piggin <[email protected]>
11896 M:      Peter Zijlstra <[email protected]>
11897 L:      [email protected]
11898 L:      [email protected]
11899 S:      Maintained
11900 F:      arch/*/include/asm/tlb.h
11901 F:      include/asm-generic/tlb.h
11902 F:      mm/mmu_gather.c
11903
11904 MN88472 MEDIA DRIVER
11905 M:      Antti Palosaari <[email protected]>
11906 L:      [email protected]
11907 S:      Maintained
11908 W:      https://linuxtv.org
11909 W:      http://palosaari.fi/linux/
11910 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11911 F:      drivers/media/dvb-frontends/mn88472*
11912
11913 MN88473 MEDIA DRIVER
11914 M:      Antti Palosaari <[email protected]>
11915 L:      [email protected]
11916 S:      Maintained
11917 W:      https://linuxtv.org
11918 W:      http://palosaari.fi/linux/
11919 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11920 F:      drivers/media/dvb-frontends/mn88473*
11921
11922 MODULE SUPPORT
11923 M:      Jessica Yu <[email protected]>
11924 S:      Maintained
11925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11926 F:      include/linux/module.h
11927 F:      kernel/module.c
11928
11929 MONOLITHIC POWER SYSTEM PMIC DRIVER
11930 M:      Saravanan Sekar <[email protected]>
11931 S:      Maintained
11932 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11933 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11934 F:      drivers/iio/adc/mp2629_adc.c
11935 F:      drivers/mfd/mp2629.c
11936 F:      drivers/power/supply/mp2629_charger.c
11937 F:      drivers/regulator/mp5416.c
11938 F:      drivers/regulator/mpq7920.c
11939 F:      drivers/regulator/mpq7920.h
11940 F:      include/linux/mfd/mp2629.h
11941
11942 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11943 S:      Orphan
11944 W:      http://popies.net/meye/
11945 F:      Documentation/userspace-api/media/drivers/meye*
11946 F:      drivers/media/pci/meye/
11947 F:      include/uapi/linux/meye.h
11948
11949 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11950 M:      Jiri Slaby <[email protected]>
11951 S:      Maintained
11952 F:      Documentation/driver-api/serial/moxa-smartio.rst
11953 F:      drivers/tty/mxser.*
11954
11955 MR800 AVERMEDIA USB FM RADIO DRIVER
11956 M:      Alexey Klimov <[email protected]>
11957 L:      [email protected]
11958 S:      Maintained
11959 T:      git git://linuxtv.org/media_tree.git
11960 F:      drivers/media/radio/radio-mr800.c
11961
11962 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11963 M:      Alan Ott <[email protected]>
11964 L:      [email protected]
11965 S:      Maintained
11966 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11967 F:      drivers/net/ieee802154/mrf24j40.c
11968
11969 MSI LAPTOP SUPPORT
11970 M:      "Lee, Chun-Yi" <[email protected]>
11971 L:      [email protected]
11972 S:      Maintained
11973 F:      drivers/platform/x86/msi-laptop.c
11974
11975 MSI WMI SUPPORT
11976 L:      [email protected]
11977 S:      Orphan
11978 F:      drivers/platform/x86/msi-wmi.c
11979
11980 MSI001 MEDIA DRIVER
11981 M:      Antti Palosaari <[email protected]>
11982 L:      [email protected]
11983 S:      Maintained
11984 W:      https://linuxtv.org
11985 W:      http://palosaari.fi/linux/
11986 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11987 T:      git git://linuxtv.org/anttip/media_tree.git
11988 F:      drivers/media/tuners/msi001*
11989
11990 MSI2500 MEDIA DRIVER
11991 M:      Antti Palosaari <[email protected]>
11992 L:      [email protected]
11993 S:      Maintained
11994 W:      https://linuxtv.org
11995 W:      http://palosaari.fi/linux/
11996 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11997 T:      git git://linuxtv.org/anttip/media_tree.git
11998 F:      drivers/media/usb/msi2500/
11999
12000 MSTAR INTERRUPT CONTROLLER DRIVER
12001 M:      Mark-PK Tsai <[email protected]>
12002 M:      Daniel Palmer <[email protected]>
12003 S:      Maintained
12004 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12005 F:      drivers/irqchip/irq-mst-intc.c
12006
12007 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12008 M:      Robert Jarzmik <[email protected]>
12009 L:      [email protected]
12010 S:      Maintained
12011 F:      drivers/mtd/devices/docg3*
12012
12013 MT9M032 APTINA SENSOR DRIVER
12014 M:      Laurent Pinchart <[email protected]>
12015 L:      [email protected]
12016 S:      Maintained
12017 T:      git git://linuxtv.org/media_tree.git
12018 F:      drivers/media/i2c/mt9m032.c
12019 F:      include/media/i2c/mt9m032.h
12020
12021 MT9P031 APTINA CAMERA SENSOR
12022 M:      Laurent Pinchart <[email protected]>
12023 L:      [email protected]
12024 S:      Maintained
12025 T:      git git://linuxtv.org/media_tree.git
12026 F:      drivers/media/i2c/mt9p031.c
12027 F:      include/media/i2c/mt9p031.h
12028
12029 MT9T001 APTINA CAMERA SENSOR
12030 M:      Laurent Pinchart <[email protected]>
12031 L:      [email protected]
12032 S:      Maintained
12033 T:      git git://linuxtv.org/media_tree.git
12034 F:      drivers/media/i2c/mt9t001.c
12035 F:      include/media/i2c/mt9t001.h
12036
12037 MT9T112 APTINA CAMERA SENSOR
12038 M:      Jacopo Mondi <[email protected]>
12039 L:      [email protected]
12040 S:      Odd Fixes
12041 T:      git git://linuxtv.org/media_tree.git
12042 F:      drivers/media/i2c/mt9t112.c
12043 F:      include/media/i2c/mt9t112.h
12044
12045 MT9V032 APTINA CAMERA SENSOR
12046 M:      Laurent Pinchart <[email protected]>
12047 L:      [email protected]
12048 S:      Maintained
12049 T:      git git://linuxtv.org/media_tree.git
12050 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12051 F:      drivers/media/i2c/mt9v032.c
12052 F:      include/media/i2c/mt9v032.h
12053
12054 MT9V111 APTINA CAMERA SENSOR
12055 M:      Jacopo Mondi <[email protected]>
12056 L:      [email protected]
12057 S:      Maintained
12058 T:      git git://linuxtv.org/media_tree.git
12059 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12060 F:      drivers/media/i2c/mt9v111.c
12061
12062 MULTIFUNCTION DEVICES (MFD)
12063 M:      Lee Jones <[email protected]>
12064 S:      Supported
12065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12066 F:      Documentation/devicetree/bindings/mfd/
12067 F:      drivers/mfd/
12068 F:      include/dt-bindings/mfd/
12069 F:      include/linux/mfd/
12070
12071 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12072 S:      Orphan
12073 F:      drivers/mmc/host/mmc_spi.c
12074 F:      include/linux/spi/mmc_spi.h
12075
12076 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12077 M:      Ulf Hansson <[email protected]>
12078 L:      [email protected]
12079 S:      Maintained
12080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12081 F:      Documentation/devicetree/bindings/mmc/
12082 F:      drivers/mmc/
12083 F:      include/linux/mmc/
12084 F:      include/uapi/linux/mmc/
12085
12086 MULTIPLEXER SUBSYSTEM
12087 M:      Peter Rosin <[email protected]>
12088 S:      Maintained
12089 F:      Documentation/ABI/testing/sysfs-class-mux*
12090 F:      Documentation/devicetree/bindings/mux/
12091 F:      drivers/mux/
12092 F:      include/dt-bindings/mux/
12093 F:      include/linux/mux/
12094
12095 MULTITECH MULTIPORT CARD (ISICOM)
12096 S:      Orphan
12097 F:      drivers/tty/isicom.c
12098 F:      include/linux/isicom.h
12099
12100 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12101 M:      Bin Liu <[email protected]>
12102 L:      [email protected]
12103 S:      Maintained
12104 F:      drivers/usb/musb/
12105
12106 MXL301RF MEDIA DRIVER
12107 M:      Akihiro Tsukada <[email protected]>
12108 L:      [email protected]
12109 S:      Odd Fixes
12110 F:      drivers/media/tuners/mxl301rf*
12111
12112 MXL5007T MEDIA DRIVER
12113 M:      Michael Krufky <[email protected]>
12114 L:      [email protected]
12115 S:      Maintained
12116 W:      https://linuxtv.org
12117 W:      http://github.com/mkrufky
12118 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12119 T:      git git://linuxtv.org/mkrufky/tuners.git
12120 F:      drivers/media/tuners/mxl5007t.*
12121
12122 MXSFB DRM DRIVER
12123 M:      Marek Vasut <[email protected]>
12124 M:      Stefan Agner <[email protected]>
12125 L:      [email protected]
12126 S:      Supported
12127 T:      git git://anongit.freedesktop.org/drm/drm-misc
12128 F:      Documentation/devicetree/bindings/display/mxsfb.txt
12129 F:      drivers/gpu/drm/mxsfb/
12130
12131 MYLEX DAC960 PCI RAID Controller
12132 M:      Hannes Reinecke <[email protected]>
12133 L:      [email protected]
12134 S:      Supported
12135 F:      drivers/scsi/myrb.*
12136 F:      drivers/scsi/myrs.*
12137
12138 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12139 M:      Chris Lee <[email protected]>
12140 L:      [email protected]
12141 S:      Supported
12142 W:      https://www.cspi.com/ethernet-products/support/downloads/
12143 F:      drivers/net/ethernet/myricom/myri10ge/
12144
12145 NAND FLASH SUBSYSTEM
12146 M:      Miquel Raynal <[email protected]>
12147 R:      Richard Weinberger <[email protected]>
12148 L:      [email protected]
12149 S:      Maintained
12150 W:      http://www.linux-mtd.infradead.org/
12151 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12152 C:      irc://irc.oftc.net/mtd
12153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12154 F:      drivers/mtd/nand/
12155 F:      include/linux/mtd/*nand*.h
12156
12157 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12158 M:      Daniel Mack <[email protected]>
12159 L:      [email protected] (moderated for non-subscribers)
12160 S:      Maintained
12161 W:      http://www.native-instruments.com
12162 F:      sound/usb/caiaq/
12163
12164 NATSEMI ETHERNET DRIVER (DP8381x)
12165 S:      Orphan
12166 F:      drivers/net/ethernet/natsemi/natsemi.c
12167
12168 NCR 5380 SCSI DRIVERS
12169 M:      Finn Thain <[email protected]>
12170 M:      Michael Schmitz <[email protected]>
12171 L:      [email protected]
12172 S:      Maintained
12173 F:      Documentation/scsi/g_NCR5380.rst
12174 F:      drivers/scsi/NCR5380.*
12175 F:      drivers/scsi/arm/cumana_1.c
12176 F:      drivers/scsi/arm/oak.c
12177 F:      drivers/scsi/atari_scsi.*
12178 F:      drivers/scsi/dmx3191d.c
12179 F:      drivers/scsi/g_NCR5380.*
12180 F:      drivers/scsi/mac_scsi.*
12181 F:      drivers/scsi/sun3_scsi.*
12182 F:      drivers/scsi/sun3_scsi_vme.c
12183
12184 NCSI LIBRARY
12185 M:      Samuel Mendoza-Jonas <[email protected]>
12186 S:      Maintained
12187 F:      net/ncsi/
12188
12189 NCT6775 HARDWARE MONITOR DRIVER
12190 M:      Guenter Roeck <[email protected]>
12191 L:      [email protected]
12192 S:      Maintained
12193 F:      Documentation/hwmon/nct6775.rst
12194 F:      drivers/hwmon/nct6775.c
12195
12196 NETDEVSIM
12197 M:      Jakub Kicinski <[email protected]>
12198 S:      Maintained
12199 F:      drivers/net/netdevsim/*
12200
12201 NETEM NETWORK EMULATOR
12202 M:      Stephen Hemminger <[email protected]>
12203 L:      [email protected]
12204 S:      Maintained
12205 F:      net/sched/sch_netem.c
12206
12207 NETERION 10GbE DRIVERS (s2io/vxge)
12208 M:      Jon Mason <[email protected]>
12209 L:      [email protected]
12210 S:      Supported
12211 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12212 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12213 F:      drivers/net/ethernet/neterion/
12214
12215 NETFILTER
12216 M:      Pablo Neira Ayuso <[email protected]>
12217 M:      Jozsef Kadlecsik <[email protected]>
12218 M:      Florian Westphal <[email protected]>
12219 L:      [email protected]
12220 L:      [email protected]
12221 S:      Maintained
12222 W:      http://www.netfilter.org/
12223 W:      http://www.iptables.org/
12224 W:      http://www.nftables.org/
12225 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12228 F:      include/linux/netfilter*
12229 F:      include/linux/netfilter/
12230 F:      include/net/netfilter/
12231 F:      include/uapi/linux/netfilter*
12232 F:      include/uapi/linux/netfilter/
12233 F:      net/*/netfilter.c
12234 F:      net/*/netfilter/
12235 F:      net/bridge/br_netfilter*.c
12236 F:      net/netfilter/
12237
12238 NETROM NETWORK LAYER
12239 M:      Ralf Baechle <[email protected]>
12240 L:      [email protected]
12241 S:      Maintained
12242 W:      http://www.linux-ax25.org/
12243 F:      include/net/netrom.h
12244 F:      include/uapi/linux/netrom.h
12245 F:      net/netrom/
12246
12247 NETRONOME ETHERNET DRIVERS
12248 M:      Simon Horman <[email protected]>
12249 R:      Jakub Kicinski <[email protected]>
12250 L:      [email protected]
12251 S:      Maintained
12252 F:      drivers/net/ethernet/netronome/
12253
12254 NETWORK BLOCK DEVICE (NBD)
12255 M:      Josef Bacik <[email protected]>
12256 L:      [email protected]
12257 L:      [email protected]
12258 S:      Maintained
12259 F:      Documentation/admin-guide/blockdev/nbd.rst
12260 F:      drivers/block/nbd.c
12261 F:      include/trace/events/nbd.h
12262 F:      include/uapi/linux/nbd.h
12263
12264 NETWORK DROP MONITOR
12265 M:      Neil Horman <[email protected]>
12266 L:      [email protected]
12267 S:      Maintained
12268 W:      https://fedorahosted.org/dropwatch/
12269 F:      include/uapi/linux/net_dropmon.h
12270 F:      net/core/drop_monitor.c
12271
12272 NETWORKING DRIVERS
12273 M:      "David S. Miller" <[email protected]>
12274 M:      Jakub Kicinski <[email protected]>
12275 L:      [email protected]
12276 S:      Maintained
12277 W:      http://www.linuxfoundation.org/en/Net
12278 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12281 F:      Documentation/devicetree/bindings/net/
12282 F:      drivers/connector/
12283 F:      drivers/net/
12284 F:      include/linux/etherdevice.h
12285 F:      include/linux/fcdevice.h
12286 F:      include/linux/fddidevice.h
12287 F:      include/linux/hippidevice.h
12288 F:      include/linux/if_*
12289 F:      include/linux/inetdevice.h
12290 F:      include/linux/netdevice.h
12291 F:      include/uapi/linux/if_*
12292 F:      include/uapi/linux/netdevice.h
12293
12294 NETWORKING DRIVERS (WIRELESS)
12295 M:      Kalle Valo <[email protected]>
12296 L:      [email protected]
12297 S:      Maintained
12298 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12301 F:      Documentation/devicetree/bindings/net/wireless/
12302 F:      drivers/net/wireless/
12303
12304 NETWORKING [DSA]
12305 M:      Andrew Lunn <[email protected]>
12306 M:      Vivien Didelot <[email protected]>
12307 M:      Florian Fainelli <[email protected]>
12308 M:      Vladimir Oltean <[email protected]>
12309 S:      Maintained
12310 F:      Documentation/devicetree/bindings/net/dsa/
12311 F:      drivers/net/dsa/
12312 F:      include/linux/dsa/
12313 F:      include/linux/platform_data/dsa.h
12314 F:      include/net/dsa.h
12315 F:      net/dsa/
12316
12317 NETWORKING [GENERAL]
12318 M:      "David S. Miller" <[email protected]>
12319 M:      Jakub Kicinski <[email protected]>
12320 L:      [email protected]
12321 S:      Maintained
12322 W:      http://www.linuxfoundation.org/en/Net
12323 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12324 B:      mailto:[email protected]
12325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12327 F:      Documentation/networking/
12328 F:      include/linux/in.h
12329 F:      include/linux/net.h
12330 F:      include/linux/netdevice.h
12331 F:      include/net/
12332 F:      include/uapi/linux/in.h
12333 F:      include/uapi/linux/net.h
12334 F:      include/uapi/linux/net_namespace.h
12335 F:      include/uapi/linux/netdevice.h
12336 F:      lib/net_utils.c
12337 F:      lib/random32.c
12338 F:      net/
12339 F:      tools/testing/selftests/net/
12340
12341 NETWORKING [IPSEC]
12342 M:      Steffen Klassert <[email protected]>
12343 M:      Herbert Xu <[email protected]>
12344 M:      "David S. Miller" <[email protected]>
12345 L:      [email protected]
12346 S:      Maintained
12347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12349 F:      include/net/xfrm.h
12350 F:      include/uapi/linux/xfrm.h
12351 F:      net/ipv4/ah4.c
12352 F:      net/ipv4/esp4*
12353 F:      net/ipv4/ip_vti.c
12354 F:      net/ipv4/ipcomp.c
12355 F:      net/ipv4/xfrm*
12356 F:      net/ipv6/ah6.c
12357 F:      net/ipv6/esp6*
12358 F:      net/ipv6/ip6_vti.c
12359 F:      net/ipv6/ipcomp6.c
12360 F:      net/ipv6/xfrm*
12361 F:      net/key/
12362 F:      net/xfrm/
12363 F:      tools/testing/selftests/net/ipsec.c
12364
12365 NETWORKING [IPv4/IPv6]
12366 M:      "David S. Miller" <[email protected]>
12367 M:      Alexey Kuznetsov <[email protected]>
12368 M:      Hideaki YOSHIFUJI <[email protected]>
12369 L:      [email protected]
12370 S:      Maintained
12371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12372 F:      arch/x86/net/*
12373 F:      include/net/ip*
12374 F:      net/ipv4/
12375 F:      net/ipv6/
12376
12377 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12378 M:      Paul Moore <[email protected]>
12379 L:      [email protected]
12380 L:      [email protected]
12381 S:      Maintained
12382 W:      https://github.com/netlabel
12383 F:      Documentation/netlabel/
12384 F:      include/net/calipso.h
12385 F:      include/net/cipso_ipv4.h
12386 F:      include/net/netlabel.h
12387 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12388 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12389 F:      net/ipv4/cipso_ipv4.c
12390 F:      net/ipv6/calipso.c
12391 F:      net/netfilter/xt_CONNSECMARK.c
12392 F:      net/netfilter/xt_SECMARK.c
12393 F:      net/netlabel/
12394
12395 NETWORKING [MPTCP]
12396 M:      Mat Martineau <[email protected]>
12397 M:      Matthieu Baerts <[email protected]>
12398 L:      [email protected]
12399 L:      [email protected]
12400 S:      Maintained
12401 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12402 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12403 F:      Documentation/networking/mptcp-sysctl.rst
12404 F:      include/net/mptcp.h
12405 F:      include/uapi/linux/mptcp.h
12406 F:      net/mptcp/
12407 F:      tools/testing/selftests/net/mptcp/
12408
12409 NETWORKING [TCP]
12410 M:      Eric Dumazet <[email protected]>
12411 L:      [email protected]
12412 S:      Maintained
12413 F:      include/linux/tcp.h
12414 F:      include/net/tcp.h
12415 F:      include/trace/events/tcp.h
12416 F:      include/uapi/linux/tcp.h
12417 F:      net/ipv4/syncookies.c
12418 F:      net/ipv4/tcp*.c
12419 F:      net/ipv6/syncookies.c
12420 F:      net/ipv6/tcp*.c
12421
12422 NETWORKING [TLS]
12423 M:      Boris Pismenny <[email protected]>
12424 M:      Aviad Yehezkel <[email protected]>
12425 M:      John Fastabend <[email protected]>
12426 M:      Daniel Borkmann <[email protected]>
12427 M:      Jakub Kicinski <[email protected]>
12428 L:      [email protected]
12429 S:      Maintained
12430 F:      include/net/tls.h
12431 F:      include/uapi/linux/tls.h
12432 F:      net/tls/*
12433
12434 NETWORKING [WIRELESS]
12435 L:      [email protected]
12436 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12437
12438 NETXEN (1/10) GbE SUPPORT
12439 M:      Manish Chopra <[email protected]>
12440 M:      Rahul Verma <[email protected]>
12441 M:      [email protected]
12442 L:      [email protected]
12443 S:      Supported
12444 F:      drivers/net/ethernet/qlogic/netxen/
12445
12446 NET_FAILOVER MODULE
12447 M:      Sridhar Samudrala <[email protected]>
12448 L:      [email protected]
12449 S:      Supported
12450 F:      Documentation/networking/net_failover.rst
12451 F:      drivers/net/net_failover.c
12452 F:      include/net/net_failover.h
12453
12454 NEXTHOP
12455 M:      David Ahern <[email protected]>
12456 L:      [email protected]
12457 S:      Maintained
12458 F:      include/net/netns/nexthop.h
12459 F:      include/net/nexthop.h
12460 F:      include/uapi/linux/nexthop.h
12461 F:      net/ipv4/nexthop.c
12462
12463 NFC SUBSYSTEM
12464 L:      [email protected]
12465 S:      Orphan
12466 F:      Documentation/devicetree/bindings/net/nfc/
12467 F:      drivers/nfc/
12468 F:      include/linux/platform_data/nfcmrvl.h
12469 F:      include/net/nfc/
12470 F:      include/uapi/linux/nfc.h
12471 F:      net/nfc/
12472
12473 NFS, SUNRPC, AND LOCKD CLIENTS
12474 M:      Trond Myklebust <[email protected]>
12475 M:      Anna Schumaker <[email protected]>
12476 L:      [email protected]
12477 S:      Maintained
12478 W:      http://client.linux-nfs.org
12479 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12480 F:      fs/lockd/
12481 F:      fs/nfs/
12482 F:      fs/nfs_common/
12483 F:      include/linux/lockd/
12484 F:      include/linux/nfs*
12485 F:      include/linux/sunrpc/
12486 F:      include/uapi/linux/nfs*
12487 F:      include/uapi/linux/sunrpc/
12488 F:      net/sunrpc/
12489 F:      Documentation/filesystems/nfs/
12490
12491 NILFS2 FILESYSTEM
12492 M:      Ryusuke Konishi <[email protected]>
12493 L:      [email protected]
12494 S:      Supported
12495 W:      https://nilfs.sourceforge.io/
12496 W:      https://nilfs.osdn.jp/
12497 T:      git git://github.com/konis/nilfs2.git
12498 F:      Documentation/filesystems/nilfs2.rst
12499 F:      fs/nilfs2/
12500 F:      include/trace/events/nilfs2.h
12501 F:      include/uapi/linux/nilfs2_api.h
12502 F:      include/uapi/linux/nilfs2_ondisk.h
12503
12504 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12505 M:      YOKOTA Hiroshi <[email protected]>
12506 S:      Maintained
12507 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12508 F:      Documentation/scsi/NinjaSCSI.rst
12509 F:      drivers/scsi/pcmcia/nsp_*
12510
12511 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12512 M:      GOTO Masanori <[email protected]>
12513 M:      YOKOTA Hiroshi <[email protected]>
12514 S:      Maintained
12515 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12516 F:      Documentation/scsi/NinjaSCSI.rst
12517 F:      drivers/scsi/nsp32*
12518
12519 NIOS2 ARCHITECTURE
12520 M:      Ley Foon Tan <[email protected]>
12521 S:      Maintained
12522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12523 F:      arch/nios2/
12524
12525 NITRO ENCLAVES (NE)
12526 M:      Andra Paraschiv <[email protected]>
12527 M:      Alexandru Vasile <[email protected]>
12528 M:      Alexandru Ciobotaru <[email protected]>
12529 L:      [email protected]
12530 S:      Supported
12531 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
12532 F:      Documentation/virt/ne_overview.rst
12533 F:      drivers/virt/nitro_enclaves/
12534 F:      include/linux/nitro_enclaves.h
12535 F:      include/uapi/linux/nitro_enclaves.h
12536 F:      samples/nitro_enclaves/
12537
12538 NOHZ, DYNTICKS SUPPORT
12539 M:      Frederic Weisbecker <[email protected]>
12540 M:      Thomas Gleixner <[email protected]>
12541 M:      Ingo Molnar <[email protected]>
12542 L:      [email protected]
12543 S:      Maintained
12544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12545 F:      include/linux/sched/nohz.h
12546 F:      include/linux/tick.h
12547 F:      kernel/time/tick*.*
12548
12549 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12550 M:      Pavel Machek <[email protected]>
12551 M:      Sakari Ailus <[email protected]>
12552 L:      [email protected]
12553 S:      Maintained
12554 F:      drivers/media/i2c/ad5820.c
12555 F:      drivers/media/i2c/et8ek8
12556
12557 NOKIA N900 POWER SUPPLY DRIVERS
12558 R:      Pali Rohár <[email protected]>
12559 F:      drivers/power/supply/bq2415x_charger.c
12560 F:      drivers/power/supply/bq27xxx_battery.c
12561 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12562 F:      drivers/power/supply/isp1704_charger.c
12563 F:      drivers/power/supply/rx51_battery.c
12564 F:      include/linux/power/bq2415x_charger.h
12565 F:      include/linux/power/bq27xxx_battery.h
12566
12567 NOLIBC HEADER FILE
12568 M:      Willy Tarreau <[email protected]>
12569 S:      Maintained
12570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12571 F:      tools/include/nolibc/
12572
12573 NSDEPS
12574 M:      Matthias Maennich <[email protected]>
12575 S:      Maintained
12576 F:      Documentation/core-api/symbol-namespaces.rst
12577 F:      scripts/nsdeps
12578
12579 NTB AMD DRIVER
12580 M:      Sanjay R Mehta <[email protected]>
12581 M:      Shyam Sundar S K <[email protected]>
12582 L:      [email protected]
12583 S:      Supported
12584 F:      drivers/ntb/hw/amd/
12585
12586 NTB DRIVER CORE
12587 M:      Jon Mason <[email protected]>
12588 M:      Dave Jiang <[email protected]>
12589 M:      Allen Hubbe <[email protected]>
12590 L:      [email protected]
12591 S:      Supported
12592 W:      https://github.com/jonmason/ntb/wiki
12593 T:      git git://github.com/jonmason/ntb.git
12594 F:      drivers/net/ntb_netdev.c
12595 F:      drivers/ntb/
12596 F:      include/linux/ntb.h
12597 F:      include/linux/ntb_transport.h
12598 F:      tools/testing/selftests/ntb/
12599
12600 NTB IDT DRIVER
12601 M:      Serge Semin <[email protected]>
12602 L:      [email protected]
12603 S:      Supported
12604 F:      drivers/ntb/hw/idt/
12605
12606 NTB INTEL DRIVER
12607 M:      Dave Jiang <[email protected]>
12608 L:      [email protected]
12609 S:      Supported
12610 W:      https://github.com/davejiang/linux/wiki
12611 T:      git https://github.com/davejiang/linux.git
12612 F:      drivers/ntb/hw/intel/
12613
12614 NTFS FILESYSTEM
12615 M:      Anton Altaparmakov <[email protected]>
12616 L:      [email protected]
12617 S:      Supported
12618 W:      http://www.tuxera.com/
12619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12620 F:      Documentation/filesystems/ntfs.rst
12621 F:      fs/ntfs/
12622
12623 NUBUS SUBSYSTEM
12624 M:      Finn Thain <[email protected]>
12625 L:      [email protected]
12626 S:      Maintained
12627 F:      arch/*/include/asm/nubus.h
12628 F:      drivers/nubus/
12629 F:      include/linux/nubus.h
12630 F:      include/uapi/linux/nubus.h
12631
12632 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12633 M:      Antonino Daplas <[email protected]>
12634 L:      [email protected]
12635 S:      Maintained
12636 F:      drivers/video/fbdev/nvidia/
12637 F:      drivers/video/fbdev/riva/
12638
12639 NVM EXPRESS DRIVER
12640 M:      Keith Busch <[email protected]>
12641 M:      Jens Axboe <[email protected]>
12642 M:      Christoph Hellwig <[email protected]>
12643 M:      Sagi Grimberg <[email protected]>
12644 L:      [email protected]
12645 S:      Supported
12646 W:      http://git.infradead.org/nvme.git
12647 T:      git://git.infradead.org/nvme.git
12648 F:      drivers/nvme/host/
12649 F:      include/linux/nvme.h
12650 F:      include/uapi/linux/nvme_ioctl.h
12651
12652 NVM EXPRESS FC TRANSPORT DRIVERS
12653 M:      James Smart <[email protected]>
12654 L:      [email protected]
12655 S:      Supported
12656 F:      drivers/nvme/host/fc.c
12657 F:      drivers/nvme/target/fc.c
12658 F:      drivers/nvme/target/fcloop.c
12659 F:      include/linux/nvme-fc-driver.h
12660 F:      include/linux/nvme-fc.h
12661
12662 NVM EXPRESS TARGET DRIVER
12663 M:      Christoph Hellwig <[email protected]>
12664 M:      Sagi Grimberg <[email protected]>
12665 M:      Chaitanya Kulkarni <[email protected]>
12666 L:      [email protected]
12667 S:      Supported
12668 W:      http://git.infradead.org/nvme.git
12669 T:      git://git.infradead.org/nvme.git
12670 F:      drivers/nvme/target/
12671
12672 NVMEM FRAMEWORK
12673 M:      Srinivas Kandagatla <[email protected]>
12674 S:      Maintained
12675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
12676 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12677 F:      Documentation/devicetree/bindings/nvmem/
12678 F:      drivers/nvmem/
12679 F:      include/linux/nvmem-consumer.h
12680 F:      include/linux/nvmem-provider.h
12681
12682 NXP FSPI DRIVER
12683 M:      Ashish Kumar <[email protected]>
12684 R:      Yogesh Gaur <[email protected]>
12685 L:      [email protected]
12686 S:      Maintained
12687 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12688 F:      drivers/spi/spi-nxp-fspi.c
12689
12690 NXP FXAS21002C DRIVER
12691 M:      Rui Miguel Silva <[email protected]>
12692 L:      [email protected]
12693 S:      Maintained
12694 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
12695 F:      drivers/iio/gyro/fxas21002c.h
12696 F:      drivers/iio/gyro/fxas21002c_core.c
12697 F:      drivers/iio/gyro/fxas21002c_i2c.c
12698 F:      drivers/iio/gyro/fxas21002c_spi.c
12699
12700 NXP i.MX 8MQ DCSS DRIVER
12701 M:      Laurentiu Palcu <[email protected]>
12702 R:      Lucas Stach <[email protected]>
12703 L:      [email protected]
12704 S:      Maintained
12705 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
12706 F:      drivers/gpu/drm/imx/dcss/
12707
12708 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
12709 M:      Jagan Teki <[email protected]>
12710 S:      Maintained
12711 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
12712 F:      drivers/regulator/pf8x00-regulator.c
12713
12714 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
12715 M:      Krzysztof Kozlowski <[email protected]>
12716 L:      [email protected]
12717 S:      Maintained
12718 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
12719 F:      drivers/extcon/extcon-ptn5150.c
12720
12721 NXP SGTL5000 DRIVER
12722 M:      Fabio Estevam <[email protected]>
12723 L:      [email protected] (moderated for non-subscribers)
12724 S:      Maintained
12725 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
12726 F:      sound/soc/codecs/sgtl5000*
12727
12728 NXP SJA1105 ETHERNET SWITCH DRIVER
12729 M:      Vladimir Oltean <[email protected]>
12730 L:      [email protected]
12731 S:      Maintained
12732 F:      drivers/net/dsa/sja1105
12733
12734 NXP TDA998X DRM DRIVER
12735 M:      Russell King <[email protected]>
12736 S:      Maintained
12737 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12738 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12739 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12740 F:      include/drm/i2c/tda998x.h
12741 F:      include/dt-bindings/display/tda998x.h
12742 K:      "nxp,tda998x"
12743
12744 NXP TFA9879 DRIVER
12745 M:      Peter Rosin <[email protected]>
12746 L:      [email protected] (moderated for non-subscribers)
12747 S:      Maintained
12748 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12749 F:      sound/soc/codecs/tfa9879*
12750
12751 NXP-NCI NFC DRIVER
12752 M:      Clément Perrochaud <[email protected]>
12753 R:      Charles Gorand <[email protected]>
12754 L:      [email protected] (moderated for non-subscribers)
12755 S:      Supported
12756 F:      drivers/nfc/nxp-nci
12757
12758 OBJAGG
12759 M:      Jiri Pirko <[email protected]>
12760 L:      [email protected]
12761 S:      Supported
12762 F:      include/linux/objagg.h
12763 F:      lib/objagg.c
12764 F:      lib/test_objagg.c
12765
12766 OBJTOOL
12767 M:      Josh Poimboeuf <[email protected]>
12768 M:      Peter Zijlstra <[email protected]>
12769 S:      Supported
12770 F:      tools/objtool/
12771 F:      include/linux/objtool.h
12772
12773 OCELOT ETHERNET SWITCH DRIVER
12774 M:      Microchip Linux Driver Support <[email protected]>
12775 M:      Vladimir Oltean <[email protected]>
12776 M:      Claudiu Manoil <[email protected]>
12777 M:      Alexandre Belloni <[email protected]>
12778 L:      [email protected]
12779 S:      Supported
12780 F:      drivers/net/dsa/ocelot/*
12781 F:      drivers/net/ethernet/mscc/
12782 F:      include/soc/mscc/ocelot*
12783 F:      net/dsa/tag_ocelot.c
12784 F:      tools/testing/selftests/drivers/net/ocelot/*
12785
12786 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12787 M:      Frederic Barrat <[email protected]>
12788 M:      Andrew Donnellan <[email protected]>
12789 L:      [email protected]
12790 S:      Supported
12791 F:      Documentation/userspace-api/accelerators/ocxl.rst
12792 F:      arch/powerpc/include/asm/pnv-ocxl.h
12793 F:      arch/powerpc/platforms/powernv/ocxl.c
12794 F:      drivers/misc/ocxl/
12795 F:      include/misc/ocxl*
12796 F:      include/uapi/misc/ocxl.h
12797
12798 OMAP AUDIO SUPPORT
12799 M:      Peter Ujfalusi <[email protected]>
12800 M:      Jarkko Nikula <[email protected]>
12801 L:      [email protected] (moderated for non-subscribers)
12802 L:      [email protected]
12803 S:      Maintained
12804 F:      sound/soc/ti/n810.c
12805 F:      sound/soc/ti/omap*
12806 F:      sound/soc/ti/rx51.c
12807 F:      sound/soc/ti/sdma-pcm.*
12808
12809 OMAP CLOCK FRAMEWORK SUPPORT
12810 M:      Paul Walmsley <[email protected]>
12811 L:      [email protected]
12812 S:      Maintained
12813 F:      arch/arm/*omap*/*clock*
12814
12815 OMAP DEVICE TREE SUPPORT
12816 M:      Benoît Cousson <[email protected]>
12817 M:      Tony Lindgren <[email protected]>
12818 L:      [email protected]
12819 L:      [email protected]
12820 S:      Maintained
12821 F:      arch/arm/boot/dts/*am3*
12822 F:      arch/arm/boot/dts/*am4*
12823 F:      arch/arm/boot/dts/*am5*
12824 F:      arch/arm/boot/dts/*dra7*
12825 F:      arch/arm/boot/dts/*omap*
12826 F:      arch/arm/boot/dts/logicpd-som-lv*
12827 F:      arch/arm/boot/dts/logicpd-torpedo*
12828
12829 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12830 L:      [email protected]
12831 L:      [email protected]
12832 S:      Orphan
12833 F:      Documentation/arm/omap/dss.rst
12834 F:      drivers/video/fbdev/omap2/
12835
12836 OMAP FRAMEBUFFER SUPPORT
12837 L:      [email protected]
12838 L:      [email protected]
12839 S:      Orphan
12840 F:      drivers/video/fbdev/omap/
12841
12842 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12843 M:      Roger Quadros <[email protected]>
12844 M:      Tony Lindgren <[email protected]>
12845 L:      [email protected]
12846 S:      Maintained
12847 F:      arch/arm/mach-omap2/*gpmc*
12848 F:      drivers/memory/omap-gpmc.c
12849
12850 OMAP GPIO DRIVER
12851 M:      Grygorii Strashko <[email protected]>
12852 M:      Santosh Shilimkar <[email protected]>
12853 M:      Kevin Hilman <[email protected]>
12854 L:      [email protected]
12855 S:      Maintained
12856 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12857 F:      drivers/gpio/gpio-omap.c
12858
12859 OMAP HARDWARE SPINLOCK SUPPORT
12860 M:      Ohad Ben-Cohen <[email protected]>
12861 L:      [email protected]
12862 S:      Maintained
12863 F:      drivers/hwspinlock/omap_hwspinlock.c
12864
12865 OMAP HS MMC SUPPORT
12866 L:      [email protected]
12867 L:      [email protected]
12868 S:      Orphan
12869 F:      drivers/mmc/host/omap_hsmmc.c
12870
12871 OMAP HWMOD DATA
12872 M:      Paul Walmsley <[email protected]>
12873 L:      [email protected]
12874 S:      Maintained
12875 F:      arch/arm/mach-omap2/omap_hwmod*data*
12876
12877 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12878 M:      Benoît Cousson <[email protected]>
12879 L:      [email protected]
12880 S:      Maintained
12881 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12882
12883 OMAP HWMOD SUPPORT
12884 M:      Benoît Cousson <[email protected]>
12885 M:      Paul Walmsley <[email protected]>
12886 L:      [email protected]
12887 S:      Maintained
12888 F:      arch/arm/mach-omap2/omap_hwmod.*
12889
12890 OMAP I2C DRIVER
12891 M:      Vignesh R <[email protected]>
12892 L:      [email protected]
12893 L:      [email protected]
12894 S:      Maintained
12895 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12896 F:      drivers/i2c/busses/i2c-omap.c
12897
12898 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12899 M:      Laurent Pinchart <[email protected]>
12900 L:      [email protected]
12901 S:      Maintained
12902 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12903 F:      drivers/media/platform/omap3isp/
12904 F:      drivers/staging/media/omap4iss/
12905
12906 OMAP MMC SUPPORT
12907 M:      Aaro Koskinen <[email protected]>
12908 L:      [email protected]
12909 S:      Odd Fixes
12910 F:      drivers/mmc/host/omap.c
12911
12912 OMAP POWER MANAGEMENT SUPPORT
12913 M:      Kevin Hilman <[email protected]>
12914 L:      [email protected]
12915 S:      Maintained
12916 F:      arch/arm/*omap*/*pm*
12917 F:      drivers/cpufreq/omap-cpufreq.c
12918
12919 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12920 M:      Rajendra Nayak <[email protected]>
12921 M:      Paul Walmsley <[email protected]>
12922 L:      [email protected]
12923 S:      Maintained
12924 F:      arch/arm/mach-omap2/prm*
12925
12926 OMAP RANDOM NUMBER GENERATOR SUPPORT
12927 M:      Deepak Saxena <[email protected]>
12928 S:      Maintained
12929 F:      drivers/char/hw_random/omap-rng.c
12930
12931 OMAP USB SUPPORT
12932 L:      [email protected]
12933 L:      [email protected]
12934 S:      Orphan
12935 F:      arch/arm/*omap*/usb*
12936 F:      drivers/usb/*/*omap*
12937
12938 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12939 M:      Mark Jackson <[email protected]>
12940 L:      [email protected]
12941 S:      Maintained
12942 F:      arch/arm/boot/dts/am335x-nano.dts
12943
12944 OMAP1 SUPPORT
12945 M:      Aaro Koskinen <[email protected]>
12946 M:      Tony Lindgren <[email protected]>
12947 L:      [email protected]
12948 S:      Maintained
12949 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12951 F:      arch/arm/configs/omap1_defconfig
12952 F:      arch/arm/mach-omap1/
12953 F:      arch/arm/plat-omap/
12954 F:      drivers/i2c/busses/i2c-omap.c
12955 F:      include/linux/platform_data/ams-delta-fiq.h
12956 F:      include/linux/platform_data/i2c-omap.h
12957
12958 OMAP2+ SUPPORT
12959 M:      Tony Lindgren <[email protected]>
12960 L:      [email protected]
12961 S:      Maintained
12962 W:      http://www.muru.com/linux/omap/
12963 W:      http://linux.omap.com/
12964 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12966 F:      arch/arm/configs/omap2plus_defconfig
12967 F:      arch/arm/mach-omap2/
12968 F:      arch/arm/plat-omap/
12969 F:      drivers/bus/ti-sysc.c
12970 F:      drivers/i2c/busses/i2c-omap.c
12971 F:      drivers/irqchip/irq-omap-intc.c
12972 F:      drivers/mfd/*omap*.c
12973 F:      drivers/mfd/menelaus.c
12974 F:      drivers/mfd/palmas.c
12975 F:      drivers/mfd/tps65217.c
12976 F:      drivers/mfd/tps65218.c
12977 F:      drivers/mfd/tps65910.c
12978 F:      drivers/mfd/twl-core.[ch]
12979 F:      drivers/mfd/twl4030*.c
12980 F:      drivers/mfd/twl6030*.c
12981 F:      drivers/mfd/twl6040*.c
12982 F:      drivers/regulator/palmas-regulator*.c
12983 F:      drivers/regulator/pbias-regulator.c
12984 F:      drivers/regulator/tps65217-regulator.c
12985 F:      drivers/regulator/tps65218-regulator.c
12986 F:      drivers/regulator/tps65910-regulator.c
12987 F:      drivers/regulator/twl-regulator.c
12988 F:      drivers/regulator/twl6030-regulator.c
12989 F:      include/linux/platform_data/i2c-omap.h
12990 F:      include/linux/platform_data/ti-sysc.h
12991
12992 OMFS FILESYSTEM
12993 M:      Bob Copeland <[email protected]>
12994 L:      [email protected]
12995 S:      Maintained
12996 F:      Documentation/filesystems/omfs.rst
12997 F:      fs/omfs/
12998
12999 OMNIKEY CARDMAN 4000 DRIVER
13000 M:      Harald Welte <[email protected]>
13001 S:      Maintained
13002 F:      drivers/char/pcmcia/cm4000_cs.c
13003 F:      include/linux/cm4000_cs.h
13004 F:      include/uapi/linux/cm4000_cs.h
13005
13006 OMNIKEY CARDMAN 4040 DRIVER
13007 M:      Harald Welte <[email protected]>
13008 S:      Maintained
13009 F:      drivers/char/pcmcia/cm4040_cs.*
13010
13011 OMNIVISION OV02A10 SENSOR DRIVER
13012 M:      Dongchun Zhu <[email protected]>
13013 L:      [email protected]
13014 S:      Maintained
13015 T:      git git://linuxtv.org/media_tree.git
13016 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13017 F:      drivers/media/i2c/ov02a10.c
13018
13019 OMNIVISION OV13858 SENSOR DRIVER
13020 M:      Sakari Ailus <[email protected]>
13021 L:      [email protected]
13022 S:      Maintained
13023 T:      git git://linuxtv.org/media_tree.git
13024 F:      drivers/media/i2c/ov13858.c
13025
13026 OMNIVISION OV2680 SENSOR DRIVER
13027 M:      Rui Miguel Silva <[email protected]>
13028 L:      [email protected]
13029 S:      Maintained
13030 T:      git git://linuxtv.org/media_tree.git
13031 F:      Documentation/devicetree/bindings/media/i2c/ov2680.yaml
13032 F:      drivers/media/i2c/ov2680.c
13033
13034 OMNIVISION OV2685 SENSOR DRIVER
13035 M:      Shunqian Zheng <[email protected]>
13036 L:      [email protected]
13037 S:      Maintained
13038 T:      git git://linuxtv.org/media_tree.git
13039 F:      drivers/media/i2c/ov2685.c
13040
13041 OMNIVISION OV2740 SENSOR DRIVER
13042 M:      Tianshu Qiu <[email protected]>
13043 R:      Shawn Tu <[email protected]>
13044 R:      Bingbu Cao <[email protected]>
13045 L:      [email protected]
13046 S:      Maintained
13047 T:      git git://linuxtv.org/media_tree.git
13048 F:      drivers/media/i2c/ov2740.c
13049
13050 OMNIVISION OV5640 SENSOR DRIVER
13051 M:      Steve Longerbeam <[email protected]>
13052 L:      [email protected]
13053 S:      Maintained
13054 T:      git git://linuxtv.org/media_tree.git
13055 F:      drivers/media/i2c/ov5640.c
13056
13057 OMNIVISION OV5647 SENSOR DRIVER
13058 M:      Dave Stevenson <[email protected]>
13059 M:      Jacopo Mondi <[email protected]>
13060 L:      [email protected]
13061 S:      Maintained
13062 T:      git git://linuxtv.org/media_tree.git
13063 F:      Documentation/devicetree/bindings/media/i2c/ov5647.yaml
13064 F:      drivers/media/i2c/ov5647.c
13065
13066 OMNIVISION OV5670 SENSOR DRIVER
13067 M:      Chiranjeevi Rapolu <[email protected]>
13068 M:      Hyungwoo Yang <[email protected]>
13069 L:      [email protected]
13070 S:      Maintained
13071 T:      git git://linuxtv.org/media_tree.git
13072 F:      drivers/media/i2c/ov5670.c
13073
13074 OMNIVISION OV5675 SENSOR DRIVER
13075 M:      Shawn Tu <[email protected]>
13076 L:      [email protected]
13077 S:      Maintained
13078 T:      git git://linuxtv.org/media_tree.git
13079 F:      drivers/media/i2c/ov5675.c
13080
13081 OMNIVISION OV5695 SENSOR DRIVER
13082 M:      Shunqian Zheng <[email protected]>
13083 L:      [email protected]
13084 S:      Maintained
13085 T:      git git://linuxtv.org/media_tree.git
13086 F:      drivers/media/i2c/ov5695.c
13087
13088 OMNIVISION OV7670 SENSOR DRIVER
13089 L:      [email protected]
13090 S:      Orphan
13091 T:      git git://linuxtv.org/media_tree.git
13092 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13093 F:      drivers/media/i2c/ov7670.c
13094
13095 OMNIVISION OV772x SENSOR DRIVER
13096 M:      Jacopo Mondi <[email protected]>
13097 L:      [email protected]
13098 S:      Odd fixes
13099 T:      git git://linuxtv.org/media_tree.git
13100 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13101 F:      drivers/media/i2c/ov772x.c
13102 F:      include/media/i2c/ov772x.h
13103
13104 OMNIVISION OV7740 SENSOR DRIVER
13105 M:      Wenyou Yang <[email protected]>
13106 L:      [email protected]
13107 S:      Maintained
13108 T:      git git://linuxtv.org/media_tree.git
13109 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13110 F:      drivers/media/i2c/ov7740.c
13111
13112 OMNIVISION OV8856 SENSOR DRIVER
13113 M:      Dongchun Zhu <[email protected]>
13114 L:      [email protected]
13115 S:      Maintained
13116 T:      git git://linuxtv.org/media_tree.git
13117 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13118 F:      drivers/media/i2c/ov8856.c
13119
13120 OMNIVISION OV9640 SENSOR DRIVER
13121 M:      Petr Cvek <[email protected]>
13122 L:      [email protected]
13123 S:      Maintained
13124 F:      drivers/media/i2c/ov9640.*
13125
13126 OMNIVISION OV9650 SENSOR DRIVER
13127 M:      Sakari Ailus <[email protected]>
13128 R:      Akinobu Mita <[email protected]>
13129 R:      Sylwester Nawrocki <[email protected]>
13130 L:      [email protected]
13131 S:      Maintained
13132 T:      git git://linuxtv.org/media_tree.git
13133 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13134 F:      drivers/media/i2c/ov9650.c
13135
13136 OMNIVISION OV9734 SENSOR DRIVER
13137 M:      Tianshu Qiu <[email protected]>
13138 R:      Bingbu Cao <[email protected]>
13139 L:      [email protected]
13140 S:      Maintained
13141 T:      git git://linuxtv.org/media_tree.git
13142 F:      drivers/media/i2c/ov9734.c
13143
13144 ONENAND FLASH DRIVER
13145 M:      Kyungmin Park <[email protected]>
13146 L:      [email protected]
13147 S:      Maintained
13148 F:      drivers/mtd/nand/onenand/
13149 F:      include/linux/mtd/onenand*.h
13150
13151 ONION OMEGA2+ BOARD
13152 M:      Harvey Hunt <[email protected]>
13153 L:      [email protected]
13154 S:      Maintained
13155 F:      arch/mips/boot/dts/ralink/omega2p.dts
13156
13157 OP-TEE DRIVER
13158 M:      Jens Wiklander <[email protected]>
13159 L:      [email protected]
13160 S:      Maintained
13161 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13162 F:      drivers/tee/optee/
13163
13164 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13165 M:      Sumit Garg <[email protected]>
13166 L:      [email protected]
13167 S:      Maintained
13168 F:      drivers/char/hw_random/optee-rng.c
13169
13170 OPA-VNIC DRIVER
13171 M:      Dennis Dalessandro <[email protected]>
13172 M:      Mike Marciniszyn <[email protected]>
13173 L:      [email protected]
13174 S:      Supported
13175 F:      drivers/infiniband/ulp/opa_vnic
13176
13177 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13178 M:      Pantelis Antoniou <[email protected]>
13179 M:      Frank Rowand <[email protected]>
13180 L:      [email protected]
13181 S:      Maintained
13182 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13183 F:      Documentation/devicetree/overlay-notes.rst
13184 F:      drivers/of/overlay.c
13185 F:      drivers/of/resolver.c
13186 K:      of_overlay_notifier_
13187
13188 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13189 M:      Rob Herring <[email protected]>
13190 M:      Frank Rowand <[email protected]>
13191 L:      [email protected]
13192 S:      Maintained
13193 W:      http://www.devicetree.org/
13194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13195 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13196 F:      drivers/of/
13197 F:      include/linux/of*.h
13198 F:      scripts/dtc/
13199
13200 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13201 M:      Rob Herring <[email protected]>
13202 L:      [email protected]
13203 S:      Maintained
13204 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13206 F:      Documentation/devicetree/
13207 F:      arch/*/boot/dts/
13208 F:      include/dt-bindings/
13209
13210 OPENCORES I2C BUS DRIVER
13211 M:      Peter Korsgaard <[email protected]>
13212 M:      Andrew Lunn <[email protected]>
13213 L:      [email protected]
13214 S:      Maintained
13215 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13216 F:      Documentation/i2c/busses/i2c-ocores.rst
13217 F:      drivers/i2c/busses/i2c-ocores.c
13218 F:      include/linux/platform_data/i2c-ocores.h
13219
13220 OPENRISC ARCHITECTURE
13221 M:      Jonas Bonn <[email protected]>
13222 M:      Stefan Kristiansson <[email protected]>
13223 M:      Stafford Horne <[email protected]>
13224 L:      [email protected]
13225 S:      Maintained
13226 W:      http://openrisc.io
13227 T:      git git://github.com/openrisc/linux.git
13228 F:      Documentation/devicetree/bindings/openrisc/
13229 F:      Documentation/openrisc/
13230 F:      arch/openrisc/
13231 F:      drivers/irqchip/irq-ompic.c
13232 F:      drivers/irqchip/irq-or1k-*
13233
13234 OPENVSWITCH
13235 M:      Pravin B Shelar <[email protected]>
13236 L:      [email protected]
13237 L:      [email protected]
13238 S:      Maintained
13239 W:      http://openvswitch.org
13240 F:      include/uapi/linux/openvswitch.h
13241 F:      net/openvswitch/
13242
13243 OPERATING PERFORMANCE POINTS (OPP)
13244 M:      Viresh Kumar <[email protected]>
13245 M:      Nishanth Menon <[email protected]>
13246 M:      Stephen Boyd <[email protected]>
13247 L:      [email protected]
13248 S:      Maintained
13249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13250 F:      Documentation/devicetree/bindings/opp/
13251 F:      Documentation/power/opp.rst
13252 F:      drivers/opp/
13253 F:      include/linux/pm_opp.h
13254
13255 OPL4 DRIVER
13256 M:      Clemens Ladisch <[email protected]>
13257 L:      [email protected] (moderated for non-subscribers)
13258 S:      Maintained
13259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13260 F:      sound/drivers/opl4/
13261
13262 OPROFILE
13263 M:      Robert Richter <[email protected]>
13264 L:      [email protected]
13265 S:      Maintained
13266 F:      arch/*/include/asm/oprofile*.h
13267 F:      arch/*/oprofile/
13268 F:      drivers/oprofile/
13269 F:      include/linux/oprofile.h
13270
13271 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13272 M:      Mark Fasheh <[email protected]>
13273 M:      Joel Becker <[email protected]>
13274 M:      Joseph Qi <[email protected]>
13275 L:      [email protected] (moderated for non-subscribers)
13276 S:      Supported
13277 W:      http://ocfs2.wiki.kernel.org
13278 F:      Documentation/filesystems/dlmfs.rst
13279 F:      Documentation/filesystems/ocfs2.rst
13280 F:      fs/ocfs2/
13281
13282 ORANGEFS FILESYSTEM
13283 M:      Mike Marshall <[email protected]>
13284 R:      Martin Brandenburg <[email protected]>
13285 L:      [email protected]
13286 S:      Supported
13287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13288 F:      Documentation/filesystems/orangefs.rst
13289 F:      fs/orangefs/
13290
13291 ORINOCO DRIVER
13292 L:      [email protected]
13293 S:      Orphan
13294 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13295 W:      http://www.nongnu.org/orinoco/
13296 F:      drivers/net/wireless/intersil/orinoco/
13297
13298 OV2659 OMNIVISION SENSOR DRIVER
13299 M:      "Lad, Prabhakar" <[email protected]>
13300 L:      [email protected]
13301 S:      Maintained
13302 W:      https://linuxtv.org
13303 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13304 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13305 F:      drivers/media/i2c/ov2659.c
13306 F:      include/media/i2c/ov2659.h
13307
13308 OVERLAY FILESYSTEM
13309 M:      Miklos Szeredi <[email protected]>
13310 L:      [email protected]
13311 S:      Supported
13312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13313 F:      Documentation/filesystems/overlayfs.rst
13314 F:      fs/overlayfs/
13315
13316 P54 WIRELESS DRIVER
13317 M:      Christian Lamparter <[email protected]>
13318 L:      [email protected]
13319 S:      Maintained
13320 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13321 F:      drivers/net/wireless/intersil/p54/
13322
13323 PACKING
13324 M:      Vladimir Oltean <[email protected]>
13325 L:      [email protected]
13326 S:      Supported
13327 F:      Documentation/core-api/packing.rst
13328 F:      include/linux/packing.h
13329 F:      lib/packing.c
13330
13331 PADATA PARALLEL EXECUTION MECHANISM
13332 M:      Steffen Klassert <[email protected]>
13333 M:      Daniel Jordan <[email protected]>
13334 L:      [email protected]
13335 L:      [email protected]
13336 S:      Maintained
13337 F:      Documentation/core-api/padata.rst
13338 F:      include/linux/padata.h
13339 F:      kernel/padata.c
13340
13341 PAGE POOL
13342 M:      Jesper Dangaard Brouer <[email protected]>
13343 M:      Ilias Apalodimas <[email protected]>
13344 L:      [email protected]
13345 S:      Supported
13346 F:      Documentation/networking/page_pool.rst
13347 F:      include/net/page_pool.h
13348 F:      include/trace/events/page_pool.h
13349 F:      net/core/page_pool.c
13350
13351 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13352 M:      Kenneth Chan <[email protected]>
13353 L:      [email protected]
13354 S:      Maintained
13355 F:      drivers/platform/x86/panasonic-laptop.c
13356
13357 PARALLAX PING IIO SENSOR DRIVER
13358 M:      Andreas Klinger <[email protected]>
13359 L:      [email protected]
13360 S:      Maintained
13361 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13362 F:      drivers/iio/proximity/ping.c
13363
13364 PARALLEL LCD/KEYPAD PANEL DRIVER
13365 M:      Willy Tarreau <[email protected]>
13366 M:      Ksenija Stanojevic <[email protected]>
13367 S:      Odd Fixes
13368 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13369 F:      drivers/auxdisplay/panel.c
13370
13371 PARALLEL PORT SUBSYSTEM
13372 M:      Sudip Mukherjee <[email protected]>
13373 M:      Sudip Mukherjee <[email protected]>
13374 L:      [email protected] (subscribers-only)
13375 S:      Maintained
13376 F:      Documentation/driver-api/parport*.rst
13377 F:      drivers/char/ppdev.c
13378 F:      drivers/parport/
13379 F:      include/linux/parport*.h
13380 F:      include/uapi/linux/ppdev.h
13381
13382 PARAVIRT_OPS INTERFACE
13383 M:      Juergen Gross <[email protected]>
13384 M:      Deep Shah <[email protected]>
13385 M:      "VMware, Inc." <[email protected]>
13386 L:      [email protected]
13387 S:      Supported
13388 F:      Documentation/virt/paravirt_ops.rst
13389 F:      arch/*/include/asm/paravirt*.h
13390 F:      arch/*/kernel/paravirt*
13391 F:      include/linux/hypervisor.h
13392
13393 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13394 M:      Tim Waugh <[email protected]>
13395 L:      [email protected] (subscribers-only)
13396 S:      Maintained
13397 F:      Documentation/admin-guide/blockdev/paride.rst
13398 F:      drivers/block/paride/
13399
13400 PARISC ARCHITECTURE
13401 M:      "James E.J. Bottomley" <[email protected]>
13402 M:      Helge Deller <[email protected]>
13403 L:      [email protected]
13404 S:      Maintained
13405 W:      https://parisc.wiki.kernel.org
13406 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
13407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13409 F:      Documentation/parisc/
13410 F:      arch/parisc/
13411 F:      drivers/char/agp/parisc-agp.c
13412 F:      drivers/input/misc/hp_sdc_rtc.c
13413 F:      drivers/input/serio/gscps2.c
13414 F:      drivers/input/serio/hp_sdc*
13415 F:      drivers/parisc/
13416 F:      drivers/parport/parport_gsc.*
13417 F:      drivers/tty/serial/8250/8250_gsc.c
13418 F:      drivers/video/console/sti*
13419 F:      drivers/video/fbdev/sti*
13420 F:      drivers/video/logo/logo_parisc*
13421 F:      include/linux/hp_sdc.h
13422
13423 PARMAN
13424 M:      Jiri Pirko <[email protected]>
13425 L:      [email protected]
13426 S:      Supported
13427 F:      include/linux/parman.h
13428 F:      lib/parman.c
13429 F:      lib/test_parman.c
13430
13431 PC ENGINES APU BOARD DRIVER
13432 M:      Enrico Weigelt, metux IT consult <[email protected]>
13433 S:      Maintained
13434 F:      drivers/platform/x86/pcengines-apuv2.c
13435
13436 PC87360 HARDWARE MONITORING DRIVER
13437 M:      Jim Cromie <[email protected]>
13438 L:      [email protected]
13439 S:      Maintained
13440 F:      Documentation/hwmon/pc87360.rst
13441 F:      drivers/hwmon/pc87360.c
13442
13443 PC8736x GPIO DRIVER
13444 M:      Jim Cromie <[email protected]>
13445 S:      Maintained
13446 F:      drivers/char/pc8736x_gpio.c
13447
13448 PC87427 HARDWARE MONITORING DRIVER
13449 M:      Jean Delvare <[email protected]>
13450 L:      [email protected]
13451 S:      Maintained
13452 F:      Documentation/hwmon/pc87427.rst
13453 F:      drivers/hwmon/pc87427.c
13454
13455 PCA9532 LED DRIVER
13456 M:      Riku Voipio <[email protected]>
13457 S:      Maintained
13458 F:      drivers/leds/leds-pca9532.c
13459 F:      include/linux/leds-pca9532.h
13460
13461 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13462 M:      Guenter Roeck <[email protected]>
13463 L:      [email protected]
13464 S:      Maintained
13465 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13466
13467 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13468 M:      Khalid Aziz <[email protected]>
13469 S:      Maintained
13470 F:      drivers/firmware/pcdp.*
13471
13472 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13473 M:      Thomas Petazzoni <[email protected]>
13474 M:      Pali Rohár <[email protected]>
13475 L:      [email protected]
13476 L:      [email protected] (moderated for non-subscribers)
13477 S:      Maintained
13478 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13479 F:      drivers/pci/controller/pci-aardvark.c
13480
13481 PCI DRIVER FOR ALTERA PCIE IP
13482 M:      Ley Foon Tan <[email protected]>
13483 L:      [email protected] (moderated for non-subscribers)
13484 L:      [email protected]
13485 S:      Supported
13486 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13487 F:      drivers/pci/controller/pcie-altera.c
13488
13489 PCI DRIVER FOR APPLIEDMICRO XGENE
13490 M:      Toan Le <[email protected]>
13491 L:      [email protected]
13492 L:      [email protected]
13493 S:      Maintained
13494 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13495 F:      drivers/pci/controller/pci-xgene.c
13496
13497 PCI DRIVER FOR ARM VERSATILE PLATFORM
13498 M:      Rob Herring <[email protected]>
13499 L:      [email protected]
13500 L:      [email protected]
13501 S:      Maintained
13502 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13503 F:      drivers/pci/controller/pci-versatile.c
13504
13505 PCI DRIVER FOR ARMADA 8K
13506 M:      Thomas Petazzoni <[email protected]>
13507 L:      [email protected]
13508 L:      [email protected]
13509 S:      Maintained
13510 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13511 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13512
13513 PCI DRIVER FOR CADENCE PCIE IP
13514 M:      Tom Joseph <[email protected]>
13515 L:      [email protected]
13516 S:      Maintained
13517 F:      Documentation/devicetree/bindings/pci/cdns,*
13518 F:      drivers/pci/controller/cadence/
13519
13520 PCI DRIVER FOR FREESCALE LAYERSCAPE
13521 M:      Minghuan Lian <[email protected]>
13522 M:      Mingkai Hu <[email protected]>
13523 M:      Roy Zang <[email protected]>
13524 L:      [email protected]
13525 L:      [email protected]
13526 L:      [email protected]
13527 S:      Maintained
13528 F:      drivers/pci/controller/dwc/*layerscape*
13529
13530 PCI DRIVER FOR GENERIC OF HOSTS
13531 M:      Will Deacon <[email protected]>
13532 L:      [email protected]
13533 L:      [email protected] (moderated for non-subscribers)
13534 S:      Maintained
13535 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13536 F:      drivers/pci/controller/pci-host-common.c
13537 F:      drivers/pci/controller/pci-host-generic.c
13538
13539 PCI DRIVER FOR IMX6
13540 M:      Richard Zhu <[email protected]>
13541 M:      Lucas Stach <[email protected]>
13542 L:      [email protected]
13543 L:      [email protected] (moderated for non-subscribers)
13544 S:      Maintained
13545 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13546 F:      drivers/pci/controller/dwc/*imx6*
13547
13548 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13549 M:      Jonathan Derrick <[email protected]>
13550 L:      [email protected]
13551 S:      Supported
13552 F:      drivers/pci/controller/vmd.c
13553
13554 PCI DRIVER FOR MICROSEMI SWITCHTEC
13555 M:      Kurt Schwemmer <[email protected]>
13556 M:      Logan Gunthorpe <[email protected]>
13557 L:      [email protected]
13558 S:      Maintained
13559 F:      Documentation/ABI/testing/sysfs-class-switchtec
13560 F:      Documentation/driver-api/switchtec.rst
13561 F:      drivers/ntb/hw/mscc/
13562 F:      drivers/pci/switch/switchtec*
13563 F:      include/linux/switchtec.h
13564 F:      include/uapi/linux/switchtec_ioctl.h
13565
13566 PCI DRIVER FOR MOBIVEIL PCIE IP
13567 M:      Karthikeyan Mitran <[email protected]>
13568 M:      Hou Zhiqiang <[email protected]>
13569 L:      [email protected]
13570 S:      Supported
13571 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13572 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13573
13574 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13575 M:      Thomas Petazzoni <[email protected]>
13576 L:      [email protected]
13577 L:      [email protected] (moderated for non-subscribers)
13578 S:      Maintained
13579 F:      drivers/pci/controller/*mvebu*
13580
13581 PCI DRIVER FOR NVIDIA TEGRA
13582 M:      Thierry Reding <[email protected]>
13583 L:      [email protected]
13584 L:      [email protected]
13585 S:      Supported
13586 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13587 F:      drivers/pci/controller/pci-tegra.c
13588
13589 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13590 M:      Hou Zhiqiang <[email protected]>
13591 L:      [email protected]
13592 L:      [email protected]
13593 S:      Maintained
13594 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13595 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13596
13597 PCI DRIVER FOR RENESAS R-CAR
13598 M:      Marek Vasut <[email protected]>
13599 M:      Yoshihiro Shimoda <[email protected]>
13600 L:      [email protected]
13601 L:      [email protected]
13602 S:      Maintained
13603 F:      Documentation/devicetree/bindings/pci/*rcar*
13604 F:      drivers/pci/controller/*rcar*
13605
13606 PCI DRIVER FOR SAMSUNG EXYNOS
13607 M:      Jingoo Han <[email protected]>
13608 L:      [email protected]
13609 L:      [email protected] (moderated for non-subscribers)
13610 L:      [email protected]
13611 S:      Maintained
13612 F:      drivers/pci/controller/dwc/pci-exynos.c
13613
13614 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13615 M:      Jingoo Han <[email protected]>
13616 M:      Gustavo Pimentel <[email protected]>
13617 L:      [email protected]
13618 S:      Maintained
13619 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13620 F:      drivers/pci/controller/dwc/*designware*
13621
13622 PCI DRIVER FOR TI DRA7XX/J721E
13623 M:      Kishon Vijay Abraham I <[email protected]>
13624 L:      [email protected]
13625 L:      [email protected]
13626 L:      [email protected]
13627 S:      Supported
13628 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13629 F:      drivers/pci/controller/cadence/pci-j721e.c
13630 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13631
13632 PCI DRIVER FOR TI KEYSTONE
13633 M:      Murali Karicheri <[email protected]>
13634 L:      [email protected]
13635 L:      [email protected] (moderated for non-subscribers)
13636 S:      Maintained
13637 F:      drivers/pci/controller/dwc/pci-keystone.c
13638
13639 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13640 M:      Linus Walleij <[email protected]>
13641 L:      [email protected]
13642 S:      Maintained
13643 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13644 F:      drivers/pci/controller/pci-v3-semi.c
13645
13646 PCI ENDPOINT SUBSYSTEM
13647 M:      Kishon Vijay Abraham I <[email protected]>
13648 M:      Lorenzo Pieralisi <[email protected]>
13649 L:      [email protected]
13650 S:      Supported
13651 F:      Documentation/PCI/endpoint/*
13652 F:      Documentation/misc-devices/pci-endpoint-test.rst
13653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13654 F:      drivers/misc/pci_endpoint_test.c
13655 F:      drivers/pci/endpoint/
13656 F:      tools/pci/
13657
13658 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13659 M:      Russell Currey <[email protected]>
13660 M:      Oliver O'Halloran <[email protected]>
13661 L:      [email protected]
13662 S:      Supported
13663 F:      Documentation/PCI/pci-error-recovery.rst
13664 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13665 F:      arch/powerpc/include/*/eeh*.h
13666 F:      arch/powerpc/kernel/eeh*.c
13667 F:      arch/powerpc/platforms/*/eeh*.c
13668 F:      drivers/pci/pcie/aer.c
13669 F:      drivers/pci/pcie/dpc.c
13670 F:      drivers/pci/pcie/err.c
13671
13672 PCI ERROR RECOVERY
13673 M:      Linas Vepstas <[email protected]>
13674 L:      [email protected]
13675 S:      Supported
13676 F:      Documentation/PCI/pci-error-recovery.rst
13677
13678 PCI MSI DRIVER FOR ALTERA MSI IP
13679 M:      Ley Foon Tan <[email protected]>
13680 L:      [email protected] (moderated for non-subscribers)
13681 L:      [email protected]
13682 S:      Supported
13683 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13684 F:      drivers/pci/controller/pcie-altera-msi.c
13685
13686 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13687 M:      Toan Le <[email protected]>
13688 L:      [email protected]
13689 L:      [email protected]
13690 S:      Maintained
13691 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13692 F:      drivers/pci/controller/pci-xgene-msi.c
13693
13694 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13695 M:      Lorenzo Pieralisi <[email protected]>
13696 R:      Rob Herring <[email protected]>
13697 L:      [email protected]
13698 S:      Supported
13699 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13701 F:      drivers/pci/controller/
13702
13703 PCI SUBSYSTEM
13704 M:      Bjorn Helgaas <[email protected]>
13705 L:      [email protected]
13706 S:      Supported
13707 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13709 F:      Documentation/PCI/
13710 F:      Documentation/devicetree/bindings/pci/
13711 F:      arch/x86/kernel/early-quirks.c
13712 F:      arch/x86/kernel/quirks.c
13713 F:      arch/x86/pci/
13714 F:      drivers/acpi/pci*
13715 F:      drivers/pci/
13716 F:      include/asm-generic/pci*
13717 F:      include/linux/of_pci.h
13718 F:      include/linux/pci*
13719 F:      include/uapi/linux/pci*
13720 F:      lib/pci*
13721
13722 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13723 M:      Jonathan Chocron <[email protected]>
13724 L:      [email protected]
13725 S:      Maintained
13726 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13727 F:      drivers/pci/controller/dwc/pcie-al.c
13728
13729 PCIE DRIVER FOR AMLOGIC MESON
13730 M:      Yue Wang <[email protected]>
13731 L:      [email protected]
13732 L:      [email protected]
13733 S:      Maintained
13734 F:      drivers/pci/controller/dwc/pci-meson.c
13735
13736 PCIE DRIVER FOR AXIS ARTPEC
13737 M:      Jesper Nilsson <[email protected]>
13738 L:      [email protected]
13739 L:      [email protected]
13740 S:      Maintained
13741 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13742 F:      drivers/pci/controller/dwc/*artpec*
13743
13744 PCIE DRIVER FOR CAVIUM THUNDERX
13745 M:      Robert Richter <[email protected]>
13746 L:      [email protected]
13747 L:      [email protected] (moderated for non-subscribers)
13748 S:      Odd Fixes
13749 F:      drivers/pci/controller/pci-thunder-*
13750
13751 PCIE DRIVER FOR HISILICON
13752 M:      Zhou Wang <[email protected]>
13753 L:      [email protected]
13754 S:      Maintained
13755 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13756 F:      drivers/pci/controller/dwc/pcie-hisi.c
13757
13758 PCIE DRIVER FOR HISILICON KIRIN
13759 M:      Xiaowei Song <[email protected]>
13760 M:      Binghui Wang <[email protected]>
13761 L:      [email protected]
13762 S:      Maintained
13763 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13764 F:      drivers/pci/controller/dwc/pcie-kirin.c
13765
13766 PCIE DRIVER FOR HISILICON STB
13767 M:      Shawn Guo <[email protected]>
13768 L:      [email protected]
13769 S:      Maintained
13770 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13771 F:      drivers/pci/controller/dwc/pcie-histb.c
13772
13773 PCIE DRIVER FOR MEDIATEK
13774 M:      Ryder Lee <[email protected]>
13775 L:      [email protected]
13776 L:      [email protected]
13777 S:      Supported
13778 F:      Documentation/devicetree/bindings/pci/mediatek*
13779 F:      drivers/pci/controller/*mediatek*
13780
13781 PCIE DRIVER FOR QUALCOMM MSM
13782 M:      Stanimir Varbanov <[email protected]>
13783 L:      [email protected]
13784 L:      [email protected]
13785 S:      Maintained
13786 F:      drivers/pci/controller/dwc/*qcom*
13787
13788 PCIE DRIVER FOR ROCKCHIP
13789 M:      Shawn Lin <[email protected]>
13790 L:      [email protected]
13791 L:      [email protected]
13792 S:      Maintained
13793 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13794 F:      drivers/pci/controller/pcie-rockchip*
13795
13796 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13797 M:      Kunihiko Hayashi <[email protected]>
13798 L:      [email protected]
13799 S:      Maintained
13800 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13801 F:      drivers/pci/controller/dwc/pcie-uniphier*
13802
13803 PCIE DRIVER FOR ST SPEAR13XX
13804 M:      Pratyush Anand <[email protected]>
13805 L:      [email protected]
13806 S:      Maintained
13807 F:      drivers/pci/controller/dwc/*spear*
13808
13809 PCMCIA SUBSYSTEM
13810 M:      Dominik Brodowski <[email protected]>
13811 S:      Odd Fixes
13812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13813 F:      Documentation/pcmcia/
13814 F:      drivers/pcmcia/
13815 F:      include/pcmcia/
13816 F:      tools/pcmcia/
13817
13818 PCNET32 NETWORK DRIVER
13819 M:      Don Fry <[email protected]>
13820 L:      [email protected]
13821 S:      Maintained
13822 F:      drivers/net/ethernet/amd/pcnet32.c
13823
13824 PCRYPT PARALLEL CRYPTO ENGINE
13825 M:      Steffen Klassert <[email protected]>
13826 L:      [email protected]
13827 S:      Maintained
13828 F:      crypto/pcrypt.c
13829 F:      include/crypto/pcrypt.h
13830
13831 PEAQ WMI HOTKEYS DRIVER
13832 M:      Hans de Goede <[email protected]>
13833 L:      [email protected]
13834 S:      Maintained
13835 F:      drivers/platform/x86/peaq-wmi.c
13836
13837 PENSANDO ETHERNET DRIVERS
13838 M:      Shannon Nelson <[email protected]>
13839 M:      Pensando Drivers <[email protected]>
13840 L:      [email protected]
13841 S:      Supported
13842 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
13843 F:      drivers/net/ethernet/pensando/
13844
13845 PER-CPU MEMORY ALLOCATOR
13846 M:      Dennis Zhou <[email protected]>
13847 M:      Tejun Heo <[email protected]>
13848 M:      Christoph Lameter <[email protected]>
13849 S:      Maintained
13850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13851 F:      arch/*/include/asm/percpu.h
13852 F:      include/linux/percpu*.h
13853 F:      mm/percpu*.c
13854
13855 PER-TASK DELAY ACCOUNTING
13856 M:      Balbir Singh <[email protected]>
13857 S:      Maintained
13858 F:      include/linux/delayacct.h
13859 F:      kernel/delayacct.c
13860
13861 PERFORMANCE EVENTS SUBSYSTEM
13862 M:      Peter Zijlstra <[email protected]>
13863 M:      Ingo Molnar <[email protected]>
13864 M:      Arnaldo Carvalho de Melo <[email protected]>
13865 R:      Mark Rutland <[email protected]>
13866 R:      Alexander Shishkin <[email protected]>
13867 R:      Jiri Olsa <[email protected]>
13868 R:      Namhyung Kim <[email protected]>
13869 L:      [email protected]
13870 S:      Supported
13871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13872 F:      arch/*/events/*
13873 F:      arch/*/events/*/*
13874 F:      arch/*/include/asm/perf_event.h
13875 F:      arch/*/kernel/*/*/perf_event*.c
13876 F:      arch/*/kernel/*/perf_event*.c
13877 F:      arch/*/kernel/perf_callchain.c
13878 F:      arch/*/kernel/perf_event*.c
13879 F:      include/linux/perf_event.h
13880 F:      include/uapi/linux/perf_event.h
13881 F:      kernel/events/*
13882 F:      tools/lib/perf/
13883 F:      tools/perf/
13884
13885 PERFORMANCE EVENTS TOOLING ARM64
13886 R:      John Garry <[email protected]>
13887 R:      Will Deacon <[email protected]>
13888 R:      Mathieu Poirier <[email protected]>
13889 R:      Leo Yan <[email protected]>
13890 L:      [email protected] (moderated for non-subscribers)
13891 S:      Supported
13892 F:      tools/build/feature/test-libopencsd.c
13893 F:      tools/perf/arch/arm*/
13894 F:      tools/perf/pmu-events/arch/arm64/
13895 F:      tools/perf/util/arm-spe*
13896 F:      tools/perf/util/cs-etm*
13897
13898 PERSONALITY HANDLING
13899 M:      Christoph Hellwig <[email protected]>
13900 L:      [email protected]
13901 S:      Maintained
13902 F:      include/linux/personality.h
13903 F:      include/uapi/linux/personality.h
13904
13905 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13906 M:      Marcus Folkesson <[email protected]>
13907 L:      [email protected]
13908 S:      Maintained
13909 F:      Documentation/input/devices/pxrc.rst
13910 F:      drivers/input/joystick/pxrc.c
13911
13912 PHONET PROTOCOL
13913 M:      Remi Denis-Courmont <[email protected]>
13914 S:      Supported
13915 F:      Documentation/networking/phonet.rst
13916 F:      include/linux/phonet.h
13917 F:      include/net/phonet/
13918 F:      include/uapi/linux/phonet.h
13919 F:      net/phonet/
13920
13921 PHRAM MTD DRIVER
13922 M:      Joern Engel <[email protected]>
13923 L:      [email protected]
13924 S:      Maintained
13925 F:      drivers/mtd/devices/phram.c
13926
13927 PICOLCD HID DRIVER
13928 M:      Bruno Prémont <[email protected]>
13929 L:      [email protected]
13930 S:      Maintained
13931 F:      drivers/hid/hid-picolcd*
13932
13933 PICOXCELL SUPPORT
13934 M:      Jamie Iles <[email protected]>
13935 L:      [email protected] (moderated for non-subscribers)
13936 S:      Supported
13937 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13938 F:      arch/arm/boot/dts/picoxcell*
13939 F:      arch/arm/mach-picoxcell/
13940 F:      drivers/crypto/picoxcell*
13941
13942 PIDFD API
13943 M:      Christian Brauner <[email protected]>
13944 L:      [email protected]
13945 S:      Maintained
13946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13947 F:      samples/pidfd/
13948 F:      tools/testing/selftests/clone3/
13949 F:      tools/testing/selftests/pid_namespace/
13950 F:      tools/testing/selftests/pidfd/
13951 K:      (?i)pidfd
13952 K:      (?i)clone3
13953 K:      \b(clone_args|kernel_clone_args)\b
13954
13955 PIN CONTROL SUBSYSTEM
13956 M:      Linus Walleij <[email protected]>
13957 L:      [email protected]
13958 S:      Maintained
13959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13960 F:      Documentation/devicetree/bindings/pinctrl/
13961 F:      Documentation/driver-api/pinctl.rst
13962 F:      drivers/pinctrl/
13963 F:      include/linux/pinctrl/
13964
13965 PIN CONTROLLER - FREESCALE
13966 M:      Dong Aisheng <[email protected]>
13967 M:      Fabio Estevam <[email protected]>
13968 M:      Shawn Guo <[email protected]>
13969 M:      Stefan Agner <[email protected]>
13970 R:      Pengutronix Kernel Team <[email protected]>
13971 L:      [email protected]
13972 S:      Maintained
13973 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13974 F:      drivers/pinctrl/freescale/
13975
13976 PIN CONTROLLER - INTEL
13977 M:      Mika Westerberg <[email protected]>
13978 M:      Andy Shevchenko <[email protected]>
13979 S:      Maintained
13980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13981 F:      drivers/pinctrl/intel/
13982
13983 PIN CONTROLLER - MEDIATEK
13984 M:      Sean Wang <[email protected]>
13985 L:      [email protected] (moderated for non-subscribers)
13986 S:      Maintained
13987 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13988 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13989 F:      drivers/pinctrl/mediatek/
13990
13991 PIN CONTROLLER - MICROCHIP AT91
13992 M:      Ludovic Desroches <[email protected]>
13993 L:      [email protected] (moderated for non-subscribers)
13994 L:      [email protected]
13995 S:      Supported
13996 F:      drivers/gpio/gpio-sama5d2-piobu.c
13997 F:      drivers/pinctrl/pinctrl-at91*
13998
13999 PIN CONTROLLER - QUALCOMM
14000 M:      Bjorn Andersson <[email protected]>
14001 L:      [email protected]
14002 S:      Maintained
14003 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14004 F:      drivers/pinctrl/qcom/
14005
14006 PIN CONTROLLER - RENESAS
14007 M:      Geert Uytterhoeven <[email protected]>
14008 L:      [email protected]
14009 S:      Supported
14010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14011 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14012 F:      drivers/pinctrl/renesas/
14013
14014 PIN CONTROLLER - SAMSUNG
14015 M:      Tomasz Figa <[email protected]>
14016 M:      Krzysztof Kozlowski <[email protected]>
14017 M:      Sylwester Nawrocki <[email protected]>
14018 L:      [email protected] (moderated for non-subscribers)
14019 L:      [email protected]
14020 S:      Maintained
14021 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14023 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14024 F:      drivers/pinctrl/samsung/
14025 F:      include/dt-bindings/pinctrl/samsung.h
14026
14027 PIN CONTROLLER - SINGLE
14028 M:      Tony Lindgren <[email protected]>
14029 M:      Haojian Zhuang <[email protected]>
14030 L:      [email protected] (moderated for non-subscribers)
14031 L:      [email protected]
14032 S:      Maintained
14033 F:      drivers/pinctrl/pinctrl-single.c
14034
14035 PIN CONTROLLER - ST SPEAR
14036 M:      Viresh Kumar <[email protected]>
14037 L:      [email protected] (moderated for non-subscribers)
14038 S:      Maintained
14039 W:      http://www.st.com/spear
14040 F:      drivers/pinctrl/spear/
14041
14042 PISTACHIO SOC SUPPORT
14043 M:      James Hartley <[email protected]>
14044 L:      [email protected]
14045 S:      Odd Fixes
14046 F:      arch/mips/boot/dts/img/pistachio*
14047 F:      arch/mips/configs/pistachio*_defconfig
14048 F:      arch/mips/include/asm/mach-pistachio/
14049 F:      arch/mips/pistachio/
14050
14051 PKTCDVD DRIVER
14052 M:      [email protected]
14053 S:      Orphan
14054 F:      drivers/block/pktcdvd.c
14055 F:      include/linux/pktcdvd.h
14056 F:      include/uapi/linux/pktcdvd.h
14057
14058 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14059 M:      Tomasz Duszynski <[email protected]>
14060 S:      Maintained
14061 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14062 F:      drivers/iio/chemical/pms7003.c
14063
14064 PLDMFW LIBRARY
14065 M:      Jacob Keller <[email protected]>
14066 S:      Maintained
14067 F:      Documentation/driver-api/pldmfw/
14068 F:      include/linux/pldmfw.h
14069 F:      lib/pldmfw/
14070
14071 PLX DMA DRIVER
14072 M:      Logan Gunthorpe <[email protected]>
14073 S:      Maintained
14074 F:      drivers/dma/plx_dma.c
14075
14076 PM6764TR DRIVER
14077 M:      Charles Hsu     <[email protected]>
14078 L:      [email protected]
14079 S:      Maintained
14080 F:      Documentation/hwmon/pm6764tr.rst
14081 F:      drivers/hwmon/pmbus/pm6764tr.c
14082
14083 PM-GRAPH UTILITY
14084 M:      "Todd E Brandt" <[email protected]>
14085 L:      [email protected]
14086 S:      Supported
14087 W:      https://01.org/pm-graph
14088 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14089 T:      git git://github.com/intel/pm-graph
14090 F:      tools/power/pm-graph
14091
14092 PMBUS HARDWARE MONITORING DRIVERS
14093 M:      Guenter Roeck <[email protected]>
14094 L:      [email protected]
14095 S:      Maintained
14096 W:      http://hwmon.wiki.kernel.org/
14097 W:      http://www.roeck-us.net/linux/drivers/
14098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14099 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14100 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14101 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14102 F:      Documentation/hwmon/adm1275.rst
14103 F:      Documentation/hwmon/ibm-cffps.rst
14104 F:      Documentation/hwmon/ir35221.rst
14105 F:      Documentation/hwmon/lm25066.rst
14106 F:      Documentation/hwmon/ltc2978.rst
14107 F:      Documentation/hwmon/ltc3815.rst
14108 F:      Documentation/hwmon/max16064.rst
14109 F:      Documentation/hwmon/max20751.rst
14110 F:      Documentation/hwmon/max31785.rst
14111 F:      Documentation/hwmon/max34440.rst
14112 F:      Documentation/hwmon/max8688.rst
14113 F:      Documentation/hwmon/pmbus-core.rst
14114 F:      Documentation/hwmon/pmbus.rst
14115 F:      Documentation/hwmon/tps40422.rst
14116 F:      Documentation/hwmon/ucd9000.rst
14117 F:      Documentation/hwmon/ucd9200.rst
14118 F:      Documentation/hwmon/zl6100.rst
14119 F:      drivers/hwmon/pmbus/
14120 F:      include/linux/pmbus.h
14121
14122 PMC SIERRA MaxRAID DRIVER
14123 L:      [email protected]
14124 S:      Orphan
14125 W:      http://www.pmc-sierra.com/
14126 F:      drivers/scsi/pmcraid.*
14127
14128 PMC SIERRA PM8001 DRIVER
14129 M:      Jack Wang <[email protected]>
14130 L:      [email protected]
14131 S:      Supported
14132 F:      drivers/scsi/pm8001/
14133
14134 PNI RM3100 IIO DRIVER
14135 M:      Song Qiang <[email protected]>
14136 L:      [email protected]
14137 S:      Maintained
14138 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
14139 F:      drivers/iio/magnetometer/rm3100*
14140
14141 PNP SUPPORT
14142 M:      "Rafael J. Wysocki" <[email protected]>
14143 L:      [email protected]
14144 S:      Maintained
14145 F:      drivers/pnp/
14146 F:      include/linux/pnp.h
14147
14148 POSIX CLOCKS and TIMERS
14149 M:      Thomas Gleixner <[email protected]>
14150 L:      [email protected]
14151 S:      Maintained
14152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14153 F:      fs/timerfd.c
14154 F:      include/linux/time_namespace.h
14155 F:      include/linux/timer*
14156 F:      kernel/time/*timer*
14157 F:      kernel/time/namespace.c
14158
14159 POWER MANAGEMENT CORE
14160 M:      "Rafael J. Wysocki" <[email protected]>
14161 L:      [email protected]
14162 S:      Supported
14163 B:      https://bugzilla.kernel.org
14164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14165 F:      drivers/base/power/
14166 F:      drivers/powercap/
14167 F:      include/linux/intel_rapl.h
14168 F:      include/linux/pm.h
14169 F:      include/linux/pm_*
14170 F:      include/linux/powercap.h
14171 F:      kernel/configs/nopm.config
14172
14173 POWER STATE COORDINATION INTERFACE (PSCI)
14174 M:      Mark Rutland <[email protected]>
14175 M:      Lorenzo Pieralisi <[email protected]>
14176 L:      [email protected]
14177 S:      Maintained
14178 F:      drivers/firmware/psci/
14179 F:      include/linux/psci.h
14180 F:      include/uapi/linux/psci.h
14181
14182 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14183 M:      Sebastian Reichel <[email protected]>
14184 L:      [email protected]
14185 S:      Maintained
14186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14187 F:      Documentation/ABI/testing/sysfs-class-power
14188 F:      Documentation/devicetree/bindings/power/supply/
14189 F:      drivers/power/supply/
14190 F:      include/linux/power_supply.h
14191
14192 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14193 M:      Suraj Jitindar Singh <[email protected]>
14194 L:      [email protected]
14195 S:      Maintained
14196 F:      drivers/char/powernv-op-panel.c
14197
14198 PPP OVER ATM (RFC 2364)
14199 M:      Mitchell Blank Jr <[email protected]>
14200 S:      Maintained
14201 F:      include/uapi/linux/atmppp.h
14202 F:      net/atm/pppoatm.c
14203
14204 PPP OVER ETHERNET
14205 M:      Michal Ostrowski <[email protected]>
14206 S:      Maintained
14207 F:      drivers/net/ppp/pppoe.c
14208 F:      drivers/net/ppp/pppox.c
14209
14210 PPP OVER L2TP
14211 M:      James Chapman <[email protected]>
14212 S:      Maintained
14213 F:      include/linux/if_pppol2tp.h
14214 F:      include/uapi/linux/if_pppol2tp.h
14215 F:      net/l2tp/l2tp_ppp.c
14216
14217 PPP PROTOCOL DRIVERS AND COMPRESSORS
14218 M:      Paul Mackerras <[email protected]>
14219 L:      [email protected]
14220 S:      Maintained
14221 F:      drivers/net/ppp/ppp_*
14222
14223 PPS SUPPORT
14224 M:      Rodolfo Giometti <[email protected]>
14225 L:      [email protected] (subscribers-only)
14226 S:      Maintained
14227 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14228 F:      Documentation/ABI/testing/sysfs-pps
14229 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14230 F:      Documentation/driver-api/pps.rst
14231 F:      drivers/pps/
14232 F:      include/linux/pps*.h
14233 F:      include/uapi/linux/pps.h
14234
14235 PPTP DRIVER
14236 M:      Dmitry Kozlov <[email protected]>
14237 L:      [email protected]
14238 S:      Maintained
14239 W:      http://sourceforge.net/projects/accel-pptp
14240 F:      drivers/net/ppp/pptp.c
14241
14242 PRESSURE STALL INFORMATION (PSI)
14243 M:      Johannes Weiner <[email protected]>
14244 S:      Maintained
14245 F:      include/linux/psi*
14246 F:      kernel/sched/psi.c
14247
14248 PRINTK
14249 M:      Petr Mladek <[email protected]>
14250 M:      Sergey Senozhatsky <[email protected]>
14251 R:      Steven Rostedt <[email protected]>
14252 R:      John Ogness <[email protected]>
14253 S:      Maintained
14254 F:      include/linux/printk.h
14255 F:      kernel/printk/
14256
14257 PRISM54 WIRELESS DRIVER
14258 M:      Luis Chamberlain <[email protected]>
14259 L:      [email protected]
14260 S:      Obsolete
14261 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14262 F:      drivers/net/wireless/intersil/prism54/
14263
14264 PROC FILESYSTEM
14265 R:      Alexey Dobriyan <[email protected]>
14266 L:      [email protected]
14267 L:      [email protected]
14268 S:      Maintained
14269 F:      Documentation/filesystems/proc.rst
14270 F:      fs/proc/
14271 F:      include/linux/proc_fs.h
14272 F:      tools/testing/selftests/proc/
14273
14274 PROC SYSCTL
14275 M:      Luis Chamberlain <[email protected]>
14276 M:      Kees Cook <[email protected]>
14277 M:      Iurii Zaikin <[email protected]>
14278 L:      [email protected]
14279 L:      [email protected]
14280 S:      Maintained
14281 F:      fs/proc/proc_sysctl.c
14282 F:      include/linux/sysctl.h
14283 F:      kernel/sysctl-test.c
14284 F:      kernel/sysctl.c
14285 F:      tools/testing/selftests/sysctl/
14286
14287 PS3 NETWORK SUPPORT
14288 M:      Geoff Levand <[email protected]>
14289 L:      [email protected]
14290 L:      [email protected]
14291 S:      Maintained
14292 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14293
14294 PS3 PLATFORM SUPPORT
14295 M:      Geoff Levand <[email protected]>
14296 L:      [email protected]
14297 S:      Maintained
14298 F:      arch/powerpc/boot/ps3*
14299 F:      arch/powerpc/include/asm/lv1call.h
14300 F:      arch/powerpc/include/asm/ps3*.h
14301 F:      arch/powerpc/platforms/ps3/
14302 F:      drivers/*/ps3*
14303 F:      drivers/ps3/
14304 F:      drivers/rtc/rtc-ps3.c
14305 F:      drivers/usb/host/*ps3.c
14306 F:      sound/ppc/snd_ps3*
14307
14308 PS3VRAM DRIVER
14309 M:      Jim Paris <[email protected]>
14310 M:      Geoff Levand <[email protected]>
14311 L:      [email protected]
14312 S:      Maintained
14313 F:      drivers/block/ps3vram.c
14314
14315 PSAMPLE PACKET SAMPLING SUPPORT
14316 M:      Yotam Gigi <[email protected]>
14317 S:      Maintained
14318 F:      include/net/psample.h
14319 F:      include/uapi/linux/psample.h
14320 F:      net/psample
14321
14322 PSTORE FILESYSTEM
14323 M:      Kees Cook <[email protected]>
14324 M:      Anton Vorontsov <[email protected]>
14325 M:      Colin Cross <[email protected]>
14326 M:      Tony Luck <[email protected]>
14327 S:      Maintained
14328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14329 F:      Documentation/admin-guide/ramoops.rst
14330 F:      Documentation/admin-guide/pstore-blk.rst
14331 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14332 F:      drivers/acpi/apei/erst.c
14333 F:      drivers/firmware/efi/efi-pstore.c
14334 F:      fs/pstore/
14335 F:      include/linux/pstore*
14336 K:      \b(pstore|ramoops)
14337
14338 PTP HARDWARE CLOCK SUPPORT
14339 M:      Richard Cochran <[email protected]>
14340 L:      [email protected]
14341 S:      Maintained
14342 W:      http://linuxptp.sourceforge.net/
14343 F:      Documentation/ABI/testing/sysfs-ptp
14344 F:      Documentation/driver-api/ptp.rst
14345 F:      drivers/net/phy/dp83640*
14346 F:      drivers/ptp/*
14347 F:      include/linux/ptp_cl*
14348
14349 PTRACE SUPPORT
14350 M:      Oleg Nesterov <[email protected]>
14351 S:      Maintained
14352 F:      arch/*/*/ptrace*.c
14353 F:      arch/*/include/asm/ptrace*.h
14354 F:      arch/*/ptrace*.c
14355 F:      include/asm-generic/syscall.h
14356 F:      include/linux/ptrace.h
14357 F:      include/linux/regset.h
14358 F:      include/linux/tracehook.h
14359 F:      include/uapi/linux/ptrace.h
14360 F:      include/uapi/linux/ptrace.h
14361 F:      kernel/ptrace.c
14362
14363 PULSE8-CEC DRIVER
14364 M:      Hans Verkuil <[email protected]>
14365 L:      [email protected]
14366 S:      Maintained
14367 T:      git git://linuxtv.org/media_tree.git
14368 F:      Documentation/admin-guide/media/pulse8-cec.rst
14369 F:      drivers/media/cec/usb/pulse8/
14370
14371 PVRUSB2 VIDEO4LINUX DRIVER
14372 M:      Mike Isely <[email protected]>
14373 L:      [email protected]       (subscribers-only)
14374 L:      [email protected]
14375 S:      Maintained
14376 W:      http://www.isely.net/pvrusb2/
14377 T:      git git://linuxtv.org/media_tree.git
14378 F:      Documentation/driver-api/media/drivers/pvrusb2*
14379 F:      drivers/media/usb/pvrusb2/
14380
14381 PWC WEBCAM DRIVER
14382 M:      Hans Verkuil <[email protected]>
14383 L:      [email protected]
14384 S:      Odd Fixes
14385 T:      git git://linuxtv.org/media_tree.git
14386 F:      drivers/media/usb/pwc/*
14387 F:      include/trace/events/pwc.h
14388
14389 PWM FAN DRIVER
14390 M:      Bartlomiej Zolnierkiewicz <[email protected]>
14391 L:      [email protected]
14392 S:      Supported
14393 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14394 F:      Documentation/hwmon/pwm-fan.rst
14395 F:      drivers/hwmon/pwm-fan.c
14396
14397 PWM IR Transmitter
14398 M:      Sean Young <[email protected]>
14399 L:      [email protected]
14400 S:      Maintained
14401 F:      drivers/media/rc/pwm-ir-tx.c
14402
14403 PWM SUBSYSTEM
14404 M:      Thierry Reding <[email protected]>
14405 R:      Uwe Kleine-König <[email protected]>
14406 M:      Lee Jones <[email protected]>
14407 L:      [email protected]
14408 S:      Maintained
14409 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
14410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14411 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14412 F:      Documentation/devicetree/bindings/pwm/
14413 F:      Documentation/driver-api/pwm.rst
14414 F:      drivers/gpio/gpio-mvebu.c
14415 F:      drivers/pwm/
14416 F:      drivers/video/backlight/pwm_bl.c
14417 F:      include/linux/pwm.h
14418 F:      include/linux/pwm_backlight.h
14419 K:      pwm_(config|apply_state|ops)
14420
14421 PXA GPIO DRIVER
14422 M:      Robert Jarzmik <[email protected]>
14423 L:      [email protected]
14424 S:      Maintained
14425 F:      drivers/gpio/gpio-pxa.c
14426
14427 PXA MMCI DRIVER
14428 S:      Orphan
14429
14430 PXA RTC DRIVER
14431 M:      Robert Jarzmik <[email protected]>
14432 L:      [email protected]
14433 S:      Maintained
14434
14435 PXA2xx/PXA3xx SUPPORT
14436 M:      Daniel Mack <[email protected]>
14437 M:      Haojian Zhuang <[email protected]>
14438 M:      Robert Jarzmik <[email protected]>
14439 L:      [email protected] (moderated for non-subscribers)
14440 S:      Maintained
14441 T:      git git://github.com/hzhuang1/linux.git
14442 T:      git git://github.com/rjarzmik/linux.git
14443 F:      arch/arm/boot/dts/pxa*
14444 F:      arch/arm/mach-pxa/
14445 F:      drivers/dma/pxa*
14446 F:      drivers/pcmcia/pxa2xx*
14447 F:      drivers/pinctrl/pxa/
14448 F:      drivers/spi/spi-pxa2xx*
14449 F:      drivers/usb/gadget/udc/pxa2*
14450 F:      include/sound/pxa2xx-lib.h
14451 F:      sound/arm/pxa*
14452 F:      sound/soc/pxa/
14453
14454 QAT DRIVER
14455 M:      Giovanni Cabiddu <[email protected]>
14456 L:      [email protected]
14457 S:      Supported
14458 F:      drivers/crypto/qat/
14459
14460 QCOM AUDIO (ASoC) DRIVERS
14461 M:      Patrick Lai <[email protected]>
14462 M:      Banajit Goswami <[email protected]>
14463 L:      [email protected] (moderated for non-subscribers)
14464 S:      Supported
14465 F:      sound/soc/qcom/
14466
14467 QCOM IPA DRIVER
14468 M:      Alex Elder <[email protected]>
14469 L:      [email protected]
14470 S:      Supported
14471 F:      drivers/net/ipa/
14472
14473 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14474 M:      Gabriel Somlo <[email protected]>
14475 M:      "Michael S. Tsirkin" <[email protected]>
14476 L:      [email protected]
14477 S:      Maintained
14478 F:      drivers/firmware/qemu_fw_cfg.c
14479 F:      include/uapi/linux/qemu_fw_cfg.h
14480
14481 QIB DRIVER
14482 M:      Dennis Dalessandro <[email protected]>
14483 M:      Mike Marciniszyn <[email protected]>
14484 L:      [email protected]
14485 S:      Supported
14486 F:      drivers/infiniband/hw/qib/
14487
14488 QLOGIC QL41xxx FCOE DRIVER
14489 M:      Saurav Kashyap <[email protected]>
14490 M:      Javed Hasan <[email protected]>
14491 M:      [email protected]
14492 L:      [email protected]
14493 S:      Supported
14494 F:      drivers/scsi/qedf/
14495
14496 QLOGIC QL41xxx ISCSI DRIVER
14497 M:      Nilesh Javali <[email protected]>
14498 M:      Manish Rangankar <[email protected]>
14499 M:      [email protected]
14500 L:      [email protected]
14501 S:      Supported
14502 F:      drivers/scsi/qedi/
14503
14504 QLOGIC QL4xxx ETHERNET DRIVER
14505 M:      Ariel Elior <[email protected]>
14506 M:      [email protected]
14507 L:      [email protected]
14508 S:      Supported
14509 F:      drivers/net/ethernet/qlogic/qed/
14510 F:      drivers/net/ethernet/qlogic/qede/
14511 F:      include/linux/qed/
14512
14513 QLOGIC QL4xxx RDMA DRIVER
14514 M:      Michal Kalderon <[email protected]>
14515 M:      Ariel Elior <[email protected]>
14516 L:      [email protected]
14517 S:      Supported
14518 F:      drivers/infiniband/hw/qedr/
14519 F:      include/uapi/rdma/qedr-abi.h
14520
14521 QLOGIC QLA1280 SCSI DRIVER
14522 M:      Michael Reed <[email protected]>
14523 L:      [email protected]
14524 S:      Maintained
14525 F:      drivers/scsi/qla1280.[ch]
14526
14527 QLOGIC QLA2XXX FC-SCSI DRIVER
14528 M:      Nilesh Javali <[email protected]>
14529 M:      [email protected]
14530 L:      [email protected]
14531 S:      Supported
14532 F:      drivers/scsi/qla2xxx/
14533
14534 QLOGIC QLA3XXX NETWORK DRIVER
14535 M:      [email protected]
14536 L:      [email protected]
14537 S:      Supported
14538 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14539
14540 QLOGIC QLA4XXX iSCSI DRIVER
14541 M:      Nilesh Javali <[email protected]>
14542 M:      Manish Rangankar <[email protected]>
14543 M:      [email protected]
14544 L:      [email protected]
14545 S:      Supported
14546 F:      drivers/scsi/qla4xxx/
14547
14548 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14549 M:      Shahed Shaikh <[email protected]>
14550 M:      Manish Chopra <[email protected]>
14551 M:      [email protected]
14552 L:      [email protected]
14553 S:      Supported
14554 F:      drivers/net/ethernet/qlogic/qlcnic/
14555
14556 QLOGIC QLGE 10Gb ETHERNET DRIVER
14557 M:      Manish Chopra <[email protected]>
14558 M:      [email protected]
14559 L:      [email protected]
14560 S:      Supported
14561 F:      drivers/staging/qlge/
14562
14563 QM1D1B0004 MEDIA DRIVER
14564 M:      Akihiro Tsukada <[email protected]>
14565 L:      [email protected]
14566 S:      Odd Fixes
14567 F:      drivers/media/tuners/qm1d1b0004*
14568
14569 QM1D1C0042 MEDIA DRIVER
14570 M:      Akihiro Tsukada <[email protected]>
14571 L:      [email protected]
14572 S:      Odd Fixes
14573 F:      drivers/media/tuners/qm1d1c0042*
14574
14575 QNX4 FILESYSTEM
14576 M:      Anders Larsen <[email protected]>
14577 S:      Maintained
14578 W:      http://www.alarsen.net/linux/qnx4fs/
14579 F:      fs/qnx4/
14580 F:      include/uapi/linux/qnx4_fs.h
14581 F:      include/uapi/linux/qnxtypes.h
14582
14583 QORIQ DPAA2 FSL-MC BUS DRIVER
14584 M:      Stuart Yoder <[email protected]>
14585 M:      Laurentiu Tudor <[email protected]>
14586 L:      [email protected]
14587 S:      Maintained
14588 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14589 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
14590 F:      drivers/bus/fsl-mc/
14591
14592 QT1010 MEDIA DRIVER
14593 M:      Antti Palosaari <[email protected]>
14594 L:      [email protected]
14595 S:      Maintained
14596 W:      https://linuxtv.org
14597 W:      http://palosaari.fi/linux/
14598 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14599 T:      git git://linuxtv.org/anttip/media_tree.git
14600 F:      drivers/media/tuners/qt1010*
14601
14602 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14603 M:      Kalle Valo <[email protected]>
14604 L:      [email protected]
14605 S:      Supported
14606 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14608 F:      drivers/net/wireless/ath/ath10k/
14609
14610 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14611 M:      Kalle Valo <[email protected]>
14612 L:      [email protected]
14613 S:      Supported
14614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14615 F:      drivers/net/wireless/ath/ath11k/
14616
14617 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14618 M:      QCA ath9k Development <[email protected]>
14619 L:      [email protected]
14620 S:      Supported
14621 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14622 F:      drivers/net/wireless/ath/ath9k/
14623
14624 QUALCOMM CAMERA SUBSYSTEM DRIVER
14625 M:      Robert Foss <[email protected]>
14626 M:      Todor Tomov <[email protected]>
14627 L:      [email protected]
14628 S:      Maintained
14629 F:      Documentation/admin-guide/media/qcom_camss.rst
14630 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14631 F:      drivers/media/platform/qcom/camss/
14632
14633 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14634 M:      Niklas Cassel <[email protected]>
14635 L:      [email protected]
14636 L:      [email protected]
14637 S:      Maintained
14638 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14639 F:      drivers/soc/qcom/cpr.c
14640
14641 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14642 M:      Ilia Lin <[email protected]>
14643 L:      [email protected]
14644 S:      Maintained
14645 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14646 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14647
14648 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14649 M:      Timur Tabi <[email protected]>
14650 L:      [email protected]
14651 S:      Maintained
14652 F:      drivers/net/ethernet/qualcomm/emac/
14653
14654 QUALCOMM ETHQOS ETHERNET DRIVER
14655 M:      Vinod Koul <[email protected]>
14656 L:      [email protected]
14657 S:      Maintained
14658 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14659 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14660
14661 QUALCOMM GENERIC INTERFACE I2C DRIVER
14662 M:      Akash Asthana <[email protected]>
14663 M:      Mukesh Savaliya <[email protected]>
14664 L:      [email protected]
14665 L:      [email protected]
14666 S:      Supported
14667 F:      drivers/i2c/busses/i2c-qcom-geni.c
14668
14669 QUALCOMM HEXAGON ARCHITECTURE
14670 M:      Brian Cain <[email protected]>
14671 L:      [email protected]
14672 S:      Supported
14673 F:      arch/hexagon/
14674
14675 QUALCOMM HIDMA DRIVER
14676 M:      Sinan Kaya <[email protected]>
14677 L:      [email protected]
14678 L:      [email protected]
14679 L:      [email protected]
14680 S:      Supported
14681 F:      drivers/dma/qcom/hidma*
14682
14683 QUALCOMM I2C CCI DRIVER
14684 M:      Loic Poulain <[email protected]>
14685 M:      Robert Foss <[email protected]>
14686 L:      [email protected]
14687 L:      [email protected]
14688 S:      Maintained
14689 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14690 F:      drivers/i2c/busses/i2c-qcom-cci.c
14691
14692 QUALCOMM IOMMU
14693 M:      Rob Clark <[email protected]>
14694 L:      [email protected]
14695 L:      [email protected]
14696 S:      Maintained
14697 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
14698
14699 QUALCOMM IPCC MAILBOX DRIVER
14700 M:      Manivannan Sadhasivam <[email protected]>
14701 L:      [email protected]
14702 S:      Supported
14703 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14704 F:      drivers/mailbox/qcom-ipcc.c
14705 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14706
14707 QUALCOMM IPQ4019 USB PHY DRIVER
14708 M:      Robert Marko <[email protected]>
14709 M:      Luka Perkov <[email protected]>
14710 L:      [email protected]
14711 S:      Maintained
14712 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
14713 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
14714
14715 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
14716 M:      Robert Marko <[email protected]>
14717 M:      Luka Perkov <[email protected]>
14718 L:      [email protected]
14719 S:      Maintained
14720 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
14721 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
14722
14723 QUALCOMM RMNET DRIVER
14724 M:      Subash Abhinov Kasiviswanathan <[email protected]>
14725 M:      Sean Tranchetti <[email protected]>
14726 L:      [email protected]
14727 S:      Maintained
14728 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
14729 F:      drivers/net/ethernet/qualcomm/rmnet/
14730 F:      include/linux/if_rmnet.h
14731
14732 QUALCOMM TSENS THERMAL DRIVER
14733 M:      Amit Kucheria <[email protected]>
14734 L:      [email protected]
14735 L:      [email protected]
14736 S:      Maintained
14737 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14738 F:      drivers/thermal/qcom/
14739
14740 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14741 M:      Stanimir Varbanov <[email protected]>
14742 L:      [email protected]
14743 L:      [email protected]
14744 S:      Maintained
14745 T:      git git://linuxtv.org/media_tree.git
14746 F:      Documentation/devicetree/bindings/media/*venus*
14747 F:      drivers/media/platform/qcom/venus/
14748
14749 QUALCOMM WCN36XX WIRELESS DRIVER
14750 M:      Kalle Valo <[email protected]>
14751 L:      [email protected]
14752 S:      Supported
14753 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14754 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14755 F:      drivers/net/wireless/ath/wcn36xx/
14756
14757 QUANTENNA QTNFMAC WIRELESS DRIVER
14758 M:      Igor Mitsyanko <[email protected]>
14759 R:      Sergey Matyukevich <[email protected]>
14760 L:      [email protected]
14761 S:      Maintained
14762 F:      drivers/net/wireless/quantenna
14763
14764 RADEON and AMDGPU DRM DRIVERS
14765 M:      Alex Deucher <[email protected]>
14766 M:      Christian König <[email protected]>
14767 L:      [email protected]
14768 S:      Supported
14769 T:      git git://people.freedesktop.org/~agd5f/linux
14770 F:      drivers/gpu/drm/amd/
14771 F:      drivers/gpu/drm/radeon/
14772 F:      include/uapi/drm/amdgpu_drm.h
14773 F:      include/uapi/drm/radeon_drm.h
14774
14775 RADEON FRAMEBUFFER DISPLAY DRIVER
14776 M:      Benjamin Herrenschmidt <[email protected]>
14777 L:      [email protected]
14778 S:      Maintained
14779 F:      drivers/video/fbdev/aty/radeon*
14780 F:      include/uapi/linux/radeonfb.h
14781
14782 RADIOSHARK RADIO DRIVER
14783 M:      Hans Verkuil <[email protected]>
14784 L:      [email protected]
14785 S:      Maintained
14786 T:      git git://linuxtv.org/media_tree.git
14787 F:      drivers/media/radio/radio-shark.c
14788
14789 RADIOSHARK2 RADIO DRIVER
14790 M:      Hans Verkuil <[email protected]>
14791 L:      [email protected]
14792 S:      Maintained
14793 T:      git git://linuxtv.org/media_tree.git
14794 F:      drivers/media/radio/radio-shark2.c
14795 F:      drivers/media/radio/radio-tea5777.c
14796
14797 RADOS BLOCK DEVICE (RBD)
14798 M:      Ilya Dryomov <[email protected]>
14799 R:      Dongsheng Yang <[email protected]>
14800 L:      [email protected]
14801 S:      Supported
14802 W:      http://ceph.com/
14803 T:      git git://github.com/ceph/ceph-client.git
14804 F:      Documentation/ABI/testing/sysfs-bus-rbd
14805 F:      drivers/block/rbd.c
14806 F:      drivers/block/rbd_types.h
14807
14808 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14809 M:      Paul Mackerras <[email protected]>
14810 L:      [email protected]
14811 S:      Maintained
14812 F:      drivers/video/fbdev/aty/aty128fb.c
14813
14814 RAINSHADOW-CEC DRIVER
14815 M:      Hans Verkuil <[email protected]>
14816 L:      [email protected]
14817 S:      Maintained
14818 T:      git git://linuxtv.org/media_tree.git
14819 F:      drivers/media/cec/usb/rainshadow/
14820
14821 RALINK MIPS ARCHITECTURE
14822 M:      John Crispin <[email protected]>
14823 L:      [email protected]
14824 S:      Maintained
14825 F:      arch/mips/ralink
14826
14827 RALINK RT2X00 WIRELESS LAN DRIVER
14828 M:      Stanislaw Gruszka <[email protected]>
14829 M:      Helmut Schaa <[email protected]>
14830 L:      [email protected]
14831 S:      Maintained
14832 F:      drivers/net/wireless/ralink/rt2x00/
14833
14834 RAMDISK RAM BLOCK DEVICE DRIVER
14835 M:      Jens Axboe <[email protected]>
14836 S:      Maintained
14837 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14838 F:      drivers/block/brd.c
14839
14840 RANCHU VIRTUAL BOARD FOR MIPS
14841 M:      Miodrag Dinic <[email protected]>
14842 L:      [email protected]
14843 S:      Supported
14844 F:      arch/mips/configs/generic/board-ranchu.config
14845 F:      arch/mips/generic/board-ranchu.c
14846
14847 RANDOM NUMBER DRIVER
14848 M:      "Theodore Ts'o" <[email protected]>
14849 S:      Maintained
14850 F:      drivers/char/random.c
14851
14852 RAPIDIO SUBSYSTEM
14853 M:      Matt Porter <[email protected]>
14854 M:      Alexandre Bounine <[email protected]>
14855 S:      Maintained
14856 F:      drivers/rapidio/
14857
14858 RAS INFRASTRUCTURE
14859 M:      Tony Luck <[email protected]>
14860 M:      Borislav Petkov <[email protected]>
14861 L:      [email protected]
14862 S:      Maintained
14863 F:      Documentation/admin-guide/ras.rst
14864 F:      drivers/ras/
14865 F:      include/linux/ras.h
14866 F:      include/ras/ras_event.h
14867
14868 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14869 L:      [email protected]
14870 S:      Orphan
14871 F:      drivers/net/wireless/ray*
14872
14873 RC-CORE / LIRC FRAMEWORK
14874 M:      Sean Young <[email protected]>
14875 L:      [email protected]
14876 S:      Maintained
14877 W:      http://linuxtv.org
14878 T:      git git://linuxtv.org/media_tree.git
14879 F:      Documentation/driver-api/media/rc-core.rst
14880 F:      Documentation/userspace-api/media/rc/
14881 F:      drivers/media/rc/
14882 F:      include/media/rc-map.h
14883 F:      include/media/rc-core.h
14884 F:      include/uapi/linux/lirc.h
14885
14886 RCMM REMOTE CONTROLS DECODER
14887 M:      Patrick Lerda <[email protected]>
14888 S:      Maintained
14889 F:      drivers/media/rc/ir-rcmm-decoder.c
14890
14891 RCUTORTURE TEST FRAMEWORK
14892 M:      "Paul E. McKenney" <[email protected]>
14893 M:      Josh Triplett <[email protected]>
14894 R:      Steven Rostedt <[email protected]>
14895 R:      Mathieu Desnoyers <[email protected]>
14896 R:      Lai Jiangshan <[email protected]>
14897 L:      [email protected]
14898 S:      Supported
14899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14900 F:      tools/testing/selftests/rcutorture
14901
14902 RDACM20 Camera Sensor
14903 M:      Jacopo Mondi <[email protected]>
14904 M:      Kieran Bingham <[email protected]>
14905 M:      Laurent Pinchart <[email protected]>
14906 M:      Niklas Söderlund <[email protected]>
14907 L:      [email protected]
14908 S:      Maintained
14909 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
14910 F:      drivers/media/i2c/max9271.c
14911 F:      drivers/media/i2c/max9271.h
14912 F:      drivers/media/i2c/rdacm20.c
14913
14914 RDC R-321X SoC
14915 M:      Florian Fainelli <[email protected]>
14916 S:      Maintained
14917
14918 RDC R6040 FAST ETHERNET DRIVER
14919 M:      Florian Fainelli <[email protected]>
14920 L:      [email protected]
14921 S:      Maintained
14922 F:      drivers/net/ethernet/rdc/r6040.c
14923
14924 RDMAVT - RDMA verbs software
14925 M:      Dennis Dalessandro <[email protected]>
14926 M:      Mike Marciniszyn <[email protected]>
14927 L:      [email protected]
14928 S:      Supported
14929 F:      drivers/infiniband/sw/rdmavt
14930
14931 RDS - RELIABLE DATAGRAM SOCKETS
14932 M:      Santosh Shilimkar <[email protected]>
14933 L:      [email protected]
14934 L:      [email protected]
14935 L:      [email protected] (moderated for non-subscribers)
14936 S:      Supported
14937 W:      https://oss.oracle.com/projects/rds/
14938 F:      Documentation/networking/rds.rst
14939 F:      net/rds/
14940
14941 RDT - RESOURCE ALLOCATION
14942 M:      Fenghua Yu <[email protected]>
14943 M:      Reinette Chatre <[email protected]>
14944 L:      [email protected]
14945 S:      Supported
14946 F:      Documentation/x86/resctrl*
14947 F:      arch/x86/include/asm/resctrl.h
14948 F:      arch/x86/kernel/cpu/resctrl/
14949 F:      tools/testing/selftests/resctrl/
14950
14951 READ-COPY UPDATE (RCU)
14952 M:      "Paul E. McKenney" <[email protected]>
14953 M:      Josh Triplett <[email protected]>
14954 R:      Steven Rostedt <[email protected]>
14955 R:      Mathieu Desnoyers <[email protected]>
14956 R:      Lai Jiangshan <[email protected]>
14957 R:      Joel Fernandes <[email protected]>
14958 L:      [email protected]
14959 S:      Supported
14960 W:      http://www.rdrop.com/users/paulmck/RCU/
14961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14962 F:      Documentation/RCU/
14963 F:      include/linux/rcu*
14964 F:      kernel/rcu/
14965 X:      Documentation/RCU/torture.rst
14966 X:      include/linux/srcu*.h
14967 X:      kernel/rcu/srcu*.c
14968
14969 REAL TIME CLOCK (RTC) SUBSYSTEM
14970 M:      Alessandro Zummo <[email protected]>
14971 M:      Alexandre Belloni <[email protected]>
14972 L:      [email protected]
14973 S:      Maintained
14974 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14976 F:      Documentation/admin-guide/rtc.rst
14977 F:      Documentation/devicetree/bindings/rtc/
14978 F:      drivers/rtc/
14979 F:      include/linux/platform_data/rtc-*
14980 F:      include/linux/rtc.h
14981 F:      include/linux/rtc/
14982 F:      include/uapi/linux/rtc.h
14983 F:      tools/testing/selftests/rtc/
14984
14985 REALTEK AUDIO CODECS
14986 M:      Oder Chiou <[email protected]>
14987 S:      Maintained
14988 F:      include/sound/rt*.h
14989 F:      sound/soc/codecs/rt*
14990
14991 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14992 M:      Linus Walleij <[email protected]>
14993 S:      Maintained
14994 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14995 F:      drivers/net/dsa/realtek-smi*
14996 F:      drivers/net/dsa/rtl83*
14997
14998 REALTEK WIRELESS DRIVER (rtlwifi family)
14999 M:      Ping-Ke Shih <[email protected]>
15000 L:      [email protected]
15001 S:      Maintained
15002 W:      https://wireless.wiki.kernel.org/
15003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15004 F:      drivers/net/wireless/realtek/rtlwifi/
15005
15006 REALTEK WIRELESS DRIVER (rtw88)
15007 M:      Yan-Hsuan Chuang <[email protected]>
15008 L:      [email protected]
15009 S:      Maintained
15010 F:      drivers/net/wireless/realtek/rtw88/
15011
15012 REDPINE WIRELESS DRIVER
15013 M:      Amitkumar Karwar <[email protected]>
15014 M:      Siva Rebbagondla <[email protected]>
15015 L:      [email protected]
15016 S:      Maintained
15017 F:      drivers/net/wireless/rsi/
15018
15019 REGISTER MAP ABSTRACTION
15020 M:      Mark Brown <[email protected]>
15021 L:      [email protected]
15022 S:      Supported
15023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15024 F:      Documentation/devicetree/bindings/regmap/
15025 F:      drivers/base/regmap/
15026 F:      include/linux/regmap.h
15027
15028 REISERFS FILE SYSTEM
15029 L:      [email protected]
15030 S:      Supported
15031 F:      fs/reiserfs/
15032
15033 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15034 M:      Ohad Ben-Cohen <[email protected]>
15035 M:      Bjorn Andersson <[email protected]>
15036 L:      [email protected]
15037 S:      Maintained
15038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15039 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15040 F:      Documentation/devicetree/bindings/remoteproc/
15041 F:      Documentation/staging/remoteproc.rst
15042 F:      drivers/remoteproc/
15043 F:      include/linux/remoteproc.h
15044 F:      include/linux/remoteproc/
15045
15046 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15047 M:      Ohad Ben-Cohen <[email protected]>
15048 M:      Bjorn Andersson <[email protected]>
15049 L:      [email protected]
15050 S:      Maintained
15051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15052 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15053 F:      Documentation/staging/rpmsg.rst
15054 F:      drivers/rpmsg/
15055 F:      include/linux/rpmsg.h
15056 F:      include/linux/rpmsg/
15057 F:      include/uapi/linux/rpmsg.h
15058 F:      samples/rpmsg/
15059
15060 RENESAS CLOCK DRIVERS
15061 M:      Geert Uytterhoeven <[email protected]>
15062 L:      [email protected]
15063 S:      Supported
15064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
15065 F:      Documentation/devicetree/bindings/clock/renesas,*
15066 F:      drivers/clk/renesas/
15067
15068 RENESAS EMEV2 I2C DRIVER
15069 M:      Wolfram Sang <[email protected]>
15070 S:      Supported
15071 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
15072 F:      drivers/i2c/busses/i2c-emev2.c
15073
15074 RENESAS ETHERNET DRIVERS
15075 R:      Sergei Shtylyov <[email protected]>
15076 L:      [email protected]
15077 L:      [email protected]
15078 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15079 F:      drivers/net/ethernet/renesas/
15080 F:      include/linux/sh_eth.h
15081
15082 RENESAS R-CAR GYROADC DRIVER
15083 M:      Marek Vasut <[email protected]>
15084 L:      [email protected]
15085 S:      Supported
15086 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
15087 F:      drivers/iio/adc/rcar-gyroadc.c
15088
15089 RENESAS R-CAR I2C DRIVERS
15090 M:      Wolfram Sang <[email protected]>
15091 S:      Supported
15092 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
15093 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
15094 F:      drivers/i2c/busses/i2c-rcar.c
15095 F:      drivers/i2c/busses/i2c-sh_mobile.c
15096
15097 RENESAS R-CAR THERMAL DRIVERS
15098 M:      Niklas Söderlund <[email protected]>
15099 L:      [email protected]
15100 S:      Supported
15101 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15102 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15103 F:      drivers/thermal/rcar_gen3_thermal.c
15104 F:      drivers/thermal/rcar_thermal.c
15105
15106 RENESAS RIIC DRIVER
15107 M:      Chris Brandt <[email protected]>
15108 S:      Supported
15109 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
15110 F:      drivers/i2c/busses/i2c-riic.c
15111
15112 RENESAS USB PHY DRIVER
15113 M:      Yoshihiro Shimoda <[email protected]>
15114 L:      [email protected]
15115 S:      Maintained
15116 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15117
15118 RESET CONTROLLER FRAMEWORK
15119 M:      Philipp Zabel <[email protected]>
15120 S:      Maintained
15121 T:      git git://git.pengutronix.de/git/pza/linux
15122 F:      Documentation/devicetree/bindings/reset/
15123 F:      Documentation/driver-api/reset.rst
15124 F:      drivers/reset/
15125 F:      include/dt-bindings/reset/
15126 F:      include/linux/reset-controller.h
15127 F:      include/linux/reset.h
15128 F:      include/linux/reset/
15129 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15130
15131 RESTARTABLE SEQUENCES SUPPORT
15132 M:      Mathieu Desnoyers <[email protected]>
15133 M:      Peter Zijlstra <[email protected]>
15134 M:      "Paul E. McKenney" <[email protected]>
15135 M:      Boqun Feng <[email protected]>
15136 L:      [email protected]
15137 S:      Supported
15138 F:      include/trace/events/rseq.h
15139 F:      include/uapi/linux/rseq.h
15140 F:      kernel/rseq.c
15141 F:      tools/testing/selftests/rseq/
15142
15143 RFKILL
15144 M:      Johannes Berg <[email protected]>
15145 L:      [email protected]
15146 S:      Maintained
15147 W:      https://wireless.wiki.kernel.org/
15148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15150 F:      Documentation/ABI/stable/sysfs-class-rfkill
15151 F:      Documentation/driver-api/rfkill.rst
15152 F:      include/linux/rfkill.h
15153 F:      include/uapi/linux/rfkill.h
15154 F:      net/rfkill/
15155
15156 RHASHTABLE
15157 M:      Thomas Graf <[email protected]>
15158 M:      Herbert Xu <[email protected]>
15159 L:      [email protected]
15160 S:      Maintained
15161 F:      include/linux/rhashtable-types.h
15162 F:      include/linux/rhashtable.h
15163 F:      lib/rhashtable.c
15164 F:      lib/test_rhashtable.c
15165
15166 RICOH R5C592 MEMORYSTICK DRIVER
15167 M:      Maxim Levitsky <[email protected]>
15168 S:      Maintained
15169 F:      drivers/memstick/host/r592.*
15170
15171 RICOH SMARTMEDIA/XD DRIVER
15172 M:      Maxim Levitsky <[email protected]>
15173 S:      Maintained
15174 F:      drivers/mtd/nand/raw/r852.c
15175 F:      drivers/mtd/nand/raw/r852.h
15176
15177 RISC-V ARCHITECTURE
15178 M:      Paul Walmsley <[email protected]>
15179 M:      Palmer Dabbelt <[email protected]>
15180 M:      Albert Ou <[email protected]>
15181 L:      [email protected]
15182 S:      Supported
15183 P:      Documentation/riscv/patch-acceptance.rst
15184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15185 F:      arch/riscv/
15186 N:      riscv
15187 K:      riscv
15188
15189 RNBD BLOCK DRIVERS
15190 M:      Danil Kipnis <[email protected]>
15191 M:      Jack Wang <[email protected]>
15192 L:      [email protected]
15193 S:      Maintained
15194 F:      drivers/block/rnbd/
15195
15196 ROCCAT DRIVERS
15197 M:      Stefan Achatz <[email protected]>
15198 S:      Maintained
15199 W:      http://sourceforge.net/projects/roccat/
15200 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15201 F:      drivers/hid/hid-roccat*
15202 F:      include/linux/hid-roccat*
15203
15204 ROCKCHIP ISP V1 DRIVER
15205 M:      Helen Koike <[email protected]>
15206 M:      Dafna Hirschfeld <[email protected]>
15207 L:      [email protected]
15208 L:      [email protected]
15209 S:      Maintained
15210 F:      Documentation/admin-guide/media/rkisp1.rst
15211 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15212 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15213 F:      drivers/media/platform/rockchip/rkisp1
15214 F:      include/uapi/linux/rkisp1-config.h
15215
15216 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15217 M:      Jacob Chen <[email protected]>
15218 M:      Ezequiel Garcia <[email protected]>
15219 L:      [email protected]
15220 L:      [email protected]
15221 S:      Maintained
15222 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15223 F:      drivers/media/platform/rockchip/rga/
15224
15225 ROCKCHIP VIDEO DECODER DRIVER
15226 M:      Ezequiel Garcia <[email protected]>
15227 L:      [email protected]
15228 L:      [email protected]
15229 S:      Maintained
15230 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15231 F:      drivers/staging/media/rkvdec/
15232
15233 ROCKER DRIVER
15234 M:      Jiri Pirko <[email protected]>
15235 L:      [email protected]
15236 S:      Supported
15237 F:      drivers/net/ethernet/rocker/
15238
15239 ROCKETPORT DRIVER
15240 S:      Maintained
15241 W:      http://www.comtrol.com
15242 F:      Documentation/driver-api/serial/rocket.rst
15243 F:      drivers/tty/rocket*
15244
15245 ROCKETPORT EXPRESS/INFINITY DRIVER
15246 M:      Kevin Cernekee <[email protected]>
15247 L:      [email protected]
15248 S:      Odd Fixes
15249 F:      drivers/tty/serial/rp2.*
15250
15251 ROHM BD99954 CHARGER IC
15252 R:      Matti Vaittinen <[email protected]>
15253 L:      [email protected]
15254 S:      Supported
15255 F:      drivers/power/supply/bd99954-charger.c
15256 F:      drivers/power/supply/bd99954-charger.h
15257
15258 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15259 M:      Tomasz Duszynski <[email protected]>
15260 S:      Maintained
15261 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15262 F:      drivers/iio/light/bh1750.c
15263
15264 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15265 M:      Marek Vasut <[email protected]>
15266 L:      [email protected]
15267 L:      [email protected]
15268 S:      Supported
15269 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15270 F:      drivers/gpio/gpio-bd9571mwv.c
15271 F:      drivers/mfd/bd9571mwv.c
15272 F:      drivers/regulator/bd9571mwv-regulator.c
15273 F:      include/linux/mfd/bd9571mwv.h
15274
15275 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15276 R:      Matti Vaittinen <[email protected]>
15277 L:      [email protected]
15278 S:      Supported
15279 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15280 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15281 F:      drivers/clk/clk-bd718x7.c
15282 F:      drivers/gpio/gpio-bd70528.c
15283 F:      drivers/gpio/gpio-bd71828.c
15284 F:      drivers/mfd/rohm-bd70528.c
15285 F:      drivers/mfd/rohm-bd71828.c
15286 F:      drivers/mfd/rohm-bd718x7.c
15287 F:      drivers/power/supply/bd70528-charger.c
15288 F:      drivers/regulator/bd70528-regulator.c
15289 F:      drivers/regulator/bd71828-regulator.c
15290 F:      drivers/regulator/bd718x7-regulator.c
15291 F:      drivers/regulator/rohm-regulator.c
15292 F:      drivers/rtc/rtc-bd70528.c
15293 F:      drivers/watchdog/bd70528_wdt.c
15294 F:      include/linux/mfd/rohm-bd70528.h
15295 F:      include/linux/mfd/rohm-bd71828.h
15296 F:      include/linux/mfd/rohm-bd718x7.h
15297 F:      include/linux/mfd/rohm-generic.h
15298 F:      include/linux/mfd/rohm-shared.h
15299
15300 ROSE NETWORK LAYER
15301 M:      Ralf Baechle <[email protected]>
15302 L:      [email protected]
15303 S:      Maintained
15304 W:      http://www.linux-ax25.org/
15305 F:      include/net/rose.h
15306 F:      include/uapi/linux/rose.h
15307 F:      net/rose/
15308
15309 ROTATION DRIVER FOR ALLWINNER A83T
15310 M:      Jernej Skrabec <[email protected]>
15311 L:      [email protected]
15312 S:      Maintained
15313 T:      git git://linuxtv.org/media_tree.git
15314 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15315 F:      drivers/media/platform/sunxi/sun8i-rotate/
15316
15317 RTL2830 MEDIA DRIVER
15318 M:      Antti Palosaari <[email protected]>
15319 L:      [email protected]
15320 S:      Maintained
15321 W:      https://linuxtv.org
15322 W:      http://palosaari.fi/linux/
15323 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15324 T:      git git://linuxtv.org/anttip/media_tree.git
15325 F:      drivers/media/dvb-frontends/rtl2830*
15326
15327 RTL2832 MEDIA DRIVER
15328 M:      Antti Palosaari <[email protected]>
15329 L:      [email protected]
15330 S:      Maintained
15331 W:      https://linuxtv.org
15332 W:      http://palosaari.fi/linux/
15333 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15334 T:      git git://linuxtv.org/anttip/media_tree.git
15335 F:      drivers/media/dvb-frontends/rtl2832*
15336
15337 RTL2832_SDR MEDIA DRIVER
15338 M:      Antti Palosaari <[email protected]>
15339 L:      [email protected]
15340 S:      Maintained
15341 W:      https://linuxtv.org
15342 W:      http://palosaari.fi/linux/
15343 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15344 T:      git git://linuxtv.org/anttip/media_tree.git
15345 F:      drivers/media/dvb-frontends/rtl2832_sdr*
15346
15347 RTL8180 WIRELESS DRIVER
15348 L:      [email protected]
15349 S:      Orphan
15350 W:      https://wireless.wiki.kernel.org/
15351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15352 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
15353
15354 RTL8187 WIRELESS DRIVER
15355 M:      Herton Ronaldo Krzesinski <[email protected]>
15356 M:      Hin-Tak Leung <[email protected]>
15357 M:      Larry Finger <[email protected]>
15358 L:      [email protected]
15359 S:      Maintained
15360 W:      https://wireless.wiki.kernel.org/
15361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15362 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
15363
15364 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15365 M:      Jes Sorensen <[email protected]>
15366 L:      [email protected]
15367 S:      Maintained
15368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15369 F:      drivers/net/wireless/realtek/rtl8xxxu/
15370
15371 RTRS TRANSPORT DRIVERS
15372 M:      Danil Kipnis <[email protected]>
15373 M:      Jack Wang <[email protected]>
15374 L:      [email protected]
15375 S:      Maintained
15376 F:      drivers/infiniband/ulp/rtrs/
15377
15378 RXRPC SOCKETS (AF_RXRPC)
15379 M:      David Howells <[email protected]>
15380 L:      [email protected]
15381 S:      Supported
15382 W:      https://www.infradead.org/~dhowells/kafs/
15383 F:      Documentation/networking/rxrpc.rst
15384 F:      include/keys/rxrpc-type.h
15385 F:      include/net/af_rxrpc.h
15386 F:      include/trace/events/rxrpc.h
15387 F:      include/uapi/linux/rxrpc.h
15388 F:      net/rxrpc/
15389
15390 S3 SAVAGE FRAMEBUFFER DRIVER
15391 M:      Antonino Daplas <[email protected]>
15392 L:      [email protected]
15393 S:      Maintained
15394 F:      drivers/video/fbdev/savage/
15395
15396 S390
15397 M:      Heiko Carstens <[email protected]>
15398 M:      Vasily Gorbik <[email protected]>
15399 M:      Christian Borntraeger <[email protected]>
15400 L:      [email protected]
15401 S:      Supported
15402 W:      http://www.ibm.com/developerworks/linux/linux390/
15403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15404 F:      Documentation/driver-api/s390-drivers.rst
15405 F:      Documentation/s390/
15406 F:      arch/s390/
15407 F:      drivers/s390/
15408
15409 S390 COMMON I/O LAYER
15410 M:      Vineeth Vijayan <[email protected]>
15411 M:      Peter Oberparleiter <[email protected]>
15412 L:      [email protected]
15413 S:      Supported
15414 W:      http://www.ibm.com/developerworks/linux/linux390/
15415 F:      drivers/s390/cio/
15416
15417 S390 DASD DRIVER
15418 M:      Stefan Haberland <[email protected]>
15419 M:      Jan Hoeppner <[email protected]>
15420 L:      [email protected]
15421 S:      Supported
15422 W:      http://www.ibm.com/developerworks/linux/linux390/
15423 F:      block/partitions/ibm.c
15424 F:      drivers/s390/block/dasd*
15425 F:      include/linux/dasd_mod.h
15426
15427 S390 IOMMU (PCI)
15428 M:      Matthew Rosato <[email protected]>
15429 M:      Gerald Schaefer <[email protected]>
15430 L:      [email protected]
15431 S:      Supported
15432 W:      http://www.ibm.com/developerworks/linux/linux390/
15433 F:      drivers/iommu/s390-iommu.c
15434
15435 S390 IUCV NETWORK LAYER
15436 M:      Julian Wiedmann <[email protected]>
15437 M:      Karsten Graul <[email protected]>
15438 L:      [email protected]
15439 S:      Supported
15440 W:      http://www.ibm.com/developerworks/linux/linux390/
15441 F:      drivers/s390/net/*iucv*
15442 F:      include/net/iucv/
15443 F:      net/iucv/
15444
15445 S390 NETWORK DRIVERS
15446 M:      Julian Wiedmann <[email protected]>
15447 M:      Karsten Graul <[email protected]>
15448 L:      [email protected]
15449 S:      Supported
15450 W:      http://www.ibm.com/developerworks/linux/linux390/
15451 F:      drivers/s390/net/
15452
15453 S390 PCI SUBSYSTEM
15454 M:      Niklas Schnelle <[email protected]>
15455 M:      Gerald Schaefer <[email protected]>
15456 L:      [email protected]
15457 S:      Supported
15458 W:      http://www.ibm.com/developerworks/linux/linux390/
15459 F:      arch/s390/pci/
15460 F:      drivers/pci/hotplug/s390_pci_hpc.c
15461 F:      Documentation/s390/pci.rst
15462
15463 S390 VFIO AP DRIVER
15464 M:      Tony Krowiak <[email protected]>
15465 M:      Pierre Morel <[email protected]>
15466 M:      Halil Pasic <[email protected]>
15467 L:      [email protected]
15468 S:      Supported
15469 W:      http://www.ibm.com/developerworks/linux/linux390/
15470 F:      Documentation/s390/vfio-ap.rst
15471 F:      drivers/s390/crypto/vfio_ap_drv.c
15472 F:      drivers/s390/crypto/vfio_ap_ops.c
15473 F:      drivers/s390/crypto/vfio_ap_private.h
15474
15475 S390 VFIO-CCW DRIVER
15476 M:      Cornelia Huck <[email protected]>
15477 M:      Eric Farman <[email protected]>
15478 R:      Halil Pasic <[email protected]>
15479 L:      [email protected]
15480 L:      [email protected]
15481 S:      Supported
15482 F:      Documentation/s390/vfio-ccw.rst
15483 F:      drivers/s390/cio/vfio_ccw*
15484 F:      include/uapi/linux/vfio_ccw.h
15485
15486 S390 VFIO-PCI DRIVER
15487 M:      Matthew Rosato <[email protected]>
15488 L:      [email protected]
15489 L:      [email protected]
15490 S:      Supported
15491 F:      drivers/vfio/pci/vfio_pci_zdev.c
15492 F:      include/uapi/linux/vfio_zdev.h
15493
15494 S390 ZCRYPT DRIVER
15495 M:      Harald Freudenberger <[email protected]>
15496 L:      [email protected]
15497 S:      Supported
15498 W:      http://www.ibm.com/developerworks/linux/linux390/
15499 F:      drivers/s390/crypto/
15500
15501 S390 ZFCP DRIVER
15502 M:      Steffen Maier <[email protected]>
15503 M:      Benjamin Block <[email protected]>
15504 L:      [email protected]
15505 S:      Supported
15506 W:      http://www.ibm.com/developerworks/linux/linux390/
15507 F:      drivers/s390/scsi/zfcp_*
15508
15509 S3C24XX SD/MMC Driver
15510 M:      Ben Dooks <[email protected]>
15511 L:      [email protected] (moderated for non-subscribers)
15512 S:      Supported
15513 F:      drivers/mmc/host/s3cmci.*
15514
15515 SAA6588 RDS RECEIVER DRIVER
15516 M:      Hans Verkuil <[email protected]>
15517 L:      [email protected]
15518 S:      Odd Fixes
15519 W:      https://linuxtv.org
15520 T:      git git://linuxtv.org/media_tree.git
15521 F:      drivers/media/i2c/saa6588*
15522
15523 SAA7134 VIDEO4LINUX DRIVER
15524 M:      Mauro Carvalho Chehab <[email protected]>
15525 L:      [email protected]
15526 S:      Odd fixes
15527 W:      https://linuxtv.org
15528 T:      git git://linuxtv.org/media_tree.git
15529 F:      Documentation/driver-api/media/drivers/saa7134*
15530 F:      drivers/media/pci/saa7134/
15531
15532 SAA7146 VIDEO4LINUX-2 DRIVER
15533 M:      Hans Verkuil <[email protected]>
15534 L:      [email protected]
15535 S:      Maintained
15536 T:      git git://linuxtv.org/media_tree.git
15537 F:      drivers/media/common/saa7146/
15538 F:      drivers/media/pci/saa7146/
15539 F:      include/media/drv-intf/saa7146*
15540
15541 SAFESETID SECURITY MODULE
15542 M:      Micah Morton <[email protected]>
15543 S:      Supported
15544 F:      Documentation/admin-guide/LSM/SafeSetID.rst
15545 F:      security/safesetid/
15546
15547 SAMSUNG AUDIO (ASoC) DRIVERS
15548 M:      Krzysztof Kozlowski <[email protected]>
15549 M:      Sylwester Nawrocki <[email protected]>
15550 L:      [email protected] (moderated for non-subscribers)
15551 S:      Supported
15552 F:      Documentation/devicetree/bindings/sound/samsung*
15553 F:      sound/soc/samsung/
15554
15555 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15556 M:      Krzysztof Kozlowski <[email protected]>
15557 L:      [email protected]
15558 L:      [email protected]
15559 S:      Maintained
15560 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15561 F:      drivers/crypto/exynos-rng.c
15562
15563 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15564 M:      Łukasz Stelmach <[email protected]>
15565 L:      [email protected]
15566 S:      Maintained
15567 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15568 F:      drivers/char/hw_random/exynos-trng.c
15569
15570 SAMSUNG FRAMEBUFFER DRIVER
15571 M:      Jingoo Han <[email protected]>
15572 L:      [email protected]
15573 S:      Maintained
15574 F:      drivers/video/fbdev/s3c-fb.c
15575
15576 SAMSUNG INTERCONNECT DRIVERS
15577 M:      Sylwester Nawrocki <[email protected]>
15578 M:      Artur Świgoń <[email protected]>
15579 L:      [email protected]
15580 L:      [email protected]
15581 S:      Supported
15582 F:      drivers/interconnect/samsung/
15583
15584 SAMSUNG LAPTOP DRIVER
15585 M:      Corentin Chary <[email protected]>
15586 L:      [email protected]
15587 S:      Maintained
15588 F:      drivers/platform/x86/samsung-laptop.c
15589
15590 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15591 M:      Krzysztof Kozlowski <[email protected]>
15592 M:      Bartlomiej Zolnierkiewicz <[email protected]>
15593 L:      [email protected]
15594 L:      [email protected]
15595 S:      Supported
15596 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15597 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15598 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15599 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15600 F:      drivers/clk/clk-s2mps11.c
15601 F:      drivers/mfd/sec*.c
15602 F:      drivers/regulator/s2m*.c
15603 F:      drivers/regulator/s5m*.c
15604 F:      drivers/rtc/rtc-s5m.c
15605 F:      include/linux/mfd/samsung/
15606
15607 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15608 M:      Sylwester Nawrocki <[email protected]>
15609 L:      [email protected]
15610 L:      [email protected]
15611 S:      Maintained
15612 F:      drivers/media/platform/s3c-camif/
15613 F:      include/media/drv-intf/s3c_camif.h
15614
15615 SAMSUNG S3FWRN5 NFC DRIVER
15616 M:      Krzysztof Kozlowski <[email protected]>
15617 M:      Krzysztof Opasiak <[email protected]>
15618 L:      [email protected] (moderated for non-subscribers)
15619 S:      Maintained
15620 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
15621 F:      drivers/nfc/s3fwrn5
15622
15623 SAMSUNG S5C73M3 CAMERA DRIVER
15624 M:      Andrzej Hajda <[email protected]>
15625 L:      [email protected]
15626 S:      Supported
15627 F:      drivers/media/i2c/s5c73m3/*
15628
15629 SAMSUNG S5K5BAF CAMERA DRIVER
15630 M:      Andrzej Hajda <[email protected]>
15631 L:      [email protected]
15632 S:      Supported
15633 F:      drivers/media/i2c/s5k5baf.c
15634
15635 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15636 M:      Krzysztof Kozlowski <[email protected]>
15637 M:      Vladimir Zapolskiy <[email protected]>
15638 M:      Kamil Konieczny <[email protected]>
15639 L:      [email protected]
15640 L:      [email protected]
15641 S:      Maintained
15642 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15643 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15644 F:      drivers/crypto/s5p-sss.c
15645
15646 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15647 M:      Sylwester Nawrocki <[email protected]>
15648 L:      [email protected]
15649 S:      Supported
15650 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15651 F:      drivers/media/platform/exynos4-is/
15652
15653 SAMSUNG SOC CLOCK DRIVERS
15654 M:      Sylwester Nawrocki <[email protected]>
15655 M:      Tomasz Figa <[email protected]>
15656 M:      Chanwoo Choi <[email protected]>
15657 L:      [email protected]
15658 S:      Supported
15659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15660 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15661 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15662 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15663 F:      drivers/clk/samsung/
15664 F:      include/dt-bindings/clock/exynos*.h
15665 F:      include/linux/clk/samsung.h
15666 F:      include/linux/platform_data/clk-s3c2410.h
15667
15668 SAMSUNG SPI DRIVERS
15669 M:      Krzysztof Kozlowski <[email protected]>
15670 M:      Andi Shyti <[email protected]>
15671 L:      [email protected]
15672 L:      [email protected]
15673 S:      Maintained
15674 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15675 F:      drivers/spi/spi-s3c*
15676 F:      include/linux/platform_data/spi-s3c64xx.h
15677 F:      include/linux/spi/s3c24xx-fiq.h
15678
15679 SAMSUNG SXGBE DRIVERS
15680 M:      Byungho An <[email protected]>
15681 L:      [email protected]
15682 S:      Supported
15683 F:      drivers/net/ethernet/samsung/sxgbe/
15684
15685 SAMSUNG THERMAL DRIVER
15686 M:      Bartlomiej Zolnierkiewicz <[email protected]>
15687 L:      [email protected]
15688 L:      [email protected]
15689 S:      Supported
15690 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15691 F:      drivers/thermal/samsung/
15692
15693 SAMSUNG USB2 PHY DRIVER
15694 M:      Sylwester Nawrocki <[email protected]>
15695 L:      [email protected]
15696 S:      Supported
15697 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15698 F:      Documentation/driver-api/phy/samsung-usb2.rst
15699 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15700 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15701 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15702 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15703 F:      drivers/phy/samsung/phy-samsung-usb2.c
15704 F:      drivers/phy/samsung/phy-samsung-usb2.h
15705
15706 SC1200 WDT DRIVER
15707 M:      Zwane Mwaikambo <[email protected]>
15708 S:      Maintained
15709 F:      drivers/watchdog/sc1200wdt.c
15710
15711 SCHEDULER
15712 M:      Ingo Molnar <[email protected]>
15713 M:      Peter Zijlstra <[email protected]>
15714 M:      Juri Lelli <[email protected]> (SCHED_DEADLINE)
15715 M:      Vincent Guittot <[email protected]> (SCHED_NORMAL)
15716 R:      Dietmar Eggemann <[email protected]> (SCHED_NORMAL)
15717 R:      Steven Rostedt <[email protected]> (SCHED_FIFO/SCHED_RR)
15718 R:      Ben Segall <[email protected]> (CONFIG_CFS_BANDWIDTH)
15719 R:      Mel Gorman <[email protected]> (CONFIG_NUMA_BALANCING)
15720 R:      Daniel Bristot de Oliveira <[email protected]> (SCHED_DEADLINE)
15721 L:      [email protected]
15722 S:      Maintained
15723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15724 F:      include/linux/preempt.h
15725 F:      include/linux/sched.h
15726 F:      include/linux/wait.h
15727 F:      include/uapi/linux/sched.h
15728 F:      kernel/sched/
15729
15730 SCR24X CHIP CARD INTERFACE DRIVER
15731 M:      Lubomir Rintel <[email protected]>
15732 S:      Supported
15733 F:      drivers/char/pcmcia/scr24x_cs.c
15734
15735 SCSI CDROM DRIVER
15736 M:      Jens Axboe <[email protected]>
15737 L:      [email protected]
15738 S:      Maintained
15739 W:      http://www.kernel.dk
15740 F:      drivers/scsi/sr*
15741
15742 SCSI RDMA PROTOCOL (SRP) INITIATOR
15743 M:      Bart Van Assche <[email protected]>
15744 L:      [email protected]
15745 S:      Supported
15746 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15747 F:      drivers/infiniband/ulp/srp/
15748 F:      include/scsi/srp.h
15749
15750 SCSI RDMA PROTOCOL (SRP) TARGET
15751 M:      Bart Van Assche <[email protected]>
15752 L:      [email protected]
15753 L:      [email protected]
15754 S:      Supported
15755 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15756 F:      drivers/infiniband/ulp/srpt/
15757
15758 SCSI SG DRIVER
15759 M:      Doug Gilbert <[email protected]>
15760 L:      [email protected]
15761 S:      Maintained
15762 W:      http://sg.danny.cz/sg
15763 F:      Documentation/scsi/scsi-generic.rst
15764 F:      drivers/scsi/sg.c
15765 F:      include/scsi/sg.h
15766
15767 SCSI SUBSYSTEM
15768 M:      "James E.J. Bottomley" <[email protected]>
15769 M:      "Martin K. Petersen" <[email protected]>
15770 L:      [email protected]
15771 S:      Maintained
15772 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15775 F:      Documentation/devicetree/bindings/scsi/
15776 F:      drivers/scsi/
15777 F:      include/scsi/
15778
15779 SCSI TAPE DRIVER
15780 M:      Kai Mäkisara <[email protected]>
15781 L:      [email protected]
15782 S:      Maintained
15783 F:      Documentation/scsi/st.rst
15784 F:      drivers/scsi/st.*
15785 F:      drivers/scsi/st_*.h
15786
15787 SCSI TARGET SUBSYSTEM
15788 M:      "Martin K. Petersen" <[email protected]>
15789 L:      [email protected]
15790 L:      [email protected]
15791 S:      Supported
15792 W:      http://www.linux-iscsi.org
15793 Q:      https://patchwork.kernel.org/project/target-devel/list/
15794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15795 F:      Documentation/target/
15796 F:      drivers/target/
15797 F:      include/target/
15798
15799 SCTP PROTOCOL
15800 M:      Vlad Yasevich <[email protected]>
15801 M:      Neil Horman <[email protected]>
15802 M:      Marcelo Ricardo Leitner <[email protected]>
15803 L:      [email protected]
15804 S:      Maintained
15805 W:      http://lksctp.sourceforge.net
15806 F:      Documentation/networking/sctp.rst
15807 F:      include/linux/sctp.h
15808 F:      include/net/sctp/
15809 F:      include/uapi/linux/sctp.h
15810 F:      net/sctp/
15811
15812 SCx200 CPU SUPPORT
15813 M:      Jim Cromie <[email protected]>
15814 S:      Odd Fixes
15815 F:      Documentation/i2c/busses/scx200_acb.rst
15816 F:      arch/x86/platform/scx200/
15817 F:      drivers/i2c/busses/scx200*
15818 F:      drivers/mtd/maps/scx200_docflash.c
15819 F:      drivers/watchdog/scx200_wdt.c
15820 F:      include/linux/scx200.h
15821
15822 SCx200 GPIO DRIVER
15823 M:      Jim Cromie <[email protected]>
15824 S:      Maintained
15825 F:      drivers/char/scx200_gpio.c
15826 F:      include/linux/scx200_gpio.h
15827
15828 SCx200 HRT CLOCKSOURCE DRIVER
15829 M:      Jim Cromie <[email protected]>
15830 S:      Maintained
15831 F:      drivers/clocksource/scx200_hrt.c
15832
15833 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15834 M:      Sascha Sommer <[email protected]>
15835 L:      [email protected] (subscribers-only)
15836 S:      Maintained
15837 F:      drivers/mmc/host/sdricoh_cs.c
15838
15839 SECO BOARDS CEC DRIVER
15840 M:      Ettore Chimenti <[email protected]>
15841 S:      Maintained
15842 F:      drivers/media/cec/platform/seco/seco-cec.c
15843 F:      drivers/media/cec/platform/seco/seco-cec.h
15844
15845 SECURE COMPUTING
15846 M:      Kees Cook <[email protected]>
15847 R:      Andy Lutomirski <[email protected]>
15848 R:      Will Drewry <[email protected]>
15849 S:      Supported
15850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15851 F:      Documentation/userspace-api/seccomp_filter.rst
15852 F:      include/linux/seccomp.h
15853 F:      include/uapi/linux/seccomp.h
15854 F:      kernel/seccomp.c
15855 F:      tools/testing/selftests/kselftest_harness.h
15856 F:      tools/testing/selftests/seccomp/*
15857 K:      \bsecure_computing
15858 K:      \bTIF_SECCOMP\b
15859
15860 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15861 M:      Al Cooper <[email protected]>
15862 L:      [email protected]
15863 L:      [email protected]
15864 S:      Maintained
15865 F:      drivers/mmc/host/sdhci-brcmstb*
15866
15867 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15868 M:      Adrian Hunter <[email protected]>
15869 L:      [email protected]
15870 S:      Maintained
15871 F:      drivers/mmc/host/sdhci*
15872 F:      include/linux/mmc/sdhci*
15873
15874 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15875 M:      Eugen Hristev <[email protected]>
15876 L:      [email protected]
15877 S:      Supported
15878 F:      drivers/mmc/host/sdhci-of-at91.c
15879
15880 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15881 M:      Ben Dooks <[email protected]>
15882 M:      Jaehoon Chung <[email protected]>
15883 L:      [email protected]
15884 S:      Maintained
15885 F:      drivers/mmc/host/sdhci-s3c*
15886
15887 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15888 M:      Viresh Kumar <[email protected]>
15889 L:      [email protected]
15890 S:      Maintained
15891 F:      drivers/mmc/host/sdhci-spear.c
15892
15893 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15894 M:      Kishon Vijay Abraham I <[email protected]>
15895 L:      [email protected]
15896 S:      Maintained
15897 F:      drivers/mmc/host/sdhci-omap.c
15898
15899 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15900 M:      Jonathan Derrick <[email protected]>
15901 M:      Revanth Rajashekar <[email protected]>
15902 L:      [email protected]
15903 S:      Supported
15904 F:      block/opal_proto.h
15905 F:      block/sed*
15906 F:      include/linux/sed*
15907 F:      include/uapi/linux/sed*
15908
15909 SECURITY CONTACT
15910 M:      Security Officers <[email protected]>
15911 S:      Supported
15912 F:      Documentation/admin-guide/security-bugs.rst
15913
15914 SECURITY SUBSYSTEM
15915 M:      James Morris <[email protected]>
15916 M:      "Serge E. Hallyn" <[email protected]>
15917 L:      [email protected] (suggested Cc:)
15918 S:      Supported
15919 W:      http://kernsec.org/
15920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15921 F:      security/
15922 X:      security/selinux/
15923
15924 SELINUX SECURITY MODULE
15925 M:      Paul Moore <[email protected]>
15926 M:      Stephen Smalley <[email protected]>
15927 M:      Eric Paris <[email protected]>
15928 L:      [email protected]
15929 S:      Supported
15930 W:      https://selinuxproject.org
15931 W:      https://github.com/SELinuxProject
15932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15933 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15934 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15935 F:      Documentation/admin-guide/LSM/SELinux.rst
15936 F:      include/trace/events/avc.h
15937 F:      include/uapi/linux/selinux_netlink.h
15938 F:      scripts/selinux/
15939 F:      security/selinux/
15940
15941 SENSABLE PHANTOM
15942 M:      Jiri Slaby <[email protected]>
15943 S:      Maintained
15944 F:      drivers/misc/phantom.c
15945 F:      include/uapi/linux/phantom.h
15946
15947 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
15948 M:      Tomasz Duszynski <[email protected]>
15949 S:      Maintained
15950 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
15951 F:      drivers/iio/chemical/scd30.h
15952 F:      drivers/iio/chemical/scd30_core.c
15953 F:      drivers/iio/chemical/scd30_i2c.c
15954 F:      drivers/iio/chemical/scd30_serial.c
15955
15956 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15957 M:      Tomasz Duszynski <[email protected]>
15958 S:      Maintained
15959 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15960 F:      drivers/iio/chemical/sps30.c
15961
15962 SERIAL DEVICE BUS
15963 M:      Rob Herring <[email protected]>
15964 L:      [email protected]
15965 S:      Maintained
15966 F:      Documentation/devicetree/bindings/serial/serial.yaml
15967 F:      drivers/tty/serdev/
15968 F:      include/linux/serdev.h
15969
15970 SERIAL DRIVERS
15971 M:      Greg Kroah-Hartman <[email protected]>
15972 L:      [email protected]
15973 S:      Maintained
15974 F:      Documentation/devicetree/bindings/serial/
15975 F:      drivers/tty/serial/
15976
15977 SERIAL IR RECEIVER
15978 M:      Sean Young <[email protected]>
15979 L:      [email protected]
15980 S:      Maintained
15981 F:      drivers/media/rc/serial_ir.c
15982
15983 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15984 M:      Srinivas Kandagatla <[email protected]>
15985 L:      [email protected] (moderated for non-subscribers)
15986 S:      Maintained
15987 F:      Documentation/devicetree/bindings/slimbus/
15988 F:      drivers/slimbus/
15989 F:      include/linux/slimbus.h
15990
15991 SFC NETWORK DRIVER
15992 M:      Edward Cree <[email protected]>
15993 M:      Martin Habets <[email protected]>
15994 L:      [email protected]
15995 S:      Supported
15996 F:      drivers/net/ethernet/sfc/
15997
15998 SFF/SFP/SFP+ MODULE SUPPORT
15999 M:      Russell King <[email protected]>
16000 L:      [email protected]
16001 S:      Maintained
16002 F:      drivers/net/phy/phylink.c
16003 F:      drivers/net/phy/sfp*
16004 F:      include/linux/mdio/mdio-i2c.h
16005 F:      include/linux/phylink.h
16006 F:      include/linux/sfp.h
16007 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)
16008
16009 SGI GRU DRIVER
16010 M:      Dimitri Sivanich <[email protected]>
16011 S:      Maintained
16012 F:      drivers/misc/sgi-gru/
16013
16014 SGI XP/XPC/XPNET DRIVER
16015 M:      Robin Holt <[email protected]>
16016 M:      Steve Wahl <[email protected]>
16017 R:      Mike Travis <[email protected]>
16018 S:      Maintained
16019 F:      drivers/misc/sgi-xp/
16020
16021 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16022 M:      Karsten Graul <[email protected]>
16023 L:      [email protected]
16024 S:      Supported
16025 W:      http://www.ibm.com/developerworks/linux/linux390/
16026 F:      net/smc/
16027
16028 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16029 M:      Linus Walleij <[email protected]>
16030 L:      [email protected]
16031 S:      Maintained
16032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16033 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16034 F:      drivers/iio/light/gp2ap002.c
16035
16036 SHARP RJ54N1CB0C SENSOR DRIVER
16037 M:      Jacopo Mondi <[email protected]>
16038 L:      [email protected]
16039 S:      Odd fixes
16040 T:      git git://linuxtv.org/media_tree.git
16041 F:      drivers/media/i2c/rj54n1cb0c.c
16042 F:      include/media/i2c/rj54n1cb0c.h
16043
16044 SH_VOU V4L2 OUTPUT DRIVER
16045 L:      [email protected]
16046 S:      Orphan
16047 F:      drivers/media/platform/sh_vou.c
16048 F:      include/media/drv-intf/sh_vou.h
16049
16050 SI2157 MEDIA DRIVER
16051 M:      Antti Palosaari <[email protected]>
16052 L:      [email protected]
16053 S:      Maintained
16054 W:      https://linuxtv.org
16055 W:      http://palosaari.fi/linux/
16056 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16057 T:      git git://linuxtv.org/anttip/media_tree.git
16058 F:      drivers/media/tuners/si2157*
16059
16060 SI2165 MEDIA DRIVER
16061 M:      Matthias Schwarzott <[email protected]>
16062 L:      [email protected]
16063 S:      Maintained
16064 W:      https://linuxtv.org
16065 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16066 F:      drivers/media/dvb-frontends/si2165*
16067
16068 SI2168 MEDIA DRIVER
16069 M:      Antti Palosaari <[email protected]>
16070 L:      [email protected]
16071 S:      Maintained
16072 W:      https://linuxtv.org
16073 W:      http://palosaari.fi/linux/
16074 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16075 T:      git git://linuxtv.org/anttip/media_tree.git
16076 F:      drivers/media/dvb-frontends/si2168*
16077
16078 SI470X FM RADIO RECEIVER I2C DRIVER
16079 M:      Hans Verkuil <[email protected]>
16080 L:      [email protected]
16081 S:      Odd Fixes
16082 W:      https://linuxtv.org
16083 T:      git git://linuxtv.org/media_tree.git
16084 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
16085
16086 SI470X FM RADIO RECEIVER USB DRIVER
16087 M:      Hans Verkuil <[email protected]>
16088 L:      [email protected]
16089 S:      Maintained
16090 W:      https://linuxtv.org
16091 T:      git git://linuxtv.org/media_tree.git
16092 F:      drivers/media/radio/si470x/radio-si470x-common.c
16093 F:      drivers/media/radio/si470x/radio-si470x-usb.c
16094 F:      drivers/media/radio/si470x/radio-si470x.h
16095
16096 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16097 M:      Eduardo Valentin <[email protected]>
16098 L:      [email protected]
16099 S:      Odd Fixes
16100 W:      https://linuxtv.org
16101 T:      git git://linuxtv.org/media_tree.git
16102 F:      drivers/media/radio/si4713/si4713.?
16103
16104 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16105 M:      Eduardo Valentin <[email protected]>
16106 L:      [email protected]
16107 S:      Odd Fixes
16108 W:      https://linuxtv.org
16109 T:      git git://linuxtv.org/media_tree.git
16110 F:      drivers/media/radio/si4713/radio-platform-si4713.c
16111
16112 SI4713 FM RADIO TRANSMITTER USB DRIVER
16113 M:      Hans Verkuil <[email protected]>
16114 L:      [email protected]
16115 S:      Maintained
16116 W:      https://linuxtv.org
16117 T:      git git://linuxtv.org/media_tree.git
16118 F:      drivers/media/radio/si4713/radio-usb-si4713.c
16119
16120 SIANO DVB DRIVER
16121 M:      Mauro Carvalho Chehab <[email protected]>
16122 L:      [email protected]
16123 S:      Odd fixes
16124 W:      https://linuxtv.org
16125 T:      git git://linuxtv.org/media_tree.git
16126 F:      drivers/media/common/siano/
16127 F:      drivers/media/mmc/siano/
16128 F:      drivers/media/usb/siano/
16129 F:      drivers/media/usb/siano/
16130
16131 SIFIVE DRIVERS
16132 M:      Palmer Dabbelt <[email protected]>
16133 M:      Paul Walmsley <[email protected]>
16134 L:      [email protected]
16135 S:      Supported
16136 T:      git git://github.com/sifive/riscv-linux.git
16137 N:      sifive
16138 K:      [^@]sifive
16139
16140 SIFIVE FU540 SYSTEM-ON-CHIP
16141 M:      Paul Walmsley <[email protected]>
16142 M:      Palmer Dabbelt <[email protected]>
16143 L:      [email protected]
16144 S:      Supported
16145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16146 N:      fu540
16147 K:      fu540
16148
16149 SIFIVE PDMA DRIVER
16150 M:      Green Wan <[email protected]>
16151 S:      Maintained
16152 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16153 F:      drivers/dma/sf-pdma/
16154
16155 SILEAD TOUCHSCREEN DRIVER
16156 M:      Hans de Goede <[email protected]>
16157 L:      [email protected]
16158 L:      [email protected]
16159 S:      Maintained
16160 F:      drivers/input/touchscreen/silead.c
16161 F:      drivers/platform/x86/touchscreen_dmi.c
16162
16163 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16164 M:      Jérôme Pouiller <[email protected]>
16165 S:      Supported
16166 F:      drivers/staging/wfx/
16167
16168 SILICON MOTION SM712 FRAME BUFFER DRIVER
16169 M:      Sudip Mukherjee <[email protected]>
16170 M:      Teddy Wang <[email protected]>
16171 M:      Sudip Mukherjee <[email protected]>
16172 L:      [email protected]
16173 S:      Maintained
16174 F:      Documentation/fb/sm712fb.rst
16175 F:      drivers/video/fbdev/sm712*
16176
16177 SIMPLE FIRMWARE INTERFACE (SFI)
16178 S:      Obsolete
16179 W:      http://simplefirmware.org/
16180 F:      arch/x86/platform/sfi/
16181 F:      drivers/sfi/
16182 F:      include/linux/sfi*.h
16183
16184 SIMPLEFB FB DRIVER
16185 M:      Hans de Goede <[email protected]>
16186 L:      [email protected]
16187 S:      Maintained
16188 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16189 F:      drivers/video/fbdev/simplefb.c
16190 F:      include/linux/platform_data/simplefb.h
16191
16192 SIMTEC EB110ATX (Chalice CATS)
16193 M:      Simtec Linux Team <[email protected]>
16194 S:      Supported
16195 W:      http://www.simtec.co.uk/products/EB110ATX/
16196
16197 SIMTEC EB2410ITX (BAST)
16198 M:      Simtec Linux Team <[email protected]>
16199 S:      Supported
16200 W:      http://www.simtec.co.uk/products/EB2410ITX/
16201 F:      arch/arm/mach-s3c/bast-ide.c
16202 F:      arch/arm/mach-s3c/bast-irq.c
16203 F:      arch/arm/mach-s3c/mach-bast.c
16204
16205 SIOX
16206 M:      Thorsten Scherer <[email protected]>
16207 M:      Uwe Kleine-König <[email protected]>
16208 R:      Pengutronix Kernel Team <[email protected]>
16209 S:      Supported
16210 F:      drivers/gpio/gpio-siox.c
16211 F:      drivers/siox/*
16212 F:      include/trace/events/siox.h
16213
16214 SIPHASH PRF ROUTINES
16215 M:      Jason A. Donenfeld <[email protected]>
16216 S:      Maintained
16217 F:      include/linux/siphash.h
16218 F:      lib/siphash.c
16219 F:      lib/test_siphash.c
16220
16221 SIS 190 ETHERNET DRIVER
16222 M:      Francois Romieu <[email protected]>
16223 L:      [email protected]
16224 S:      Maintained
16225 F:      drivers/net/ethernet/sis/sis190.c
16226
16227 SIS 900/7016 FAST ETHERNET DRIVER
16228 M:      Daniele Venzano <[email protected]>
16229 L:      [email protected]
16230 S:      Maintained
16231 W:      http://www.brownhat.org/sis900.html
16232 F:      drivers/net/ethernet/sis/sis900.*
16233
16234 SIS FRAMEBUFFER DRIVER
16235 M:      Thomas Winischhofer <[email protected]>
16236 S:      Maintained
16237 W:      http://www.winischhofer.net/linuxsisvga.shtml
16238 F:      Documentation/fb/sisfb.rst
16239 F:      drivers/video/fbdev/sis/
16240 F:      include/video/sisfb.h
16241
16242 SIS I2C TOUCHSCREEN DRIVER
16243 M:      Mika Penttilä <[email protected]>
16244 L:      [email protected]
16245 S:      Maintained
16246 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16247 F:      drivers/input/touchscreen/sis_i2c.c
16248
16249 SIS USB2VGA DRIVER
16250 M:      Thomas Winischhofer <[email protected]>
16251 S:      Maintained
16252 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16253 F:      drivers/usb/misc/sisusbvga/
16254
16255 SLAB ALLOCATOR
16256 M:      Christoph Lameter <[email protected]>
16257 M:      Pekka Enberg <[email protected]>
16258 M:      David Rientjes <[email protected]>
16259 M:      Joonsoo Kim <[email protected]>
16260 M:      Andrew Morton <[email protected]>
16261 L:      [email protected]
16262 S:      Maintained
16263 F:      include/linux/sl?b*.h
16264 F:      mm/sl?b*
16265
16266 SLEEPABLE READ-COPY UPDATE (SRCU)
16267 M:      Lai Jiangshan <[email protected]>
16268 M:      "Paul E. McKenney" <[email protected]>
16269 M:      Josh Triplett <[email protected]>
16270 R:      Steven Rostedt <[email protected]>
16271 R:      Mathieu Desnoyers <[email protected]>
16272 L:      [email protected]
16273 S:      Supported
16274 W:      http://www.rdrop.com/users/paulmck/RCU/
16275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16276 F:      include/linux/srcu*.h
16277 F:      kernel/rcu/srcu*.c
16278
16279 SMACK SECURITY MODULE
16280 M:      Casey Schaufler <[email protected]>
16281 L:      [email protected]
16282 S:      Maintained
16283 W:      http://schaufler-ca.com
16284 T:      git git://github.com/cschaufler/smack-next
16285 F:      Documentation/admin-guide/LSM/Smack.rst
16286 F:      security/smack/
16287
16288 SMC91x ETHERNET DRIVER
16289 M:      Nicolas Pitre <[email protected]>
16290 S:      Odd Fixes
16291 F:      drivers/net/ethernet/smsc/smc91x.*
16292
16293 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
16294 M:      Mark Rutland <[email protected]>
16295 M:      Lorenzo Pieralisi <[email protected]>
16296 M:      Sudeep Holla <[email protected]>
16297 L:      [email protected]
16298 S:      Maintained
16299 F:      drivers/firmware/smccc/
16300 F:      include/linux/arm-smccc.h
16301
16302 SMM665 HARDWARE MONITOR DRIVER
16303 M:      Guenter Roeck <[email protected]>
16304 L:      [email protected]
16305 S:      Maintained
16306 F:      Documentation/hwmon/smm665.rst
16307 F:      drivers/hwmon/smm665.c
16308
16309 SMSC EMC2103 HARDWARE MONITOR DRIVER
16310 M:      Steve Glendinning <[email protected]>
16311 L:      [email protected]
16312 S:      Maintained
16313 F:      Documentation/hwmon/emc2103.rst
16314 F:      drivers/hwmon/emc2103.c
16315
16316 SMSC SCH5627 HARDWARE MONITOR DRIVER
16317 M:      Hans de Goede <[email protected]>
16318 L:      [email protected]
16319 S:      Supported
16320 F:      Documentation/hwmon/sch5627.rst
16321 F:      drivers/hwmon/sch5627.c
16322
16323 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16324 M:      Steve Glendinning <[email protected]>
16325 L:      [email protected]
16326 S:      Maintained
16327 F:      drivers/video/fbdev/smscufx.c
16328
16329 SMSC47B397 HARDWARE MONITOR DRIVER
16330 M:      Jean Delvare <[email protected]>
16331 L:      [email protected]
16332 S:      Maintained
16333 F:      Documentation/hwmon/smsc47b397.rst
16334 F:      drivers/hwmon/smsc47b397.c
16335
16336 SMSC911x ETHERNET DRIVER
16337 M:      Steve Glendinning <[email protected]>
16338 L:      [email protected]
16339 S:      Maintained
16340 F:      drivers/net/ethernet/smsc/smsc911x.*
16341 F:      include/linux/smsc911x.h
16342
16343 SMSC9420 PCI ETHERNET DRIVER
16344 M:      Steve Glendinning <[email protected]>
16345 L:      [email protected]
16346 S:      Maintained
16347 F:      drivers/net/ethernet/smsc/smsc9420.*
16348
16349 SOCIONEXT (SNI) AVE NETWORK DRIVER
16350 M:      Kunihiko Hayashi <[email protected]>
16351 L:      [email protected]
16352 S:      Maintained
16353 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16354 F:      drivers/net/ethernet/socionext/sni_ave.c
16355
16356 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16357 M:      Jassi Brar <[email protected]>
16358 M:      Ilias Apalodimas <[email protected]>
16359 L:      [email protected]
16360 S:      Maintained
16361 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
16362 F:      drivers/net/ethernet/socionext/netsec.c
16363
16364 SOCIONEXT (SNI) Synquacer SPI DRIVER
16365 M:      Masahisa Kojima <[email protected]>
16366 M:      Jassi Brar <[email protected]>
16367 L:      [email protected]
16368 S:      Maintained
16369 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
16370 F:      drivers/spi/spi-synquacer.c
16371
16372 SOCIONEXT SYNQUACER I2C DRIVER
16373 M:      Ard Biesheuvel <[email protected]>
16374 L:      [email protected]
16375 S:      Maintained
16376 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16377 F:      drivers/i2c/busses/i2c-synquacer.c
16378
16379 SOCIONEXT UNIPHIER SOUND DRIVER
16380 L:      [email protected] (moderated for non-subscribers)
16381 S:      Orphan
16382 F:      sound/soc/uniphier/
16383
16384 SOEKRIS NET48XX LED SUPPORT
16385 M:      Chris Boot <[email protected]>
16386 S:      Maintained
16387 F:      drivers/leds/leds-net48xx.c
16388
16389 SOFT-IWARP DRIVER (siw)
16390 M:      Bernard Metzler <[email protected]>
16391 L:      [email protected]
16392 S:      Supported
16393 F:      drivers/infiniband/sw/siw/
16394 F:      include/uapi/rdma/siw-abi.h
16395
16396 SOFT-ROCE DRIVER (rxe)
16397 M:      Zhu Yanjun <[email protected]>
16398 L:      [email protected]
16399 S:      Supported
16400 F:      drivers/infiniband/sw/rxe/
16401 F:      include/uapi/rdma/rdma_user_rxe.h
16402
16403 SOFTLOGIC 6x10 MPEG CODEC
16404 M:      Bluecherry Maintainers <[email protected]>
16405 M:      Anton Sviridenko <[email protected]>
16406 M:      Andrey Utkin <[email protected]>
16407 M:      Ismael Luceno <[email protected]>
16408 L:      [email protected]
16409 S:      Supported
16410 F:      drivers/media/pci/solo6x10/
16411
16412 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16413 M:      James Morse <[email protected]>
16414 L:      [email protected]
16415 S:      Maintained
16416 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
16417 F:      drivers/firmware/arm_sdei.c
16418 F:      include/linux/arm_sdei.h
16419 F:      include/uapi/linux/arm_sdei.h
16420
16421 SOFTWARE RAID (Multiple Disks) SUPPORT
16422 M:      Song Liu <[email protected]>
16423 L:      [email protected]
16424 S:      Supported
16425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16426 F:      drivers/md/Kconfig
16427 F:      drivers/md/Makefile
16428 F:      drivers/md/md*
16429 F:      drivers/md/raid*
16430 F:      include/linux/raid/
16431 F:      include/uapi/linux/raid/
16432
16433 SOLIDRUN CLEARFOG SUPPORT
16434 M:      Russell King <[email protected]>
16435 S:      Maintained
16436 F:      arch/arm/boot/dts/armada-388-clearfog*
16437 F:      arch/arm/boot/dts/armada-38x-solidrun-*
16438
16439 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16440 M:      Russell King <[email protected]>
16441 S:      Maintained
16442 F:      arch/arm/boot/dts/imx6*-cubox-i*
16443 F:      arch/arm/boot/dts/imx6*-hummingboard*
16444 F:      arch/arm/boot/dts/imx6*-sr-*
16445
16446 SONIC NETWORK DRIVER
16447 M:      Thomas Bogendoerfer <[email protected]>
16448 L:      [email protected]
16449 S:      Maintained
16450 F:      drivers/net/ethernet/natsemi/sonic.*
16451
16452 SONICS SILICON BACKPLANE DRIVER (SSB)
16453 M:      Michael Buesch <[email protected]>
16454 L:      [email protected]
16455 S:      Maintained
16456 F:      drivers/ssb/
16457 F:      include/linux/ssb/
16458
16459 SONY IMX214 SENSOR DRIVER
16460 M:      Ricardo Ribalda <[email protected]>
16461 L:      [email protected]
16462 S:      Maintained
16463 T:      git git://linuxtv.org/media_tree.git
16464 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
16465 F:      drivers/media/i2c/imx214.c
16466
16467 SONY IMX219 SENSOR DRIVER
16468 M:      Dave Stevenson <[email protected]>
16469 L:      [email protected]
16470 S:      Maintained
16471 T:      git git://linuxtv.org/media_tree.git
16472 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
16473 F:      drivers/media/i2c/imx219.c
16474
16475 SONY IMX258 SENSOR DRIVER
16476 M:      Sakari Ailus <[email protected]>
16477 L:      [email protected]
16478 S:      Maintained
16479 T:      git git://linuxtv.org/media_tree.git
16480 F:      drivers/media/i2c/imx258.c
16481
16482 SONY IMX274 SENSOR DRIVER
16483 M:      Leon Luo <[email protected]>
16484 L:      [email protected]
16485 S:      Maintained
16486 T:      git git://linuxtv.org/media_tree.git
16487 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
16488 F:      drivers/media/i2c/imx274.c
16489
16490 SONY IMX290 SENSOR DRIVER
16491 M:      Manivannan Sadhasivam <[email protected]>
16492 L:      [email protected]
16493 S:      Maintained
16494 T:      git git://linuxtv.org/media_tree.git
16495 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
16496 F:      drivers/media/i2c/imx290.c
16497
16498 SONY IMX319 SENSOR DRIVER
16499 M:      Bingbu Cao <[email protected]>
16500 L:      [email protected]
16501 S:      Maintained
16502 T:      git git://linuxtv.org/media_tree.git
16503 F:      drivers/media/i2c/imx319.c
16504
16505 SONY IMX355 SENSOR DRIVER
16506 M:      Tianshu Qiu <[email protected]>
16507 L:      [email protected]
16508 S:      Maintained
16509 T:      git git://linuxtv.org/media_tree.git
16510 F:      drivers/media/i2c/imx355.c
16511
16512 SONY MEMORYSTICK SUBSYSTEM
16513 M:      Maxim Levitsky <[email protected]>
16514 M:      Alex Dubov <[email protected]>
16515 M:      Ulf Hansson <[email protected]>
16516 L:      [email protected]
16517 S:      Maintained
16518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
16519 F:      drivers/memstick/
16520 F:      include/linux/memstick.h
16521
16522 SONY VAIO CONTROL DEVICE DRIVER
16523 M:      Mattia Dongili <[email protected]>
16524 L:      [email protected]
16525 S:      Maintained
16526 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
16527 F:      Documentation/admin-guide/laptops/sony-laptop.rst
16528 F:      drivers/char/sonypi.c
16529 F:      drivers/platform/x86/sony-laptop.c
16530 F:      include/linux/sony-laptop.h
16531
16532 SOUND
16533 M:      Jaroslav Kysela <[email protected]>
16534 M:      Takashi Iwai <[email protected]>
16535 L:      [email protected] (moderated for non-subscribers)
16536 S:      Maintained
16537 W:      http://www.alsa-project.org/
16538 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
16539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16540 F:      Documentation/sound/
16541 F:      include/sound/
16542 F:      include/uapi/sound/
16543 F:      sound/
16544
16545 SOUND - COMPRESSED AUDIO
16546 M:      Vinod Koul <[email protected]>
16547 L:      [email protected] (moderated for non-subscribers)
16548 S:      Supported
16549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16550 F:      Documentation/sound/designs/compress-offload.rst
16551 F:      include/sound/compress_driver.h
16552 F:      include/uapi/sound/compress_*
16553 F:      sound/core/compress_offload.c
16554 F:      sound/soc/soc-compress.c
16555
16556 SOUND - DMAENGINE HELPERS
16557 M:      Lars-Peter Clausen <[email protected]>
16558 S:      Supported
16559 F:      include/sound/dmaengine_pcm.h
16560 F:      sound/core/pcm_dmaengine.c
16561 F:      sound/soc/soc-generic-dmaengine-pcm.c
16562
16563 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
16564 M:      Liam Girdwood <[email protected]>
16565 M:      Mark Brown <[email protected]>
16566 L:      [email protected] (moderated for non-subscribers)
16567 S:      Supported
16568 W:      http://alsa-project.org/main/index.php/ASoC
16569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16570 F:      Documentation/devicetree/bindings/sound/
16571 F:      Documentation/sound/soc/
16572 F:      include/dt-bindings/sound/
16573 F:      include/sound/soc*
16574 F:      sound/soc/
16575
16576 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16577 M:      Pierre-Louis Bossart <[email protected]>
16578 M:      Liam Girdwood <[email protected]>
16579 M:      Ranjani Sridharan <[email protected]>
16580 M:      Kai Vehmanen <[email protected]>
16581 M:      Daniel Baluta <[email protected]>
16582 L:      [email protected] (moderated for non-subscribers)
16583 S:      Supported
16584 W:      https://github.com/thesofproject/linux/
16585 F:      sound/soc/sof/
16586
16587 SOUNDWIRE SUBSYSTEM
16588 M:      Vinod Koul <[email protected]>
16589 M:      Bard Liao <[email protected]>
16590 R:      Pierre-Louis Bossart <[email protected]>
16591 R:      Sanyog Kale <[email protected]>
16592 L:      [email protected] (moderated for non-subscribers)
16593 S:      Supported
16594 F:      Documentation/driver-api/soundwire/
16595 F:      drivers/soundwire/
16596 F:      include/linux/soundwire/
16597
16598 SP2 MEDIA DRIVER
16599 M:      Olli Salonen <[email protected]>
16600 L:      [email protected]
16601 S:      Maintained
16602 W:      https://linuxtv.org
16603 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16604 F:      drivers/media/dvb-frontends/sp2*
16605
16606 SPARC + UltraSPARC (sparc/sparc64)
16607 M:      "David S. Miller" <[email protected]>
16608 L:      [email protected]
16609 S:      Maintained
16610 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16613 F:      arch/sparc/
16614 F:      drivers/sbus/
16615
16616 SPARC SERIAL DRIVERS
16617 M:      "David S. Miller" <[email protected]>
16618 L:      [email protected]
16619 S:      Maintained
16620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16622 F:      drivers/tty/serial/suncore.c
16623 F:      drivers/tty/serial/sunhv.c
16624 F:      drivers/tty/serial/sunsab.c
16625 F:      drivers/tty/serial/sunsab.h
16626 F:      drivers/tty/serial/sunsu.c
16627 F:      drivers/tty/serial/sunzilog.c
16628 F:      drivers/tty/serial/sunzilog.h
16629 F:      drivers/tty/vcc.c
16630 F:      include/linux/sunserialcore.h
16631
16632 SPARSE CHECKER
16633 M:      "Luc Van Oostenryck" <[email protected]>
16634 L:      [email protected]
16635 S:      Maintained
16636 W:      https://sparse.docs.kernel.org/
16637 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16638 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16639 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16640 F:      include/linux/compiler.h
16641
16642 SPEAKUP CONSOLE SPEECH DRIVER
16643 M:      William Hubbs <[email protected]>
16644 M:      Chris Brannon <[email protected]>
16645 M:      Kirk Reiser <[email protected]>
16646 M:      Samuel Thibault <[email protected]>
16647 L:      [email protected]
16648 S:      Odd Fixes
16649 W:      http://www.linux-speakup.org/
16650 F:      drivers/accessibility/speakup/
16651
16652 SPEAR CLOCK FRAMEWORK SUPPORT
16653 M:      Viresh Kumar <[email protected]>
16654 L:      [email protected] (moderated for non-subscribers)
16655 S:      Maintained
16656 W:      http://www.st.com/spear
16657 F:      drivers/clk/spear/
16658
16659 SPEAR PLATFORM SUPPORT
16660 M:      Viresh Kumar <[email protected]>
16661 M:      Shiraz Hashim <[email protected]>
16662 L:      [email protected] (moderated for non-subscribers)
16663 S:      Maintained
16664 W:      http://www.st.com/spear
16665 F:      arch/arm/boot/dts/spear*
16666 F:      arch/arm/mach-spear/
16667
16668 SPI NOR SUBSYSTEM
16669 M:      Tudor Ambarus <[email protected]>
16670 L:      [email protected]
16671 S:      Maintained
16672 W:      http://www.linux-mtd.infradead.org/
16673 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16674 C:      irc://irc.oftc.net/mtd
16675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16676 F:      drivers/mtd/spi-nor/
16677 F:      include/linux/mtd/spi-nor.h
16678
16679 SPI SUBSYSTEM
16680 M:      Mark Brown <[email protected]>
16681 L:      [email protected]
16682 S:      Maintained
16683 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16685 F:      Documentation/devicetree/bindings/spi/
16686 F:      Documentation/spi/
16687 F:      drivers/spi/
16688 F:      include/linux/spi/
16689 F:      include/uapi/linux/spi/
16690 F:      tools/spi/
16691
16692 SPIDERNET NETWORK DRIVER for CELL
16693 M:      Ishizaki Kou <[email protected]>
16694 L:      [email protected]
16695 S:      Supported
16696 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
16697 F:      drivers/net/ethernet/toshiba/spider_net*
16698
16699 SPMI SUBSYSTEM
16700 M:      Stephen Boyd <[email protected]>
16701 L:      [email protected]
16702 S:      Maintained
16703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
16704 F:      Documentation/devicetree/bindings/spmi/
16705 F:      drivers/spmi/
16706 F:      include/dt-bindings/spmi/spmi.h
16707 F:      include/linux/spmi.h
16708 F:      include/trace/events/spmi.h
16709
16710 SPU FILE SYSTEM
16711 M:      Jeremy Kerr <[email protected]>
16712 L:      [email protected]
16713 S:      Supported
16714 W:      http://www.ibm.com/developerworks/power/cell/
16715 F:      Documentation/filesystems/spufs/spufs.rst
16716 F:      arch/powerpc/platforms/cell/spufs/
16717
16718 SQUASHFS FILE SYSTEM
16719 M:      Phillip Lougher <[email protected]>
16720 L:      [email protected] (subscribers-only)
16721 S:      Maintained
16722 W:      http://squashfs.org.uk
16723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16724 F:      Documentation/filesystems/squashfs.rst
16725 F:      fs/squashfs/
16726
16727 SRM (Alpha) environment access
16728 M:      Jan-Benedict Glaw <[email protected]>
16729 S:      Maintained
16730 F:      arch/alpha/kernel/srm_env.c
16731
16732 ST LSM6DSx IMU IIO DRIVER
16733 M:      Lorenzo Bianconi <[email protected]>
16734 L:      [email protected]
16735 S:      Maintained
16736 W:      http://www.st.com/
16737 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16738 F:      drivers/iio/imu/st_lsm6dsx/
16739
16740 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16741 M:      Mickael Guene <[email protected]>
16742 L:      [email protected]
16743 S:      Maintained
16744 T:      git git://linuxtv.org/media_tree.git
16745 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16746 F:      drivers/media/i2c/st-mipid02.c
16747
16748 ST STM32 I2C/SMBUS DRIVER
16749 M:      Pierre-Yves MORDRET <[email protected]>
16750 L:      [email protected]
16751 S:      Maintained
16752 F:      drivers/i2c/busses/i2c-stm32*
16753
16754 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16755 M:      Song Qiang <[email protected]>
16756 L:      [email protected]
16757 S:      Maintained
16758 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16759 F:      drivers/iio/proximity/vl53l0x-i2c.c
16760
16761 STABLE BRANCH
16762 M:      Greg Kroah-Hartman <[email protected]>
16763 M:      Sasha Levin <[email protected]>
16764 L:      [email protected]
16765 S:      Supported
16766 F:      Documentation/process/stable-kernel-rules.rst
16767
16768 STAGING - ATOMISP DRIVER
16769 M:      Mauro Carvalho Chehab <[email protected]>
16770 R:      Sakari Ailus <[email protected]>
16771 L:      [email protected]
16772 S:      Maintained
16773 F:      drivers/staging/media/atomisp/
16774
16775 STAGING - COMEDI
16776 M:      Ian Abbott <[email protected]>
16777 M:      H Hartley Sweeten <[email protected]>
16778 S:      Odd Fixes
16779 F:      drivers/staging/comedi/
16780
16781 STAGING - FIELDBUS SUBSYSTEM
16782 M:      Sven Van Asbroeck <[email protected]>
16783 S:      Maintained
16784 F:      drivers/staging/fieldbus/*
16785 F:      drivers/staging/fieldbus/Documentation/
16786
16787 STAGING - HMS ANYBUS-S BUS
16788 M:      Sven Van Asbroeck <[email protected]>
16789 S:      Maintained
16790 F:      drivers/staging/fieldbus/anybuss/
16791
16792 STAGING - INDUSTRIAL IO
16793 M:      Jonathan Cameron <[email protected]>
16794 L:      [email protected]
16795 S:      Odd Fixes
16796 F:      Documentation/devicetree/bindings/staging/iio/
16797 F:      drivers/staging/iio/
16798
16799 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16800 M:      Marc Dietrich <[email protected]>
16801 L:      [email protected] (moderated for non-subscribers)
16802 L:      [email protected]
16803 S:      Maintained
16804 F:      drivers/staging/nvec/
16805
16806 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16807 M:      Jens Frederich <[email protected]>
16808 M:      Daniel Drake <[email protected]>
16809 M:      Jon Nettleton <[email protected]>
16810 S:      Maintained
16811 W:      http://wiki.laptop.org/go/DCON
16812 F:      drivers/staging/olpc_dcon/
16813
16814 STAGING - REALTEK RTL8188EU DRIVERS
16815 M:      Larry Finger <[email protected]>
16816 S:      Odd Fixes
16817 F:      drivers/staging/rtl8188eu/
16818
16819 STAGING - REALTEK RTL8712U DRIVERS
16820 M:      Larry Finger <[email protected]>
16821 M:      Florian Schilhabel <[email protected]>.
16822 S:      Odd Fixes
16823 F:      drivers/staging/rtl8712/
16824
16825 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16826 M:      Michael Hennerich <[email protected]>
16827 L:      [email protected]
16828 S:      Supported
16829 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16830 F:      drivers/staging/fbtft/fb_seps525.c
16831
16832 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16833 M:      Sudip Mukherjee <[email protected]>
16834 M:      Teddy Wang <[email protected]>
16835 M:      Sudip Mukherjee <[email protected]>
16836 L:      [email protected]
16837 S:      Maintained
16838 F:      drivers/staging/sm750fb/
16839
16840 STAGING - VIA VT665X DRIVERS
16841 M:      Forest Bond <[email protected]>
16842 S:      Odd Fixes
16843 F:      drivers/staging/vt665?/
16844
16845 STAGING SUBSYSTEM
16846 M:      Greg Kroah-Hartman <[email protected]>
16847 L:      [email protected]
16848 S:      Supported
16849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16850 F:      drivers/staging/
16851
16852 STARFIRE/DURALAN NETWORK DRIVER
16853 M:      Ion Badulescu <[email protected]>
16854 S:      Odd Fixes
16855 F:      drivers/net/ethernet/adaptec/starfire*
16856
16857 STEC S1220 SKD DRIVER
16858 M:      Damien Le Moal <[email protected]>
16859 L:      [email protected]
16860 S:      Maintained
16861 F:      drivers/block/skd*[ch]
16862
16863 STI AUDIO (ASoC) DRIVERS
16864 M:      Arnaud Pouliquen <[email protected]>
16865 L:      [email protected] (moderated for non-subscribers)
16866 S:      Maintained
16867 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16868 F:      sound/soc/sti/
16869
16870 STI CEC DRIVER
16871 M:      Benjamin Gaignard <[email protected]>
16872 S:      Maintained
16873 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16874 F:      drivers/media/cec/platform/sti/
16875
16876 STK1160 USB VIDEO CAPTURE DRIVER
16877 M:      Ezequiel Garcia <[email protected]>
16878 L:      [email protected]
16879 S:      Maintained
16880 T:      git git://linuxtv.org/media_tree.git
16881 F:      drivers/media/usb/stk1160/
16882
16883 STM32 AUDIO (ASoC) DRIVERS
16884 M:      Olivier Moysan <[email protected]>
16885 M:      Arnaud Pouliquen <[email protected]>
16886 L:      [email protected] (moderated for non-subscribers)
16887 S:      Maintained
16888 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16889 F:      sound/soc/stm/
16890
16891 STM32 TIMER/LPTIMER DRIVERS
16892 M:      Fabrice Gasnier <[email protected]>
16893 S:      Maintained
16894 F:      Documentation/ABI/testing/*timer-stm32
16895 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16896 F:      drivers/*/stm32-*timer*
16897 F:      drivers/pwm/pwm-stm32*
16898 F:      include/linux/*/stm32-*tim*
16899
16900 STMMAC ETHERNET DRIVER
16901 M:      Giuseppe Cavallaro <[email protected]>
16902 M:      Alexandre Torgue <[email protected]>
16903 M:      Jose Abreu <[email protected]>
16904 L:      [email protected]
16905 S:      Supported
16906 W:      http://www.stlinux.com
16907 F:      Documentation/networking/device_drivers/ethernet/stmicro/
16908 F:      drivers/net/ethernet/stmicro/stmmac/
16909
16910 SUN3/3X
16911 M:      Sam Creasey <[email protected]>
16912 S:      Maintained
16913 W:      http://sammy.net/sun3/
16914 F:      arch/m68k/include/asm/sun3*
16915 F:      arch/m68k/kernel/*sun3*
16916 F:      arch/m68k/sun3*/
16917 F:      drivers/net/ethernet/i825xx/sun3*
16918
16919 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16920 M:      Hans de Goede <[email protected]>
16921 L:      [email protected]
16922 S:      Maintained
16923 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16924 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16925
16926 SUNDANCE NETWORK DRIVER
16927 M:      Denis Kirjanov <[email protected]>
16928 L:      [email protected]
16929 S:      Maintained
16930 F:      drivers/net/ethernet/dlink/sundance.c
16931
16932 SUPERH
16933 M:      Yoshinori Sato <[email protected]>
16934 M:      Rich Felker <[email protected]>
16935 L:      [email protected]
16936 S:      Maintained
16937 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16938 F:      Documentation/sh/
16939 F:      arch/sh/
16940 F:      drivers/sh/
16941
16942 SUSPEND TO RAM
16943 M:      "Rafael J. Wysocki" <[email protected]>
16944 M:      Len Brown <[email protected]>
16945 M:      Pavel Machek <[email protected]>
16946 L:      [email protected]
16947 S:      Supported
16948 B:      https://bugzilla.kernel.org
16949 F:      Documentation/power/
16950 F:      arch/x86/kernel/acpi/
16951 F:      drivers/base/power/
16952 F:      include/linux/freezer.h
16953 F:      include/linux/pm.h
16954 F:      include/linux/suspend.h
16955 F:      kernel/power/
16956
16957 SVGA HANDLING
16958 M:      Martin Mares <[email protected]>
16959 L:      [email protected]
16960 S:      Maintained
16961 F:      Documentation/admin-guide/svga.rst
16962 F:      arch/x86/boot/video*
16963
16964 SWIOTLB SUBSYSTEM
16965 M:      Konrad Rzeszutek Wilk <[email protected]>
16966 L:      [email protected]
16967 S:      Supported
16968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16969 F:      arch/*/kernel/pci-swiotlb.c
16970 F:      include/linux/swiotlb.h
16971 F:      kernel/dma/swiotlb.c
16972
16973 SWITCHDEV
16974 M:      Jiri Pirko <[email protected]>
16975 M:      Ivan Vecera <[email protected]>
16976 L:      [email protected]
16977 S:      Supported
16978 F:      include/net/switchdev.h
16979 F:      net/switchdev/
16980
16981 SY8106A REGULATOR DRIVER
16982 M:      Icenowy Zheng <[email protected]>
16983 S:      Maintained
16984 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16985 F:      drivers/regulator/sy8106a-regulator.c
16986
16987 SYNC FILE FRAMEWORK
16988 M:      Sumit Semwal <[email protected]>
16989 R:      Gustavo Padovan <[email protected]>
16990 L:      [email protected]
16991 L:      [email protected]
16992 S:      Maintained
16993 T:      git git://anongit.freedesktop.org/drm/drm-misc
16994 F:      Documentation/driver-api/sync_file.rst
16995 F:      drivers/dma-buf/dma-fence*
16996 F:      drivers/dma-buf/sw_sync.c
16997 F:      drivers/dma-buf/sync_*
16998 F:      include/linux/sync_file.h
16999 F:      include/uapi/linux/sync_file.h
17000
17001 SYNOPSYS ARC ARCHITECTURE
17002 M:      Vineet Gupta <[email protected]>
17003 L:      [email protected]
17004 S:      Supported
17005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17006 F:      Documentation/devicetree/bindings/arc/*
17007 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17008 F:      arch/arc/
17009 F:      drivers/clocksource/arc_timer.c
17010 F:      drivers/tty/serial/arc_uart.c
17011
17012 SYNOPSYS ARC HSDK SDP pll clock driver
17013 M:      Eugeniy Paltsev <[email protected]>
17014 S:      Supported
17015 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17016 F:      drivers/clk/clk-hsdk-pll.c
17017
17018 SYNOPSYS ARC SDP clock driver
17019 M:      Eugeniy Paltsev <[email protected]>
17020 S:      Supported
17021 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17022 F:      drivers/clk/axs10x/*
17023
17024 SYNOPSYS ARC SDP platform support
17025 M:      Alexey Brodkin <[email protected]>
17026 S:      Supported
17027 F:      Documentation/devicetree/bindings/arc/axs10*
17028 F:      arch/arc/boot/dts/ax*
17029 F:      arch/arc/plat-axs10x
17030
17031 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17032 M:      Eugeniy Paltsev <[email protected]>
17033 S:      Supported
17034 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17035 F:      drivers/reset/reset-axs10x.c
17036
17037 SYNOPSYS CREG GPIO DRIVER
17038 M:      Eugeniy Paltsev <[email protected]>
17039 S:      Maintained
17040 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17041 F:      drivers/gpio/gpio-creg-snps.c
17042
17043 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17044 R:      Andy Shevchenko <[email protected]>
17045 S:      Maintained
17046 F:      drivers/tty/serial/8250/8250_dw.c
17047 F:      drivers/tty/serial/8250/8250_dwlib.*
17048 F:      drivers/tty/serial/8250/8250_lpss.c
17049
17050 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17051 M:      Hoan Tran <[email protected]>
17052 M:      Serge Semin <[email protected]>
17053 L:      [email protected]
17054 S:      Maintained
17055 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17056 F:      drivers/gpio/gpio-dwapb.c
17057
17058 SYNOPSYS DESIGNWARE APB SSI DRIVER
17059 M:      Serge Semin <[email protected]>
17060 L:      [email protected]
17061 S:      Supported
17062 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17063 F:      drivers/spi/spi-dw*
17064
17065 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17066 M:      Eugeniy Paltsev <[email protected]>
17067 S:      Maintained
17068 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
17069 F:      drivers/dma/dw-axi-dmac/
17070
17071 SYNOPSYS DESIGNWARE DMAC DRIVER
17072 M:      Viresh Kumar <[email protected]>
17073 R:      Andy Shevchenko <[email protected]>
17074 S:      Maintained
17075 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17076 F:      drivers/dma/dw/
17077 F:      include/dt-bindings/dma/dw-dmac.h
17078 F:      include/linux/dma/dw.h
17079 F:      include/linux/platform_data/dma-dw.h
17080
17081 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17082 M:      Jose Abreu <[email protected]>
17083 L:      [email protected]
17084 S:      Supported
17085 F:      drivers/net/ethernet/synopsys/
17086
17087 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17088 M:      Jose Abreu <[email protected]>
17089 L:      [email protected]
17090 S:      Supported
17091 F:      drivers/net/pcs/pcs-xpcs.c
17092 F:      include/linux/pcs/pcs-xpcs.h
17093
17094 SYNOPSYS DESIGNWARE I2C DRIVER
17095 M:      Jarkko Nikula <[email protected]>
17096 R:      Andy Shevchenko <[email protected]>
17097 R:      Mika Westerberg <[email protected]>
17098 L:      [email protected]
17099 S:      Maintained
17100 F:      drivers/i2c/busses/i2c-designware-*
17101 F:      include/linux/platform_data/i2c-designware.h
17102
17103 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17104 M:      Jaehoon Chung <[email protected]>
17105 L:      [email protected]
17106 S:      Maintained
17107 F:      drivers/mmc/host/dw_mmc*
17108
17109 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17110 M:      Eugeniy Paltsev <[email protected]>
17111 S:      Supported
17112 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17113 F:      drivers/reset/reset-hsdk.c
17114 F:      include/dt-bindings/reset/snps,hsdk-reset.h
17115
17116 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17117 M:      Prabu Thangamuthu <[email protected]>
17118 M:      Manjunath M B <[email protected]>
17119 L:      [email protected]
17120 S:      Maintained
17121 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
17122
17123 SYSTEM CONFIGURATION (SYSCON)
17124 M:      Lee Jones <[email protected]>
17125 M:      Arnd Bergmann <[email protected]>
17126 S:      Supported
17127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17128 F:      drivers/mfd/syscon.c
17129
17130 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17131 M:      Sudeep Holla <[email protected]>
17132 L:      [email protected]
17133 S:      Maintained
17134 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
17135 F:      drivers/clk/clk-sc[mp]i.c
17136 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
17137 F:      drivers/firmware/arm_scmi/
17138 F:      drivers/firmware/arm_scpi.c
17139 F:      drivers/reset/reset-scmi.c
17140 F:      include/linux/sc[mp]i_protocol.h
17141 F:      include/trace/events/scmi.h
17142
17143 SYSTEM RESET/SHUTDOWN DRIVERS
17144 M:      Sebastian Reichel <[email protected]>
17145 L:      [email protected]
17146 S:      Maintained
17147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17148 F:      Documentation/devicetree/bindings/power/reset/
17149 F:      drivers/power/reset/
17150
17151 SYSTEM TRACE MODULE CLASS
17152 M:      Alexander Shishkin <[email protected]>
17153 S:      Maintained
17154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17155 F:      Documentation/trace/stm.rst
17156 F:      drivers/hwtracing/stm/
17157 F:      include/linux/stm.h
17158 F:      include/uapi/linux/stm.h
17159
17160 SYSTEM76 ACPI DRIVER
17161 M:      Jeremy Soller <[email protected]>
17162 M:      System76 Product Development <[email protected]>
17163 L:      [email protected]
17164 S:      Maintained
17165 F:      drivers/platform/x86/system76_acpi.c
17166
17167 SYSV FILESYSTEM
17168 M:      Christoph Hellwig <[email protected]>
17169 S:      Maintained
17170 F:      Documentation/filesystems/sysv-fs.rst
17171 F:      fs/sysv/
17172 F:      include/linux/sysv_fs.h
17173
17174 TASKSTATS STATISTICS INTERFACE
17175 M:      Balbir Singh <[email protected]>
17176 S:      Maintained
17177 F:      Documentation/accounting/taskstats*
17178 F:      include/linux/taskstats*
17179 F:      kernel/taskstats.c
17180
17181 TC subsystem
17182 M:      Jamal Hadi Salim <[email protected]>
17183 M:      Cong Wang <[email protected]>
17184 M:      Jiri Pirko <[email protected]>
17185 L:      [email protected]
17186 S:      Maintained
17187 F:      include/net/pkt_cls.h
17188 F:      include/net/pkt_sched.h
17189 F:      include/net/tc_act/
17190 F:      include/uapi/linux/pkt_cls.h
17191 F:      include/uapi/linux/pkt_sched.h
17192 F:      include/uapi/linux/tc_act/
17193 F:      include/uapi/linux/tc_ematch/
17194 F:      net/sched/
17195
17196 TC90522 MEDIA DRIVER
17197 M:      Akihiro Tsukada <[email protected]>
17198 L:      [email protected]
17199 S:      Odd Fixes
17200 F:      drivers/media/dvb-frontends/tc90522*
17201
17202 TCP LOW PRIORITY MODULE
17203 M:      "Wong Hoi Sing, Edison" <[email protected]>
17204 M:      "Hung Hing Lun, Mike" <[email protected]>
17205 S:      Maintained
17206 W:      http://tcp-lp-mod.sourceforge.net/
17207 F:      net/ipv4/tcp_lp.c
17208
17209 TDA10071 MEDIA DRIVER
17210 M:      Antti Palosaari <[email protected]>
17211 L:      [email protected]
17212 S:      Maintained
17213 W:      https://linuxtv.org
17214 W:      http://palosaari.fi/linux/
17215 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17216 T:      git git://linuxtv.org/anttip/media_tree.git
17217 F:      drivers/media/dvb-frontends/tda10071*
17218
17219 TDA18212 MEDIA DRIVER
17220 M:      Antti Palosaari <[email protected]>
17221 L:      [email protected]
17222 S:      Maintained
17223 W:      https://linuxtv.org
17224 W:      http://palosaari.fi/linux/
17225 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17226 T:      git git://linuxtv.org/anttip/media_tree.git
17227 F:      drivers/media/tuners/tda18212*
17228
17229 TDA18218 MEDIA DRIVER
17230 M:      Antti Palosaari <[email protected]>
17231 L:      [email protected]
17232 S:      Maintained
17233 W:      https://linuxtv.org
17234 W:      http://palosaari.fi/linux/
17235 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17236 T:      git git://linuxtv.org/anttip/media_tree.git
17237 F:      drivers/media/tuners/tda18218*
17238
17239 TDA18250 MEDIA DRIVER
17240 M:      Olli Salonen <[email protected]>
17241 L:      [email protected]
17242 S:      Maintained
17243 W:      https://linuxtv.org
17244 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17245 T:      git git://linuxtv.org/media_tree.git
17246 F:      drivers/media/tuners/tda18250*
17247
17248 TDA18271 MEDIA DRIVER
17249 M:      Michael Krufky <[email protected]>
17250 L:      [email protected]
17251 S:      Maintained
17252 W:      https://linuxtv.org
17253 W:      http://github.com/mkrufky
17254 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17255 T:      git git://linuxtv.org/mkrufky/tuners.git
17256 F:      drivers/media/tuners/tda18271*
17257
17258 TDA1997x MEDIA DRIVER
17259 M:      Tim Harvey <[email protected]>
17260 L:      [email protected]
17261 S:      Maintained
17262 W:      https://linuxtv.org
17263 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17264 F:      drivers/media/i2c/tda1997x.*
17265
17266 TDA827x MEDIA DRIVER
17267 M:      Michael Krufky <[email protected]>
17268 L:      [email protected]
17269 S:      Maintained
17270 W:      https://linuxtv.org
17271 W:      http://github.com/mkrufky
17272 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17273 T:      git git://linuxtv.org/mkrufky/tuners.git
17274 F:      drivers/media/tuners/tda8290.*
17275
17276 TDA8290 MEDIA DRIVER
17277 M:      Michael Krufky <[email protected]>
17278 L:      [email protected]
17279 S:      Maintained
17280 W:      https://linuxtv.org
17281 W:      http://github.com/mkrufky
17282 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17283 T:      git git://linuxtv.org/mkrufky/tuners.git
17284 F:      drivers/media/tuners/tda8290.*
17285
17286 TDA9840 MEDIA DRIVER
17287 M:      Hans Verkuil <[email protected]>
17288 L:      [email protected]
17289 S:      Maintained
17290 W:      https://linuxtv.org
17291 T:      git git://linuxtv.org/media_tree.git
17292 F:      drivers/media/i2c/tda9840*
17293
17294 TEA5761 TUNER DRIVER
17295 M:      Mauro Carvalho Chehab <[email protected]>
17296 L:      [email protected]
17297 S:      Odd fixes
17298 W:      https://linuxtv.org
17299 T:      git git://linuxtv.org/media_tree.git
17300 F:      drivers/media/tuners/tea5761.*
17301
17302 TEA5767 TUNER DRIVER
17303 M:      Mauro Carvalho Chehab <[email protected]>
17304 L:      [email protected]
17305 S:      Maintained
17306 W:      https://linuxtv.org
17307 T:      git git://linuxtv.org/media_tree.git
17308 F:      drivers/media/tuners/tea5767.*
17309
17310 TEA6415C MEDIA DRIVER
17311 M:      Hans Verkuil <[email protected]>
17312 L:      [email protected]
17313 S:      Maintained
17314 W:      https://linuxtv.org
17315 T:      git git://linuxtv.org/media_tree.git
17316 F:      drivers/media/i2c/tea6415c*
17317
17318 TEA6420 MEDIA DRIVER
17319 M:      Hans Verkuil <[email protected]>
17320 L:      [email protected]
17321 S:      Maintained
17322 W:      https://linuxtv.org
17323 T:      git git://linuxtv.org/media_tree.git
17324 F:      drivers/media/i2c/tea6420*
17325
17326 TEAM DRIVER
17327 M:      Jiri Pirko <[email protected]>
17328 L:      [email protected]
17329 S:      Supported
17330 F:      drivers/net/team/
17331 F:      include/linux/if_team.h
17332 F:      include/uapi/linux/if_team.h
17333
17334 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17335 M:      "Savoir-faire Linux Inc." <[email protected]>
17336 S:      Maintained
17337 F:      arch/x86/platform/ts5500/
17338
17339 TECHNOTREND USB IR RECEIVER
17340 M:      Sean Young <[email protected]>
17341 L:      [email protected]
17342 S:      Maintained
17343 F:      drivers/media/rc/ttusbir.c
17344
17345 TECHWELL TW9910 VIDEO DECODER
17346 L:      [email protected]
17347 S:      Orphan
17348 F:      drivers/media/i2c/tw9910.c
17349 F:      include/media/i2c/tw9910.h
17350
17351 TEE SUBSYSTEM
17352 M:      Jens Wiklander <[email protected]>
17353 L:      [email protected]
17354 S:      Maintained
17355 F:      Documentation/staging/tee.rst
17356 F:      drivers/tee/
17357 F:      include/linux/tee_drv.h
17358 F:      include/uapi/linux/tee.h
17359
17360 TEGRA ARCHITECTURE SUPPORT
17361 M:      Thierry Reding <[email protected]>
17362 M:      Jonathan Hunter <[email protected]>
17363 L:      [email protected]
17364 S:      Supported
17365 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
17366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17367 N:      [^a-z]tegra
17368
17369 TEGRA CLOCK DRIVER
17370 M:      Peter De Schrijver <[email protected]>
17371 M:      Prashant Gaikwad <[email protected]>
17372 S:      Supported
17373 F:      drivers/clk/tegra/
17374
17375 TEGRA DMA DRIVERS
17376 M:      Laxman Dewangan <[email protected]>
17377 M:      Jon Hunter <[email protected]>
17378 S:      Supported
17379 F:      drivers/dma/tegra*
17380
17381 TEGRA I2C DRIVER
17382 M:      Laxman Dewangan <[email protected]>
17383 R:      Dmitry Osipenko <[email protected]>
17384 S:      Supported
17385 F:      drivers/i2c/busses/i2c-tegra.c
17386
17387 TEGRA IOMMU DRIVERS
17388 M:      Thierry Reding <[email protected]>
17389 R:      Krishna Reddy <[email protected]>
17390 L:      [email protected]
17391 S:      Supported
17392 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17393 F:      drivers/iommu/tegra*
17394
17395 TEGRA KBC DRIVER
17396 M:      Laxman Dewangan <[email protected]>
17397 S:      Supported
17398 F:      drivers/input/keyboard/tegra-kbc.c
17399
17400 TEGRA NAND DRIVER
17401 M:      Stefan Agner <[email protected]>
17402 M:      Lucas Stach <[email protected]>
17403 S:      Maintained
17404 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17405 F:      drivers/mtd/nand/raw/tegra_nand.c
17406
17407 TEGRA PWM DRIVER
17408 M:      Thierry Reding <[email protected]>
17409 S:      Supported
17410 F:      drivers/pwm/pwm-tegra.c
17411
17412 TEGRA SERIAL DRIVER
17413 M:      Laxman Dewangan <[email protected]>
17414 S:      Supported
17415 F:      drivers/tty/serial/serial-tegra.c
17416
17417 TEGRA SPI DRIVER
17418 M:      Laxman Dewangan <[email protected]>
17419 S:      Supported
17420 F:      drivers/spi/spi-tegra*
17421
17422 TEGRA VIDEO DRIVER
17423 M:      Thierry Reding <[email protected]>
17424 M:      Jonathan Hunter <[email protected]>
17425 M:      Sowjanya Komatineni <[email protected]>
17426 L:      [email protected]
17427 L:      [email protected]
17428 S:      Maintained
17429 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17430 F:      drivers/staging/media/tegra-video/
17431
17432 TEGRA XUSB PADCTL DRIVER
17433 M:      JC Kuo <[email protected]>
17434 S:      Supported
17435 F:      drivers/phy/tegra/xusb*
17436
17437 TEHUTI ETHERNET DRIVER
17438 M:      Andy Gospodarek <[email protected]>
17439 L:      [email protected]
17440 S:      Supported
17441 F:      drivers/net/ethernet/tehuti/*
17442
17443 TELECOM CLOCK DRIVER FOR MCPL0010
17444 M:      Mark Gross <[email protected]>
17445 S:      Supported
17446 F:      drivers/char/tlclk.c
17447
17448 TEMPO SEMICONDUCTOR DRIVERS
17449 M:      Steven Eckhoff <[email protected]>
17450 S:      Maintained
17451 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17452 F:      sound/soc/codecs/tscs*.c
17453 F:      sound/soc/codecs/tscs*.h
17454
17455 TENSILICA XTENSA PORT (xtensa)
17456 M:      Chris Zankel <[email protected]>
17457 M:      Max Filippov <[email protected]>
17458 L:      [email protected]
17459 S:      Maintained
17460 T:      git git://github.com/czankel/xtensa-linux.git
17461 F:      arch/xtensa/
17462 F:      drivers/irqchip/irq-xtensa-*
17463
17464 TEXAS INSTRUMENTS ASoC DRIVERS
17465 M:      Peter Ujfalusi <[email protected]>
17466 L:      [email protected] (moderated for non-subscribers)
17467 S:      Maintained
17468 F:      sound/soc/ti/
17469
17470 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
17471 M:      Ricardo Ribalda <[email protected]>
17472 L:      [email protected]
17473 S:      Supported
17474 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
17475 F:      drivers/iio/dac/ti-dac7612.c
17476
17477 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
17478 M:      Nishanth Menon <[email protected]>
17479 M:      Tero Kristo <[email protected]>
17480 M:      Santosh Shilimkar <[email protected]>
17481 L:      [email protected]
17482 S:      Maintained
17483 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
17484 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
17485 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
17486 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
17487 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
17488 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
17489 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
17490 F:      drivers/clk/keystone/sci-clk.c
17491 F:      drivers/firmware/ti_sci*
17492 F:      drivers/irqchip/irq-ti-sci-inta.c
17493 F:      drivers/irqchip/irq-ti-sci-intr.c
17494 F:      drivers/reset/reset-ti-sci.c
17495 F:      drivers/soc/ti/ti_sci_inta_msi.c
17496 F:      drivers/soc/ti/ti_sci_pm_domains.c
17497 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
17498 F:      include/linux/soc/ti/ti_sci_inta_msi.h
17499 F:      include/linux/soc/ti/ti_sci_protocol.h
17500
17501 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
17502 M:      Hans Verkuil <[email protected]>
17503 L:      [email protected]
17504 S:      Maintained
17505 W:      https://linuxtv.org
17506 T:      git git://linuxtv.org/media_tree.git
17507 F:      drivers/media/radio/radio-raremono.c
17508
17509 THERMAL
17510 M:      Zhang Rui <[email protected]>
17511 M:      Daniel Lezcano <[email protected]>
17512 R:      Amit Kucheria <[email protected]>
17513 L:      [email protected]
17514 S:      Supported
17515 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
17517 F:      Documentation/devicetree/bindings/thermal/
17518 F:      drivers/thermal/
17519 F:      include/linux/cpu_cooling.h
17520 F:      include/linux/thermal.h
17521 F:      include/uapi/linux/thermal.h
17522
17523 THERMAL DRIVER FOR AMLOGIC SOCS
17524 M:      Guillaume La Roque <[email protected]>
17525 L:      [email protected]
17526 L:      [email protected]
17527 S:      Supported
17528 W:      http://linux-meson.com/
17529 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
17530 F:      drivers/thermal/amlogic_thermal.c
17531
17532 THERMAL/CPU_COOLING
17533 M:      Amit Daniel Kachhap <[email protected]>
17534 M:      Daniel Lezcano <[email protected]>
17535 M:      Viresh Kumar <[email protected]>
17536 M:      Javi Merino <[email protected]>
17537 L:      [email protected]
17538 S:      Supported
17539 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
17540 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
17541 F:      drivers/thermal/cpufreq_cooling.c
17542 F:      drivers/thermal/cpuidle_cooling.c
17543 F:      include/linux/cpu_cooling.h
17544
17545 THERMAL/POWER_ALLOCATOR
17546 M:      Lukasz Luba <[email protected]>
17547 L:      [email protected]
17548 S:      Maintained
17549 F:      Documentation/driver-api/thermal/power_allocator.rst
17550 F:      drivers/thermal/gov_power_allocator.c
17551 F:      include/trace/events/thermal_power_allocator.h
17552
17553 THINKPAD ACPI EXTRAS DRIVER
17554 M:      Henrique de Moraes Holschuh <[email protected]>
17555 L:      [email protected]
17556 L:      [email protected]
17557 S:      Maintained
17558 W:      http://ibm-acpi.sourceforge.net
17559 W:      http://thinkwiki.org/wiki/Ibm-acpi
17560 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
17561 F:      drivers/platform/x86/thinkpad_acpi.c
17562
17563 THUNDERBOLT DMA TRAFFIC TEST DRIVER
17564 M:      Isaac Hazan <[email protected]>
17565 L:      [email protected]
17566 S:      Maintained
17567 F:      drivers/thunderbolt/dma_test.c
17568
17569 THUNDERBOLT DRIVER
17570 M:      Andreas Noever <[email protected]>
17571 M:      Michael Jamet <[email protected]>
17572 M:      Mika Westerberg <[email protected]>
17573 M:      Yehezkel Bernat <[email protected]>
17574 L:      [email protected]
17575 S:      Maintained
17576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
17577 F:      Documentation/admin-guide/thunderbolt.rst
17578 F:      drivers/thunderbolt/
17579 F:      include/linux/thunderbolt.h
17580
17581 THUNDERBOLT NETWORK DRIVER
17582 M:      Michael Jamet <[email protected]>
17583 M:      Mika Westerberg <[email protected]>
17584 M:      Yehezkel Bernat <[email protected]>
17585 L:      [email protected]
17586 S:      Maintained
17587 F:      drivers/net/thunderbolt.c
17588
17589 THUNDERX GPIO DRIVER
17590 M:      Robert Richter <[email protected]>
17591 S:      Odd Fixes
17592 F:      drivers/gpio/gpio-thunderx.c
17593
17594 TI AM437X VPFE DRIVER
17595 M:      "Lad, Prabhakar" <[email protected]>
17596 L:      [email protected]
17597 S:      Maintained
17598 W:      https://linuxtv.org
17599 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17600 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17601 F:      drivers/media/platform/am437x/
17602
17603 TI BANDGAP AND THERMAL DRIVER
17604 M:      Eduardo Valentin <[email protected]>
17605 M:      Keerthy <[email protected]>
17606 L:      [email protected]
17607 L:      [email protected]
17608 S:      Maintained
17609 F:      drivers/thermal/ti-soc-thermal/
17610
17611 TI BQ27XXX POWER SUPPLY DRIVER
17612 R:      Dan Murphy <[email protected]>
17613 F:      drivers/power/supply/bq27xxx_battery.c
17614 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17615 F:      include/linux/power/bq27xxx_battery.h
17616
17617 TI CDCE706 CLOCK DRIVER
17618 M:      Max Filippov <[email protected]>
17619 S:      Maintained
17620 F:      drivers/clk/clk-cdce706.c
17621
17622 TI CLOCK DRIVER
17623 M:      Tero Kristo <[email protected]>
17624 L:      [email protected]
17625 S:      Maintained
17626 F:      drivers/clk/ti/
17627 F:      include/linux/clk/ti.h
17628
17629 TI DAVINCI MACHINE SUPPORT
17630 M:      Sekhar Nori <[email protected]>
17631 R:      Bartosz Golaszewski <[email protected]>
17632 L:      [email protected] (moderated for non-subscribers)
17633 S:      Supported
17634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17635 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17636 F:      arch/arm/boot/dts/da850*
17637 F:      arch/arm/mach-davinci/
17638 F:      drivers/i2c/busses/i2c-davinci.c
17639
17640 TI DAVINCI SERIES CLOCK DRIVER
17641 M:      David Lechner <[email protected]>
17642 R:      Sekhar Nori <[email protected]>
17643 S:      Maintained
17644 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17645 F:      drivers/clk/davinci/
17646
17647 TI DAVINCI SERIES GPIO DRIVER
17648 M:      Keerthy <[email protected]>
17649 L:      [email protected]
17650 S:      Maintained
17651 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17652 F:      drivers/gpio/gpio-davinci.c
17653
17654 TI DAVINCI SERIES MEDIA DRIVER
17655 M:      "Lad, Prabhakar" <[email protected]>
17656 L:      [email protected]
17657 S:      Maintained
17658 W:      https://linuxtv.org
17659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17660 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17661 F:      drivers/media/platform/davinci/
17662 F:      include/media/davinci/
17663
17664 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17665 R:      David Lechner <[email protected]>
17666 L:      [email protected]
17667 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17668 F:      drivers/counter/ti-eqep.c
17669
17670 TI ETHERNET SWITCH DRIVER (CPSW)
17671 R:      Grygorii Strashko <[email protected]>
17672 L:      [email protected]
17673 L:      [email protected]
17674 S:      Maintained
17675 F:      drivers/net/ethernet/ti/cpsw*
17676 F:      drivers/net/ethernet/ti/davinci*
17677
17678 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17679 M:      Alex Dubov <[email protected]>
17680 S:      Maintained
17681 W:      http://tifmxx.berlios.de/
17682 F:      drivers/memstick/host/tifm_ms.c
17683 F:      drivers/misc/tifm*
17684 F:      drivers/mmc/host/tifm_sd.c
17685 F:      include/linux/tifm.h
17686
17687 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17688 M:      Santosh Shilimkar <[email protected]>
17689 L:      [email protected]
17690 L:      [email protected] (moderated for non-subscribers)
17691 S:      Maintained
17692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17693 F:      drivers/soc/ti/*
17694
17695 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17696 M:      M R Swami Reddy <[email protected]>
17697 M:      Vishwas A Deshpande <[email protected]>
17698 L:      [email protected] (moderated for non-subscribers)
17699 S:      Maintained
17700 F:      sound/soc/codecs/isabelle*
17701 F:      sound/soc/codecs/lm49453*
17702
17703 TI LP855x BACKLIGHT DRIVER
17704 M:      Milo Kim <[email protected]>
17705 S:      Maintained
17706 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17707 F:      drivers/video/backlight/lp855x_bl.c
17708 F:      include/linux/platform_data/lp855x.h
17709
17710 TI LP8727 CHARGER DRIVER
17711 M:      Milo Kim <[email protected]>
17712 S:      Maintained
17713 F:      drivers/power/supply/lp8727_charger.c
17714 F:      include/linux/platform_data/lp8727.h
17715
17716 TI LP8788 MFD DRIVER
17717 M:      Milo Kim <[email protected]>
17718 S:      Maintained
17719 F:      drivers/iio/adc/lp8788_adc.c
17720 F:      drivers/leds/leds-lp8788.c
17721 F:      drivers/mfd/lp8788*.c
17722 F:      drivers/power/supply/lp8788-charger.c
17723 F:      drivers/regulator/lp8788-*.c
17724 F:      include/linux/mfd/lp8788*.h
17725
17726 TI NETCP ETHERNET DRIVER
17727 M:      Wingman Kwok <[email protected]>
17728 M:      Murali Karicheri <[email protected]>
17729 L:      [email protected]
17730 S:      Maintained
17731 F:      drivers/net/ethernet/ti/netcp*
17732
17733 TI PCM3060 ASoC CODEC DRIVER
17734 M:      Kirill Marinushkin <[email protected]>
17735 L:      [email protected] (moderated for non-subscribers)
17736 S:      Maintained
17737 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17738 F:      sound/soc/codecs/pcm3060*
17739
17740 TI TAS571X FAMILY ASoC CODEC DRIVER
17741 M:      Kevin Cernekee <[email protected]>
17742 L:      [email protected] (moderated for non-subscribers)
17743 S:      Odd Fixes
17744 F:      sound/soc/codecs/tas571x*
17745
17746 TI TCAN4X5X DEVICE DRIVER
17747 M:      Dan Murphy <[email protected]>
17748 L:      [email protected]
17749 S:      Maintained
17750 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17751 F:      drivers/net/can/m_can/tcan4x5x.c
17752
17753 TI TRF7970A NFC DRIVER
17754 M:      Mark Greer <[email protected]>
17755 L:      [email protected]
17756 L:      [email protected] (moderated for non-subscribers)
17757 S:      Supported
17758 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17759 F:      drivers/nfc/trf7970a.c
17760
17761 TI TWL4030 SERIES SOC CODEC DRIVER
17762 M:      Peter Ujfalusi <[email protected]>
17763 L:      [email protected] (moderated for non-subscribers)
17764 S:      Maintained
17765 F:      sound/soc/codecs/twl4030*
17766
17767 TI VPE/CAL DRIVERS
17768 M:      Benoit Parrot <[email protected]>
17769 L:      [email protected]
17770 S:      Maintained
17771 W:      http://linuxtv.org/
17772 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17773 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17774 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17775 F:      drivers/media/platform/ti-vpe/
17776
17777 TI WILINK WIRELESS DRIVERS
17778 L:      [email protected]
17779 S:      Orphan
17780 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17781 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17783 F:      drivers/net/wireless/ti/
17784 F:      include/linux/wl12xx.h
17785
17786 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17787 M:      John Stultz <[email protected]>
17788 M:      Thomas Gleixner <[email protected]>
17789 R:      Stephen Boyd <[email protected]>
17790 L:      [email protected]
17791 S:      Supported
17792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17793 F:      include/linux/clocksource.h
17794 F:      include/linux/time.h
17795 F:      include/linux/timex.h
17796 F:      include/uapi/linux/time.h
17797 F:      include/uapi/linux/timex.h
17798 F:      kernel/time/alarmtimer.c
17799 F:      kernel/time/clocksource.c
17800 F:      kernel/time/ntp.c
17801 F:      kernel/time/time*.c
17802 F:      tools/testing/selftests/timers/
17803
17804 TIPC NETWORK LAYER
17805 M:      Jon Maloy <[email protected]>
17806 M:      Ying Xue <[email protected]>
17807 L:      [email protected] (core kernel code)
17808 L:      [email protected] (user apps, general discussion)
17809 S:      Maintained
17810 W:      http://tipc.sourceforge.net/
17811 F:      include/uapi/linux/tipc*.h
17812 F:      net/tipc/
17813
17814 TLAN NETWORK DRIVER
17815 M:      Samuel Chessman <[email protected]>
17816 L:      [email protected] (subscribers-only)
17817 S:      Maintained
17818 W:      http://sourceforge.net/projects/tlan/
17819 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
17820 F:      drivers/net/ethernet/ti/tlan.*
17821
17822 TM6000 VIDEO4LINUX DRIVER
17823 M:      Mauro Carvalho Chehab <[email protected]>
17824 L:      [email protected]
17825 S:      Odd fixes
17826 W:      https://linuxtv.org
17827 T:      git git://linuxtv.org/media_tree.git
17828 F:      Documentation/admin-guide/media/tm6000*
17829 F:      drivers/media/usb/tm6000/
17830
17831 TMIO/SDHI MMC DRIVER
17832 M:      Wolfram Sang <[email protected]>
17833 L:      [email protected]
17834 S:      Supported
17835 F:      drivers/mmc/host/renesas_sdhi*
17836 F:      drivers/mmc/host/tmio_mmc*
17837 F:      include/linux/mfd/tmio.h
17838
17839 TMP401 HARDWARE MONITOR DRIVER
17840 M:      Guenter Roeck <[email protected]>
17841 L:      [email protected]
17842 S:      Maintained
17843 F:      Documentation/hwmon/tmp401.rst
17844 F:      drivers/hwmon/tmp401.c
17845
17846 TMP513 HARDWARE MONITOR DRIVER
17847 M:      Eric Tremblay <[email protected]>
17848 L:      [email protected]
17849 S:      Maintained
17850 F:      Documentation/hwmon/tmp513.rst
17851 F:      drivers/hwmon/tmp513.c
17852
17853 TMPFS (SHMEM FILESYSTEM)
17854 M:      Hugh Dickins <[email protected]>
17855 L:      [email protected]
17856 S:      Maintained
17857 F:      include/linux/shmem_fs.h
17858 F:      mm/shmem.c
17859
17860 TOMOYO SECURITY MODULE
17861 M:      Kentaro Takeda <[email protected]>
17862 M:      Tetsuo Handa <[email protected]>
17863 L:      [email protected] (subscribers-only, for developers in English)
17864 L:      [email protected] (subscribers-only, for users in English)
17865 L:      [email protected] (subscribers-only, for developers in Japanese)
17866 L:      [email protected] (subscribers-only, for users in Japanese)
17867 S:      Maintained
17868 W:      https://tomoyo.osdn.jp/
17869 F:      security/tomoyo/
17870
17871 TOPSTAR LAPTOP EXTRAS DRIVER
17872 M:      Herton Ronaldo Krzesinski <[email protected]>
17873 L:      [email protected]
17874 S:      Maintained
17875 F:      drivers/platform/x86/topstar-laptop.c
17876
17877 TORTURE-TEST MODULES
17878 M:      Davidlohr Bueso <[email protected]>
17879 M:      "Paul E. McKenney" <[email protected]>
17880 M:      Josh Triplett <[email protected]>
17881 L:      [email protected]
17882 S:      Supported
17883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17884 F:      Documentation/RCU/torture.rst
17885 F:      kernel/locking/locktorture.c
17886 F:      kernel/rcu/rcuscale.c
17887 F:      kernel/rcu/rcutorture.c
17888 F:      kernel/rcu/refscale.c
17889 F:      kernel/torture.c
17890
17891 TOSHIBA ACPI EXTRAS DRIVER
17892 M:      Azael Avalos <[email protected]>
17893 L:      [email protected]
17894 S:      Maintained
17895 F:      drivers/platform/x86/toshiba_acpi.c
17896
17897 TOSHIBA BLUETOOTH DRIVER
17898 M:      Azael Avalos <[email protected]>
17899 L:      [email protected]
17900 S:      Maintained
17901 F:      drivers/platform/x86/toshiba_bluetooth.c
17902
17903 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17904 M:      Azael Avalos <[email protected]>
17905 L:      [email protected]
17906 S:      Maintained
17907 F:      drivers/platform/x86/toshiba_haps.c
17908
17909 TOSHIBA SMM DRIVER
17910 M:      Jonathan Buzzard <[email protected]>
17911 S:      Maintained
17912 W:      http://www.buzzard.org.uk/toshiba/
17913 F:      drivers/char/toshiba.c
17914 F:      include/linux/toshiba.h
17915 F:      include/uapi/linux/toshiba.h
17916
17917 TOSHIBA TC358743 DRIVER
17918 M:      Mats Randgaard <[email protected]>
17919 L:      [email protected]
17920 S:      Maintained
17921 F:      drivers/media/i2c/tc358743*
17922 F:      include/media/i2c/tc358743.h
17923
17924 TOSHIBA WMI HOTKEYS DRIVER
17925 M:      Azael Avalos <[email protected]>
17926 L:      [email protected]
17927 S:      Maintained
17928 F:      drivers/platform/x86/toshiba-wmi.c
17929
17930 TPM DEVICE DRIVER
17931 M:      Peter Huewe <[email protected]>
17932 M:      Jarkko Sakkinen <[email protected]>
17933 R:      Jason Gunthorpe <[email protected]>
17934 L:      [email protected]
17935 S:      Maintained
17936 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17937 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
17939 F:      drivers/char/tpm/
17940
17941 TRACING
17942 M:      Steven Rostedt <[email protected]>
17943 M:      Ingo Molnar <[email protected]>
17944 S:      Maintained
17945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17946 F:      Documentation/trace/ftrace.rst
17947 F:      arch/*/*/*/ftrace.h
17948 F:      arch/*/kernel/ftrace.c
17949 F:      include/*/ftrace.h
17950 F:      include/linux/trace*.h
17951 F:      include/trace/
17952 F:      kernel/trace/
17953 F:      tools/testing/selftests/ftrace/
17954
17955 TRACING MMIO ACCESSES (MMIOTRACE)
17956 M:      Steven Rostedt <[email protected]>
17957 M:      Ingo Molnar <[email protected]>
17958 R:      Karol Herbst <[email protected]>
17959 R:      Pekka Paalanen <[email protected]>
17960 L:      [email protected]
17961 L:      [email protected]
17962 S:      Maintained
17963 F:      arch/x86/mm/kmmio.c
17964 F:      arch/x86/mm/mmio-mod.c
17965 F:      arch/x86/mm/testmmiotrace.c
17966 F:      include/linux/mmiotrace.h
17967 F:      kernel/trace/trace_mmiotrace.c
17968
17969 TRIVIAL PATCHES
17970 M:      Jiri Kosina <[email protected]>
17971 S:      Maintained
17972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17973 K:      ^Subject:.*(?i)trivial
17974
17975 TTY LAYER
17976 M:      Greg Kroah-Hartman <[email protected]>
17977 M:      Jiri Slaby <[email protected]>
17978 S:      Supported
17979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17980 F:      Documentation/driver-api/serial/
17981 F:      drivers/tty/
17982 F:      drivers/tty/serial/serial_core.c
17983 F:      include/linux/serial.h
17984 F:      include/linux/serial_core.h
17985 F:      include/linux/tty.h
17986 F:      include/uapi/linux/serial.h
17987 F:      include/uapi/linux/serial_core.h
17988 F:      include/uapi/linux/tty.h
17989
17990 TUA9001 MEDIA DRIVER
17991 M:      Antti Palosaari <[email protected]>
17992 L:      [email protected]
17993 S:      Maintained
17994 W:      https://linuxtv.org
17995 W:      http://palosaari.fi/linux/
17996 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17997 T:      git git://linuxtv.org/anttip/media_tree.git
17998 F:      drivers/media/tuners/tua9001*
17999
18000 TULIP NETWORK DRIVERS
18001 L:      [email protected]
18002 L:      [email protected]
18003 S:      Orphan
18004 F:      drivers/net/ethernet/dec/tulip/
18005
18006 TUN/TAP driver
18007 M:      Maxim Krasnyansky <[email protected]>
18008 S:      Maintained
18009 W:      http://vtun.sourceforge.net/tun
18010 F:      Documentation/networking/tuntap.rst
18011 F:      arch/um/os-Linux/drivers/
18012
18013 TURBOCHANNEL SUBSYSTEM
18014 M:      "Maciej W. Rozycki" <[email protected]>
18015 M:      Ralf Baechle <[email protected]>
18016 L:      [email protected]
18017 S:      Maintained
18018 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
18019 F:      drivers/tc/
18020 F:      include/linux/tc.h
18021
18022 TURBOSTAT UTILITY
18023 M:      "Len Brown" <[email protected]>
18024 L:      [email protected]
18025 S:      Supported
18026 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18027 B:      https://bugzilla.kernel.org
18028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18029 F:      tools/power/x86/turbostat/
18030
18031 TW5864 VIDEO4LINUX DRIVER
18032 M:      Bluecherry Maintainers <[email protected]>
18033 M:      Anton Sviridenko <[email protected]>
18034 M:      Andrey Utkin <[email protected]>
18035 M:      Andrey Utkin <[email protected]>
18036 L:      [email protected]
18037 S:      Supported
18038 F:      drivers/media/pci/tw5864/
18039
18040 TW68 VIDEO4LINUX DRIVER
18041 M:      Hans Verkuil <[email protected]>
18042 L:      [email protected]
18043 S:      Odd Fixes
18044 W:      https://linuxtv.org
18045 T:      git git://linuxtv.org/media_tree.git
18046 F:      drivers/media/pci/tw68/
18047
18048 TW686X VIDEO4LINUX DRIVER
18049 M:      Ezequiel Garcia <[email protected]>
18050 L:      [email protected]
18051 S:      Maintained
18052 W:      http://linuxtv.org
18053 T:      git git://linuxtv.org/media_tree.git
18054 F:      drivers/media/pci/tw686x/
18055
18056 UACCE ACCELERATOR FRAMEWORK
18057 M:      Zhangfei Gao <[email protected]>
18058 M:      Zhou Wang <[email protected]>
18059 L:      [email protected]
18060 L:      [email protected]
18061 S:      Maintained
18062 F:      Documentation/ABI/testing/sysfs-driver-uacce
18063 F:      Documentation/misc-devices/uacce.rst
18064 F:      drivers/misc/uacce/
18065 F:      include/linux/uacce.h
18066 F:      include/uapi/misc/uacce/
18067
18068 UBI FILE SYSTEM (UBIFS)
18069 M:      Richard Weinberger <[email protected]>
18070 L:      [email protected]
18071 S:      Supported
18072 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
18073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18075 F:      Documentation/filesystems/ubifs-authentication.rst
18076 F:      Documentation/filesystems/ubifs.rst
18077 F:      fs/ubifs/
18078
18079 UCLINUX (M68KNOMMU AND COLDFIRE)
18080 M:      Greg Ungerer <[email protected]>
18081 L:      [email protected]
18082 L:      [email protected]  (subscribers-only)
18083 S:      Maintained
18084 W:      http://www.linux-m68k.org/
18085 W:      http://www.uclinux.org/
18086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18087 F:      arch/m68k/*/*_no.*
18088 F:      arch/m68k/68*/
18089 F:      arch/m68k/coldfire/
18090 F:      arch/m68k/include/asm/*_no.*
18091
18092 UDF FILESYSTEM
18093 M:      Jan Kara <[email protected]>
18094 S:      Maintained
18095 F:      Documentation/filesystems/udf.rst
18096 F:      fs/udf/
18097
18098 UDRAW TABLET
18099 M:      Bastien Nocera <[email protected]>
18100 L:      [email protected]
18101 S:      Maintained
18102 F:      drivers/hid/hid-udraw-ps3.c
18103
18104 UFS FILESYSTEM
18105 M:      Evgeniy Dushistov <[email protected]>
18106 S:      Maintained
18107 F:      Documentation/admin-guide/ufs.rst
18108 F:      fs/ufs/
18109
18110 UHID USERSPACE HID IO DRIVER
18111 M:      David Rheinsberg <[email protected]>
18112 L:      [email protected]
18113 S:      Maintained
18114 F:      drivers/hid/uhid.c
18115 F:      include/uapi/linux/uhid.h
18116
18117 ULPI BUS
18118 M:      Heikki Krogerus <[email protected]>
18119 L:      [email protected]
18120 S:      Maintained
18121 F:      drivers/usb/common/ulpi.c
18122 F:      include/linux/ulpi/
18123
18124 UNICODE SUBSYSTEM
18125 M:      Gabriel Krisman Bertazi <[email protected]>
18126 L:      [email protected]
18127 S:      Supported
18128 F:      fs/unicode/
18129
18130 UNIFDEF
18131 M:      Tony Finch <[email protected]>
18132 S:      Maintained
18133 W:      http://dotat.at/prog/unifdef
18134 F:      scripts/unifdef.c
18135
18136 UNIFORM CDROM DRIVER
18137 M:      Jens Axboe <[email protected]>
18138 S:      Maintained
18139 W:      http://www.kernel.dk
18140 F:      Documentation/cdrom/
18141 F:      drivers/cdrom/cdrom.c
18142 F:      include/linux/cdrom.h
18143 F:      include/uapi/linux/cdrom.h
18144
18145 UNISYS S-PAR DRIVERS
18146 M:      David Kershner <[email protected]>
18147 L:      [email protected] (Unisys internal)
18148 S:      Supported
18149 F:      drivers/staging/unisys/
18150 F:      drivers/visorbus/
18151 F:      include/linux/visorbus.h
18152
18153 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18154 R:      Alim Akhtar <[email protected]>
18155 R:      Avri Altman <[email protected]>
18156 L:      [email protected]
18157 S:      Supported
18158 F:      Documentation/scsi/ufs.rst
18159 F:      drivers/scsi/ufs/
18160
18161 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18162 M:      Pedro Sousa <[email protected]>
18163 L:      [email protected]
18164 S:      Supported
18165 F:      drivers/scsi/ufs/*dwc*
18166
18167 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18168 M:      Stanley Chu <[email protected]>
18169 L:      [email protected]
18170 L:      [email protected] (moderated for non-subscribers)
18171 S:      Maintained
18172 F:      drivers/scsi/ufs/ufs-mediatek*
18173
18174 UNSORTED BLOCK IMAGES (UBI)
18175 M:      Richard Weinberger <[email protected]>
18176 L:      [email protected]
18177 S:      Supported
18178 W:      http://www.linux-mtd.infradead.org/
18179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18181 F:      drivers/mtd/ubi/
18182 F:      include/linux/mtd/ubi.h
18183 F:      include/uapi/mtd/ubi-user.h
18184
18185 USB "USBNET" DRIVER FRAMEWORK
18186 M:      Oliver Neukum <[email protected]>
18187 L:      [email protected]
18188 S:      Maintained
18189 W:      http://www.linux-usb.org/usbnet
18190 F:      drivers/net/usb/usbnet.c
18191 F:      include/linux/usb/usbnet.h
18192
18193 USB ACM DRIVER
18194 M:      Oliver Neukum <[email protected]>
18195 L:      [email protected]
18196 S:      Maintained
18197 F:      Documentation/usb/acm.rst
18198 F:      drivers/usb/class/cdc-acm.*
18199
18200 USB APPLE MFI FASTCHARGE DRIVER
18201 M:      Bastien Nocera <[email protected]>
18202 L:      [email protected]
18203 S:      Maintained
18204 F:      drivers/usb/misc/apple-mfi-fastcharge.c
18205
18206 USB AR5523 WIRELESS DRIVER
18207 M:      Pontus Fuchs <[email protected]>
18208 L:      [email protected]
18209 S:      Maintained
18210 F:      drivers/net/wireless/ath/ar5523/
18211
18212 USB ATTACHED SCSI
18213 M:      Oliver Neukum <[email protected]>
18214 L:      [email protected]
18215 L:      [email protected]
18216 S:      Maintained
18217 F:      drivers/usb/storage/uas.c
18218
18219 USB CDC ETHERNET DRIVER
18220 M:      Oliver Neukum <[email protected]>
18221 L:      [email protected]
18222 S:      Maintained
18223 F:      drivers/net/usb/cdc_*.c
18224 F:      include/uapi/linux/usb/cdc.h
18225
18226 USB CHAOSKEY DRIVER
18227 M:      Keith Packard <[email protected]>
18228 L:      [email protected]
18229 S:      Maintained
18230 F:      drivers/usb/misc/chaoskey.c
18231
18232 USB CYPRESS C67X00 DRIVER
18233 M:      Peter Korsgaard <[email protected]>
18234 L:      [email protected]
18235 S:      Maintained
18236 F:      drivers/usb/c67x00/
18237
18238 USB DAVICOM DM9601 DRIVER
18239 M:      Peter Korsgaard <[email protected]>
18240 L:      [email protected]
18241 S:      Maintained
18242 W:      http://www.linux-usb.org/usbnet
18243 F:      drivers/net/usb/dm9601.c
18244
18245 USB EHCI DRIVER
18246 M:      Alan Stern <[email protected]>
18247 L:      [email protected]
18248 S:      Maintained
18249 F:      Documentation/usb/ehci.rst
18250 F:      drivers/usb/host/ehci*
18251
18252 USB GADGET/PERIPHERAL SUBSYSTEM
18253 M:      Felipe Balbi <[email protected]>
18254 L:      [email protected]
18255 S:      Maintained
18256 W:      http://www.linux-usb.org/gadget
18257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18258 F:      drivers/usb/gadget/
18259 F:      include/linux/usb/gadget*
18260
18261 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
18262 M:      Jiri Kosina <[email protected]>
18263 M:      Benjamin Tissoires <[email protected]>
18264 L:      [email protected]
18265 S:      Maintained
18266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
18267 F:      Documentation/hid/hiddev.rst
18268 F:      drivers/hid/usbhid/
18269
18270 USB INTEL XHCI ROLE MUX DRIVER
18271 M:      Hans de Goede <[email protected]>
18272 L:      [email protected]
18273 S:      Maintained
18274 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
18275
18276 USB IP DRIVER FOR HISILICON KIRIN
18277 M:      Yu Chen <[email protected]>
18278 M:      Binghui Wang <[email protected]>
18279 L:      [email protected]
18280 S:      Maintained
18281 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
18282 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
18283
18284 USB ISP116X DRIVER
18285 M:      Olav Kongas <[email protected]>
18286 L:      [email protected]
18287 S:      Maintained
18288 F:      drivers/usb/host/isp116x*
18289 F:      include/linux/usb/isp116x.h
18290
18291 USB LAN78XX ETHERNET DRIVER
18292 M:      Woojung Huh <[email protected]>
18293 M:      Microchip Linux Driver Support <[email protected]>
18294 L:      [email protected]
18295 S:      Maintained
18296 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
18297 F:      drivers/net/usb/lan78xx.*
18298 F:      include/dt-bindings/net/microchip-lan78xx.h
18299
18300 USB MASS STORAGE DRIVER
18301 M:      Alan Stern <[email protected]>
18302 L:      [email protected]
18303 L:      [email protected]
18304 S:      Maintained
18305 F:      drivers/usb/storage/
18306
18307 USB MIDI DRIVER
18308 M:      Clemens Ladisch <[email protected]>
18309 L:      [email protected] (moderated for non-subscribers)
18310 S:      Maintained
18311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18312 F:      sound/usb/midi.*
18313
18314 USB NETWORKING DRIVERS
18315 L:      [email protected]
18316 S:      Odd Fixes
18317 F:      drivers/net/usb/
18318
18319 USB OHCI DRIVER
18320 M:      Alan Stern <[email protected]>
18321 L:      [email protected]
18322 S:      Maintained
18323 F:      Documentation/usb/ohci.rst
18324 F:      drivers/usb/host/ohci*
18325
18326 USB OTG FSM (Finite State Machine)
18327 M:      Peter Chen <[email protected]>
18328 L:      [email protected]
18329 S:      Maintained
18330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18331 F:      drivers/usb/common/usb-otg-fsm.c
18332
18333 USB OVER IP DRIVER
18334 M:      Valentina Manea <[email protected]>
18335 M:      Shuah Khan <[email protected]>
18336 M:      Shuah Khan <[email protected]>
18337 L:      [email protected]
18338 S:      Maintained
18339 F:      Documentation/usb/usbip_protocol.rst
18340 F:      drivers/usb/usbip/
18341 F:      tools/testing/selftests/drivers/usb/usbip/
18342 F:      tools/usb/usbip/
18343
18344 USB PEGASUS DRIVER
18345 M:      Petko Manolov <[email protected]>
18346 L:      [email protected]
18347 L:      [email protected]
18348 S:      Maintained
18349 W:      https://github.com/petkan/pegasus
18350 T:      git git://github.com/petkan/pegasus.git
18351 F:      drivers/net/usb/pegasus.*
18352
18353 USB PHY LAYER
18354 M:      Felipe Balbi <[email protected]>
18355 L:      [email protected]
18356 S:      Maintained
18357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18358 F:      drivers/usb/phy/
18359
18360 USB PRINTER DRIVER (usblp)
18361 M:      Pete Zaitcev <[email protected]>
18362 L:      [email protected]
18363 S:      Supported
18364 F:      drivers/usb/class/usblp.c
18365
18366 USB RAW GADGET DRIVER
18367 R:      Andrey Konovalov <[email protected]>
18368 L:      [email protected]
18369 S:      Maintained
18370 F:      Documentation/usb/raw-gadget.rst
18371 F:      drivers/usb/gadget/legacy/raw_gadget.c
18372 F:      include/uapi/linux/usb/raw_gadget.h
18373
18374 USB QMI WWAN NETWORK DRIVER
18375 M:      Bjørn Mork <[email protected]>
18376 L:      [email protected]
18377 S:      Maintained
18378 F:      Documentation/ABI/testing/sysfs-class-net-qmi
18379 F:      drivers/net/usb/qmi_wwan.c
18380
18381 USB RTL8150 DRIVER
18382 M:      Petko Manolov <[email protected]>
18383 L:      [email protected]
18384 L:      [email protected]
18385 S:      Maintained
18386 W:      https://github.com/petkan/rtl8150
18387 T:      git git://github.com/petkan/rtl8150.git
18388 F:      drivers/net/usb/rtl8150.c
18389
18390 USB SERIAL SUBSYSTEM
18391 M:      Johan Hovold <[email protected]>
18392 L:      [email protected]
18393 S:      Maintained
18394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18395 F:      Documentation/usb/usb-serial.rst
18396 F:      drivers/usb/serial/
18397 F:      include/linux/usb/serial.h
18398
18399 USB SMSC75XX ETHERNET DRIVER
18400 M:      Steve Glendinning <[email protected]>
18401 L:      [email protected]
18402 S:      Maintained
18403 F:      drivers/net/usb/smsc75xx.*
18404
18405 USB SMSC95XX ETHERNET DRIVER
18406 M:      Steve Glendinning <[email protected]>
18407 M:      Microchip Linux Driver Support <[email protected]>
18408 L:      [email protected]
18409 S:      Maintained
18410 F:      drivers/net/usb/smsc95xx.*
18411
18412 USB SUBSYSTEM
18413 M:      Greg Kroah-Hartman <[email protected]>
18414 L:      [email protected]
18415 S:      Supported
18416 W:      http://www.linux-usb.org
18417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18418 F:      Documentation/devicetree/bindings/usb/
18419 F:      Documentation/usb/
18420 F:      drivers/usb/
18421 F:      include/linux/usb.h
18422 F:      include/linux/usb/
18423
18424 USB TYPEC BUS FOR ALTERNATE MODES
18425 M:      Heikki Krogerus <[email protected]>
18426 L:      [email protected]
18427 S:      Maintained
18428 F:      Documentation/ABI/testing/sysfs-bus-typec
18429 F:      Documentation/driver-api/usb/typec_bus.rst
18430 F:      drivers/usb/typec/altmodes/
18431 F:      include/linux/usb/typec_altmode.h
18432
18433 USB TYPEC CLASS
18434 M:      Heikki Krogerus <[email protected]>
18435 L:      [email protected]
18436 S:      Maintained
18437 F:      Documentation/ABI/testing/sysfs-class-typec
18438 F:      Documentation/driver-api/usb/typec.rst
18439 F:      drivers/usb/typec/
18440 F:      include/linux/usb/typec.h
18441
18442 USB TYPEC INTEL PMC MUX DRIVER
18443 M:      Heikki Krogerus <[email protected]>
18444 L:      [email protected]
18445 S:      Maintained
18446 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
18447 F:      drivers/usb/typec/mux/intel_pmc_mux.c
18448
18449 USB TYPEC PI3USB30532 MUX DRIVER
18450 M:      Hans de Goede <[email protected]>
18451 L:      [email protected]
18452 S:      Maintained
18453 F:      drivers/usb/typec/mux/pi3usb30532.c
18454
18455 USB TYPEC PORT CONTROLLER DRIVERS
18456 M:      Guenter Roeck <[email protected]>
18457 L:      [email protected]
18458 S:      Maintained
18459 F:      drivers/usb/typec/tcpm/
18460
18461 USB UHCI DRIVER
18462 M:      Alan Stern <[email protected]>
18463 L:      [email protected]
18464 S:      Maintained
18465 F:      drivers/usb/host/uhci*
18466
18467 USB VIDEO CLASS
18468 M:      Laurent Pinchart <[email protected]>
18469 L:      [email protected] (subscribers-only)
18470 L:      [email protected]
18471 S:      Maintained
18472 W:      http://www.ideasonboard.org/uvc/
18473 T:      git git://linuxtv.org/media_tree.git
18474 F:      drivers/media/usb/uvc/
18475 F:      include/uapi/linux/uvcvideo.h
18476
18477 USB WEBCAM GADGET
18478 M:      Laurent Pinchart <[email protected]>
18479 L:      [email protected]
18480 S:      Maintained
18481 F:      drivers/usb/gadget/function/*uvc*
18482 F:      drivers/usb/gadget/legacy/webcam.c
18483 F:      include/uapi/linux/usb/g_uvc.h
18484
18485 USB WIRELESS RNDIS DRIVER (rndis_wlan)
18486 M:      Jussi Kivilinna <[email protected]>
18487 L:      [email protected]
18488 S:      Maintained
18489 F:      drivers/net/wireless/rndis_wlan.c
18490
18491 USB XHCI DRIVER
18492 M:      Mathias Nyman <[email protected]>
18493 L:      [email protected]
18494 S:      Supported
18495 F:      drivers/usb/host/pci-quirks*
18496 F:      drivers/usb/host/xhci*
18497
18498 USB ZD1201 DRIVER
18499 L:      [email protected]
18500 S:      Orphan
18501 W:      http://linux-lc100020.sourceforge.net
18502 F:      drivers/net/wireless/zydas/zd1201.*
18503
18504 USB ZR364XX DRIVER
18505 M:      Antoine Jacquet <[email protected]>
18506 L:      [email protected]
18507 L:      [email protected]
18508 S:      Maintained
18509 W:      http://royale.zerezo.com/zr364xx/
18510 T:      git git://linuxtv.org/media_tree.git
18511 F:      Documentation/admin-guide/media/zr364xx*
18512 F:      drivers/media/usb/zr364xx/
18513
18514 USER-MODE LINUX (UML)
18515 M:      Jeff Dike <[email protected]>
18516 M:      Richard Weinberger <[email protected]>
18517 M:      Anton Ivanov <[email protected]>
18518 L:      [email protected]
18519 S:      Maintained
18520 W:      http://user-mode-linux.sourceforge.net
18521 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
18522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
18523 F:      Documentation/virt/uml/
18524 F:      arch/um/
18525 F:      arch/x86/um/
18526 F:      fs/hostfs/
18527
18528 USERSPACE COPYIN/COPYOUT (UIOVEC)
18529 M:      Alexander Viro <[email protected]>
18530 S:      Maintained
18531 F:      include/linux/uio.h
18532 F:      lib/iov_iter.c
18533
18534 USERSPACE DMA BUFFER DRIVER
18535 M:      Gerd Hoffmann <[email protected]>
18536 L:      [email protected]
18537 S:      Maintained
18538 T:      git git://anongit.freedesktop.org/drm/drm-misc
18539 F:      drivers/dma-buf/udmabuf.c
18540 F:      include/uapi/linux/udmabuf.h
18541
18542 USERSPACE I/O (UIO)
18543 M:      Greg Kroah-Hartman <[email protected]>
18544 S:      Maintained
18545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18546 F:      Documentation/driver-api/uio-howto.rst
18547 F:      drivers/uio/
18548 F:      include/linux/uio_driver.h
18549
18550 UTIL-LINUX PACKAGE
18551 M:      Karel Zak <[email protected]>
18552 L:      [email protected]
18553 S:      Maintained
18554 W:      http://en.wikipedia.org/wiki/Util-linux
18555 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
18556
18557 UUID HELPERS
18558 M:      Christoph Hellwig <[email protected]>
18559 R:      Andy Shevchenko <[email protected]>
18560 L:      [email protected]
18561 S:      Maintained
18562 T:      git git://git.infradead.org/users/hch/uuid.git
18563 F:      include/linux/uuid.h
18564 F:      include/uapi/linux/uuid.h
18565 F:      lib/test_uuid.c
18566 F:      lib/uuid.c
18567
18568 UV SYSFS DRIVER
18569 M:      Justin Ernst <[email protected]>
18570 L:      [email protected]
18571 S:      Maintained
18572 F:      drivers/platform/x86/uv_sysfs.c
18573
18574 UVESAFB DRIVER
18575 M:      Michal Januszewski <[email protected]>
18576 L:      [email protected]
18577 S:      Maintained
18578 W:      https://github.com/mjanusz/v86d
18579 F:      Documentation/fb/uvesafb.rst
18580 F:      drivers/video/fbdev/uvesafb.*
18581
18582 Ux500 CLOCK DRIVERS
18583 M:      Ulf Hansson <[email protected]>
18584 L:      [email protected]
18585 L:      [email protected] (moderated for non-subscribers)
18586 S:      Maintained
18587 F:      drivers/clk/ux500/
18588
18589 VF610 NAND DRIVER
18590 M:      Stefan Agner <[email protected]>
18591 L:      [email protected]
18592 S:      Supported
18593 F:      drivers/mtd/nand/raw/vf610_nfc.c
18594
18595 VFAT/FAT/MSDOS FILESYSTEM
18596 M:      OGAWA Hirofumi <[email protected]>
18597 S:      Maintained
18598 F:      Documentation/filesystems/vfat.rst
18599 F:      fs/fat/
18600
18601 VFIO DRIVER
18602 M:      Alex Williamson <[email protected]>
18603 R:      Cornelia Huck <[email protected]>
18604 L:      [email protected]
18605 S:      Maintained
18606 T:      git git://github.com/awilliam/linux-vfio.git
18607 F:      Documentation/driver-api/vfio.rst
18608 F:      drivers/vfio/
18609 F:      include/linux/vfio.h
18610 F:      include/uapi/linux/vfio.h
18611
18612 VFIO FSL-MC DRIVER
18613 M:      Diana Craciun <[email protected]>
18614 L:      [email protected]
18615 S:      Maintained
18616 F:      drivers/vfio/fsl-mc/
18617
18618 VFIO MEDIATED DEVICE DRIVERS
18619 M:      Kirti Wankhede <[email protected]>
18620 L:      [email protected]
18621 S:      Maintained
18622 F:      Documentation/driver-api/vfio-mediated-device.rst
18623 F:      drivers/vfio/mdev/
18624 F:      include/linux/mdev.h
18625 F:      samples/vfio-mdev/
18626
18627 VFIO PLATFORM DRIVER
18628 M:      Eric Auger <[email protected]>
18629 L:      [email protected]
18630 S:      Maintained
18631 F:      drivers/vfio/platform/
18632
18633 VGA_SWITCHEROO
18634 R:      Lukas Wunner <[email protected]>
18635 S:      Maintained
18636 T:      git git://anongit.freedesktop.org/drm/drm-misc
18637 F:      Documentation/gpu/vga-switcheroo.rst
18638 F:      drivers/gpu/vga/vga_switcheroo.c
18639 F:      include/linux/vga_switcheroo.h
18640
18641 VIA RHINE NETWORK DRIVER
18642 S:      Maintained
18643 M:      Kevin Brace <[email protected]>
18644 F:      drivers/net/ethernet/via/via-rhine.c
18645
18646 VIA SD/MMC CARD CONTROLLER DRIVER
18647 M:      Bruce Chang <[email protected]>
18648 M:      Harald Welte <[email protected]>
18649 S:      Maintained
18650 F:      drivers/mmc/host/via-sdmmc.c
18651
18652 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18653 M:      Florian Tobias Schandinat <[email protected]>
18654 L:      [email protected]
18655 S:      Maintained
18656 F:      drivers/video/fbdev/via/
18657 F:      include/linux/via-core.h
18658 F:      include/linux/via-gpio.h
18659 F:      include/linux/via_i2c.h
18660
18661 VIA VELOCITY NETWORK DRIVER
18662 M:      Francois Romieu <[email protected]>
18663 L:      [email protected]
18664 S:      Maintained
18665 F:      drivers/net/ethernet/via/via-velocity.*
18666
18667 VICODEC VIRTUAL CODEC DRIVER
18668 M:      Hans Verkuil <[email protected]>
18669 L:      [email protected]
18670 S:      Maintained
18671 W:      https://linuxtv.org
18672 T:      git git://linuxtv.org/media_tree.git
18673 F:      drivers/media/test-drivers/vicodec/*
18674
18675 VIDEO I2C POLLING DRIVER
18676 M:      Matt Ranostay <[email protected]>
18677 L:      [email protected]
18678 S:      Maintained
18679 F:      drivers/media/i2c/video-i2c.c
18680
18681 VIDEO MULTIPLEXER DRIVER
18682 M:      Philipp Zabel <[email protected]>
18683 L:      [email protected]
18684 S:      Maintained
18685 F:      drivers/media/platform/video-mux.c
18686
18687 VIDEOBUF2 FRAMEWORK
18688 M:      Tomasz Figa <[email protected]>
18689 M:      Marek Szyprowski <[email protected]>
18690 L:      [email protected]
18691 S:      Maintained
18692 F:      drivers/media/common/videobuf2/*
18693 F:      include/media/videobuf2-*
18694
18695 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18696 M:      Helen Koike <[email protected]>
18697 R:      Shuah Khan <[email protected]>
18698 L:      [email protected]
18699 S:      Maintained
18700 W:      https://linuxtv.org
18701 T:      git git://linuxtv.org/media_tree.git
18702 F:      drivers/media/test-drivers/vimc/*
18703
18704 VIRT LIB
18705 M:      Alex Williamson <[email protected]>
18706 M:      Paolo Bonzini <[email protected]>
18707 L:      [email protected]
18708 S:      Supported
18709 F:      virt/lib/
18710
18711 VIRTIO AND VHOST VSOCK DRIVER
18712 M:      Stefan Hajnoczi <[email protected]>
18713 M:      Stefano Garzarella <[email protected]>
18714 L:      [email protected]
18715 L:      [email protected]
18716 L:      [email protected]
18717 S:      Maintained
18718 F:      drivers/net/vsockmon.c
18719 F:      drivers/vhost/vsock.c
18720 F:      include/linux/virtio_vsock.h
18721 F:      include/uapi/linux/virtio_vsock.h
18722 F:      include/uapi/linux/vm_sockets_diag.h
18723 F:      include/uapi/linux/vsockmon.h
18724 F:      net/vmw_vsock/af_vsock_tap.c
18725 F:      net/vmw_vsock/diag.c
18726 F:      net/vmw_vsock/virtio_transport.c
18727 F:      net/vmw_vsock/virtio_transport_common.c
18728 F:      net/vmw_vsock/vsock_loopback.c
18729 F:      tools/testing/vsock/
18730
18731 VIRTIO BLOCK AND SCSI DRIVERS
18732 M:      "Michael S. Tsirkin" <[email protected]>
18733 M:      Jason Wang <[email protected]>
18734 R:      Paolo Bonzini <[email protected]>
18735 R:      Stefan Hajnoczi <[email protected]>
18736 L:      [email protected]
18737 S:      Maintained
18738 F:      drivers/block/virtio_blk.c
18739 F:      drivers/scsi/virtio_scsi.c
18740 F:      drivers/vhost/scsi.c
18741 F:      include/uapi/linux/virtio_blk.h
18742 F:      include/uapi/linux/virtio_scsi.h
18743
18744 VIRTIO CONSOLE DRIVER
18745 M:      Amit Shah <[email protected]>
18746 L:      [email protected]
18747 S:      Maintained
18748 F:      drivers/char/virtio_console.c
18749 F:      include/linux/virtio_console.h
18750 F:      include/uapi/linux/virtio_console.h
18751
18752 VIRTIO CORE AND NET DRIVERS
18753 M:      "Michael S. Tsirkin" <[email protected]>
18754 M:      Jason Wang <[email protected]>
18755 L:      [email protected]
18756 S:      Maintained
18757 F:      Documentation/devicetree/bindings/virtio/
18758 F:      drivers/block/virtio_blk.c
18759 F:      drivers/crypto/virtio/
18760 F:      drivers/net/virtio_net.c
18761 F:      drivers/vdpa/
18762 F:      drivers/virtio/
18763 F:      include/linux/vdpa.h
18764 F:      include/linux/virtio*.h
18765 F:      include/uapi/linux/virtio_*.h
18766 F:      tools/virtio/
18767
18768 VIRTIO BALLOON
18769 M:      "Michael S. Tsirkin" <[email protected]>
18770 M:      David Hildenbrand <[email protected]>
18771 L:      [email protected]
18772 S:      Maintained
18773 F:      drivers/virtio/virtio_balloon.c
18774 F:      include/uapi/linux/virtio_balloon.h
18775 F:      include/linux/balloon_compaction.h
18776 F:      mm/balloon_compaction.c
18777
18778 VIRTIO CRYPTO DRIVER
18779 M:      Gonglei <[email protected]>
18780 L:      [email protected]
18781 L:      [email protected]
18782 S:      Maintained
18783 F:      drivers/crypto/virtio/
18784 F:      include/uapi/linux/virtio_crypto.h
18785
18786 VIRTIO DRIVERS FOR S390
18787 M:      Cornelia Huck <[email protected]>
18788 M:      Halil Pasic <[email protected]>
18789 L:      [email protected]
18790 L:      [email protected]
18791 L:      [email protected]
18792 S:      Supported
18793 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18794 F:      drivers/s390/virtio/
18795
18796 VIRTIO FILE SYSTEM
18797 M:      Vivek Goyal <[email protected]>
18798 M:      Stefan Hajnoczi <[email protected]>
18799 M:      Miklos Szeredi <[email protected]>
18800 L:      [email protected]
18801 L:      [email protected]
18802 S:      Supported
18803 W:      https://virtio-fs.gitlab.io/
18804 F:      Documentation/filesystems/virtiofs.rst
18805 F:      fs/fuse/virtio_fs.c
18806 F:      include/uapi/linux/virtio_fs.h
18807
18808 VIRTIO GPU DRIVER
18809 M:      David Airlie <[email protected]>
18810 M:      Gerd Hoffmann <[email protected]>
18811 L:      [email protected]
18812 L:      [email protected]
18813 S:      Maintained
18814 T:      git git://anongit.freedesktop.org/drm/drm-misc
18815 F:      drivers/gpu/drm/virtio/
18816 F:      include/uapi/linux/virtio_gpu.h
18817
18818 VIRTIO HOST (VHOST)
18819 M:      "Michael S. Tsirkin" <[email protected]>
18820 M:      Jason Wang <[email protected]>
18821 L:      [email protected]
18822 L:      [email protected]
18823 L:      [email protected]
18824 S:      Maintained
18825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18826 F:      drivers/vhost/
18827 F:      include/linux/vhost_iotlb.h
18828 F:      include/uapi/linux/vhost.h
18829
18830 VIRTIO INPUT DRIVER
18831 M:      Gerd Hoffmann <[email protected]>
18832 S:      Maintained
18833 F:      drivers/virtio/virtio_input.c
18834 F:      include/uapi/linux/virtio_input.h
18835
18836 VIRTIO IOMMU DRIVER
18837 M:      Jean-Philippe Brucker <[email protected]>
18838 L:      [email protected]
18839 S:      Maintained
18840 F:      drivers/iommu/virtio-iommu.c
18841 F:      include/uapi/linux/virtio_iommu.h
18842
18843 VIRTIO MEM DRIVER
18844 M:      David Hildenbrand <[email protected]>
18845 L:      [email protected]
18846 S:      Maintained
18847 W:      https://virtio-mem.gitlab.io/
18848 F:      drivers/virtio/virtio_mem.c
18849 F:      include/uapi/linux/virtio_mem.h
18850
18851 VIRTUAL BOX GUEST DEVICE DRIVER
18852 M:      Hans de Goede <[email protected]>
18853 M:      Arnd Bergmann <[email protected]>
18854 M:      Greg Kroah-Hartman <[email protected]>
18855 S:      Maintained
18856 F:      drivers/virt/vboxguest/
18857 F:      include/linux/vbox_utils.h
18858 F:      include/uapi/linux/vbox*.h
18859
18860 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18861 M:      Hans de Goede <[email protected]>
18862 L:      [email protected]
18863 S:      Maintained
18864 F:      fs/vboxsf/*
18865
18866 VIRTUAL SERIO DEVICE DRIVER
18867 M:      Stephen Chandler Paul <[email protected]>
18868 S:      Maintained
18869 F:      drivers/input/serio/userio.c
18870 F:      include/uapi/linux/userio.h
18871
18872 VIVID VIRTUAL VIDEO DRIVER
18873 M:      Hans Verkuil <[email protected]>
18874 L:      [email protected]
18875 S:      Maintained
18876 W:      https://linuxtv.org
18877 T:      git git://linuxtv.org/media_tree.git
18878 F:      drivers/media/test-drivers/vivid/*
18879
18880 VIDTV VIRTUAL DIGITAL TV DRIVER
18881 M:      Daniel W. S. Almeida <[email protected]>
18882 L:      [email protected]
18883 S:      Maintained
18884 W:      https://linuxtv.org
18885 T:      git git://linuxtv.org/media_tree.git
18886 F:      drivers/media/test-drivers/vidtv/*
18887
18888 VLYNQ BUS
18889 M:      Florian Fainelli <[email protected]>
18890 L:      [email protected] (subscribers-only)
18891 S:      Maintained
18892 F:      drivers/vlynq/vlynq.c
18893 F:      include/linux/vlynq.h
18894
18895 VME SUBSYSTEM
18896 M:      Martyn Welch <[email protected]>
18897 M:      Manohar Vanga <[email protected]>
18898 M:      Greg Kroah-Hartman <[email protected]>
18899 L:      [email protected]
18900 S:      Maintained
18901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18902 F:      Documentation/driver-api/vme.rst
18903 F:      drivers/staging/vme/
18904 F:      drivers/vme/
18905 F:      include/linux/vme*
18906
18907 VMWARE BALLOON DRIVER
18908 M:      Nadav Amit <[email protected]>
18909 M:      "VMware, Inc." <[email protected]>
18910 L:      [email protected]
18911 S:      Maintained
18912 F:      drivers/misc/vmw_balloon.c
18913
18914 VMWARE HYPERVISOR INTERFACE
18915 M:      Deep Shah <[email protected]>
18916 M:      "VMware, Inc." <[email protected]>
18917 L:      [email protected]
18918 S:      Supported
18919 F:      arch/x86/include/asm/vmware.h
18920 F:      arch/x86/kernel/cpu/vmware.c
18921
18922 VMWARE PVRDMA DRIVER
18923 M:      Adit Ranadive <[email protected]>
18924 M:      VMware PV-Drivers <[email protected]>
18925 L:      [email protected]
18926 S:      Maintained
18927 F:      drivers/infiniband/hw/vmw_pvrdma/
18928
18929 VMware PVSCSI driver
18930 M:      Jim Gill <[email protected]>
18931 M:      VMware PV-Drivers <[email protected]>
18932 L:      [email protected]
18933 S:      Maintained
18934 F:      drivers/scsi/vmw_pvscsi.c
18935 F:      drivers/scsi/vmw_pvscsi.h
18936
18937 VMWARE VIRTUAL PTP CLOCK DRIVER
18938 M:      Vivek Thampi <[email protected]>
18939 M:      "VMware, Inc." <[email protected]>
18940 L:      [email protected]
18941 S:      Supported
18942 F:      drivers/ptp/ptp_vmw.c
18943
18944 VMWARE VMMOUSE SUBDRIVER
18945 M:      "VMware Graphics" <[email protected]>
18946 M:      "VMware, Inc." <[email protected]>
18947 L:      [email protected]
18948 S:      Maintained
18949 F:      drivers/input/mouse/vmmouse.c
18950 F:      drivers/input/mouse/vmmouse.h
18951
18952 VMWARE VMXNET3 ETHERNET DRIVER
18953 M:      Ronak Doshi <[email protected]>
18954 M:      "VMware, Inc." <[email protected]>
18955 L:      [email protected]
18956 S:      Maintained
18957 F:      drivers/net/vmxnet3/
18958
18959 VOCORE VOCORE2 BOARD
18960 M:      Harvey Hunt <[email protected]>
18961 L:      [email protected]
18962 S:      Maintained
18963 F:      arch/mips/boot/dts/ralink/vocore2.dts
18964
18965 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18966 M:      Liam Girdwood <[email protected]>
18967 M:      Mark Brown <[email protected]>
18968 L:      [email protected]
18969 S:      Supported
18970 W:      http://www.slimlogic.co.uk/?p=48
18971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18972 F:      Documentation/devicetree/bindings/regulator/
18973 F:      Documentation/power/regulator/
18974 F:      drivers/regulator/
18975 F:      include/dt-bindings/regulator/
18976 F:      include/linux/regulator/
18977 K:      regulator_get_optional
18978
18979 VRF
18980 M:      David Ahern <[email protected]>
18981 M:      Shrijeet Mukherjee <[email protected]>
18982 L:      [email protected]
18983 S:      Maintained
18984 F:      Documentation/networking/vrf.rst
18985 F:      drivers/net/vrf.c
18986
18987 VSPRINTF
18988 M:      Petr Mladek <[email protected]>
18989 M:      Steven Rostedt <[email protected]>
18990 M:      Sergey Senozhatsky <[email protected]>
18991 R:      Andy Shevchenko <[email protected]>
18992 R:      Rasmus Villemoes <[email protected]>
18993 S:      Maintained
18994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18995 F:      Documentation/core-api/printk-formats.rst
18996 F:      lib/test_printf.c
18997 F:      lib/vsprintf.c
18998
18999 VT1211 HARDWARE MONITOR DRIVER
19000 M:      Juerg Haefliger <[email protected]>
19001 L:      [email protected]
19002 S:      Maintained
19003 F:      Documentation/hwmon/vt1211.rst
19004 F:      drivers/hwmon/vt1211.c
19005
19006 VT8231 HARDWARE MONITOR DRIVER
19007 M:      Roger Lucas <[email protected]>
19008 L:      [email protected]
19009 S:      Maintained
19010 F:      drivers/hwmon/vt8231.c
19011
19012 VUB300 USB to SDIO/SD/MMC bridge chip
19013 L:      [email protected]
19014 S:      Orphan
19015 F:      drivers/mmc/host/vub300.c
19016
19017 W1 DALLAS'S 1-WIRE BUS
19018 M:      Evgeniy Polyakov <[email protected]>
19019 S:      Maintained
19020 F:      Documentation/devicetree/bindings/w1/
19021 F:      Documentation/w1/
19022 F:      drivers/w1/
19023 F:      include/linux/w1.h
19024
19025 W83791D HARDWARE MONITORING DRIVER
19026 M:      Marc Hulsman <[email protected]>
19027 L:      [email protected]
19028 S:      Maintained
19029 F:      Documentation/hwmon/w83791d.rst
19030 F:      drivers/hwmon/w83791d.c
19031
19032 W83793 HARDWARE MONITORING DRIVER
19033 M:      Rudolf Marek <[email protected]>
19034 L:      [email protected]
19035 S:      Maintained
19036 F:      Documentation/hwmon/w83793.rst
19037 F:      drivers/hwmon/w83793.c
19038
19039 W83795 HARDWARE MONITORING DRIVER
19040 M:      Jean Delvare <[email protected]>
19041 L:      [email protected]
19042 S:      Maintained
19043 F:      drivers/hwmon/w83795.c
19044
19045 W83L51xD SD/MMC CARD INTERFACE DRIVER
19046 M:      Pierre Ossman <[email protected]>
19047 S:      Maintained
19048 F:      drivers/mmc/host/wbsd.*
19049
19050 WACOM PROTOCOL 4 SERIAL TABLETS
19051 M:      Julian Squires <[email protected]>
19052 M:      Hans de Goede <[email protected]>
19053 L:      [email protected]
19054 S:      Maintained
19055 F:      drivers/input/tablet/wacom_serial4.c
19056
19057 WATCHDOG DEVICE DRIVERS
19058 M:      Wim Van Sebroeck <[email protected]>
19059 M:      Guenter Roeck <[email protected]>
19060 L:      [email protected]
19061 S:      Maintained
19062 W:      http://www.linux-watchdog.org/
19063 T:      git git://www.linux-watchdog.org/linux-watchdog.git
19064 F:      Documentation/devicetree/bindings/watchdog/
19065 F:      Documentation/watchdog/
19066 F:      drivers/watchdog/
19067 F:      include/linux/watchdog.h
19068 F:      include/uapi/linux/watchdog.h
19069
19070 WHISKEYCOVE PMIC GPIO DRIVER
19071 M:      Kuppuswamy Sathyanarayanan <[email protected]>
19072 L:      [email protected]
19073 S:      Maintained
19074 F:      drivers/gpio/gpio-wcove.c
19075
19076 WHWAVE RTC DRIVER
19077 M:      Dianlong Li <[email protected]>
19078 L:      [email protected]
19079 S:      Maintained
19080 F:      drivers/rtc/rtc-sd3078.c
19081
19082 WIIMOTE HID DRIVER
19083 M:      David Rheinsberg <[email protected]>
19084 L:      [email protected]
19085 S:      Maintained
19086 F:      drivers/hid/hid-wiimote*
19087
19088 WILOCITY WIL6210 WIRELESS DRIVER
19089 M:      Maya Erez <[email protected]>
19090 L:      [email protected]
19091 L:      [email protected]
19092 S:      Supported
19093 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
19094 F:      drivers/net/wireless/ath/wil6210/
19095
19096 WINBOND CIR DRIVER
19097 M:      David Härdeman <[email protected]>
19098 S:      Maintained
19099 F:      drivers/media/rc/winbond-cir.c
19100
19101 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
19102 M:      William Breathitt Gray <[email protected]>
19103 L:      [email protected]
19104 S:      Maintained
19105 F:      drivers/watchdog/ebc-c384_wdt.c
19106
19107 WINSYSTEMS WS16C48 GPIO DRIVER
19108 M:      William Breathitt Gray <[email protected]>
19109 L:      [email protected]
19110 S:      Maintained
19111 F:      drivers/gpio/gpio-ws16c48.c
19112
19113 WIREGUARD SECURE NETWORK TUNNEL
19114 M:      Jason A. Donenfeld <[email protected]>
19115 L:      [email protected]
19116 L:      [email protected]
19117 S:      Maintained
19118 F:      drivers/net/wireguard/
19119 F:      tools/testing/selftests/wireguard/
19120
19121 WISTRON LAPTOP BUTTON DRIVER
19122 M:      Miloslav Trmac <[email protected]>
19123 S:      Maintained
19124 F:      drivers/input/misc/wistron_btns.c
19125
19126 WL3501 WIRELESS PCMCIA CARD DRIVER
19127 L:      [email protected]
19128 S:      Odd fixes
19129 F:      drivers/net/wireless/wl3501*
19130
19131 WOLFSON MICROELECTRONICS DRIVERS
19132 L:      [email protected]
19133 S:      Supported
19134 W:      https://github.com/CirrusLogic/linux-drivers/wiki
19135 T:      git https://github.com/CirrusLogic/linux-drivers.git
19136 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19137 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19138 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
19139 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19140 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19141 F:      Documentation/hwmon/wm83??.rst
19142 F:      arch/arm/mach-s3c/mach-crag6410*
19143 F:      drivers/clk/clk-wm83*.c
19144 F:      drivers/extcon/extcon-arizona.c
19145 F:      drivers/gpio/gpio-*wm*.c
19146 F:      drivers/gpio/gpio-arizona.c
19147 F:      drivers/hwmon/wm83??-hwmon.c
19148 F:      drivers/input/misc/wm831x-on.c
19149 F:      drivers/input/touchscreen/wm831x-ts.c
19150 F:      drivers/input/touchscreen/wm97*.c
19151 F:      drivers/leds/leds-wm83*.c
19152 F:      drivers/mfd/arizona*
19153 F:      drivers/mfd/cs47l24*
19154 F:      drivers/mfd/wm*.c
19155 F:      drivers/power/supply/wm83*.c
19156 F:      drivers/regulator/arizona*
19157 F:      drivers/regulator/wm8*.c
19158 F:      drivers/rtc/rtc-wm83*.c
19159 F:      drivers/video/backlight/wm83*_bl.c
19160 F:      drivers/watchdog/wm83*_wdt.c
19161 F:      include/linux/mfd/arizona/
19162 F:      include/linux/mfd/wm831x/
19163 F:      include/linux/mfd/wm8350/
19164 F:      include/linux/mfd/wm8400*
19165 F:      include/linux/regulator/arizona*
19166 F:      include/linux/wm97xx.h
19167 F:      include/sound/wm????.h
19168 F:      sound/soc/codecs/arizona.?
19169 F:      sound/soc/codecs/cs47l24*
19170 F:      sound/soc/codecs/wm*
19171
19172 WORKQUEUE
19173 M:      Tejun Heo <[email protected]>
19174 R:      Lai Jiangshan <[email protected]>
19175 S:      Maintained
19176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19177 F:      Documentation/core-api/workqueue.rst
19178 F:      include/linux/workqueue.h
19179 F:      kernel/workqueue.c
19180
19181 X-POWERS AXP288 PMIC DRIVERS
19182 M:      Hans de Goede <[email protected]>
19183 S:      Maintained
19184 F:      drivers/acpi/pmic/intel_pmic_xpower.c
19185 N:      axp288
19186
19187 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19188 M:      Chen-Yu Tsai <[email protected]>
19189 L:      [email protected]
19190 S:      Maintained
19191 N:      axp[128]
19192
19193 X.25 STACK
19194 M:      Martin Schiller <[email protected]>
19195 L:      [email protected]
19196 S:      Maintained
19197 F:      Documentation/networking/lapb-module.rst
19198 F:      Documentation/networking/x25*
19199 F:      drivers/net/wan/hdlc_x25.c
19200 F:      drivers/net/wan/lapbether.c
19201 F:      include/*/lapb.h
19202 F:      include/net/x25*
19203 F:      include/uapi/linux/x25.h
19204 F:      net/lapb/
19205 F:      net/x25/
19206
19207 X86 ARCHITECTURE (32-BIT AND 64-BIT)
19208 M:      Thomas Gleixner <[email protected]>
19209 M:      Ingo Molnar <[email protected]>
19210 M:      Borislav Petkov <[email protected]>
19211 M:      [email protected]
19212 R:      "H. Peter Anvin" <[email protected]>
19213 L:      [email protected]
19214 S:      Maintained
19215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19216 F:      Documentation/devicetree/bindings/x86/
19217 F:      Documentation/x86/
19218 F:      arch/x86/
19219
19220 X86 ENTRY CODE
19221 M:      Andy Lutomirski <[email protected]>
19222 L:      [email protected]
19223 S:      Maintained
19224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
19225 F:      arch/x86/entry/
19226
19227 X86 MCE INFRASTRUCTURE
19228 M:      Tony Luck <[email protected]>
19229 M:      Borislav Petkov <[email protected]>
19230 L:      [email protected]
19231 S:      Maintained
19232 F:      arch/x86/kernel/cpu/mce/*
19233
19234 X86 MICROCODE UPDATE SUPPORT
19235 M:      Borislav Petkov <[email protected]>
19236 S:      Maintained
19237 F:      arch/x86/kernel/cpu/microcode/*
19238
19239 X86 MM
19240 M:      Dave Hansen <[email protected]>
19241 M:      Andy Lutomirski <[email protected]>
19242 M:      Peter Zijlstra <[email protected]>
19243 L:      [email protected]
19244 S:      Maintained
19245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
19246 F:      arch/x86/mm/
19247
19248 X86 PLATFORM DRIVERS
19249 M:      Hans de Goede <[email protected]>
19250 M:      Mark Gross <[email protected]>
19251 L:      [email protected]
19252 S:      Maintained
19253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
19254 F:      drivers/platform/olpc/
19255 F:      drivers/platform/x86/
19256
19257 X86 PLATFORM DRIVERS - ARCH
19258 R:      Darren Hart <[email protected]>
19259 R:      Andy Shevchenko <[email protected]>
19260 L:      [email protected]
19261 L:      [email protected]
19262 S:      Maintained
19263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19264 F:      arch/x86/platform
19265
19266 X86 PLATFORM UV HPE SUPERDOME FLEX
19267 M:      Steve Wahl <[email protected]>
19268 R:      Mike Travis <[email protected]>
19269 R:      Dimitri Sivanich <[email protected]>
19270 R:      Russ Anderson <[email protected]>
19271 S:      Supported
19272 F:      arch/x86/include/asm/uv/
19273 F:      arch/x86/kernel/apic/x2apic_uv_x.c
19274 F:      arch/x86/platform/uv/
19275
19276 X86 VDSO
19277 M:      Andy Lutomirski <[email protected]>
19278 L:      [email protected]
19279 S:      Maintained
19280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
19281 F:      arch/x86/entry/vdso/
19282
19283 XARRAY
19284 M:      Matthew Wilcox <[email protected]>
19285 L:      [email protected]
19286 S:      Supported
19287 F:      Documentation/core-api/xarray.rst
19288 F:      include/linux/idr.h
19289 F:      include/linux/xarray.h
19290 F:      lib/idr.c
19291 F:      lib/xarray.c
19292 F:      tools/testing/radix-tree
19293
19294 XBOX DVD IR REMOTE
19295 M:      Benjamin Valentin <[email protected]>
19296 S:      Maintained
19297 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
19298 F:      drivers/media/rc/xbox_remote.c
19299
19300 XC2028/3028 TUNER DRIVER
19301 M:      Mauro Carvalho Chehab <[email protected]>
19302 L:      [email protected]
19303 S:      Maintained
19304 W:      https://linuxtv.org
19305 T:      git git://linuxtv.org/media_tree.git
19306 F:      drivers/media/tuners/tuner-xc2028.*
19307
19308 XDP (eXpress Data Path)
19309 M:      Alexei Starovoitov <[email protected]>
19310 M:      Daniel Borkmann <[email protected]>
19311 M:      David S. Miller <[email protected]>
19312 M:      Jakub Kicinski <[email protected]>
19313 M:      Jesper Dangaard Brouer <[email protected]>
19314 M:      John Fastabend <[email protected]>
19315 L:      [email protected]
19316 L:      [email protected]
19317 S:      Supported
19318 F:      include/net/xdp.h
19319 F:      include/net/xdp_priv.h
19320 F:      include/trace/events/xdp.h
19321 F:      kernel/bpf/cpumap.c
19322 F:      kernel/bpf/devmap.c
19323 F:      net/core/xdp.c
19324 F:      samples/bpf/xdp*
19325 F:      tools/testing/selftests/bpf/*xdp*
19326 F:      tools/testing/selftests/bpf/*/*xdp*
19327 F:      drivers/net/ethernet/*/*/*/*/*xdp*
19328 F:      drivers/net/ethernet/*/*/*xdp*
19329 K:      (?:\b|_)xdp(?:\b|_)
19330
19331 XDP SOCKETS (AF_XDP)
19332 M:      Björn Töpel <[email protected]>
19333 M:      Magnus Karlsson <[email protected]>
19334 R:      Jonathan Lemon <[email protected]>
19335 L:      [email protected]
19336 L:      [email protected]
19337 S:      Maintained
19338 F:      Documentation/networking/af_xdp.rst
19339 F:      include/net/xdp_sock*
19340 F:      include/net/xsk_buff_pool.h
19341 F:      include/uapi/linux/if_xdp.h
19342 F:      include/uapi/linux/xdp_diag.h
19343 F:      include/net/netns/xdp.h
19344 F:      net/xdp/
19345 F:      samples/bpf/xdpsock*
19346 F:      tools/lib/bpf/xsk*
19347
19348 XEN BLOCK SUBSYSTEM
19349 M:      Konrad Rzeszutek Wilk <[email protected]>
19350 M:      Roger Pau Monné <[email protected]>
19351 L:      [email protected] (moderated for non-subscribers)
19352 S:      Supported
19353 F:      drivers/block/xen*
19354 F:      drivers/block/xen-blkback/*
19355
19356 XEN HYPERVISOR ARM
19357 M:      Stefano Stabellini <[email protected]>
19358 L:      [email protected] (moderated for non-subscribers)
19359 S:      Maintained
19360 F:      arch/arm/include/asm/xen/
19361 F:      arch/arm/xen/
19362
19363 XEN HYPERVISOR ARM64
19364 M:      Stefano Stabellini <[email protected]>
19365 L:      [email protected] (moderated for non-subscribers)
19366 S:      Maintained
19367 F:      arch/arm64/include/asm/xen/
19368 F:      arch/arm64/xen/
19369
19370 XEN HYPERVISOR INTERFACE
19371 M:      Boris Ostrovsky <[email protected]>
19372 M:      Juergen Gross <[email protected]>
19373 R:      Stefano Stabellini <[email protected]>
19374 L:      [email protected] (moderated for non-subscribers)
19375 S:      Supported
19376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19377 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
19378 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
19379 F:      arch/x86/include/asm/pvclock-abi.h
19380 F:      arch/x86/include/asm/xen/
19381 F:      arch/x86/platform/pvh/
19382 F:      arch/x86/xen/
19383 F:      drivers/*/xen-*front.c
19384 F:      drivers/xen/
19385 F:      include/uapi/xen/
19386 F:      include/xen/
19387
19388 XEN NETWORK BACKEND DRIVER
19389 M:      Wei Liu <[email protected]>
19390 M:      Paul Durrant <[email protected]>
19391 L:      [email protected] (moderated for non-subscribers)
19392 L:      [email protected]
19393 S:      Supported
19394 F:      drivers/net/xen-netback/*
19395
19396 XEN PCI SUBSYSTEM
19397 M:      Konrad Rzeszutek Wilk <[email protected]>
19398 L:      [email protected] (moderated for non-subscribers)
19399 S:      Supported
19400 F:      arch/x86/pci/*xen*
19401 F:      drivers/pci/*xen*
19402
19403 XEN PVSCSI DRIVERS
19404 M:      Juergen Gross <[email protected]>
19405 L:      [email protected] (moderated for non-subscribers)
19406 L:      [email protected]
19407 S:      Supported
19408 F:      drivers/scsi/xen-scsifront.c
19409 F:      drivers/xen/xen-scsiback.c
19410 F:      include/xen/interface/io/vscsiif.h
19411
19412 XEN SOUND FRONTEND DRIVER
19413 M:      Oleksandr Andrushchenko <[email protected]>
19414 L:      [email protected] (moderated for non-subscribers)
19415 L:      [email protected] (moderated for non-subscribers)
19416 S:      Supported
19417 F:      sound/xen/*
19418
19419 XEN SWIOTLB SUBSYSTEM
19420 M:      Konrad Rzeszutek Wilk <[email protected]>
19421 L:      [email protected] (moderated for non-subscribers)
19422 L:      [email protected]
19423 S:      Supported
19424 F:      arch/x86/xen/*swiotlb*
19425 F:      drivers/xen/*swiotlb*
19426
19427 XFS FILESYSTEM
19428 M:      Darrick J. Wong <[email protected]>
19429 M:      [email protected]
19430 L:      [email protected]
19431 S:      Supported
19432 W:      http://xfs.org/
19433 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19434 F:      Documentation/ABI/testing/sysfs-fs-xfs
19435 F:      Documentation/admin-guide/xfs.rst
19436 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
19437 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
19438 F:      fs/xfs/
19439 F:      include/uapi/linux/dqblk_xfs.h
19440 F:      include/uapi/linux/fsmap.h
19441
19442 XILINX AXI ETHERNET DRIVER
19443 M:      Radhey Shyam Pandey <[email protected]>
19444 S:      Maintained
19445 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
19446
19447 XILINX CAN DRIVER
19448 M:      Appana Durga Kedareswara rao <[email protected]>
19449 R:      Naga Sureshkumar Relli <[email protected]>
19450 L:      [email protected]
19451 S:      Maintained
19452 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
19453 F:      drivers/net/can/xilinx_can.c
19454
19455 XILINX SD-FEC IP CORES
19456 M:      Derek Kiernan <[email protected]>
19457 M:      Dragan Cvetic <[email protected]>
19458 S:      Maintained
19459 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
19460 F:      Documentation/misc-devices/xilinx_sdfec.rst
19461 F:      drivers/misc/Kconfig
19462 F:      drivers/misc/Makefile
19463 F:      drivers/misc/xilinx_sdfec.c
19464 F:      include/uapi/misc/xilinx_sdfec.h
19465
19466 XILINX UARTLITE SERIAL DRIVER
19467 M:      Peter Korsgaard <[email protected]>
19468 L:      [email protected]
19469 S:      Maintained
19470 F:      drivers/tty/serial/uartlite.c
19471
19472 XILINX VIDEO IP CORES
19473 M:      Hyun Kwon <[email protected]>
19474 M:      Laurent Pinchart <[email protected]>
19475 L:      [email protected]
19476 S:      Supported
19477 T:      git git://linuxtv.org/media_tree.git
19478 F:      Documentation/devicetree/bindings/media/xilinx/
19479 F:      drivers/media/platform/xilinx/
19480 F:      include/uapi/linux/xilinx-v4l2-controls.h
19481
19482 XILINX ZYNQMP DPDMA DRIVER
19483 M:      Hyun Kwon <[email protected]>
19484 M:      Laurent Pinchart <[email protected]>
19485 L:      [email protected]
19486 S:      Supported
19487 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
19488 F:      drivers/dma/xilinx/xilinx_dpdma.c
19489 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
19490
19491 XILINX ZYNQMP PSGTR PHY DRIVER
19492 M:      Anurag Kumar Vulisha <[email protected]>
19493 M:      Laurent Pinchart <[email protected]>
19494 L:      [email protected]
19495 S:      Supported
19496 T:      git https://github.com/Xilinx/linux-xlnx.git
19497 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
19498 F:      drivers/phy/xilinx/phy-zynqmp.c
19499
19500 XILLYBUS DRIVER
19501 M:      Eli Billauer <[email protected]>
19502 L:      [email protected]
19503 S:      Supported
19504 F:      drivers/char/xillybus/
19505
19506 XLP9XX I2C DRIVER
19507 M:      George Cherian <[email protected]>
19508 L:      [email protected]
19509 S:      Supported
19510 W:      http://www.marvell.com
19511 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
19512 F:      drivers/i2c/busses/i2c-xlp9xx.c
19513
19514 XRA1403 GPIO EXPANDER
19515 M:      Nandor Han <[email protected]>
19516 M:      Semi Malinen <[email protected]>
19517 L:      [email protected]
19518 S:      Maintained
19519 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
19520 F:      drivers/gpio/gpio-xra1403.c
19521
19522 XTENSA XTFPGA PLATFORM SUPPORT
19523 M:      Max Filippov <[email protected]>
19524 L:      [email protected]
19525 S:      Maintained
19526 F:      drivers/spi/spi-xtensa-xtfpga.c
19527 F:      sound/soc/xtensa/xtfpga-i2s.c
19528
19529 YAM DRIVER FOR AX.25
19530 M:      Jean-Paul Roubelat <[email protected]>
19531 L:      [email protected]
19532 S:      Maintained
19533 F:      drivers/net/hamradio/yam*
19534 F:      include/linux/yam.h
19535
19536 YAMA SECURITY MODULE
19537 M:      Kees Cook <[email protected]>
19538 S:      Supported
19539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
19540 F:      Documentation/admin-guide/LSM/Yama.rst
19541 F:      security/yama/
19542
19543 YEALINK PHONE DRIVER
19544 M:      Henk Vergonet <[email protected]>
19545 L:      [email protected]
19546 S:      Maintained
19547 F:      Documentation/input/devices/yealink.rst
19548 F:      drivers/input/misc/yealink.*
19549
19550 Z8530 DRIVER FOR AX.25
19551 M:      Joerg Reuter <[email protected]>
19552 L:      [email protected]
19553 S:      Maintained
19554 W:      http://yaina.de/jreuter/
19555 W:      http://www.qsl.net/dl1bke/
19556 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
19557 F:      drivers/net/hamradio/*scc.c
19558 F:      drivers/net/hamradio/z8530.h
19559
19560 ZBUD COMPRESSED PAGE ALLOCATOR
19561 M:      Seth Jennings <[email protected]>
19562 M:      Dan Streetman <[email protected]>
19563 L:      [email protected]
19564 S:      Maintained
19565 F:      include/linux/zbud.h
19566 F:      mm/zbud.c
19567
19568 ZD1211RW WIRELESS DRIVER
19569 M:      Daniel Drake <[email protected]>
19570 M:      Ulrich Kunitz <[email protected]>
19571 L:      [email protected]
19572 L:      [email protected] (subscribers-only)
19573 S:      Maintained
19574 W:      http://zd1211.ath.cx/wiki/DriverRewrite
19575 F:      drivers/net/wireless/zydas/zd1211rw/
19576
19577 ZD1301 MEDIA DRIVER
19578 M:      Antti Palosaari <[email protected]>
19579 L:      [email protected]
19580 S:      Maintained
19581 W:      https://linuxtv.org/
19582 W:      http://palosaari.fi/linux/
19583 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19584 F:      drivers/media/usb/dvb-usb-v2/zd1301*
19585
19586 ZD1301_DEMOD MEDIA DRIVER
19587 M:      Antti Palosaari <[email protected]>
19588 L:      [email protected]
19589 S:      Maintained
19590 W:      https://linuxtv.org/
19591 W:      http://palosaari.fi/linux/
19592 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19593 F:      drivers/media/dvb-frontends/zd1301_demod*
19594
19595 ZHAOXIN PROCESSOR SUPPORT
19596 M:      Tony W Wang-oc <[email protected]>
19597 L:      [email protected]
19598 S:      Maintained
19599 F:      arch/x86/kernel/cpu/zhaoxin.c
19600
19601 ZONEFS FILESYSTEM
19602 M:      Damien Le Moal <[email protected]>
19603 M:      Naohiro Aota <[email protected]>
19604 R:      Johannes Thumshirn <[email protected]>
19605 L:      [email protected]
19606 S:      Maintained
19607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
19608 F:      Documentation/filesystems/zonefs.rst
19609 F:      fs/zonefs/
19610
19611 ZPOOL COMPRESSED PAGE STORAGE API
19612 M:      Dan Streetman <[email protected]>
19613 L:      [email protected]
19614 S:      Maintained
19615 F:      include/linux/zpool.h
19616 F:      mm/zpool.c
19617
19618 ZR36067 VIDEO FOR LINUX DRIVER
19619 M:      Corentin Labbe <[email protected]>
19620 L:      [email protected]
19621 L:      [email protected]
19622 S:      Maintained
19623 W:      http://mjpeg.sourceforge.net/driver-zoran/
19624 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19625 F:      Documentation/driver-api/media/drivers/zoran.rst
19626 F:      drivers/staging/media/zoran/
19627
19628 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
19629 M:      Minchan Kim <[email protected]>
19630 M:      Nitin Gupta <[email protected]>
19631 R:      Sergey Senozhatsky <[email protected]>
19632 L:      [email protected]
19633 S:      Maintained
19634 F:      Documentation/admin-guide/blockdev/zram.rst
19635 F:      drivers/block/zram/
19636
19637 ZS DECSTATION Z85C30 SERIAL DRIVER
19638 M:      "Maciej W. Rozycki" <[email protected]>
19639 S:      Maintained
19640 F:      drivers/tty/serial/zs.*
19641
19642 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19643 M:      Minchan Kim <[email protected]>
19644 M:      Nitin Gupta <[email protected]>
19645 R:      Sergey Senozhatsky <[email protected]>
19646 L:      [email protected]
19647 S:      Maintained
19648 F:      Documentation/vm/zsmalloc.rst
19649 F:      include/linux/zsmalloc.h
19650 F:      mm/zsmalloc.c
19651
19652 ZSWAP COMPRESSED SWAP CACHING
19653 M:      Seth Jennings <[email protected]>
19654 M:      Dan Streetman <[email protected]>
19655 M:      Vitaly Wool <[email protected]>
19656 L:      [email protected]
19657 S:      Maintained
19658 F:      mm/zswap.c
19659
19660 THE REST
19661 M:      Linus Torvalds <[email protected]>
19662 L:      [email protected]
19663 S:      Buried alive in reporters
19664 Q:      http://patchwork.kernel.org/project/LKML/list/
19665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19666 F:      *
19667 F:      */
This page took 1.152962 seconds and 4 git commands to generate.