Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
[platform/kernel/linux-rpi.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: security@kernel.org, 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 <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
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 <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
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 <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
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" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
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 <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
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 <nic_swsd@realtek.com>
207 M:      Heiner Kallweit <hkallweit1@gmail.com>
208 L:      netdev@vger.kernel.org
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 <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
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:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
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 <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
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 <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
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:      linux-api@vger.kernel.org
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 <hdegoede@redhat.com>
267 L:      linux-hwmon@vger.kernel.org
268 S:      Maintained
269 F:      drivers/hwmon/abituguru.c
270
271 ABIT UGURU 3 HARDWARE MONITOR DRIVER
272 M:      Alistair John Strachan <alistair@devzero.co.uk>
273 L:      linux-hwmon@vger.kernel.org
274 S:      Maintained
275 F:      drivers/hwmon/abituguru3.c
276
277 ACCES 104-DIO-48E GPIO DRIVER
278 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
279 L:      linux-gpio@vger.kernel.org
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" <vilhelm.gray@gmail.com>
285 L:      linux-gpio@vger.kernel.org
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" <vilhelm.gray@gmail.com>
291 L:      linux-gpio@vger.kernel.org
292 S:      Maintained
293 F:      drivers/gpio/gpio-104-idio-16.c
294
295 ACCES 104-QUAD-8 DRIVER
296 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
297 M:      Syed Nayyar Waris <syednwaris@gmail.com>
298 L:      linux-iio@vger.kernel.org
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 <vilhelm.gray@gmail.com>
306 L:      linux-gpio@vger.kernel.org
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 <vilhelm.gray@gmail.com>
312 L:      linux-gpio@vger.kernel.org
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <jes@trained-monkey.org>
318 L:      linux-acenic@sunsite.dk
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <peter@piie.net>
324 L:      platform-driver-x86@vger.kernel.org
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" <jlee@suse.com>
331 L:      platform-driver-x86@vger.kernel.org
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
337 M:      Len Brown <lenb@kernel.org>
338 L:      linux-acpi@vger.kernel.org
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" <rjw@rjwysocki.net>
358 M:      Len Brown <lenb@kernel.org>
359 R:      James Morse <james.morse@arm.com>
360 R:      Tony Luck <tony.luck@intel.com>
361 R:      Borislav Petkov <bp@alien8.de>
362 L:      linux-acpi@vger.kernel.org
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <robert.moore@intel.com>
367 M:      Erik Kaneda <erik.kaneda@intel.com>
368 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
369 L:      linux-acpi@vger.kernel.org
370 L:      devel@acpica.org
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 <rui.zhang@intel.com>
384 L:      linux-acpi@vger.kernel.org
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 <lorenzo.pieralisi@arm.com>
392 M:      Hanjun Guo <guohanjun@huawei.com>
393 M:      Sudeep Holla <sudeep.holla@arm.com>
394 L:      linux-acpi@vger.kernel.org
395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
396 S:      Maintained
397 F:      drivers/acpi/arm64
398
399 ACPI I2C MULTI INSTANTIATE DRIVER
400 M:      Hans de Goede <hdegoede@redhat.com>
401 L:      platform-driver-x86@vger.kernel.org
402 S:      Maintained
403 F:      drivers/platform/x86/i2c-multi-instantiate.c
404
405 ACPI PMIC DRIVERS
406 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
407 M:      Len Brown <lenb@kernel.org>
408 R:      Andy Shevchenko <andy@kernel.org>
409 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
410 L:      linux-acpi@vger.kernel.org
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 <rui.zhang@intel.com>
419 L:      linux-acpi@vger.kernel.org
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 <rui.zhang@intel.com>
427 L:      linux-acpi@vger.kernel.org
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:      platform-driver-x86@vger.kernel.org
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:      linux-parisc@vger.kernel.org
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 <michael.hennerich@analog.com>
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 <michael.hennerich@analog.com>
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 <michael.hennerich@analog.com>
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 <michael.hennerich@analog.com>
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 <michael.hennerich@analog.com>
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 <jikos@kernel.org>
482 S:      Maintained
483
484 ADF7242 IEEE 802.15.4 RADIO DRIVER
485 M:      Michael Hennerich <michael.hennerich@analog.com>
486 L:      linux-wpan@vger.kernel.org
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 <jdelvare@suse.com>
495 L:      linux-hwmon@vger.kernel.org
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 <clabbe.montjoie@gmail.com>
502 L:      linux-hwmon@vger.kernel.org
503 S:      Maintained
504 F:      drivers/hwmon/adm1029.c
505
506 ADM8211 WIRELESS DRIVER
507 L:      linux-wireless@vger.kernel.org
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 <sakari.ailus@iki.fi>
514 L:      linux-media@vger.kernel.org
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 <michael.hennerich@analog.com>
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 <michael.hennerich@analog.com>
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 <michael.hennerich@analog.com>
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 <colin@colino.net>
547 S:      Maintained
548 F:      drivers/macintosh/therm_adt746x.c
549
550 ADT7475 HARDWARE MONITOR DRIVER
551 M:      Jean Delvare <jdelvare@suse.com>
552 L:      linux-hwmon@vger.kernel.org
553 S:      Maintained
554 F:      Documentation/hwmon/adt7475.rst
555 F:      drivers/hwmon/adt7475.c
556
557 ADVANSYS SCSI DRIVER
558 M:      Matthew Wilcox <willy@infradead.org>
559 M:      Hannes Reinecke <hare@suse.com>
560 L:      linux-scsi@vger.kernel.org
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 <michael.hennerich@analog.com>
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 <michael.hennerich@analog.com>
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 <crope@iki.fi>
584 L:      linux-media@vger.kernel.org
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 <crope@iki.fi>
594 L:      linux-media@vger.kernel.org
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 <dsterba@suse.com>
604 L:      linux-fsdevel@vger.kernel.org
605 S:      Odd Fixes
606 F:      Documentation/filesystems/affs.rst
607 F:      fs/affs/
608
609 AFS FILESYSTEM
610 M:      David Howells <dhowells@redhat.com>
611 L:      linux-afs@lists.infradead.org
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 <airlied@linux.ie>
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" <fischer@norbit.de>
628 L:      linux-scsi@vger.kernel.org
629 S:      Maintained
630 F:      drivers/scsi/aha152x*
631 F:      drivers/scsi/pcmcia/aha152x*
632
633 AIC7XXX / AIC79XX SCSI DRIVER
634 M:      Hannes Reinecke <hare@suse.com>
635 L:      linux-scsi@vger.kernel.org
636 S:      Maintained
637 F:      drivers/scsi/aic7xxx/
638
639 AIMSLAB FM RADIO RECEIVER DRIVER
640 M:      Hans Verkuil <hverkuil@xs4all.nl>
641 L:      linux-media@vger.kernel.org
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 <bcrl@kvack.org>
649 L:      linux-aio@kvack.org
650 S:      Supported
651 F:      fs/aio.c
652 F:      include/linux/*aio*.h
653
654 AIRSPY MEDIA DRIVER
655 M:      Antti Palosaari <crope@iki.fi>
656 L:      linux-media@vger.kernel.org
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 <LinoSanfilippo@gmx.de>
666 S:      Maintained
667 F:      drivers/net/ethernet/alacritech/*
668
669 ALCATEL SPEEDTOUCH USB DRIVER
670 M:      Duncan Sands <duncan.sands@free.fr>
671 L:      linux-usb@vger.kernel.org
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 <manuel.lauss@gmail.com>
679 S:      Maintained
680 F:      drivers/mmc/host/au1xmmc.c
681
682 ALI1563 I2C DRIVER
683 M:      Rudolf Marek <r.marek@assembler.cz>
684 L:      linux-i2c@vger.kernel.org
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 <tomislav.denis@avl.com>
691 L:      linux-iio@vger.kernel.org
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 <m.tretter@pengutronix.de>
699 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
700 L:      linux-media@vger.kernel.org
701 S:      Maintained
702 F:      drivers/staging/media/allegro-dvt/
703
704 ALLWINNER A10 CSI DRIVER
705 M:      Maxime Ripard <mripard@kernel.org>
706 L:      linux-media@vger.kernel.org
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 <tiny.windzz@gmail.com>
714 L:      linux-pm@vger.kernel.org
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 <clabbe.montjoie@gmail.com>
721 L:      linux-crypto@vger.kernel.org
722 S:      Maintained
723 F:      drivers/crypto/allwinner/
724
725 ALLWINNER THERMAL DRIVER
726 M:      Vasily Khoruzhick <anarsoul@gmail.com>
727 M:      Yangtao Li <tiny.windzz@gmail.com>
728 L:      linux-pm@vger.kernel.org
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 <mripard@kernel.org>
735 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
736 L:      linux-media@vger.kernel.org
737 S:      Maintained
738 F:      drivers/staging/media/sunxi/cedrus/
739
740 ALPHA PORT
741 M:      Richard Henderson <rth@twiddle.net>
742 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
743 M:      Matt Turner <mattst88@gmail.com>
744 L:      linux-alpha@vger.kernel.org
745 S:      Odd Fixes
746 F:      arch/alpha/
747
748 ALPS PS/2 TOUCHPAD DRIVER
749 R:      Pali Rohár <pali@kernel.org>
750 F:      drivers/input/mouse/alps.*
751
752 ALTERA I2C CONTROLLER DRIVER
753 M:      Thor Thayer <thor.thayer@linux.intel.com>
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 <ley.foon.tan@intel.com>
760 S:      Maintained
761 F:      drivers/mailbox/mailbox-altera.c
762
763 ALTERA PIO DRIVER
764 M:      Joyce Ooi <joyce.ooi@intel.com>
765 L:      linux-gpio@vger.kernel.org
766 S:      Maintained
767 F:      drivers/gpio/gpio-altera.c
768
769 ALTERA SYSTEM MANAGER DRIVER
770 M:      Thor Thayer <thor.thayer@linux.intel.com>
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 <thor.thayer@linux.intel.com>
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 <joyce.ooi@intel.com>
786 L:      netdev@vger.kernel.org
787 S:      Maintained
788 F:      drivers/net/ethernet/altera/
789
790 ALTERA UART/JTAG UART SERIAL DRIVERS
791 M:      Tobias Klauser <tklauser@distanz.ch>
792 L:      linux-serial@vger.kernel.org
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 <talel@amazon.com>
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 <talel@amazon.com>
807 M:      Talel Shenhar <talelshenhar@gmail.com>
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 <talel@amazon.com>
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 <netanel@amazon.com>
820 M:      Arthur Kiyanovski <akiyano@amazon.com>
821 R:      Guy Tzalik <gtzalik@amazon.com>
822 R:      Saeed Bishara <saeedb@amazon.com>
823 R:      Zorik Machulsky <zorik@amazon.com>
824 L:      netdev@vger.kernel.org
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 <galpress@amazon.com>
831 R:      Yossi Leybovich <sleybo@amazon.com>
832 L:      linux-rdma@vger.kernel.org
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 <thomas.lendacky@amd.com>
840 M:      John Allen <john.allen@amd.com>
841 L:      linux-crypto@vger.kernel.org
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 <brijesh.singh@amd.com>
848 M:      Tom Lendacky <thomas.lendacky@amd.com>
849 L:      linux-crypto@vger.kernel.org
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 <harry.wentland@amd.com>
856 M:      Leo Li <sunpeng.li@amd.com>
857 L:      amd-gfx@lists.freedesktop.org
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 <nchatrad@amd.com>
864 L:      linux-hwmon@vger.kernel.org
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 <ray.huang@amd.com>
871 L:      linux-hwmon@vger.kernel.org
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 <info@metux.net>
878 L:      linux-gpio@vger.kernel.org
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:      linux-geode@lists.infradead.org (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 <dilinger@queued.net>
890 L:      linux-geode@lists.infradead.org (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 <joro@8bytes.org>
900 L:      iommu@lists.linux-foundation.org
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 <Felix.Kuehling@amd.com>
908 L:      amd-gfx@lists.freedesktop.org
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 <sanju.mehta@amd.com>
921 S:      Maintained
922 F:      drivers/spi/spi-amd.c
923
924 AMD MP2 I2C DRIVER
925 M:      Elie Morisse <syniurge@gmail.com>
926 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
927 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
928 L:      linux-i2c@vger.kernel.org
929 S:      Maintained
930 F:      drivers/i2c/busses/i2c-amd-mp2*
931
932 AMD POWERPLAY
933 M:      Evan Quan <evan.quan@amd.com>
934 L:      amd-gfx@lists.freedesktop.org
935 S:      Supported
936 T:      git git://people.freedesktop.org/~agd5f/linux
937 F:      drivers/gpu/drm/amd/pm/powerplay/
938
939 AMD SEATTLE DEVICE TREE SUPPORT
940 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
941 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
942 M:      Tom Lendacky <thomas.lendacky@amd.com>
943 S:      Supported
944 F:      arch/arm64/boot/dts/amd/
945
946 AMD XGBE DRIVER
947 M:      Tom Lendacky <thomas.lendacky@amd.com>
948 L:      netdev@vger.kernel.org
949 S:      Supported
950 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
951 F:      drivers/net/ethernet/amd/xgbe/
952
953 AMS AS73211 DRIVER
954 M:      Christian Eggers <ceggers@arri.de>
955 L:      linux-iio@vger.kernel.org
956 S:      Maintained
957 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
958 F:      drivers/iio/light/as73211.c
959
960 ANALOG DEVICES INC AD7192 DRIVER
961 M:      Alexandru Tachici <alexandru.tachici@analog.com>
962 L:      linux-iio@vger.kernel.org
963 S:      Supported
964 W:      http://ez.analog.com/community/linux-device-drivers
965 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
966 F:      drivers/iio/adc/ad7192.c
967
968 ANALOG DEVICES INC AD7292 DRIVER
969 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
970 L:      linux-iio@vger.kernel.org
971 S:      Supported
972 W:      http://ez.analog.com/community/linux-device-drivers
973 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
974 F:      drivers/iio/adc/ad7292.c
975
976 ANALOG DEVICES INC AD7768-1 DRIVER
977 M:      Michael Hennerich <Michael.Hennerich@analog.com>
978 L:      linux-iio@vger.kernel.org
979 S:      Supported
980 W:      http://ez.analog.com/community/linux-device-drivers
981 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
982 F:      drivers/iio/adc/ad7768-1.c
983
984 ANALOG DEVICES INC AD7780 DRIVER
985 M:      Michael Hennerich <Michael.Hennerich@analog.com>
986 M:      Renato Lui Geh <renatogeh@gmail.com>
987 L:      linux-iio@vger.kernel.org
988 S:      Supported
989 W:      http://ez.analog.com/community/linux-device-drivers
990 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
991 F:      drivers/iio/adc/ad7780.c
992
993 ANALOG DEVICES INC AD9389B DRIVER
994 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
995 L:      linux-media@vger.kernel.org
996 S:      Maintained
997 F:      drivers/media/i2c/ad9389b*
998
999 ANALOG DEVICES INC ADGS1408 DRIVER
1000 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1001 S:      Supported
1002 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1003 F:      drivers/mux/adgs1408.c
1004
1005 ANALOG DEVICES INC ADIN DRIVER
1006 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
1007 L:      netdev@vger.kernel.org
1008 S:      Supported
1009 W:      http://ez.analog.com/community/linux-device-drivers
1010 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1011 F:      drivers/net/phy/adin.c
1012
1013 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1014 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
1015 L:      linux-iio@vger.kernel.org
1016 S:      Supported
1017 F:      drivers/iio/imu/adis.c
1018 F:      include/linux/iio/imu/adis.h
1019
1020 ANALOG DEVICES INC ADIS16460 DRIVER
1021 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1022 L:      linux-iio@vger.kernel.org
1023 S:      Supported
1024 W:      http://ez.analog.com/community/linux-device-drivers
1025 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1026 F:      drivers/iio/imu/adis16460.c
1027
1028 ANALOG DEVICES INC ADIS16475 DRIVER
1029 M:      Nuno Sa <nuno.sa@analog.com>
1030 L:      linux-iio@vger.kernel.org
1031 W:      http://ez.analog.com/community/linux-device-drivers
1032 S:      Supported
1033 F:      drivers/iio/imu/adis16475.c
1034 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1035
1036 ANALOG DEVICES INC ADM1177 DRIVER
1037 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1038 L:      linux-hwmon@vger.kernel.org
1039 S:      Supported
1040 W:      http://ez.analog.com/community/linux-device-drivers
1041 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1042 F:      drivers/hwmon/adm1177.c
1043
1044 ANALOG DEVICES INC ADP5061 DRIVER
1045 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1046 L:      linux-pm@vger.kernel.org
1047 S:      Supported
1048 W:      http://ez.analog.com/community/linux-device-drivers
1049 F:      drivers/power/supply/adp5061.c
1050
1051 ANALOG DEVICES INC ADV7180 DRIVER
1052 M:      Lars-Peter Clausen <lars@metafoo.de>
1053 L:      linux-media@vger.kernel.org
1054 S:      Supported
1055 W:      http://ez.analog.com/community/linux-device-drivers
1056 F:      drivers/media/i2c/adv7180.c
1057 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1058
1059 ANALOG DEVICES INC ADV748X DRIVER
1060 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1061 L:      linux-media@vger.kernel.org
1062 S:      Maintained
1063 F:      drivers/media/i2c/adv748x/*
1064
1065 ANALOG DEVICES INC ADV7511 DRIVER
1066 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1067 L:      linux-media@vger.kernel.org
1068 S:      Maintained
1069 F:      drivers/media/i2c/adv7511*
1070
1071 ANALOG DEVICES INC ADV7604 DRIVER
1072 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1073 L:      linux-media@vger.kernel.org
1074 S:      Maintained
1075 F:      drivers/media/i2c/adv7604*
1076 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1077
1078 ANALOG DEVICES INC ADV7842 DRIVER
1079 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1080 L:      linux-media@vger.kernel.org
1081 S:      Maintained
1082 F:      drivers/media/i2c/adv7842*
1083
1084 ANALOG DEVICES INC ADXRS290 DRIVER
1085 M:      Nishant Malpani <nish.malpani25@gmail.com>
1086 L:      linux-iio@vger.kernel.org
1087 S:      Supported
1088 F:      drivers/iio/gyro/adxrs290.c
1089 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1090
1091 ANALOG DEVICES INC ASOC CODEC DRIVERS
1092 M:      Lars-Peter Clausen <lars@metafoo.de>
1093 M:      Nuno Sá <nuno.sa@analog.com>
1094 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1095 S:      Supported
1096 W:      http://wiki.analog.com/
1097 W:      http://ez.analog.com/community/linux-device-drivers
1098 F:      sound/soc/codecs/ad1*
1099 F:      sound/soc/codecs/ad7*
1100 F:      sound/soc/codecs/adau*
1101 F:      sound/soc/codecs/adav*
1102 F:      sound/soc/codecs/sigmadsp.*
1103 F:      sound/soc/codecs/ssm*
1104
1105 ANALOG DEVICES INC DMA DRIVERS
1106 M:      Lars-Peter Clausen <lars@metafoo.de>
1107 S:      Supported
1108 W:      http://ez.analog.com/community/linux-device-drivers
1109 F:      drivers/dma/dma-axi-dmac.c
1110
1111 ANALOG DEVICES INC IIO DRIVERS
1112 M:      Lars-Peter Clausen <lars@metafoo.de>
1113 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1114 S:      Supported
1115 W:      http://wiki.analog.com/
1116 W:      http://ez.analog.com/community/linux-device-drivers
1117 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1118 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1119 F:      Documentation/devicetree/bindings/iio/*/adi,*
1120 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
1121 F:      drivers/iio/*/ad*
1122 F:      drivers/iio/adc/ltc249*
1123 F:      drivers/iio/amplifiers/hmc425a.c
1124 F:      drivers/staging/iio/*/ad*
1125 X:      drivers/iio/*/adjd*
1126
1127 ANALOGBITS PLL LIBRARIES
1128 M:      Paul Walmsley <paul.walmsley@sifive.com>
1129 S:      Supported
1130 F:      drivers/clk/analogbits/*
1131 F:      include/linux/clk/analogbits*
1132
1133 ANDES ARCHITECTURE
1134 M:      Nick Hu <nickhu@andestech.com>
1135 M:      Greentime Hu <green.hu@gmail.com>
1136 M:      Vincent Chen <deanbo422@gmail.com>
1137 S:      Supported
1138 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1139 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1140 F:      Documentation/devicetree/bindings/nds32/
1141 F:      arch/nds32/
1142 N:      nds32
1143 K:      nds32
1144
1145 ANDROID CONFIG FRAGMENTS
1146 M:      Rob Herring <robh@kernel.org>
1147 S:      Supported
1148 F:      kernel/configs/android*
1149
1150 ANDROID DRIVERS
1151 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1152 M:      Arve Hjønnevåg <arve@android.com>
1153 M:      Todd Kjos <tkjos@android.com>
1154 M:      Martijn Coenen <maco@android.com>
1155 M:      Joel Fernandes <joel@joelfernandes.org>
1156 M:      Christian Brauner <christian@brauner.io>
1157 M:      Hridya Valsaraju <hridya@google.com>
1158 M:      Suren Baghdasaryan <surenb@google.com>
1159 L:      devel@driverdev.osuosl.org
1160 S:      Supported
1161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1162 F:      drivers/android/
1163 F:      drivers/staging/android/
1164
1165 ANDROID GOLDFISH PIC DRIVER
1166 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1167 S:      Supported
1168 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1169 F:      drivers/irqchip/irq-goldfish-pic.c
1170
1171 ANDROID GOLDFISH RTC DRIVER
1172 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1173 S:      Supported
1174 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1175 F:      drivers/rtc/rtc-goldfish.c
1176
1177 ANDROID ION DRIVER
1178 M:      Laura Abbott <labbott@redhat.com>
1179 M:      Sumit Semwal <sumit.semwal@linaro.org>
1180 L:      devel@driverdev.osuosl.org
1181 L:      dri-devel@lists.freedesktop.org
1182 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1183 S:      Supported
1184 F:      drivers/staging/android/ion
1185 F:      drivers/staging/android/uapi/ion.h
1186
1187 AOA (Apple Onboard Audio) ALSA DRIVER
1188 M:      Johannes Berg <johannes@sipsolutions.net>
1189 L:      linuxppc-dev@lists.ozlabs.org
1190 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1191 S:      Maintained
1192 F:      sound/aoa/
1193
1194 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1195 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1196 L:      linux-iio@vger.kernel.org
1197 S:      Maintained
1198 F:      drivers/iio/adc/stx104.c
1199
1200 APM DRIVER
1201 M:      Jiri Kosina <jikos@kernel.org>
1202 S:      Odd fixes
1203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1204 F:      arch/x86/kernel/apm_32.c
1205 F:      drivers/char/apm-emulation.c
1206 F:      include/linux/apm_bios.h
1207 F:      include/uapi/linux/apm_bios.h
1208
1209 APPARMOR SECURITY MODULE
1210 M:      John Johansen <john.johansen@canonical.com>
1211 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1212 S:      Supported
1213 W:      wiki.apparmor.net
1214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1215 F:      Documentation/admin-guide/LSM/apparmor.rst
1216 F:      security/apparmor/
1217
1218 APPLE BCM5974 MULTITOUCH DRIVER
1219 M:      Henrik Rydberg <rydberg@bitmath.org>
1220 L:      linux-input@vger.kernel.org
1221 S:      Odd fixes
1222 F:      drivers/input/mouse/bcm5974.c
1223
1224 APPLE SMC DRIVER
1225 M:      Henrik Rydberg <rydberg@bitmath.org>
1226 L:      linux-hwmon@vger.kernel.org
1227 S:      Odd fixes
1228 F:      drivers/hwmon/applesmc.c
1229
1230 APPLETALK NETWORK LAYER
1231 L:      netdev@vger.kernel.org
1232 S:      Odd fixes
1233 F:      drivers/net/appletalk/
1234 F:      include/linux/atalk.h
1235 F:      include/uapi/linux/atalk.h
1236 F:      net/appletalk/
1237
1238 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1239 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1240 S:      Supported
1241 F:      arch/arm64/boot/dts/apm/
1242
1243 APPLIED MICRO (APM) X-GENE SOC EDAC
1244 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1245 S:      Supported
1246 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1247 F:      drivers/edac/xgene_edac.c
1248
1249 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1250 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1251 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1252 S:      Supported
1253 F:      drivers/net/ethernet/apm/xgene-v2/
1254
1255 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1256 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1257 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1258 M:      Quan Nguyen <quan@os.amperecomputing.com>
1259 S:      Supported
1260 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1261 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1262 F:      drivers/net/ethernet/apm/xgene/
1263 F:      drivers/net/mdio/mdio-xgene.c
1264
1265 APPLIED MICRO (APM) X-GENE SOC PMU
1266 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1267 S:      Supported
1268 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1269 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1270 F:      drivers/perf/xgene_pmu.c
1271
1272 APTINA CAMERA SENSOR PLL
1273 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1274 L:      linux-media@vger.kernel.org
1275 S:      Maintained
1276 F:      drivers/media/i2c/aptina-pll.*
1277
1278 AQUANTIA ETHERNET DRIVER (atlantic)
1279 M:      Igor Russkikh <irusskikh@marvell.com>
1280 L:      netdev@vger.kernel.org
1281 S:      Supported
1282 W:      https://www.marvell.com/
1283 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1284 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1285 F:      drivers/net/ethernet/aquantia/atlantic/
1286
1287 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1288 M:      Egor Pomozov <epomozov@marvell.com>
1289 L:      netdev@vger.kernel.org
1290 S:      Supported
1291 W:      http://www.aquantia.com
1292 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1293
1294 ARASAN NAND CONTROLLER DRIVER
1295 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1296 L:      linux-mtd@lists.infradead.org
1297 S:      Maintained
1298 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1299 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1300
1301 ARC FRAMEBUFFER DRIVER
1302 M:      Jaya Kumar <jayalk@intworks.biz>
1303 S:      Maintained
1304 F:      drivers/video/fbdev/arcfb.c
1305 F:      drivers/video/fbdev/core/fb_defio.c
1306
1307 ARC PGU DRM DRIVER
1308 M:      Alexey Brodkin <abrodkin@synopsys.com>
1309 S:      Supported
1310 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1311 F:      drivers/gpu/drm/arc/
1312
1313 ARCNET NETWORK LAYER
1314 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1315 L:      netdev@vger.kernel.org
1316 S:      Maintained
1317 F:      drivers/net/arcnet/
1318 F:      include/uapi/linux/if_arcnet.h
1319
1320 ARM ARCHITECTED TIMER DRIVER
1321 M:      Mark Rutland <mark.rutland@arm.com>
1322 M:      Marc Zyngier <maz@kernel.org>
1323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1324 S:      Maintained
1325 F:      arch/arm/include/asm/arch_timer.h
1326 F:      arch/arm64/include/asm/arch_timer.h
1327 F:      drivers/clocksource/arm_arch_timer.c
1328
1329 ARM HDLCD DRM DRIVER
1330 M:      Liviu Dudau <liviu.dudau@arm.com>
1331 S:      Supported
1332 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1333 F:      drivers/gpu/drm/arm/hdlcd_*
1334
1335 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1336 M:      Linus Walleij <linus.walleij@linaro.org>
1337 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1338 S:      Maintained
1339 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1340 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1341 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1342 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1343 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1344 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1345 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1346 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1347 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1348 F:      arch/arm/boot/dts/arm-realview-*
1349 F:      arch/arm/boot/dts/integrator*
1350 F:      arch/arm/boot/dts/versatile*
1351 F:      arch/arm/mach-integrator/
1352 F:      arch/arm/mach-realview/
1353 F:      arch/arm/mach-versatile/
1354 F:      arch/arm/plat-versatile/
1355 F:      drivers/bus/arm-integrator-lm.c
1356 F:      drivers/clk/versatile/
1357 F:      drivers/i2c/busses/i2c-versatile.c
1358 F:      drivers/irqchip/irq-versatile-fpga.c
1359 F:      drivers/mtd/maps/physmap-versatile.*
1360 F:      drivers/power/reset/arm-versatile-reboot.c
1361 F:      drivers/soc/versatile/
1362
1363 ARM KOMEDA DRM-KMS DRIVER
1364 M:      James (Qian) Wang <james.qian.wang@arm.com>
1365 M:      Liviu Dudau <liviu.dudau@arm.com>
1366 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1367 L:      Mali DP Maintainers <malidp@foss.arm.com>
1368 S:      Supported
1369 T:      git git://anongit.freedesktop.org/drm/drm-misc
1370 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1371 F:      Documentation/gpu/komeda-kms.rst
1372 F:      drivers/gpu/drm/arm/display/include/
1373 F:      drivers/gpu/drm/arm/display/komeda/
1374
1375 ARM MALI PANFROST DRM DRIVER
1376 M:      Rob Herring <robh@kernel.org>
1377 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1378 R:      Steven Price <steven.price@arm.com>
1379 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1380 L:      dri-devel@lists.freedesktop.org
1381 S:      Supported
1382 T:      git git://anongit.freedesktop.org/drm/drm-misc
1383 F:      drivers/gpu/drm/panfrost/
1384 F:      include/uapi/drm/panfrost_drm.h
1385
1386 ARM MALI-DP DRM DRIVER
1387 M:      Liviu Dudau <liviu.dudau@arm.com>
1388 M:      Brian Starkey <brian.starkey@arm.com>
1389 L:      Mali DP Maintainers <malidp@foss.arm.com>
1390 S:      Supported
1391 T:      git git://anongit.freedesktop.org/drm/drm-misc
1392 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1393 F:      Documentation/gpu/afbc.rst
1394 F:      drivers/gpu/drm/arm/
1395
1396 ARM MFM AND FLOPPY DRIVERS
1397 M:      Ian Molton <spyro@f2s.com>
1398 S:      Maintained
1399 F:      arch/arm/include/asm/floppy.h
1400 F:      arch/arm/mach-rpc/floppydma.S
1401
1402 ARM PMU PROFILING AND DEBUGGING
1403 M:      Will Deacon <will@kernel.org>
1404 M:      Mark Rutland <mark.rutland@arm.com>
1405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1406 S:      Maintained
1407 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1408 F:      Documentation/devicetree/bindings/perf/
1409 F:      arch/arm*/include/asm/hw_breakpoint.h
1410 F:      arch/arm*/include/asm/perf_event.h
1411 F:      arch/arm*/kernel/hw_breakpoint.c
1412 F:      arch/arm*/kernel/perf_*
1413 F:      arch/arm/oprofile/common.c
1414 F:      drivers/perf/
1415 F:      include/linux/perf/arm_pmu.h
1416
1417 ARM PORT
1418 M:      Russell King <linux@armlinux.org.uk>
1419 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1420 S:      Odd Fixes
1421 W:      http://www.armlinux.org.uk/
1422 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1423 F:      arch/arm/
1424 X:      arch/arm/boot/dts/
1425
1426 ARM PRIMECELL AACI PL041 DRIVER
1427 M:      Russell King <linux@armlinux.org.uk>
1428 S:      Odd Fixes
1429 F:      sound/arm/aaci.*
1430
1431 ARM PRIMECELL BUS SUPPORT
1432 M:      Russell King <linux@armlinux.org.uk>
1433 S:      Odd Fixes
1434 F:      drivers/amba/
1435 F:      include/linux/amba/bus.h
1436
1437 ARM PRIMECELL CLCD PL110 DRIVER
1438 M:      Russell King <linux@armlinux.org.uk>
1439 S:      Odd Fixes
1440 F:      drivers/video/fbdev/amba-clcd.*
1441
1442 ARM PRIMECELL KMI PL050 DRIVER
1443 M:      Russell King <linux@armlinux.org.uk>
1444 S:      Odd Fixes
1445 F:      drivers/input/serio/ambakmi.*
1446 F:      include/linux/amba/kmi.h
1447
1448 ARM PRIMECELL MMCI PL180/1 DRIVER
1449 M:      Russell King <linux@armlinux.org.uk>
1450 S:      Odd Fixes
1451 F:      drivers/mmc/host/mmci.*
1452 F:      include/linux/amba/mmci.h
1453
1454 ARM PRIMECELL SSP PL022 SPI DRIVER
1455 M:      Linus Walleij <linus.walleij@linaro.org>
1456 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1457 S:      Maintained
1458 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1459 F:      drivers/spi/spi-pl022.c
1460
1461 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1462 M:      Russell King <linux@armlinux.org.uk>
1463 S:      Odd Fixes
1464 F:      drivers/tty/serial/amba-pl01*.c
1465 F:      include/linux/amba/serial.h
1466
1467 ARM PRIMECELL VIC PL190/PL192 DRIVER
1468 M:      Linus Walleij <linus.walleij@linaro.org>
1469 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1470 S:      Maintained
1471 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1472 F:      drivers/irqchip/irq-vic.c
1473
1474 ARM SMC WATCHDOG DRIVER
1475 M:      Julius Werner <jwerner@chromium.org>
1476 R:      Evan Benn <evanbenn@chromium.org>
1477 S:      Maintained
1478 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1479 F:      drivers/watchdog/arm_smc_wdt.c
1480
1481 ARM SMMU DRIVERS
1482 M:      Will Deacon <will@kernel.org>
1483 R:      Robin Murphy <robin.murphy@arm.com>
1484 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1485 S:      Maintained
1486 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1487 F:      drivers/iommu/arm/
1488 F:      drivers/iommu/io-pgtable-arm*
1489
1490 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1491 M:      Arnd Bergmann <arnd@arndb.de>
1492 M:      Olof Johansson <olof@lixom.net>
1493 M:      soc@kernel.org
1494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1495 S:      Maintained
1496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1497 F:      arch/arm/boot/dts/Makefile
1498 F:      arch/arm64/boot/dts/Makefile
1499
1500 ARM SUB-ARCHITECTURES
1501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1502 S:      Maintained
1503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1504 F:      arch/arm/mach-*/
1505 F:      arch/arm/plat-*/
1506
1507 ARM/ACTIONS SEMI ARCHITECTURE
1508 M:      Andreas Färber <afaerber@suse.de>
1509 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1511 S:      Maintained
1512 F:      Documentation/devicetree/bindings/arm/actions.yaml
1513 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1514 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1515 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1516 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1517 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1518 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1519 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1520 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1521 F:      arch/arm/boot/dts/owl-*
1522 F:      arch/arm/mach-actions/
1523 F:      arch/arm64/boot/dts/actions/
1524 F:      drivers/clk/actions/
1525 F:      drivers/clocksource/timer-owl*
1526 F:      drivers/dma/owl-dma.c
1527 F:      drivers/i2c/busses/i2c-owl.c
1528 F:      drivers/irqchip/irq-owl-sirq.c
1529 F:      drivers/mmc/host/owl-mmc.c
1530 F:      drivers/pinctrl/actions/*
1531 F:      drivers/soc/actions/
1532 F:      include/dt-bindings/power/owl-*
1533 F:      include/dt-bindings/reset/actions,*
1534 F:      include/linux/soc/actions/
1535 N:      owl
1536
1537 ARM/ADS SPHERE MACHINE SUPPORT
1538 M:      Lennert Buytenhek <kernel@wantstofly.org>
1539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1540 S:      Maintained
1541
1542 ARM/AFEB9260 MACHINE SUPPORT
1543 M:      Sergey Lapin <slapin@ossfans.org>
1544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1545 S:      Maintained
1546
1547 ARM/AJECO 1ARM MACHINE SUPPORT
1548 M:      Lennert Buytenhek <kernel@wantstofly.org>
1549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1550 S:      Maintained
1551
1552 ARM/Allwinner SoC Clock Support
1553 M:      Emilio López <emilio@elopez.com.ar>
1554 S:      Maintained
1555 F:      drivers/clk/sunxi/
1556
1557 ARM/Allwinner sunXi SoC support
1558 M:      Maxime Ripard <mripard@kernel.org>
1559 M:      Chen-Yu Tsai <wens@csie.org>
1560 R:      Jernej Skrabec <jernej.skrabec@siol.net>
1561 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1562 S:      Maintained
1563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1564 F:      arch/arm/mach-sunxi/
1565 F:      arch/arm64/boot/dts/allwinner/
1566 F:      drivers/clk/sunxi-ng/
1567 F:      drivers/pinctrl/sunxi/
1568 F:      drivers/soc/sunxi/
1569 N:      sun[x456789]i
1570 N:      sun50i
1571
1572 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1573 M:      Neil Armstrong <narmstrong@baylibre.com>
1574 M:      Jerome Brunet <jbrunet@baylibre.com>
1575 L:      linux-amlogic@lists.infradead.org
1576 S:      Maintained
1577 F:      Documentation/devicetree/bindings/clock/amlogic*
1578 F:      drivers/clk/meson/
1579 F:      include/dt-bindings/clock/gxbb*
1580 F:      include/dt-bindings/clock/meson*
1581
1582 ARM/Amlogic Meson SoC Crypto Drivers
1583 M:      Corentin Labbe <clabbe@baylibre.com>
1584 L:      linux-crypto@vger.kernel.org
1585 L:      linux-amlogic@lists.infradead.org
1586 S:      Maintained
1587 F:      Documentation/devicetree/bindings/crypto/amlogic*
1588 F:      drivers/crypto/amlogic/
1589
1590 ARM/Amlogic Meson SoC Sound Drivers
1591 M:      Jerome Brunet <jbrunet@baylibre.com>
1592 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1593 S:      Maintained
1594 F:      Documentation/devicetree/bindings/sound/amlogic*
1595 F:      sound/soc/meson/
1596
1597 ARM/Amlogic Meson SoC support
1598 M:      Kevin Hilman <khilman@baylibre.com>
1599 R:      Neil Armstrong <narmstrong@baylibre.com>
1600 R:      Jerome Brunet <jbrunet@baylibre.com>
1601 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1602 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1603 L:      linux-amlogic@lists.infradead.org
1604 S:      Maintained
1605 W:      http://linux-meson.com/
1606 F:      arch/arm/boot/dts/meson*
1607 F:      arch/arm/mach-meson/
1608 F:      arch/arm64/boot/dts/amlogic/
1609 F:      drivers/mmc/host/meson*
1610 F:      drivers/pinctrl/meson/
1611 F:      drivers/rtc/rtc-meson*
1612 F:      drivers/soc/amlogic/
1613 N:      meson
1614
1615 ARM/Annapurna Labs ALPINE ARCHITECTURE
1616 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1617 M:      Antoine Tenart <atenart@kernel.org>
1618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1619 S:      Maintained
1620 F:      arch/arm/boot/dts/alpine*
1621 F:      arch/arm/mach-alpine/
1622 F:      arch/arm64/boot/dts/amazon/
1623 F:      drivers/*/*alpine*
1624
1625 ARM/ARTPEC MACHINE SUPPORT
1626 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1627 M:      Lars Persson <lars.persson@axis.com>
1628 L:      linux-arm-kernel@axis.com
1629 S:      Maintained
1630 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1631 F:      arch/arm/boot/dts/artpec6*
1632 F:      arch/arm/mach-artpec
1633 F:      drivers/clk/axis
1634 F:      drivers/crypto/axis
1635 F:      drivers/mmc/host/usdhi6rol0.c
1636 F:      drivers/pinctrl/pinctrl-artpec*
1637
1638 ARM/ASPEED I2C DRIVER
1639 M:      Brendan Higgins <brendanhiggins@google.com>
1640 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1641 R:      Joel Stanley <joel@jms.id.au>
1642 L:      linux-i2c@vger.kernel.org
1643 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1644 S:      Maintained
1645 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1646 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1647 F:      drivers/i2c/busses/i2c-aspeed.c
1648 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1649
1650 ARM/ASPEED MACHINE SUPPORT
1651 M:      Joel Stanley <joel@jms.id.au>
1652 R:      Andrew Jeffery <andrew@aj.id.au>
1653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1654 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1655 S:      Supported
1656 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1658 F:      arch/arm/boot/dts/aspeed-*
1659 F:      arch/arm/mach-aspeed/
1660 N:      aspeed
1661
1662 ARM/BITMAIN ARCHITECTURE
1663 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1665 S:      Maintained
1666 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1667 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1668 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1669 F:      arch/arm64/boot/dts/bitmain/
1670 F:      drivers/clk/clk-bm1880.c
1671 F:      drivers/pinctrl/pinctrl-bm1880.c
1672
1673 ARM/CALXEDA HIGHBANK ARCHITECTURE
1674 M:      Andre Przywara <andre.przywara@arm.com>
1675 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1676 S:      Maintained
1677 F:      arch/arm/boot/dts/ecx-*.dts*
1678 F:      arch/arm/boot/dts/highbank.dts
1679 F:      arch/arm/mach-highbank/
1680
1681 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1682 M:      Krzysztof Halasa <khalasa@piap.pl>
1683 S:      Maintained
1684 F:      arch/arm/mach-cns3xxx/
1685
1686 ARM/CAVIUM THUNDER NETWORK DRIVER
1687 M:      Sunil Goutham <sgoutham@marvell.com>
1688 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1689 S:      Supported
1690 F:      drivers/net/ethernet/cavium/thunder/
1691
1692 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1693 M:      Lukasz Majewski <lukma@denx.de>
1694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695 S:      Maintained
1696 F:      arch/arm/mach-ep93xx/ts72xx.c
1697
1698 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1699 M:      Alexander Shiyan <shc_work@mail.ru>
1700 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1701 S:      Odd Fixes
1702 N:      clps711x
1703
1704 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1705 M:      Lennert Buytenhek <kernel@wantstofly.org>
1706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1707 S:      Maintained
1708
1709 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1710 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1711 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1712 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1713 S:      Maintained
1714 F:      arch/arm/mach-ep93xx/
1715 F:      arch/arm/mach-ep93xx/include/mach/
1716
1717 ARM/CLKDEV SUPPORT
1718 M:      Russell King <linux@armlinux.org.uk>
1719 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1720 S:      Maintained
1721 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1722 F:      drivers/clk/clkdev.c
1723
1724 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1725 M:      Baruch Siach <baruch@tkos.co.il>
1726 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1727 S:      Maintained
1728 F:      arch/arm/boot/dts/cx92755*
1729 N:      digicolor
1730
1731 ARM/CONTEC MICRO9 MACHINE SUPPORT
1732 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1733 S:      Maintained
1734 F:      arch/arm/mach-ep93xx/micro9.c
1735
1736 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1737 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1738 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1739 R:      Mike Leach <mike.leach@linaro.org>
1740 R:      Leo Yan <leo.yan@linaro.org>
1741 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1742 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1743 S:      Maintained
1744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1745 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1746 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1747 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1748 F:      Documentation/devicetree/bindings/arm/coresight.txt
1749 F:      Documentation/trace/coresight/*
1750 F:      drivers/hwtracing/coresight/*
1751 F:      include/dt-bindings/arm/coresight-cti-dt.h
1752 F:      tools/perf/arch/arm/util/auxtrace.c
1753 F:      tools/perf/arch/arm/util/cs-etm.c
1754 F:      tools/perf/arch/arm/util/cs-etm.h
1755 F:      tools/perf/arch/arm/util/pmu.c
1756 F:      tools/perf/util/cs-etm-decoder/*
1757 F:      tools/perf/util/cs-etm.*
1758
1759 ARM/CORGI MACHINE SUPPORT
1760 M:      Richard Purdie <rpurdie@rpsys.net>
1761 S:      Maintained
1762
1763 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1764 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1765 M:      Linus Walleij <linus.walleij@linaro.org>
1766 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1767 S:      Maintained
1768 T:      git git://github.com/ulli-kroll/linux.git
1769 F:      Documentation/devicetree/bindings/arm/gemini.txt
1770 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1771 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1772 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1773 F:      arch/arm/mach-gemini/
1774 F:      drivers/net/ethernet/cortina/
1775 F:      drivers/pinctrl/pinctrl-gemini.c
1776 F:      drivers/rtc/rtc-ftrtc010.c
1777
1778 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1779 M:      Barry Song <baohua@kernel.org>
1780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1781 S:      Maintained
1782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1783 F:      arch/arm/boot/dts/prima2*
1784 F:      arch/arm/mach-prima2/
1785 F:      drivers/clk/sirf/
1786 F:      drivers/clocksource/timer-atlas7.c
1787 F:      drivers/clocksource/timer-prima2.c
1788 X:      drivers/gnss
1789 N:      [^a-z]sirf
1790
1791 ARM/CZ.NIC TURRIS MOX SUPPORT
1792 M:      Marek Behun <marek.behun@nic.cz>
1793 S:      Maintained
1794 W:      http://mox.turris.cz
1795 F:      Documentation/ABI/testing/debugfs-moxtet
1796 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1797 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1798 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1799 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1800 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1801 F:      drivers/bus/moxtet.c
1802 F:      drivers/firmware/turris-mox-rwtm.c
1803 F:      drivers/gpio/gpio-moxtet.c
1804 F:      include/linux/moxtet.h
1805
1806 ARM/EBSA110 MACHINE SUPPORT
1807 M:      Russell King <linux@armlinux.org.uk>
1808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1809 S:      Maintained
1810 W:      http://www.armlinux.org.uk/
1811 F:      arch/arm/mach-ebsa110/
1812 F:      drivers/net/ethernet/amd/am79c961a.*
1813
1814 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1815 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1816 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1817 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1818 S:      Maintained
1819 N:      efm32
1820
1821 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1822 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1824 S:      Maintained
1825 F:      arch/arm/mach-pxa/ezx.c
1826
1827 ARM/FARADAY FA526 PORT
1828 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1830 S:      Maintained
1831 T:      git git://git.berlios.de/gemini-board
1832 F:      arch/arm/mm/*-fa*
1833
1834 ARM/FOOTBRIDGE ARCHITECTURE
1835 M:      Russell King <linux@armlinux.org.uk>
1836 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1837 S:      Maintained
1838 W:      http://www.armlinux.org.uk/
1839 F:      arch/arm/include/asm/hardware/dec21285.h
1840 F:      arch/arm/mach-footbridge/
1841
1842 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1843 M:      Shawn Guo <shawnguo@kernel.org>
1844 M:      Sascha Hauer <s.hauer@pengutronix.de>
1845 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1846 R:      Fabio Estevam <festevam@gmail.com>
1847 R:      NXP Linux Team <linux-imx@nxp.com>
1848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1849 S:      Maintained
1850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1851 X:      drivers/media/i2c/
1852 N:      imx
1853 N:      mxs
1854
1855 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1856 M:      Shawn Guo <shawnguo@kernel.org>
1857 M:      Li Yang <leoyang.li@nxp.com>
1858 L:      linux-arm-kernel@lists.infradead.org (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/ls1021a*
1862 F:      arch/arm64/boot/dts/freescale/fsl-*
1863 F:      arch/arm64/boot/dts/freescale/qoriq-*
1864
1865 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1866 M:      Shawn Guo <shawnguo@kernel.org>
1867 M:      Sascha Hauer <s.hauer@pengutronix.de>
1868 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1869 R:      Stefan Agner <stefan@agner.ch>
1870 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1871 S:      Maintained
1872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1873 F:      arch/arm/boot/dts/vf*
1874 F:      arch/arm/mach-imx/*vf610*
1875
1876 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1877 M:      Lennert Buytenhek <kernel@wantstofly.org>
1878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1879 S:      Maintained
1880
1881 ARM/GUMSTIX MACHINE SUPPORT
1882 M:      Steve Sakoman <sakoman@gmail.com>
1883 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1884 S:      Maintained
1885
1886 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1887 M:      Philipp Zabel <philipp.zabel@gmail.com>
1888 M:      Paul Parsons <lost.distance@yahoo.com>
1889 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1890 S:      Maintained
1891 F:      arch/arm/mach-pxa/hx4700.c
1892 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1893 F:      sound/soc/pxa/hx4700.c
1894
1895 ARM/HISILICON SOC SUPPORT
1896 M:      Wei Xu <xuwei5@hisilicon.com>
1897 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1898 S:      Supported
1899 W:      http://www.hisilicon.com
1900 T:      git git://github.com/hisilicon/linux-hisi.git
1901 F:      arch/arm/boot/dts/hi3*
1902 F:      arch/arm/boot/dts/hip*
1903 F:      arch/arm/boot/dts/hisi*
1904 F:      arch/arm/mach-hisi/
1905 F:      arch/arm64/boot/dts/hisilicon/
1906
1907 ARM/HP JORNADA 7XX MACHINE SUPPORT
1908 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1909 S:      Maintained
1910 W:      www.jlime.com
1911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1912 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1913 F:      arch/arm/mach-sa1100/jornada720.c
1914
1915 ARM/IGEP MACHINE SUPPORT
1916 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1917 M:      Javier Martinez Canillas <javier@dowhile0.org>
1918 L:      linux-omap@vger.kernel.org
1919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1920 S:      Maintained
1921 F:      arch/arm/boot/dts/omap3-igep*
1922
1923 ARM/INCOME PXA270 SUPPORT
1924 M:      Marek Vasut <marek.vasut@gmail.com>
1925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1926 S:      Maintained
1927 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1928
1929 ARM/INTEL IOP32X ARM ARCHITECTURE
1930 M:      Lennert Buytenhek <kernel@wantstofly.org>
1931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1932 S:      Maintained
1933
1934 ARM/INTEL IQ81342EX MACHINE SUPPORT
1935 M:      Lennert Buytenhek <kernel@wantstofly.org>
1936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1937 S:      Maintained
1938
1939 ARM/INTEL IXDP2850 MACHINE SUPPORT
1940 M:      Lennert Buytenhek <kernel@wantstofly.org>
1941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1942 S:      Maintained
1943
1944 ARM/INTEL IXP4XX ARM ARCHITECTURE
1945 M:      Linus Walleij <linusw@kernel.org>
1946 M:      Imre Kaloz <kaloz@openwrt.org>
1947 M:      Krzysztof Halasa <khalasa@piap.pl>
1948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1949 S:      Maintained
1950 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1951 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1952 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1953 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1954 F:      arch/arm/mach-ixp4xx/
1955 F:      drivers/clocksource/timer-ixp4xx.c
1956 F:      drivers/gpio/gpio-ixp4xx.c
1957 F:      drivers/irqchip/irq-ixp4xx.c
1958 F:      include/linux/irqchip/irq-ixp4xx.h
1959 F:      include/linux/platform_data/timer-ixp4xx.h
1960
1961 ARM/INTEL KEEMBAY ARCHITECTURE
1962 M:      Paul J. Murphy <paul.j.murphy@intel.com>
1963 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
1964 S:      Maintained
1965 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1966 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1967 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1968
1969 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1970 M:      Jonathan Cameron <jic23@cam.ac.uk>
1971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1972 S:      Maintained
1973 F:      arch/arm/mach-pxa/stargate2.c
1974 F:      drivers/pcmcia/pxa2xx_stargate2.c
1975
1976 ARM/INTEL XSC3 (MANZANO) ARM CORE
1977 M:      Lennert Buytenhek <kernel@wantstofly.org>
1978 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1979 S:      Maintained
1980
1981 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1982 M:      Lennert Buytenhek <kernel@wantstofly.org>
1983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1984 S:      Maintained
1985
1986 ARM/LG1K ARCHITECTURE
1987 M:      Chanho Min <chanho.min@lge.com>
1988 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1989 S:      Maintained
1990 F:      arch/arm64/boot/dts/lg/
1991
1992 ARM/LOGICPD PXA270 MACHINE SUPPORT
1993 M:      Lennert Buytenhek <kernel@wantstofly.org>
1994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1995 S:      Maintained
1996
1997 ARM/LPC18XX ARCHITECTURE
1998 M:      Vladimir Zapolskiy <vz@mleia.com>
1999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2000 S:      Maintained
2001 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2002 F:      arch/arm/boot/dts/lpc43*
2003 F:      drivers/i2c/busses/i2c-lpc2k.c
2004 F:      drivers/memory/pl172.c
2005 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2006 F:      drivers/rtc/rtc-lpc24xx.c
2007 N:      lpc18xx
2008
2009 ARM/LPC32XX SOC SUPPORT
2010 M:      Vladimir Zapolskiy <vz@mleia.com>
2011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2012 S:      Maintained
2013 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2014 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2015 F:      arch/arm/boot/dts/lpc32*
2016 F:      arch/arm/mach-lpc32xx/
2017 F:      drivers/i2c/busses/i2c-pnx.c
2018 F:      drivers/net/ethernet/nxp/lpc_eth.c
2019 F:      drivers/usb/host/ohci-nxp.c
2020 F:      drivers/watchdog/pnx4008_wdt.c
2021 N:      lpc32xx
2022
2023 ARM/MAGICIAN MACHINE SUPPORT
2024 M:      Philipp Zabel <philipp.zabel@gmail.com>
2025 S:      Maintained
2026
2027 ARM/Marvell Dove/MV78xx0/Orion SOC support
2028 M:      Andrew Lunn <andrew@lunn.ch>
2029 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2030 M:      Gregory Clement <gregory.clement@bootlin.com>
2031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2032 S:      Maintained
2033 T:      git git://git.infradead.org/linux-mvebu.git
2034 F:      Documentation/devicetree/bindings/soc/dove/
2035 F:      arch/arm/boot/dts/dove*
2036 F:      arch/arm/boot/dts/orion5x*
2037 F:      arch/arm/mach-dove/
2038 F:      arch/arm/mach-mv78xx0/
2039 F:      arch/arm/mach-orion5x/
2040 F:      arch/arm/plat-orion/
2041 F:      drivers/soc/dove/
2042
2043 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2044 M:      Andrew Lunn <andrew@lunn.ch>
2045 M:      Gregory Clement <gregory.clement@bootlin.com>
2046 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2048 S:      Maintained
2049 T:      git git://git.infradead.org/linux-mvebu.git
2050 F:      arch/arm/boot/dts/armada*
2051 F:      arch/arm/boot/dts/kirkwood*
2052 F:      arch/arm/configs/mvebu_*_defconfig
2053 F:      arch/arm/mach-mvebu/
2054 F:      arch/arm64/boot/dts/marvell/armada*
2055 F:      arch/arm64/boot/dts/marvell/cn913*
2056 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2057 F:      drivers/cpufreq/armada-8k-cpufreq.c
2058 F:      drivers/cpufreq/mvebu-cpufreq.c
2059 F:      drivers/irqchip/irq-armada-370-xp.c
2060 F:      drivers/irqchip/irq-mvebu-*
2061 F:      drivers/pinctrl/mvebu/
2062 F:      drivers/rtc/rtc-armada38x.c
2063
2064 ARM/Mediatek RTC DRIVER
2065 M:      Eddie Huang <eddie.huang@mediatek.com>
2066 M:      Sean Wang <sean.wang@mediatek.com>
2067 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2068 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2069 S:      Maintained
2070 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2071 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2072 F:      drivers/rtc/rtc-mt2712.c
2073 F:      drivers/rtc/rtc-mt6397.c
2074 F:      drivers/rtc/rtc-mt7622.c
2075
2076 ARM/Mediatek SoC support
2077 M:      Matthias Brugger <matthias.bgg@gmail.com>
2078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2079 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2080 S:      Maintained
2081 W:      https://mtk.bcnfs.org/
2082 C:      irc://chat.freenode.net/linux-mediatek
2083 F:      arch/arm/boot/dts/mt6*
2084 F:      arch/arm/boot/dts/mt7*
2085 F:      arch/arm/boot/dts/mt8*
2086 F:      arch/arm/mach-mediatek/
2087 F:      arch/arm64/boot/dts/mediatek/
2088 F:      drivers/soc/mediatek/
2089 N:      mtk
2090 N:      mt[678]
2091 K:      mediatek
2092
2093 ARM/Mediatek USB3 PHY DRIVER
2094 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2096 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2097 S:      Maintained
2098 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2099 F:      drivers/phy/mediatek/
2100
2101 ARM/Microchip (AT91) SoC support
2102 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2103 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2104 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2105 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2106 S:      Supported
2107 W:      http://www.linux4sam.org
2108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2109 F:      arch/arm/boot/dts/at91*.dts
2110 F:      arch/arm/boot/dts/at91*.dtsi
2111 F:      arch/arm/boot/dts/sama*.dts
2112 F:      arch/arm/boot/dts/sama*.dtsi
2113 F:      arch/arm/include/debug/at91.S
2114 F:      arch/arm/mach-at91/
2115 F:      drivers/memory/atmel*
2116 F:      drivers/watchdog/sama5d4_wdt.c
2117 F:      include/soc/at91/
2118 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2119 X:      drivers/net/wireless/atmel/
2120 N:      at91
2121 N:      atmel
2122
2123 ARM/Microchip Sparx5 SoC support
2124 M:      Lars Povlsen <lars.povlsen@microchip.com>
2125 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2126 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
2127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2128 S:      Supported
2129 T:      git git://github.com/microchip-ung/linux-upstream.git
2130 F:      arch/arm64/boot/dts/microchip/
2131 N:      sparx5
2132
2133 ARM/MIOA701 MACHINE SUPPORT
2134 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2135 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2136 S:      Maintained
2137 F:      arch/arm/mach-pxa/mioa701.c
2138
2139 ARM/MStar/Sigmastar Armv7 SoC support
2140 M:      Daniel Palmer <daniel@thingy.jp>
2141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2142 S:      Maintained
2143 W:      http://linux-chenxing.org/
2144 F:      Documentation/devicetree/bindings/arm/mstar/*
2145 F:      arch/arm/boot/dts/mstar-*
2146 F:      arch/arm/mach-mstar/
2147
2148 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2149 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2150 S:      Maintained
2151
2152 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2153 M:      Linus Walleij <linus.walleij@linaro.org>
2154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2155 S:      Maintained
2156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2157 F:      Documentation/devicetree/bindings/arm/ste-*
2158 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2159 F:      Documentation/devicetree/bindings/arm/ux500/
2160 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2161 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2162 F:      arch/arm/boot/dts/ste-*
2163 F:      arch/arm/mach-nomadik/
2164 F:      arch/arm/mach-u300/
2165 F:      arch/arm/mach-ux500/
2166 F:      drivers/clk/clk-nomadik.c
2167 F:      drivers/clk/clk-u300.c
2168 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2169 F:      drivers/clocksource/timer-u300.c
2170 F:      drivers/dma/coh901318*
2171 F:      drivers/dma/ste_dma40*
2172 F:      drivers/hwspinlock/u8500_hsem.c
2173 F:      drivers/i2c/busses/i2c-nomadik.c
2174 F:      drivers/i2c/busses/i2c-stu300.c
2175 F:      drivers/iio/adc/ab8500-gpadc.c
2176 F:      drivers/mfd/ab3100*
2177 F:      drivers/mfd/ab8500*
2178 F:      drivers/mfd/abx500*
2179 F:      drivers/mfd/db8500*
2180 F:      drivers/mfd/dbx500*
2181 F:      drivers/pinctrl/nomadik/
2182 F:      drivers/pinctrl/pinctrl-coh901*
2183 F:      drivers/pinctrl/pinctrl-u300.c
2184 F:      drivers/rtc/rtc-ab3100.c
2185 F:      drivers/rtc/rtc-ab8500.c
2186 F:      drivers/rtc/rtc-coh901331.c
2187 F:      drivers/rtc/rtc-pl031.c
2188 F:      drivers/soc/ux500/
2189 F:      drivers/watchdog/coh901327_wdt.c
2190
2191 ARM/NUVOTON NPCM ARCHITECTURE
2192 M:      Avi Fishman <avifishman70@gmail.com>
2193 M:      Tomer Maimon <tmaimon77@gmail.com>
2194 M:      Tali Perry <tali.perry1@gmail.com>
2195 R:      Patrick Venture <venture@google.com>
2196 R:      Nancy Yuen <yuenn@google.com>
2197 R:      Benjamin Fair <benjaminfair@google.com>
2198 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2199 S:      Supported
2200 F:      Documentation/devicetree/bindings/*/*/*npcm*
2201 F:      Documentation/devicetree/bindings/*/*npcm*
2202 F:      arch/arm/boot/dts/nuvoton-npcm*
2203 F:      arch/arm/mach-npcm/
2204 F:      drivers/*/*npcm*
2205 F:      drivers/*/*/*npcm*
2206 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2207
2208 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2209 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2210 S:      Orphan
2211 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2212 F:      arch/arm/mach-s3c/gta02.h
2213 F:      arch/arm/mach-s3c/mach-gta02.c
2214
2215 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2216 M:      Alexander Clouter <alex@digriz.org.uk>
2217 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2218 S:      Maintained
2219 W:      http://www.digriz.org.uk/ts78xx/kernel
2220 F:      arch/arm/mach-orion5x/ts78xx-*
2221
2222 ARM/OXNAS platform support
2223 M:      Neil Armstrong <narmstrong@baylibre.com>
2224 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2225 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2226 S:      Maintained
2227 F:      arch/arm/boot/dts/ox8*.dts*
2228 F:      arch/arm/mach-oxnas/
2229 F:      drivers/power/reset/oxnas-restart.c
2230 N:      oxnas
2231
2232 ARM/PALM TREO SUPPORT
2233 M:      Tomas Cech <sleep_walker@suse.com>
2234 L:      linux-arm-kernel@lists.infradead.org
2235 S:      Maintained
2236 W:      http://hackndev.com
2237 F:      arch/arm/mach-pxa/palmtreo.*
2238
2239 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2240 M:      Marek Vasut <marek.vasut@gmail.com>
2241 L:      linux-arm-kernel@lists.infradead.org
2242 S:      Maintained
2243 W:      http://hackndev.com
2244 F:      arch/arm/mach-pxa/include/mach/palmld.h
2245 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2246 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2247 F:      arch/arm/mach-pxa/palmld.c
2248 F:      arch/arm/mach-pxa/palmt5.*
2249 F:      arch/arm/mach-pxa/palmtc.c
2250 F:      arch/arm/mach-pxa/palmte2.*
2251 F:      arch/arm/mach-pxa/palmtx.c
2252
2253 ARM/PALMZ72 SUPPORT
2254 M:      Sergey Lapin <slapin@ossfans.org>
2255 L:      linux-arm-kernel@lists.infradead.org
2256 S:      Maintained
2257 W:      http://hackndev.com
2258 F:      arch/arm/mach-pxa/palmz72.*
2259
2260 ARM/PLEB SUPPORT
2261 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2262 S:      Maintained
2263 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2264
2265 ARM/PT DIGITAL BOARD PORT
2266 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2267 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2268 S:      Maintained
2269 W:      http://www.armlinux.org.uk/
2270
2271 ARM/QUALCOMM SUPPORT
2272 M:      Andy Gross <agross@kernel.org>
2273 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2274 L:      linux-arm-msm@vger.kernel.org
2275 S:      Maintained
2276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2277 F:      Documentation/devicetree/bindings/*/qcom*
2278 F:      Documentation/devicetree/bindings/soc/qcom/
2279 F:      arch/arm/boot/dts/qcom-*.dts
2280 F:      arch/arm/boot/dts/qcom-*.dtsi
2281 F:      arch/arm/mach-qcom/
2282 F:      arch/arm64/boot/dts/qcom/
2283 F:      drivers/*/*/qcom*
2284 F:      drivers/*/*/qcom/
2285 F:      drivers/*/pm8???-*
2286 F:      drivers/*/qcom*
2287 F:      drivers/*/qcom/
2288 F:      drivers/bluetooth/btqcomsmd.c
2289 F:      drivers/clocksource/timer-qcom.c
2290 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2291 F:      drivers/extcon/extcon-qcom*
2292 F:      drivers/i2c/busses/i2c-qcom-geni.c
2293 F:      drivers/i2c/busses/i2c-qup.c
2294 F:      drivers/iommu/msm*
2295 F:      drivers/mfd/ssbi.c
2296 F:      drivers/mmc/host/mmci_qcom*
2297 F:      drivers/mmc/host/sdhci-msm.c
2298 F:      drivers/pci/controller/dwc/pcie-qcom.c
2299 F:      drivers/phy/qualcomm/
2300 F:      drivers/power/*/msm*
2301 F:      drivers/reset/reset-qcom-*
2302 F:      drivers/scsi/ufs/ufs-qcom*
2303 F:      drivers/spi/spi-geni-qcom.c
2304 F:      drivers/spi/spi-qcom-qspi.c
2305 F:      drivers/spi/spi-qup.c
2306 F:      drivers/tty/serial/msm_serial.c
2307 F:      drivers/usb/dwc3/dwc3-qcom.c
2308 F:      include/dt-bindings/*/qcom*
2309 F:      include/linux/*/qcom*
2310
2311 ARM/RADISYS ENP2611 MACHINE SUPPORT
2312 M:      Lennert Buytenhek <kernel@wantstofly.org>
2313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2314 S:      Maintained
2315
2316 ARM/RDA MICRO ARCHITECTURE
2317 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2319 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2320 S:      Maintained
2321 F:      Documentation/devicetree/bindings/arm/rda.yaml
2322 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2323 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2324 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2325 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2326 F:      arch/arm/boot/dts/rda8810pl-*
2327 F:      drivers/clocksource/timer-rda.c
2328 F:      drivers/gpio/gpio-rda.c
2329 F:      drivers/irqchip/irq-rda-intc.c
2330 F:      drivers/tty/serial/rda-uart.c
2331
2332 ARM/REALTEK ARCHITECTURE
2333 M:      Andreas Färber <afaerber@suse.de>
2334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2335 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2336 S:      Maintained
2337 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2338 F:      arch/arm/boot/dts/rtd*
2339 F:      arch/arm/mach-realtek/
2340 F:      arch/arm64/boot/dts/realtek/
2341
2342 ARM/RENESAS ARM64 ARCHITECTURE
2343 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2344 M:      Magnus Damm <magnus.damm@gmail.com>
2345 L:      linux-renesas-soc@vger.kernel.org
2346 S:      Supported
2347 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2349 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2350 F:      arch/arm64/boot/dts/renesas/
2351 F:      drivers/soc/renesas/
2352 F:      include/linux/soc/renesas/
2353
2354 ARM/RISCPC ARCHITECTURE
2355 M:      Russell King <linux@armlinux.org.uk>
2356 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2357 S:      Maintained
2358 W:      http://www.armlinux.org.uk/
2359 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2360 F:      arch/arm/include/asm/hardware/ioc.h
2361 F:      arch/arm/include/asm/hardware/iomd.h
2362 F:      arch/arm/include/asm/hardware/memc.h
2363 F:      arch/arm/mach-rpc/
2364 F:      drivers/net/ethernet/8390/etherh.c
2365 F:      drivers/net/ethernet/i825xx/ether1*
2366 F:      drivers/net/ethernet/seeq/ether3*
2367 F:      drivers/scsi/arm/
2368
2369 ARM/Rockchip SoC support
2370 M:      Heiko Stuebner <heiko@sntech.de>
2371 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2372 L:      linux-rockchip@lists.infradead.org
2373 S:      Maintained
2374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2375 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2376 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2377 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2378 F:      arch/arm/boot/dts/rk3*
2379 F:      arch/arm/boot/dts/rv1108*
2380 F:      arch/arm/mach-rockchip/
2381 F:      drivers/*/*/*rockchip*
2382 F:      drivers/*/*rockchip*
2383 F:      drivers/clk/rockchip/
2384 F:      drivers/i2c/busses/i2c-rk3x.c
2385 F:      sound/soc/rockchip/
2386 N:      rockchip
2387
2388 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2389 M:      Krzysztof Kozlowski <krzk@kernel.org>
2390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2391 L:      linux-samsung-soc@vger.kernel.org
2392 S:      Maintained
2393 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2394 F:      Documentation/arm/samsung/
2395 F:      Documentation/devicetree/bindings/arm/samsung/
2396 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2397 F:      arch/arm/boot/dts/exynos*
2398 F:      arch/arm/boot/dts/s3c*
2399 F:      arch/arm/boot/dts/s5p*
2400 F:      arch/arm/mach-exynos*/
2401 F:      arch/arm/mach-s3c/
2402 F:      arch/arm/mach-s5p*/
2403 F:      arch/arm64/boot/dts/exynos/
2404 F:      drivers/*/*/*s3c24*
2405 F:      drivers/*/*s3c24*
2406 F:      drivers/*/*s3c64xx*
2407 F:      drivers/*/*s5pv210*
2408 F:      drivers/memory/samsung/
2409 F:      drivers/soc/samsung/
2410 F:      drivers/tty/serial/samsung*
2411 F:      include/linux/soc/samsung/
2412 N:      exynos
2413 N:      s3c2410
2414 N:      s3c64xx
2415 N:      s5pv210
2416
2417 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2418 M:      Andrzej Hajda <a.hajda@samsung.com>
2419 L:      linux-arm-kernel@lists.infradead.org
2420 L:      linux-media@vger.kernel.org
2421 S:      Maintained
2422 F:      drivers/media/platform/s5p-g2d/
2423
2424 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2425 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2426 L:      linux-samsung-soc@vger.kernel.org
2427 L:      linux-media@vger.kernel.org
2428 S:      Maintained
2429 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2430 F:      drivers/media/cec/platform/s5p/
2431
2432 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2433 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2434 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2435 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2436 L:      linux-arm-kernel@lists.infradead.org
2437 L:      linux-media@vger.kernel.org
2438 S:      Maintained
2439 F:      drivers/media/platform/s5p-jpeg/
2440
2441 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2442 M:      Andrzej Hajda <a.hajda@samsung.com>
2443 L:      linux-arm-kernel@lists.infradead.org
2444 L:      linux-media@vger.kernel.org
2445 S:      Maintained
2446 F:      drivers/media/platform/s5p-mfc/
2447
2448 ARM/SHMOBILE ARM ARCHITECTURE
2449 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2450 M:      Magnus Damm <magnus.damm@gmail.com>
2451 L:      linux-renesas-soc@vger.kernel.org
2452 S:      Supported
2453 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2455 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2456 F:      arch/arm/boot/dts/emev2*
2457 F:      arch/arm/boot/dts/gr-peach*
2458 F:      arch/arm/boot/dts/iwg20d-q7*
2459 F:      arch/arm/boot/dts/r7s*
2460 F:      arch/arm/boot/dts/r8a*
2461 F:      arch/arm/boot/dts/r9a*
2462 F:      arch/arm/boot/dts/sh*
2463 F:      arch/arm/configs/shmobile_defconfig
2464 F:      arch/arm/include/debug/renesas-scif.S
2465 F:      arch/arm/mach-shmobile/
2466 F:      drivers/soc/renesas/
2467 F:      include/linux/soc/renesas/
2468
2469 ARM/SOCFPGA ARCHITECTURE
2470 M:      Dinh Nguyen <dinguyen@kernel.org>
2471 S:      Maintained
2472 W:      http://www.rocketboards.org
2473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2474 F:      arch/arm/boot/dts/socfpga*
2475 F:      arch/arm/configs/socfpga_defconfig
2476 F:      arch/arm/mach-socfpga/
2477 F:      arch/arm64/boot/dts/altera/
2478 F:      arch/arm64/boot/dts/intel/
2479
2480 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2481 M:      Dinh Nguyen <dinguyen@kernel.org>
2482 S:      Maintained
2483 F:      drivers/clk/socfpga/
2484
2485 ARM/SOCFPGA EDAC SUPPORT
2486 M:      Dinh Nguyen <dinguyen@kernel.org>
2487 S:      Maintained
2488 F:      drivers/edac/altera_edac.
2489
2490 ARM/SPREADTRUM SoC SUPPORT
2491 M:      Orson Zhai <orsonzhai@gmail.com>
2492 M:      Baolin Wang <baolin.wang7@gmail.com>
2493 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2494 S:      Maintained
2495 F:      arch/arm64/boot/dts/sprd
2496 N:      sprd
2497 N:      sc27xx
2498 N:      sc2731
2499
2500 ARM/STI ARCHITECTURE
2501 M:      Patrice Chotard <patrice.chotard@st.com>
2502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2503 S:      Maintained
2504 W:      http://www.stlinux.com
2505 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2506 F:      arch/arm/boot/dts/sti*
2507 F:      arch/arm/mach-sti/
2508 F:      drivers/ata/ahci_st.c
2509 F:      drivers/char/hw_random/st-rng.c
2510 F:      drivers/clocksource/arm_global_timer.c
2511 F:      drivers/clocksource/clksrc_st_lpc.c
2512 F:      drivers/cpufreq/sti-cpufreq.c
2513 F:      drivers/dma/st_fdma*
2514 F:      drivers/i2c/busses/i2c-st.c
2515 F:      drivers/media/platform/sti/c8sectpfe/
2516 F:      drivers/media/rc/st_rc.c
2517 F:      drivers/mmc/host/sdhci-st.c
2518 F:      drivers/phy/st/phy-miphy28lp.c
2519 F:      drivers/phy/st/phy-stih407-usb.c
2520 F:      drivers/pinctrl/pinctrl-st.c
2521 F:      drivers/remoteproc/st_remoteproc.c
2522 F:      drivers/remoteproc/st_slim_rproc.c
2523 F:      drivers/reset/sti/
2524 F:      drivers/rtc/rtc-st-lpc.c
2525 F:      drivers/tty/serial/st-asc.c
2526 F:      drivers/usb/dwc3/dwc3-st.c
2527 F:      drivers/usb/host/ehci-st.c
2528 F:      drivers/usb/host/ohci-st.c
2529 F:      drivers/watchdog/st_lpc_wdt.c
2530 F:      include/linux/remoteproc/st_slim_rproc.h
2531
2532 ARM/STM32 ARCHITECTURE
2533 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2534 M:      Alexandre Torgue <alexandre.torgue@st.com>
2535 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2537 S:      Maintained
2538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2539 F:      arch/arm/boot/dts/stm32*
2540 F:      arch/arm/mach-stm32/
2541 F:      drivers/clocksource/armv7m_systick.c
2542 N:      stm32
2543 N:      stm
2544
2545 ARM/Synaptics SoC support
2546 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2547 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2549 S:      Maintained
2550 F:      arch/arm/boot/dts/berlin*
2551 F:      arch/arm/mach-berlin/
2552 F:      arch/arm64/boot/dts/synaptics/
2553
2554 ARM/TANGO ARCHITECTURE
2555 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2556 M:      Mans Rullgard <mans@mansr.com>
2557 L:      linux-arm-kernel@lists.infradead.org
2558 S:      Odd Fixes
2559 N:      tango
2560
2561 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2562 M:      Lennert Buytenhek <kernel@wantstofly.org>
2563 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2564 S:      Maintained
2565
2566 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2567 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2568 L:      linux-tegra@vger.kernel.org
2569 L:      linux-media@vger.kernel.org
2570 S:      Maintained
2571 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2572 F:      drivers/media/cec/platform/tegra/
2573
2574 ARM/TETON BGA MACHINE SUPPORT
2575 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2576 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2577 S:      Maintained
2578
2579 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2580 M:      Santosh Shilimkar <ssantosh@kernel.org>
2581 L:      linux-kernel@vger.kernel.org
2582 S:      Maintained
2583 F:      drivers/memory/*emif*
2584
2585 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2586 M:      Santosh Shilimkar <ssantosh@kernel.org>
2587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2588 S:      Maintained
2589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2590 F:      arch/arm/boot/dts/keystone-*
2591 F:      arch/arm/mach-keystone/
2592
2593 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2594 M:      Santosh Shilimkar <ssantosh@kernel.org>
2595 L:      linux-kernel@vger.kernel.org
2596 S:      Maintained
2597 F:      drivers/clk/keystone/
2598
2599 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2600 M:      Santosh Shilimkar <ssantosh@kernel.org>
2601 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2602 L:      linux-kernel@vger.kernel.org
2603 S:      Maintained
2604 F:      drivers/clocksource/timer-keystone.c
2605
2606 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2607 M:      Santosh Shilimkar <ssantosh@kernel.org>
2608 L:      linux-kernel@vger.kernel.org
2609 S:      Maintained
2610 F:      drivers/power/reset/keystone-reset.c
2611
2612 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2613 M:      Tero Kristo <t-kristo@ti.com>
2614 M:      Nishanth Menon <nm@ti.com>
2615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2616 S:      Supported
2617 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2618 F:      arch/arm64/boot/dts/ti/Makefile
2619 F:      arch/arm64/boot/dts/ti/k3-*
2620 F:      include/dt-bindings/pinctrl/k3.h
2621
2622 ARM/THECUS N2100 MACHINE SUPPORT
2623 M:      Lennert Buytenhek <kernel@wantstofly.org>
2624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2625 S:      Maintained
2626
2627 ARM/TOSA MACHINE SUPPORT
2628 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2629 M:      Dirk Opfer <dirk@opfer-online.de>
2630 S:      Maintained
2631
2632 ARM/TOSHIBA VISCONTI ARCHITECTURE
2633 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2635 S:      Supported
2636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2637 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2638 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2639 F:      arch/arm64/boot/dts/toshiba/
2640 F:      drivers/pinctrl/visconti/
2641 N:      visconti
2642
2643 ARM/UNIPHIER ARCHITECTURE
2644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2645 S:      Orphan
2646 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2647 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2648 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2649 F:      arch/arm/boot/dts/uniphier*
2650 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2651 F:      arch/arm/mach-uniphier/
2652 F:      arch/arm/mm/cache-uniphier.c
2653 F:      arch/arm64/boot/dts/socionext/uniphier*
2654 F:      drivers/bus/uniphier-system-bus.c
2655 F:      drivers/clk/uniphier/
2656 F:      drivers/dma/uniphier-mdmac.c
2657 F:      drivers/gpio/gpio-uniphier.c
2658 F:      drivers/i2c/busses/i2c-uniphier*
2659 F:      drivers/irqchip/irq-uniphier-aidet.c
2660 F:      drivers/mmc/host/uniphier-sd.c
2661 F:      drivers/pinctrl/uniphier/
2662 F:      drivers/reset/reset-uniphier.c
2663 F:      drivers/tty/serial/8250/8250_uniphier.c
2664 N:      uniphier
2665
2666 ARM/VERSATILE EXPRESS PLATFORM
2667 M:      Liviu Dudau <liviu.dudau@arm.com>
2668 M:      Sudeep Holla <sudeep.holla@arm.com>
2669 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2670 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2671 S:      Maintained
2672 F:      */*/*/vexpress*
2673 F:      */*/vexpress*
2674 F:      arch/arm/boot/dts/vexpress*
2675 F:      arch/arm/mach-vexpress/
2676 F:      arch/arm64/boot/dts/arm/
2677 F:      drivers/clk/versatile/clk-vexpress-osc.c
2678 F:      drivers/clocksource/timer-versatile.c
2679 N:      mps2
2680
2681 ARM/VFP SUPPORT
2682 M:      Russell King <linux@armlinux.org.uk>
2683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2684 S:      Maintained
2685 W:      http://www.armlinux.org.uk/
2686 F:      arch/arm/vfp/
2687
2688 ARM/VOIPAC PXA270 SUPPORT
2689 M:      Marek Vasut <marek.vasut@gmail.com>
2690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2691 S:      Maintained
2692 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2693 F:      arch/arm/mach-pxa/vpac270.c
2694
2695 ARM/VT8500 ARM ARCHITECTURE
2696 M:      Tony Prisk <linux@prisktech.co.nz>
2697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2698 S:      Maintained
2699 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2700 F:      arch/arm/mach-vt8500/
2701 F:      drivers/clocksource/timer-vt8500.c
2702 F:      drivers/i2c/busses/i2c-wmt.c
2703 F:      drivers/mmc/host/wmt-sdmmc.c
2704 F:      drivers/pwm/pwm-vt8500.c
2705 F:      drivers/rtc/rtc-vt8500.c
2706 F:      drivers/tty/serial/vt8500_serial.c
2707 F:      drivers/usb/host/ehci-platform.c
2708 F:      drivers/usb/host/uhci-platform.c
2709 F:      drivers/video/fbdev/vt8500lcdfb.*
2710 F:      drivers/video/fbdev/wm8505fb*
2711 F:      drivers/video/fbdev/wmt_ge_rops.*
2712
2713 ARM/ZIPIT Z2 SUPPORT
2714 M:      Marek Vasut <marek.vasut@gmail.com>
2715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2716 S:      Maintained
2717 F:      arch/arm/mach-pxa/include/mach/z2.h
2718 F:      arch/arm/mach-pxa/z2.c
2719
2720 ARM/ZTE ARCHITECTURE
2721 M:      Jun Nie <jun.nie@linaro.org>
2722 M:      Shawn Guo <shawnguo@kernel.org>
2723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2724 S:      Maintained
2725 F:      Documentation/devicetree/bindings/arm/zte.yaml
2726 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2727 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2728 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2729 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2730 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2731 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2732 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2733 F:      Documentation/devicetree/bindings/soc/zte/
2734 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2735 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2736 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2737 F:      arch/arm/boot/dts/zx2967*
2738 F:      arch/arm/mach-zx/
2739 F:      arch/arm64/boot/dts/zte/
2740 F:      drivers/clk/zte/
2741 F:      drivers/dma/zx_dma.c
2742 F:      drivers/gpio/gpio-zx.c
2743 F:      drivers/i2c/busses/i2c-zx2967.c
2744 F:      drivers/mmc/host/dw_mmc-zx.*
2745 F:      drivers/pinctrl/zte/
2746 F:      drivers/soc/zte/
2747 F:      drivers/thermal/zx2967_thermal.c
2748 F:      drivers/watchdog/zx2967_wdt.c
2749 F:      include/dt-bindings/clock/zx2967*.h
2750 F:      include/dt-bindings/soc/zte,*.h
2751 F:      sound/soc/codecs/zx_aud96p22.c
2752 F:      sound/soc/zte/
2753
2754 ARM/ZYNQ ARCHITECTURE
2755 M:      Michal Simek <michal.simek@xilinx.com>
2756 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2757 S:      Supported
2758 W:      http://wiki.xilinx.com
2759 T:      git https://github.com/Xilinx/linux-xlnx.git
2760 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2761 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2762 F:      arch/arm/mach-zynq/
2763 F:      drivers/block/xsysace.c
2764 F:      drivers/clocksource/timer-cadence-ttc.c
2765 F:      drivers/cpuidle/cpuidle-zynq.c
2766 F:      drivers/edac/synopsys_edac.c
2767 F:      drivers/i2c/busses/i2c-cadence.c
2768 F:      drivers/i2c/busses/i2c-xiic.c
2769 F:      drivers/mmc/host/sdhci-of-arasan.c
2770 N:      zynq
2771 N:      xilinx
2772
2773 ARM64 PORT (AARCH64 ARCHITECTURE)
2774 M:      Catalin Marinas <catalin.marinas@arm.com>
2775 M:      Will Deacon <will@kernel.org>
2776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2777 S:      Maintained
2778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2779 F:      Documentation/arm64/
2780 F:      arch/arm64/
2781 F:      tools/testing/selftests/arm64/
2782 X:      arch/arm64/boot/dts/
2783
2784 AS3645A LED FLASH CONTROLLER DRIVER
2785 M:      Sakari Ailus <sakari.ailus@iki.fi>
2786 L:      linux-leds@vger.kernel.org
2787 S:      Maintained
2788 F:      drivers/leds/leds-as3645a.c
2789
2790 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2791 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2792 L:      linux-media@vger.kernel.org
2793 S:      Maintained
2794 T:      git git://linuxtv.org/media_tree.git
2795 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2796 F:      drivers/media/i2c/ak7375.c
2797
2798 ASAHI KASEI AK8974 DRIVER
2799 M:      Linus Walleij <linus.walleij@linaro.org>
2800 L:      linux-iio@vger.kernel.org
2801 S:      Supported
2802 W:      http://www.akm.com/
2803 F:      drivers/iio/magnetometer/ak8974.c
2804
2805 ASC7621 HARDWARE MONITOR DRIVER
2806 M:      George Joseph <george.joseph@fairview5.com>
2807 L:      linux-hwmon@vger.kernel.org
2808 S:      Maintained
2809 F:      Documentation/hwmon/asc7621.rst
2810 F:      drivers/hwmon/asc7621.c
2811
2812 ASPEED PINCTRL DRIVERS
2813 M:      Andrew Jeffery <andrew@aj.id.au>
2814 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2815 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2816 L:      linux-gpio@vger.kernel.org
2817 S:      Maintained
2818 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2819 F:      drivers/pinctrl/aspeed/
2820
2821 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2822 M:      Eddie James <eajames@linux.ibm.com>
2823 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2824 S:      Maintained
2825 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2826 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2827 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2828
2829 ASPEED VIDEO ENGINE DRIVER
2830 M:      Eddie James <eajames@linux.ibm.com>
2831 L:      linux-media@vger.kernel.org
2832 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2833 S:      Maintained
2834 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2835 F:      drivers/media/platform/aspeed-video.c
2836
2837 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2838 M:      Corentin Chary <corentin.chary@gmail.com>
2839 L:      acpi4asus-user@lists.sourceforge.net
2840 L:      platform-driver-x86@vger.kernel.org
2841 S:      Maintained
2842 W:      http://acpi4asus.sf.net
2843 F:      drivers/platform/x86/asus*.c
2844 F:      drivers/platform/x86/eeepc*.c
2845
2846 ASUS WIRELESS RADIO CONTROL DRIVER
2847 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2848 L:      platform-driver-x86@vger.kernel.org
2849 S:      Maintained
2850 F:      drivers/platform/x86/asus-wireless.c
2851
2852 ASYMMETRIC KEYS
2853 M:      David Howells <dhowells@redhat.com>
2854 L:      keyrings@vger.kernel.org
2855 S:      Maintained
2856 F:      Documentation/crypto/asymmetric-keys.rst
2857 F:      crypto/asymmetric_keys/
2858 F:      include/crypto/pkcs7.h
2859 F:      include/crypto/public_key.h
2860 F:      include/linux/verification.h
2861
2862 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2863 R:      Dan Williams <dan.j.williams@intel.com>
2864 S:      Odd fixes
2865 W:      http://sourceforge.net/projects/xscaleiop
2866 F:      Documentation/crypto/async-tx-api.rst
2867 F:      crypto/async_tx/
2868 F:      drivers/dma/
2869 F:      include/linux/async_tx.h
2870 F:      include/linux/dmaengine.h
2871
2872 AT24 EEPROM DRIVER
2873 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2874 L:      linux-i2c@vger.kernel.org
2875 S:      Maintained
2876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2877 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2878 F:      drivers/misc/eeprom/at24.c
2879
2880 ATA OVER ETHERNET (AOE) DRIVER
2881 M:      "Justin Sanders" <justin@coraid.com>
2882 S:      Supported
2883 W:      http://www.openaoe.org/
2884 F:      Documentation/admin-guide/aoe/
2885 F:      drivers/block/aoe/
2886
2887 ATHEROS 71XX/9XXX GPIO DRIVER
2888 M:      Alban Bedel <albeu@free.fr>
2889 S:      Maintained
2890 W:      https://github.com/AlbanBedel/linux
2891 T:      git git://github.com/AlbanBedel/linux
2892 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2893 F:      drivers/gpio/gpio-ath79.c
2894
2895 ATHEROS 71XX/9XXX USB PHY DRIVER
2896 M:      Alban Bedel <albeu@free.fr>
2897 S:      Maintained
2898 W:      https://github.com/AlbanBedel/linux
2899 T:      git git://github.com/AlbanBedel/linux
2900 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2901 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2902
2903 ATHEROS ATH GENERIC UTILITIES
2904 M:      Kalle Valo <kvalo@codeaurora.org>
2905 L:      linux-wireless@vger.kernel.org
2906 S:      Supported
2907 F:      drivers/net/wireless/ath/*
2908
2909 ATHEROS ATH5K WIRELESS DRIVER
2910 M:      Jiri Slaby <jirislaby@kernel.org>
2911 M:      Nick Kossifidis <mickflemm@gmail.com>
2912 M:      Luis Chamberlain <mcgrof@kernel.org>
2913 L:      linux-wireless@vger.kernel.org
2914 S:      Maintained
2915 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2916 F:      drivers/net/wireless/ath/ath5k/
2917
2918 ATHEROS ATH6KL WIRELESS DRIVER
2919 M:      Kalle Valo <kvalo@codeaurora.org>
2920 L:      linux-wireless@vger.kernel.org
2921 S:      Supported
2922 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2924 F:      drivers/net/wireless/ath/ath6kl/
2925
2926 ATI_REMOTE2 DRIVER
2927 M:      Ville Syrjala <syrjala@sci.fi>
2928 S:      Maintained
2929 F:      drivers/input/misc/ati_remote2.c
2930
2931 ATK0110 HWMON DRIVER
2932 M:      Luca Tettamanti <kronos.it@gmail.com>
2933 L:      linux-hwmon@vger.kernel.org
2934 S:      Maintained
2935 F:      drivers/hwmon/asus_atk0110.c
2936
2937 ATLX ETHERNET DRIVERS
2938 M:      Jay Cliburn <jcliburn@gmail.com>
2939 M:      Chris Snook <chris.snook@gmail.com>
2940 L:      netdev@vger.kernel.org
2941 S:      Maintained
2942 W:      http://sourceforge.net/projects/atl1
2943 W:      http://atl1.sourceforge.net
2944 F:      drivers/net/ethernet/atheros/
2945
2946 ATM
2947 M:      Chas Williams <3chas3@gmail.com>
2948 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2949 L:      netdev@vger.kernel.org
2950 S:      Maintained
2951 W:      http://linux-atm.sourceforge.net
2952 F:      drivers/atm/
2953 F:      include/linux/atm*
2954 F:      include/uapi/linux/atm*
2955
2956 ATMEL MACB ETHERNET DRIVER
2957 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2958 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2959 S:      Supported
2960 F:      drivers/net/ethernet/cadence/
2961
2962 ATMEL MAXTOUCH DRIVER
2963 M:      Nick Dyer <nick@shmanahar.org>
2964 S:      Maintained
2965 T:      git git://github.com/ndyer/linux.git
2966 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2967 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2968
2969 ATMEL WIRELESS DRIVER
2970 M:      Simon Kelley <simon@thekelleys.org.uk>
2971 L:      linux-wireless@vger.kernel.org
2972 S:      Maintained
2973 W:      http://www.thekelleys.org.uk/atmel
2974 W:      http://atmelwlandriver.sourceforge.net/
2975 F:      drivers/net/wireless/atmel/atmel*
2976
2977 ATOMIC INFRASTRUCTURE
2978 M:      Will Deacon <will@kernel.org>
2979 M:      Peter Zijlstra <peterz@infradead.org>
2980 R:      Boqun Feng <boqun.feng@gmail.com>
2981 L:      linux-kernel@vger.kernel.org
2982 S:      Maintained
2983 F:      arch/*/include/asm/atomic*.h
2984 F:      include/*/atomic*.h
2985 F:      scripts/atomic/
2986
2987 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2988 M:      Bradley Grove <linuxdrivers@attotech.com>
2989 L:      linux-scsi@vger.kernel.org
2990 S:      Supported
2991 W:      http://www.attotech.com
2992 F:      drivers/scsi/esas2r
2993
2994 ATUSB IEEE 802.15.4 RADIO DRIVER
2995 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2996 L:      linux-wpan@vger.kernel.org
2997 S:      Maintained
2998 F:      drivers/net/ieee802154/at86rf230.h
2999 F:      drivers/net/ieee802154/atusb.c
3000 F:      drivers/net/ieee802154/atusb.h
3001
3002 AUDIT SUBSYSTEM
3003 M:      Paul Moore <paul@paul-moore.com>
3004 M:      Eric Paris <eparis@redhat.com>
3005 L:      linux-audit@redhat.com (moderated for non-subscribers)
3006 S:      Supported
3007 W:      https://github.com/linux-audit
3008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3009 F:      include/linux/audit.h
3010 F:      include/uapi/linux/audit.h
3011 F:      kernel/audit*
3012
3013 AUXILIARY DISPLAY DRIVERS
3014 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3015 S:      Maintained
3016 F:      drivers/auxdisplay/
3017 F:      include/linux/cfag12864b.h
3018
3019 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3020 M:      Andreas Klinger <ak@it-klinger.de>
3021 L:      linux-iio@vger.kernel.org
3022 S:      Maintained
3023 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3024 F:      drivers/iio/adc/hx711.c
3025
3026 AX.25 NETWORK LAYER
3027 M:      Ralf Baechle <ralf@linux-mips.org>
3028 L:      linux-hams@vger.kernel.org
3029 S:      Maintained
3030 W:      http://www.linux-ax25.org/
3031 F:      include/net/ax25.h
3032 F:      include/uapi/linux/ax25.h
3033 F:      net/ax25/
3034
3035 AXENTIA ARM DEVICES
3036 M:      Peter Rosin <peda@axentia.se>
3037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3038 S:      Maintained
3039 F:      arch/arm/boot/dts/at91-linea.dtsi
3040 F:      arch/arm/boot/dts/at91-natte.dtsi
3041 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3042 F:      arch/arm/boot/dts/at91-tse850-3.dts
3043
3044 AXENTIA ASOC DRIVERS
3045 M:      Peter Rosin <peda@axentia.se>
3046 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3047 S:      Maintained
3048 F:      Documentation/devicetree/bindings/sound/axentia,*
3049 F:      sound/soc/atmel/tse850-pcm5142.c
3050
3051 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3052 M:      Nuno Sá <nuno.sa@analog.com>
3053 L:      linux-hwmon@vger.kernel.org
3054 S:      Supported
3055 W:      http://ez.analog.com/community/linux-device-drivers
3056 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3057 F:      drivers/hwmon/axi-fan-control.c
3058
3059 AXXIA I2C CONTROLLER
3060 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3061 L:      linux-i2c@vger.kernel.org
3062 S:      Maintained
3063 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3064 F:      drivers/i2c/busses/i2c-axxia.c
3065
3066 AZ6007 DVB DRIVER
3067 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3068 L:      linux-media@vger.kernel.org
3069 S:      Maintained
3070 W:      https://linuxtv.org
3071 T:      git git://linuxtv.org/media_tree.git
3072 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3073
3074 AZTECH FM RADIO RECEIVER DRIVER
3075 M:      Hans Verkuil <hverkuil@xs4all.nl>
3076 L:      linux-media@vger.kernel.org
3077 S:      Maintained
3078 W:      https://linuxtv.org
3079 T:      git git://linuxtv.org/media_tree.git
3080 F:      drivers/media/radio/radio-aztech*
3081
3082 B43 WIRELESS DRIVER
3083 L:      linux-wireless@vger.kernel.org
3084 L:      b43-dev@lists.infradead.org
3085 S:      Odd Fixes
3086 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3087 F:      drivers/net/wireless/broadcom/b43/
3088
3089 B43LEGACY WIRELESS DRIVER
3090 M:      Larry Finger <Larry.Finger@lwfinger.net>
3091 L:      linux-wireless@vger.kernel.org
3092 L:      b43-dev@lists.infradead.org
3093 S:      Maintained
3094 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3095 F:      drivers/net/wireless/broadcom/b43legacy/
3096
3097 BACKLIGHT CLASS/SUBSYSTEM
3098 M:      Lee Jones <lee.jones@linaro.org>
3099 M:      Daniel Thompson <daniel.thompson@linaro.org>
3100 M:      Jingoo Han <jingoohan1@gmail.com>
3101 L:      dri-devel@lists.freedesktop.org
3102 S:      Maintained
3103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3104 F:      Documentation/ABI/stable/sysfs-class-backlight
3105 F:      Documentation/ABI/testing/sysfs-class-backlight
3106 F:      Documentation/devicetree/bindings/leds/backlight
3107 F:      drivers/video/backlight/
3108 F:      include/linux/backlight.h
3109 F:      include/linux/pwm_backlight.h
3110
3111 BATMAN ADVANCED
3112 M:      Marek Lindner <mareklindner@neomailbox.ch>
3113 M:      Simon Wunderlich <sw@simonwunderlich.de>
3114 M:      Antonio Quartulli <a@unstable.cc>
3115 M:      Sven Eckelmann <sven@narfation.org>
3116 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3117 S:      Maintained
3118 W:      https://www.open-mesh.org/
3119 Q:      https://patchwork.open-mesh.org/project/batman/list/
3120 B:      https://www.open-mesh.org/projects/batman-adv/issues
3121 C:      irc://chat.freenode.net/batman
3122 T:      git https://git.open-mesh.org/linux-merge.git
3123 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3124 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3125 F:      Documentation/networking/batman-adv.rst
3126 F:      include/uapi/linux/batadv_packet.h
3127 F:      include/uapi/linux/batman_adv.h
3128 F:      net/batman-adv/
3129
3130 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3131 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3132 L:      linux-hams@vger.kernel.org
3133 S:      Maintained
3134 W:      http://www.baycom.org/~tom/ham/ham.html
3135 F:      drivers/net/hamradio/baycom*
3136
3137 BCACHE (BLOCK LAYER CACHE)
3138 M:      Coly Li <colyli@suse.de>
3139 M:      Kent Overstreet <kent.overstreet@gmail.com>
3140 L:      linux-bcache@vger.kernel.org
3141 S:      Maintained
3142 W:      http://bcache.evilpiepirate.org
3143 C:      irc://irc.oftc.net/bcache
3144 F:      drivers/md/bcache/
3145
3146 BDISP ST MEDIA DRIVER
3147 M:      Fabien Dessenne <fabien.dessenne@st.com>
3148 L:      linux-media@vger.kernel.org
3149 S:      Supported
3150 W:      https://linuxtv.org
3151 T:      git git://linuxtv.org/media_tree.git
3152 F:      drivers/media/platform/sti/bdisp
3153
3154 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3155 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3156 L:      netdev@vger.kernel.org
3157 S:      Maintained
3158 F:      drivers/net/ethernet/ec_bhf.c
3159
3160 BEFS FILE SYSTEM
3161 M:      Luis de Bethencourt <luisbg@kernel.org>
3162 M:      Salah Triki <salah.triki@gmail.com>
3163 S:      Maintained
3164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3165 F:      Documentation/filesystems/befs.rst
3166 F:      fs/befs/
3167
3168 BFQ I/O SCHEDULER
3169 M:      Paolo Valente <paolo.valente@linaro.org>
3170 M:      Jens Axboe <axboe@kernel.dk>
3171 L:      linux-block@vger.kernel.org
3172 S:      Maintained
3173 F:      Documentation/block/bfq-iosched.rst
3174 F:      block/bfq-*
3175
3176 BFS FILE SYSTEM
3177 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3178 S:      Maintained
3179 F:      Documentation/filesystems/bfs.rst
3180 F:      fs/bfs/
3181 F:      include/uapi/linux/bfs_fs.h
3182
3183 BLINKM RGB LED DRIVER
3184 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3185 S:      Maintained
3186 F:      drivers/leds/leds-blinkm.c
3187
3188 BLOCK LAYER
3189 M:      Jens Axboe <axboe@kernel.dk>
3190 L:      linux-block@vger.kernel.org
3191 S:      Maintained
3192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3193 F:      block/
3194 F:      drivers/block/
3195 F:      include/linux/blk*
3196 F:      kernel/trace/blktrace.c
3197 F:      lib/sbitmap.c
3198
3199 BLOCK2MTD DRIVER
3200 M:      Joern Engel <joern@lazybastard.org>
3201 L:      linux-mtd@lists.infradead.org
3202 S:      Maintained
3203 F:      drivers/mtd/devices/block2mtd.c
3204
3205 BLUETOOTH DRIVERS
3206 M:      Marcel Holtmann <marcel@holtmann.org>
3207 M:      Johan Hedberg <johan.hedberg@gmail.com>
3208 L:      linux-bluetooth@vger.kernel.org
3209 S:      Maintained
3210 W:      http://www.bluez.org/
3211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3213 F:      drivers/bluetooth/
3214
3215 BLUETOOTH SUBSYSTEM
3216 M:      Marcel Holtmann <marcel@holtmann.org>
3217 M:      Johan Hedberg <johan.hedberg@gmail.com>
3218 L:      linux-bluetooth@vger.kernel.org
3219 S:      Maintained
3220 W:      http://www.bluez.org/
3221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3223 F:      include/net/bluetooth/
3224 F:      net/bluetooth/
3225
3226 BONDING DRIVER
3227 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3228 M:      Veaceslav Falico <vfalico@gmail.com>
3229 M:      Andy Gospodarek <andy@greyhouse.net>
3230 L:      netdev@vger.kernel.org
3231 S:      Supported
3232 W:      http://sourceforge.net/projects/bonding/
3233 F:      drivers/net/bonding/
3234 F:      include/uapi/linux/if_bonding.h
3235
3236 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3237 M:      Dan Robertson <dan@dlrobertson.com>
3238 L:      linux-iio@vger.kernel.org
3239 S:      Maintained
3240 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3241 F:      drivers/iio/accel/bma400*
3242
3243 BPF (Safe dynamic programs and tools)
3244 M:      Alexei Starovoitov <ast@kernel.org>
3245 M:      Daniel Borkmann <daniel@iogearbox.net>
3246 M:      Andrii Nakryiko <andrii@kernel.org>
3247 R:      Martin KaFai Lau <kafai@fb.com>
3248 R:      Song Liu <songliubraving@fb.com>
3249 R:      Yonghong Song <yhs@fb.com>
3250 R:      John Fastabend <john.fastabend@gmail.com>
3251 R:      KP Singh <kpsingh@kernel.org>
3252 L:      netdev@vger.kernel.org
3253 L:      bpf@vger.kernel.org
3254 S:      Supported
3255 W:      https://bpf.io/
3256 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3259 F:      Documentation/bpf/
3260 F:      Documentation/networking/filter.rst
3261 F:      arch/*/net/*
3262 F:      include/linux/bpf*
3263 F:      include/linux/filter.h
3264 F:      include/trace/events/xdp.h
3265 F:      include/uapi/linux/bpf*
3266 F:      include/uapi/linux/filter.h
3267 F:      kernel/bpf/
3268 F:      kernel/trace/bpf_trace.c
3269 F:      lib/test_bpf.c
3270 F:      net/bpf/
3271 F:      net/core/filter.c
3272 F:      net/sched/act_bpf.c
3273 F:      net/sched/cls_bpf.c
3274 F:      samples/bpf/
3275 F:      tools/bpf/
3276 F:      tools/lib/bpf/
3277 F:      tools/testing/selftests/bpf/
3278 N:      bpf
3279 K:      bpf
3280
3281 BPF JIT for ARM
3282 M:      Shubham Bansal <illusionist.neo@gmail.com>
3283 L:      netdev@vger.kernel.org
3284 L:      bpf@vger.kernel.org
3285 S:      Maintained
3286 F:      arch/arm/net/
3287
3288 BPF JIT for ARM64
3289 M:      Daniel Borkmann <daniel@iogearbox.net>
3290 M:      Alexei Starovoitov <ast@kernel.org>
3291 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3292 L:      netdev@vger.kernel.org
3293 L:      bpf@vger.kernel.org
3294 S:      Supported
3295 F:      arch/arm64/net/
3296
3297 BPF JIT for MIPS (32-BIT AND 64-BIT)
3298 M:      Paul Burton <paulburton@kernel.org>
3299 L:      netdev@vger.kernel.org
3300 L:      bpf@vger.kernel.org
3301 S:      Maintained
3302 F:      arch/mips/net/
3303
3304 BPF JIT for NFP NICs
3305 M:      Jakub Kicinski <kuba@kernel.org>
3306 L:      netdev@vger.kernel.org
3307 L:      bpf@vger.kernel.org
3308 S:      Supported
3309 F:      drivers/net/ethernet/netronome/nfp/bpf/
3310
3311 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3312 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3313 M:      Sandipan Das <sandipan@linux.ibm.com>
3314 L:      netdev@vger.kernel.org
3315 L:      bpf@vger.kernel.org
3316 S:      Maintained
3317 F:      arch/powerpc/net/
3318
3319 BPF JIT for RISC-V (32-bit)
3320 M:      Luke Nelson <luke.r.nels@gmail.com>
3321 M:      Xi Wang <xi.wang@gmail.com>
3322 L:      netdev@vger.kernel.org
3323 L:      bpf@vger.kernel.org
3324 S:      Maintained
3325 F:      arch/riscv/net/
3326 X:      arch/riscv/net/bpf_jit_comp64.c
3327
3328 BPF JIT for RISC-V (64-bit)
3329 M:      Björn Töpel <bjorn.topel@gmail.com>
3330 L:      netdev@vger.kernel.org
3331 L:      bpf@vger.kernel.org
3332 S:      Maintained
3333 F:      arch/riscv/net/
3334 X:      arch/riscv/net/bpf_jit_comp32.c
3335
3336 BPF JIT for S390
3337 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3338 M:      Heiko Carstens <hca@linux.ibm.com>
3339 M:      Vasily Gorbik <gor@linux.ibm.com>
3340 L:      netdev@vger.kernel.org
3341 L:      bpf@vger.kernel.org
3342 S:      Maintained
3343 F:      arch/s390/net/
3344 X:      arch/s390/net/pnet.c
3345
3346 BPF JIT for SPARC (32-BIT AND 64-BIT)
3347 M:      David S. Miller <davem@davemloft.net>
3348 L:      netdev@vger.kernel.org
3349 L:      bpf@vger.kernel.org
3350 S:      Maintained
3351 F:      arch/sparc/net/
3352
3353 BPF JIT for X86 32-BIT
3354 M:      Wang YanQing <udknight@gmail.com>
3355 L:      netdev@vger.kernel.org
3356 L:      bpf@vger.kernel.org
3357 S:      Maintained
3358 F:      arch/x86/net/bpf_jit_comp32.c
3359
3360 BPF JIT for X86 64-BIT
3361 M:      Alexei Starovoitov <ast@kernel.org>
3362 M:      Daniel Borkmann <daniel@iogearbox.net>
3363 L:      netdev@vger.kernel.org
3364 L:      bpf@vger.kernel.org
3365 S:      Supported
3366 F:      arch/x86/net/
3367 X:      arch/x86/net/bpf_jit_comp32.c
3368
3369 BPF LSM (Security Audit and Enforcement using BPF)
3370 M:      KP Singh <kpsingh@kernel.org>
3371 R:      Florent Revest <revest@chromium.org>
3372 R:      Brendan Jackman <jackmanb@chromium.org>
3373 L:      bpf@vger.kernel.org
3374 S:      Maintained
3375 F:      Documentation/bpf/bpf_lsm.rst
3376 F:      include/linux/bpf_lsm.h
3377 F:      kernel/bpf/bpf_lsm.c
3378 F:      security/bpf/
3379
3380 BROADCOM B44 10/100 ETHERNET DRIVER
3381 M:      Michael Chan <michael.chan@broadcom.com>
3382 L:      netdev@vger.kernel.org
3383 S:      Supported
3384 F:      drivers/net/ethernet/broadcom/b44.*
3385
3386 BROADCOM B53 ETHERNET SWITCH DRIVER
3387 M:      Florian Fainelli <f.fainelli@gmail.com>
3388 L:      netdev@vger.kernel.org
3389 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3390 S:      Supported
3391 F:      Documentation/devicetree/bindings/net/dsa/b53.txt
3392 F:      drivers/net/dsa/b53/*
3393 F:      include/linux/platform_data/b53.h
3394
3395 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3396 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3397 L:      bcm-kernel-feedback-list@broadcom.com
3398 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3399 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3400 S:      Maintained
3401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3402 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3403 F:      drivers/pci/controller/pcie-brcmstb.c
3404 F:      drivers/staging/vc04_services
3405 N:      bcm2711
3406 N:      bcm2835
3407
3408 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3409 M:      Florian Fainelli <f.fainelli@gmail.com>
3410 M:      Ray Jui <rjui@broadcom.com>
3411 M:      Scott Branden <sbranden@broadcom.com>
3412 M:      bcm-kernel-feedback-list@broadcom.com
3413 S:      Maintained
3414 T:      git git://github.com/broadcom/mach-bcm
3415 F:      arch/arm/mach-bcm/
3416 N:      bcm281*
3417 N:      bcm113*
3418 N:      bcm216*
3419 N:      kona
3420
3421 BROADCOM BCM47XX MIPS ARCHITECTURE
3422 M:      Hauke Mehrtens <hauke@hauke-m.de>
3423 M:      Rafał Miłecki <zajec5@gmail.com>
3424 L:      linux-mips@vger.kernel.org
3425 S:      Maintained
3426 F:      Documentation/devicetree/bindings/mips/brcm/
3427 F:      arch/mips/bcm47xx/*
3428 F:      arch/mips/include/asm/mach-bcm47xx/*
3429
3430 BROADCOM BCM5301X ARM ARCHITECTURE
3431 M:      Hauke Mehrtens <hauke@hauke-m.de>
3432 M:      Rafał Miłecki <zajec5@gmail.com>
3433 M:      bcm-kernel-feedback-list@broadcom.com
3434 L:      linux-arm-kernel@lists.infradead.org
3435 S:      Maintained
3436 F:      arch/arm/boot/dts/bcm470*
3437 F:      arch/arm/boot/dts/bcm5301*
3438 F:      arch/arm/boot/dts/bcm953012*
3439 F:      arch/arm/mach-bcm/bcm_5301x.c
3440
3441 BROADCOM BCM53573 ARM ARCHITECTURE
3442 M:      Rafał Miłecki <rafal@milecki.pl>
3443 L:      bcm-kernel-feedback-list@broadcom.com
3444 L:      linux-arm-kernel@lists.infradead.org
3445 S:      Maintained
3446 F:      arch/arm/boot/dts/bcm47189*
3447 F:      arch/arm/boot/dts/bcm53573*
3448
3449 BROADCOM BCM63XX ARM ARCHITECTURE
3450 M:      Florian Fainelli <f.fainelli@gmail.com>
3451 M:      bcm-kernel-feedback-list@broadcom.com
3452 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3453 S:      Maintained
3454 T:      git git://github.com/broadcom/stblinux.git
3455 N:      bcm63xx
3456
3457 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3458 M:      Kevin Cernekee <cernekee@gmail.com>
3459 L:      linux-usb@vger.kernel.org
3460 S:      Maintained
3461 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3462
3463 BROADCOM BCM7XXX ARM ARCHITECTURE
3464 M:      Florian Fainelli <f.fainelli@gmail.com>
3465 M:      bcm-kernel-feedback-list@broadcom.com
3466 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3467 S:      Maintained
3468 T:      git git://github.com/broadcom/stblinux.git
3469 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3470 F:      arch/arm/boot/dts/bcm7*.dts*
3471 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3472 F:      arch/arm/mach-bcm/*brcmstb*
3473 F:      arch/arm/mm/cache-b15-rac.c
3474 F:      drivers/bus/brcmstb_gisb.c
3475 F:      drivers/pci/controller/pcie-brcmstb.c
3476 N:      brcmstb
3477
3478 BROADCOM BDC DRIVER
3479 M:      Al Cooper <alcooperx@gmail.com>
3480 L:      linux-usb@vger.kernel.org
3481 L:      bcm-kernel-feedback-list@broadcom.com
3482 S:      Maintained
3483 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3484 F:      drivers/usb/gadget/udc/bdc/
3485
3486 BROADCOM BMIPS CPUFREQ DRIVER
3487 M:      Markus Mayer <mmayer@broadcom.com>
3488 M:      bcm-kernel-feedback-list@broadcom.com
3489 L:      linux-pm@vger.kernel.org
3490 S:      Maintained
3491 F:      drivers/cpufreq/bmips-cpufreq.c
3492
3493 BROADCOM BMIPS MIPS ARCHITECTURE
3494 M:      Florian Fainelli <f.fainelli@gmail.com>
3495 L:      bcm-kernel-feedback-list@broadcom.com
3496 L:      linux-mips@vger.kernel.org
3497 S:      Maintained
3498 T:      git git://github.com/broadcom/stblinux.git
3499 F:      arch/mips/bmips/*
3500 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3501 F:      arch/mips/include/asm/mach-bmips/*
3502 F:      arch/mips/kernel/*bmips*
3503 F:      drivers/soc/bcm/bcm63xx
3504 F:      drivers/irqchip/irq-bcm63*
3505 F:      drivers/irqchip/irq-bcm7*
3506 F:      drivers/irqchip/irq-brcmstb*
3507 F:      include/linux/bcm963xx_nvram.h
3508 F:      include/linux/bcm963xx_tag.h
3509
3510 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3511 M:      Rasesh Mody <rmody@marvell.com>
3512 M:      GR-Linux-NIC-Dev@marvell.com
3513 L:      netdev@vger.kernel.org
3514 S:      Supported
3515 F:      drivers/net/ethernet/broadcom/bnx2.*
3516 F:      drivers/net/ethernet/broadcom/bnx2_*
3517
3518 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3519 M:      Saurav Kashyap <skashyap@marvell.com>
3520 M:      Javed Hasan <jhasan@marvell.com>
3521 M:      GR-QLogic-Storage-Upstream@marvell.com
3522 L:      linux-scsi@vger.kernel.org
3523 S:      Supported
3524 F:      drivers/scsi/bnx2fc/
3525
3526 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3527 M:      Nilesh Javali <njavali@marvell.com>
3528 M:      Manish Rangankar <mrangankar@marvell.com>
3529 M:      GR-QLogic-Storage-Upstream@marvell.com
3530 L:      linux-scsi@vger.kernel.org
3531 S:      Supported
3532 F:      drivers/scsi/bnx2i/
3533
3534 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3535 M:      Ariel Elior <aelior@marvell.com>
3536 M:      Sudarsana Kalluru <skalluru@marvell.com>
3537 M:      GR-everest-linux-l2@marvell.com
3538 L:      netdev@vger.kernel.org
3539 S:      Supported
3540 F:      drivers/net/ethernet/broadcom/bnx2x/
3541
3542 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3543 M:      Michael Chan <michael.chan@broadcom.com>
3544 L:      netdev@vger.kernel.org
3545 S:      Supported
3546 F:      drivers/net/ethernet/broadcom/bnxt/
3547
3548 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3549 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3550 M:      Franky Lin <franky.lin@broadcom.com>
3551 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3552 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3553 M:      Wright Feng <wright.feng@infineon.com>
3554 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3555 L:      linux-wireless@vger.kernel.org
3556 L:      brcm80211-dev-list.pdl@broadcom.com
3557 L:      SHA-cyfmac-dev-list@infineon.com
3558 S:      Supported
3559 F:      drivers/net/wireless/broadcom/brcm80211/
3560
3561 BROADCOM BRCMSTB GPIO DRIVER
3562 M:      Gregory Fong <gregory.0xf0@gmail.com>
3563 L:      bcm-kernel-feedback-list@broadcom.com
3564 S:      Supported
3565 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3566 F:      drivers/gpio/gpio-brcmstb.c
3567
3568 BROADCOM BRCMSTB I2C DRIVER
3569 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3570 L:      linux-i2c@vger.kernel.org
3571 L:      bcm-kernel-feedback-list@broadcom.com
3572 S:      Supported
3573 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3574 F:      drivers/i2c/busses/i2c-brcmstb.c
3575
3576 BROADCOM BRCMSTB USB EHCI DRIVER
3577 M:      Al Cooper <alcooperx@gmail.com>
3578 L:      linux-usb@vger.kernel.org
3579 L:      bcm-kernel-feedback-list@broadcom.com
3580 S:      Maintained
3581 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3582 F:      drivers/usb/host/ehci-brcm.*
3583
3584 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3585 M:      Al Cooper <alcooperx@gmail.com>
3586 L:      linux-kernel@vger.kernel.org
3587 L:      bcm-kernel-feedback-list@broadcom.com
3588 S:      Maintained
3589 F:      drivers/phy/broadcom/phy-brcm-usb*
3590
3591 BROADCOM ETHERNET PHY DRIVERS
3592 M:      Florian Fainelli <f.fainelli@gmail.com>
3593 L:      bcm-kernel-feedback-list@broadcom.com
3594 L:      netdev@vger.kernel.org
3595 S:      Supported
3596 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3597 F:      drivers/net/phy/bcm*.[ch]
3598 F:      drivers/net/phy/broadcom.c
3599 F:      include/linux/brcmphy.h
3600
3601 BROADCOM GENET ETHERNET DRIVER
3602 M:      Doug Berger <opendmb@gmail.com>
3603 M:      Florian Fainelli <f.fainelli@gmail.com>
3604 L:      bcm-kernel-feedback-list@broadcom.com
3605 L:      netdev@vger.kernel.org
3606 S:      Supported
3607 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3608 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3609 F:      drivers/net/ethernet/broadcom/genet/
3610 F:      drivers/net/mdio/mdio-bcm-unimac.c
3611 F:      include/linux/platform_data/bcmgenet.h
3612 F:      include/linux/platform_data/mdio-bcm-unimac.h
3613
3614 BROADCOM IPROC ARM ARCHITECTURE
3615 M:      Ray Jui <rjui@broadcom.com>
3616 M:      Scott Branden <sbranden@broadcom.com>
3617 M:      bcm-kernel-feedback-list@broadcom.com
3618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3619 S:      Maintained
3620 T:      git git://github.com/broadcom/cygnus-linux.git
3621 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3622 F:      arch/arm64/boot/dts/broadcom/stingray/*
3623 F:      drivers/clk/bcm/clk-ns*
3624 F:      drivers/clk/bcm/clk-sr*
3625 F:      drivers/pinctrl/bcm/pinctrl-ns*
3626 F:      include/dt-bindings/clock/bcm-sr*
3627 N:      iproc
3628 N:      cygnus
3629 N:      bcm[-_]nsp
3630 N:      bcm9113*
3631 N:      bcm9583*
3632 N:      bcm9585*
3633 N:      bcm9586*
3634 N:      bcm988312
3635 N:      bcm113*
3636 N:      bcm583*
3637 N:      bcm585*
3638 N:      bcm586*
3639 N:      bcm88312
3640 N:      hr2
3641 N:      stingray
3642
3643 BROADCOM KONA GPIO DRIVER
3644 M:      Ray Jui <rjui@broadcom.com>
3645 L:      bcm-kernel-feedback-list@broadcom.com
3646 S:      Supported
3647 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3648 F:      drivers/gpio/gpio-bcm-kona.c
3649
3650 BROADCOM NETXTREME-E ROCE DRIVER
3651 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3652 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3653 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3654 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3655 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3656 L:      linux-rdma@vger.kernel.org
3657 S:      Supported
3658 W:      http://www.broadcom.com
3659 F:      drivers/infiniband/hw/bnxt_re/
3660 F:      include/uapi/rdma/bnxt_re-abi.h
3661
3662 BROADCOM NVRAM DRIVER
3663 M:      Rafał Miłecki <zajec5@gmail.com>
3664 L:      linux-mips@vger.kernel.org
3665 S:      Maintained
3666 F:      drivers/firmware/broadcom/*
3667
3668 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3669 M:      Rafał Miłecki <zajec5@gmail.com>
3670 L:      linux-wireless@vger.kernel.org
3671 S:      Maintained
3672 F:      drivers/bcma/
3673 F:      include/linux/bcma/
3674
3675 BROADCOM SPI DRIVER
3676 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3677 M:      bcm-kernel-feedback-list@broadcom.com
3678 S:      Maintained
3679 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3680 F:      drivers/spi/spi-bcm-qspi.*
3681 F:      drivers/spi/spi-brcmstb-qspi.c
3682 F:      drivers/spi/spi-iproc-qspi.c
3683
3684 BROADCOM STB AVS CPUFREQ DRIVER
3685 M:      Markus Mayer <mmayer@broadcom.com>
3686 M:      bcm-kernel-feedback-list@broadcom.com
3687 L:      linux-pm@vger.kernel.org
3688 S:      Maintained
3689 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3690 F:      drivers/cpufreq/brcmstb*
3691
3692 BROADCOM STB AVS TMON DRIVER
3693 M:      Markus Mayer <mmayer@broadcom.com>
3694 M:      bcm-kernel-feedback-list@broadcom.com
3695 L:      linux-pm@vger.kernel.org
3696 S:      Maintained
3697 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3698 F:      drivers/thermal/broadcom/brcmstb*
3699
3700 BROADCOM STB DPFE DRIVER
3701 M:      Markus Mayer <mmayer@broadcom.com>
3702 M:      bcm-kernel-feedback-list@broadcom.com
3703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3704 S:      Maintained
3705 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3706 F:      drivers/memory/brcmstb_dpfe.c
3707
3708 BROADCOM STB NAND FLASH DRIVER
3709 M:      Brian Norris <computersforpeace@gmail.com>
3710 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3711 L:      linux-mtd@lists.infradead.org
3712 L:      bcm-kernel-feedback-list@broadcom.com
3713 S:      Maintained
3714 F:      drivers/mtd/nand/raw/brcmnand/
3715
3716 BROADCOM SYSTEMPORT ETHERNET DRIVER
3717 M:      Florian Fainelli <f.fainelli@gmail.com>
3718 L:      bcm-kernel-feedback-list@broadcom.com
3719 L:      netdev@vger.kernel.org
3720 S:      Supported
3721 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3722
3723 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3724 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3725 M:      Prashant Sreedharan <prashant@broadcom.com>
3726 M:      Michael Chan <mchan@broadcom.com>
3727 L:      netdev@vger.kernel.org
3728 S:      Supported
3729 F:      drivers/net/ethernet/broadcom/tg3.*
3730
3731 BROCADE BFA FC SCSI DRIVER
3732 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3733 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3734 L:      linux-scsi@vger.kernel.org
3735 S:      Supported
3736 F:      drivers/scsi/bfa/
3737
3738 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3739 M:      Rasesh Mody <rmody@marvell.com>
3740 M:      Sudarsana Kalluru <skalluru@marvell.com>
3741 M:      GR-Linux-NIC-Dev@marvell.com
3742 L:      netdev@vger.kernel.org
3743 S:      Supported
3744 F:      drivers/net/ethernet/brocade/bna/
3745
3746 BSG (block layer generic sg v4 driver)
3747 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3748 L:      linux-scsi@vger.kernel.org
3749 S:      Supported
3750 F:      block/bsg.c
3751 F:      include/linux/bsg.h
3752 F:      include/uapi/linux/bsg.h
3753
3754 BT87X AUDIO DRIVER
3755 M:      Clemens Ladisch <clemens@ladisch.de>
3756 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3757 S:      Maintained
3758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3759 F:      Documentation/sound/cards/bt87x.rst
3760 F:      sound/pci/bt87x.c
3761
3762 BT8XXGPIO DRIVER
3763 M:      Michael Buesch <m@bues.ch>
3764 S:      Maintained
3765 W:      http://bu3sch.de/btgpio.php
3766 F:      drivers/gpio/gpio-bt8xx.c
3767
3768 BTRFS FILE SYSTEM
3769 M:      Chris Mason <clm@fb.com>
3770 M:      Josef Bacik <josef@toxicpanda.com>
3771 M:      David Sterba <dsterba@suse.com>
3772 L:      linux-btrfs@vger.kernel.org
3773 S:      Maintained
3774 W:      http://btrfs.wiki.kernel.org/
3775 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3777 F:      Documentation/filesystems/btrfs.rst
3778 F:      fs/btrfs/
3779 F:      include/linux/btrfs*
3780 F:      include/uapi/linux/btrfs*
3781
3782 BTTV VIDEO4LINUX DRIVER
3783 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3784 L:      linux-media@vger.kernel.org
3785 S:      Odd fixes
3786 W:      https://linuxtv.org
3787 T:      git git://linuxtv.org/media_tree.git
3788 F:      Documentation/driver-api/media/drivers/bttv*
3789 F:      drivers/media/pci/bt8xx/bttv*
3790
3791 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3792 M:      Chanwoo Choi <cw00.choi@samsung.com>
3793 L:      linux-pm@vger.kernel.org
3794 L:      linux-samsung-soc@vger.kernel.org
3795 S:      Maintained
3796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3797 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3798 F:      drivers/devfreq/exynos-bus.c
3799
3800 BUSLOGIC SCSI DRIVER
3801 M:      Khalid Aziz <khalid@gonehiking.org>
3802 L:      linux-scsi@vger.kernel.org
3803 S:      Maintained
3804 F:      drivers/scsi/BusLogic.*
3805 F:      drivers/scsi/FlashPoint.*
3806
3807 C-MEDIA CMI8788 DRIVER
3808 M:      Clemens Ladisch <clemens@ladisch.de>
3809 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3810 S:      Maintained
3811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3812 F:      sound/pci/oxygen/
3813
3814 C-SKY ARCHITECTURE
3815 M:      Guo Ren <guoren@kernel.org>
3816 L:      linux-csky@vger.kernel.org
3817 S:      Supported
3818 T:      git https://github.com/c-sky/csky-linux.git
3819 F:      Documentation/devicetree/bindings/csky/
3820 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3821 F:      Documentation/devicetree/bindings/timer/csky,*
3822 F:      arch/csky/
3823 F:      drivers/clocksource/timer-gx6605s.c
3824 F:      drivers/clocksource/timer-mp-csky.c
3825 F:      drivers/irqchip/irq-csky-*
3826 N:      csky
3827 K:      csky
3828
3829 C6X ARCHITECTURE
3830 M:      Mark Salter <msalter@redhat.com>
3831 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3832 L:      linux-c6x-dev@linux-c6x.org
3833 S:      Maintained
3834 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3835 F:      arch/c6x/
3836
3837 CA8210 IEEE-802.15.4 RADIO DRIVER
3838 M:      Harry Morris <h.morris@cascoda.com>
3839 L:      linux-wpan@vger.kernel.org
3840 S:      Maintained
3841 W:      https://github.com/Cascoda/ca8210-linux.git
3842 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3843 F:      drivers/net/ieee802154/ca8210.c
3844
3845 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3846 M:      David Howells <dhowells@redhat.com>
3847 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3848 S:      Supported
3849 F:      Documentation/filesystems/caching/cachefiles.rst
3850 F:      fs/cachefiles/
3851
3852 CADENCE MIPI-CSI2 BRIDGES
3853 M:      Maxime Ripard <mripard@kernel.org>
3854 L:      linux-media@vger.kernel.org
3855 S:      Maintained
3856 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3857 F:      drivers/media/platform/cadence/cdns-csi2*
3858
3859 CADENCE NAND DRIVER
3860 L:      linux-mtd@lists.infradead.org
3861 S:      Orphan
3862 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3863 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3864
3865 CADENCE USB3 DRD IP DRIVER
3866 M:      Peter Chen <peter.chen@nxp.com>
3867 M:      Pawel Laszczak <pawell@cadence.com>
3868 M:      Roger Quadros <rogerq@ti.com>
3869 L:      linux-usb@vger.kernel.org
3870 S:      Maintained
3871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3872 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
3873 F:      drivers/usb/cdns3/
3874
3875 CADET FM/AM RADIO RECEIVER DRIVER
3876 M:      Hans Verkuil <hverkuil@xs4all.nl>
3877 L:      linux-media@vger.kernel.org
3878 S:      Maintained
3879 W:      https://linuxtv.org
3880 T:      git git://linuxtv.org/media_tree.git
3881 F:      drivers/media/radio/radio-cadet*
3882
3883 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3884 L:      linux-media@vger.kernel.org
3885 S:      Orphan
3886 T:      git git://linuxtv.org/media_tree.git
3887 F:      Documentation/admin-guide/media/cafe_ccic*
3888 F:      drivers/media/platform/marvell-ccic/
3889
3890 CAIF NETWORK LAYER
3891 L:      netdev@vger.kernel.org
3892 S:      Orphan
3893 F:      Documentation/networking/caif/
3894 F:      drivers/net/caif/
3895 F:      include/net/caif/
3896 F:      include/uapi/linux/caif/
3897 F:      net/caif/
3898
3899 CAKE QDISC
3900 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3901 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3902 S:      Maintained
3903 F:      net/sched/sch_cake.c
3904
3905 CAN NETWORK DRIVERS
3906 M:      Wolfgang Grandegger <wg@grandegger.com>
3907 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3908 L:      linux-can@vger.kernel.org
3909 S:      Maintained
3910 W:      https://github.com/linux-can
3911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3913 F:      Documentation/devicetree/bindings/net/can/
3914 F:      drivers/net/can/
3915 F:      include/linux/can/dev.h
3916 F:      include/linux/can/led.h
3917 F:      include/linux/can/platform/
3918 F:      include/linux/can/rx-offload.h
3919 F:      include/uapi/linux/can/error.h
3920 F:      include/uapi/linux/can/netlink.h
3921 F:      include/uapi/linux/can/vxcan.h
3922
3923 CAN NETWORK LAYER
3924 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3925 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3926 L:      linux-can@vger.kernel.org
3927 S:      Maintained
3928 W:      https://github.com/linux-can
3929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3931 F:      Documentation/networking/can.rst
3932 F:      include/linux/can/core.h
3933 F:      include/linux/can/skb.h
3934 F:      include/net/netns/can.h
3935 F:      include/uapi/linux/can.h
3936 F:      include/uapi/linux/can/bcm.h
3937 F:      include/uapi/linux/can/gw.h
3938 F:      include/uapi/linux/can/isotp.h
3939 F:      include/uapi/linux/can/raw.h
3940 F:      net/can/
3941
3942 CAN-J1939 NETWORK LAYER
3943 M:      Robin van der Gracht <robin@protonic.nl>
3944 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3945 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3946 L:      linux-can@vger.kernel.org
3947 S:      Maintained
3948 F:      Documentation/networking/j1939.rst
3949 F:      include/uapi/linux/can/j1939.h
3950 F:      net/can/j1939/
3951
3952 CAPABILITIES
3953 M:      Serge Hallyn <serge@hallyn.com>
3954 L:      linux-security-module@vger.kernel.org
3955 S:      Supported
3956 F:      include/linux/capability.h
3957 F:      include/uapi/linux/capability.h
3958 F:      kernel/capability.c
3959 F:      security/commoncap.c
3960
3961 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3962 M:      Kevin Tsai <ktsai@capellamicro.com>
3963 S:      Maintained
3964 F:      drivers/iio/light/cm*
3965
3966 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3967 M:      Christian Lamparter <chunkeey@googlemail.com>
3968 L:      linux-wireless@vger.kernel.org
3969 S:      Maintained
3970 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3971 F:      drivers/net/wireless/ath/carl9170/
3972
3973 CAVIUM I2C DRIVER
3974 M:      Robert Richter <rric@kernel.org>
3975 S:      Odd Fixes
3976 W:      http://www.marvell.com
3977 F:      drivers/i2c/busses/i2c-octeon*
3978 F:      drivers/i2c/busses/i2c-thunderx*
3979
3980 CAVIUM LIQUIDIO NETWORK DRIVER
3981 M:      Derek Chickles <dchickles@marvell.com>
3982 M:      Satanand Burla <sburla@marvell.com>
3983 M:      Felix Manlunas <fmanlunas@marvell.com>
3984 L:      netdev@vger.kernel.org
3985 S:      Supported
3986 W:      http://www.marvell.com
3987 F:      drivers/net/ethernet/cavium/liquidio/
3988
3989 CAVIUM MMC DRIVER
3990 M:      Robert Richter <rric@kernel.org>
3991 S:      Odd Fixes
3992 W:      http://www.marvell.com
3993 F:      drivers/mmc/host/cavium*
3994
3995 CAVIUM OCTEON-TX CRYPTO DRIVER
3996 M:      George Cherian <gcherian@marvell.com>
3997 L:      linux-crypto@vger.kernel.org
3998 S:      Supported
3999 W:      http://www.marvell.com
4000 F:      drivers/crypto/cavium/cpt/
4001
4002 CAVIUM THUNDERX2 ARM64 SOC
4003 M:      Robert Richter <rric@kernel.org>
4004 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4005 S:      Odd Fixes
4006 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4007 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4008
4009 CC2520 IEEE-802.15.4 RADIO DRIVER
4010 M:      Varka Bhadram <varkabhadram@gmail.com>
4011 L:      linux-wpan@vger.kernel.org
4012 S:      Maintained
4013 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4014 F:      drivers/net/ieee802154/cc2520.c
4015 F:      include/linux/spi/cc2520.h
4016
4017 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4018 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4019 L:      linux-crypto@vger.kernel.org
4020 S:      Supported
4021 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4022 F:      drivers/crypto/ccree/
4023
4024 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4025 M:      Hadar Gat <hadar.gat@arm.com>
4026 L:      linux-crypto@vger.kernel.org
4027 S:      Supported
4028 F:      drivers/char/hw_random/cctrng.c
4029 F:      drivers/char/hw_random/cctrng.h
4030 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4031 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4032
4033 CEC FRAMEWORK
4034 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4035 L:      linux-media@vger.kernel.org
4036 S:      Supported
4037 W:      http://linuxtv.org
4038 T:      git git://linuxtv.org/media_tree.git
4039 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4040 F:      Documentation/devicetree/bindings/media/cec.txt
4041 F:      Documentation/driver-api/media/cec-core.rst
4042 F:      Documentation/userspace-api/media/cec
4043 F:      drivers/media/cec/
4044 F:      drivers/media/rc/keymaps/rc-cec.c
4045 F:      include/media/cec-notifier.h
4046 F:      include/media/cec.h
4047 F:      include/uapi/linux/cec-funcs.h
4048 F:      include/uapi/linux/cec.h
4049
4050 CEC GPIO DRIVER
4051 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4052 L:      linux-media@vger.kernel.org
4053 S:      Supported
4054 W:      http://linuxtv.org
4055 T:      git git://linuxtv.org/media_tree.git
4056 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4057 F:      drivers/media/cec/platform/cec-gpio/
4058
4059 CELL BROADBAND ENGINE ARCHITECTURE
4060 M:      Arnd Bergmann <arnd@arndb.de>
4061 L:      linuxppc-dev@lists.ozlabs.org
4062 S:      Supported
4063 W:      http://www.ibm.com/developerworks/power/cell/
4064 F:      arch/powerpc/include/asm/cell*.h
4065 F:      arch/powerpc/include/asm/spu*.h
4066 F:      arch/powerpc/include/uapi/asm/spu*.h
4067 F:      arch/powerpc/oprofile/*cell*
4068 F:      arch/powerpc/platforms/cell/
4069
4070 CELLWISE CW2015 BATTERY DRIVER
4071 M:      Tobias Schrammm <t.schramm@manjaro.org>
4072 S:      Maintained
4073 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4074 F:      drivers/power/supply/cw2015_battery.c
4075
4076 CEPH COMMON CODE (LIBCEPH)
4077 M:      Ilya Dryomov <idryomov@gmail.com>
4078 M:      Jeff Layton <jlayton@kernel.org>
4079 L:      ceph-devel@vger.kernel.org
4080 S:      Supported
4081 W:      http://ceph.com/
4082 T:      git git://github.com/ceph/ceph-client.git
4083 F:      include/linux/ceph/
4084 F:      include/linux/crush/
4085 F:      net/ceph/
4086
4087 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4088 M:      Jeff Layton <jlayton@kernel.org>
4089 M:      Ilya Dryomov <idryomov@gmail.com>
4090 L:      ceph-devel@vger.kernel.org
4091 S:      Supported
4092 W:      http://ceph.com/
4093 T:      git git://github.com/ceph/ceph-client.git
4094 F:      Documentation/filesystems/ceph.rst
4095 F:      fs/ceph/
4096
4097 CERTIFICATE HANDLING
4098 M:      David Howells <dhowells@redhat.com>
4099 M:      David Woodhouse <dwmw2@infradead.org>
4100 L:      keyrings@vger.kernel.org
4101 S:      Maintained
4102 F:      Documentation/admin-guide/module-signing.rst
4103 F:      certs/
4104 F:      scripts/extract-cert.c
4105 F:      scripts/sign-file.c
4106
4107 CFAG12864B LCD DRIVER
4108 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4109 S:      Maintained
4110 F:      drivers/auxdisplay/cfag12864b.c
4111 F:      include/linux/cfag12864b.h
4112
4113 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4114 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4115 S:      Maintained
4116 F:      drivers/auxdisplay/cfag12864bfb.c
4117 F:      include/linux/cfag12864b.h
4118
4119 CHAR and MISC DRIVERS
4120 M:      Arnd Bergmann <arnd@arndb.de>
4121 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4122 S:      Supported
4123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4124 F:      drivers/char/
4125 F:      drivers/misc/
4126 F:      include/linux/miscdevice.h
4127 X:      drivers/char/agp/
4128 X:      drivers/char/hw_random/
4129 X:      drivers/char/ipmi/
4130 X:      drivers/char/random.c
4131 X:      drivers/char/tpm/
4132
4133 CHECKPATCH
4134 M:      Andy Whitcroft <apw@canonical.com>
4135 M:      Joe Perches <joe@perches.com>
4136 S:      Maintained
4137 F:      scripts/checkpatch.pl
4138
4139 CHINESE DOCUMENTATION
4140 M:      Harry Wei <harryxiyou@gmail.com>
4141 M:      Alex Shi <alex.shi@linux.alibaba.com>
4142 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4143 S:      Maintained
4144 F:      Documentation/translations/zh_CN/
4145
4146 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4147 M:      Peter Chen <Peter.Chen@nxp.com>
4148 L:      linux-usb@vger.kernel.org
4149 S:      Maintained
4150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4151 F:      drivers/usb/chipidea/
4152
4153 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4154 M:      Hans de Goede <hdegoede@redhat.com>
4155 L:      linux-input@vger.kernel.org
4156 S:      Maintained
4157 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4158 F:      drivers/input/touchscreen/chipone_icn8318.c
4159
4160 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4161 M:      Hans de Goede <hdegoede@redhat.com>
4162 L:      linux-input@vger.kernel.org
4163 S:      Maintained
4164 F:      drivers/input/touchscreen/chipone_icn8505.c
4165
4166 CHROME HARDWARE PLATFORM SUPPORT
4167 M:      Benson Leung <bleung@chromium.org>
4168 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4169 S:      Maintained
4170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4171 F:      drivers/platform/chrome/
4172
4173 CHROMEOS EC CODEC DRIVER
4174 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4175 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4176 R:      Guenter Roeck <groeck@chromium.org>
4177 S:      Maintained
4178 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4179 F:      sound/soc/codecs/cros_ec_codec.*
4180
4181 CHROMEOS EC SUBDRIVERS
4182 M:      Benson Leung <bleung@chromium.org>
4183 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4184 R:      Guenter Roeck <groeck@chromium.org>
4185 S:      Maintained
4186 F:      drivers/power/supply/cros_usbpd-charger.c
4187 N:      cros_ec
4188 N:      cros-ec
4189
4190 CHRONTEL CH7322 CEC DRIVER
4191 M:      Jeff Chase <jnchase@google.com>
4192 L:      linux-media@vger.kernel.org
4193 S:      Maintained
4194 T:      git git://linuxtv.org/media_tree.git
4195 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4196 F:      drivers/media/cec/i2c/ch7322.c
4197
4198 CIRRUS LOGIC AUDIO CODEC DRIVERS
4199 M:      James Schulman <james.schulman@cirrus.com>
4200 M:      David Rhodes <david.rhodes@cirrus.com>
4201 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4202 L:      patches@opensource.cirrus.com
4203 S:      Maintained
4204 F:      sound/soc/codecs/cs*
4205
4206 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4207 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4208 L:      netdev@vger.kernel.org
4209 S:      Maintained
4210 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4211
4212 CIRRUS LOGIC LOCHNAGAR DRIVER
4213 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4214 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4215 L:      patches@opensource.cirrus.com
4216 S:      Supported
4217 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4218 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4219 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4220 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4221 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4222 F:      Documentation/hwmon/lochnagar.rst
4223 F:      drivers/clk/clk-lochnagar.c
4224 F:      drivers/hwmon/lochnagar-hwmon.c
4225 F:      drivers/mfd/lochnagar-i2c.c
4226 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4227 F:      drivers/regulator/lochnagar-regulator.c
4228 F:      include/dt-bindings/clk/lochnagar.h
4229 F:      include/dt-bindings/pinctrl/lochnagar.h
4230 F:      include/linux/mfd/lochnagar*
4231 F:      sound/soc/codecs/lochnagar-sc.c
4232
4233 CIRRUS LOGIC MADERA CODEC DRIVERS
4234 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4235 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4236 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4237 L:      patches@opensource.cirrus.com
4238 S:      Supported
4239 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4240 T:      git https://github.com/CirrusLogic/linux-drivers.git
4241 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4242 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4243 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4244 F:      drivers/gpio/gpio-madera*
4245 F:      drivers/irqchip/irq-madera*
4246 F:      drivers/mfd/cs47l*
4247 F:      drivers/mfd/madera*
4248 F:      drivers/pinctrl/cirrus/*
4249 F:      include/dt-bindings/sound/madera*
4250 F:      include/linux/irqchip/irq-madera*
4251 F:      include/linux/mfd/madera/*
4252 F:      include/sound/madera*
4253 F:      sound/soc/codecs/cs47l*
4254 F:      sound/soc/codecs/madera*
4255
4256 CISCO FCOE HBA DRIVER
4257 M:      Satish Kharat <satishkh@cisco.com>
4258 M:      Sesidhar Baddela <sebaddel@cisco.com>
4259 M:      Karan Tilak Kumar <kartilak@cisco.com>
4260 L:      linux-scsi@vger.kernel.org
4261 S:      Supported
4262 F:      drivers/scsi/fnic/
4263
4264 CISCO SCSI HBA DRIVER
4265 M:      Karan Tilak Kumar <kartilak@cisco.com>
4266 M:      Sesidhar Baddela <sebaddel@cisco.com>
4267 L:      linux-scsi@vger.kernel.org
4268 S:      Supported
4269 F:      drivers/scsi/snic/
4270
4271 CISCO VIC ETHERNET NIC DRIVER
4272 M:      Christian Benvenuti <benve@cisco.com>
4273 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4274 S:      Supported
4275 F:      drivers/net/ethernet/cisco/enic/
4276
4277 CISCO VIC LOW LATENCY NIC DRIVER
4278 M:      Christian Benvenuti <benve@cisco.com>
4279 M:      Nelson Escobar <neescoba@cisco.com>
4280 S:      Supported
4281 F:      drivers/infiniband/hw/usnic/
4282
4283 CLANG-FORMAT FILE
4284 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4285 S:      Maintained
4286 F:      .clang-format
4287
4288 CLANG/LLVM BUILD SUPPORT
4289 M:      Nathan Chancellor <natechancellor@gmail.com>
4290 M:      Nick Desaulniers <ndesaulniers@google.com>
4291 L:      clang-built-linux@googlegroups.com
4292 S:      Supported
4293 W:      https://clangbuiltlinux.github.io/
4294 B:      https://github.com/ClangBuiltLinux/linux/issues
4295 C:      irc://chat.freenode.net/clangbuiltlinux
4296 F:      Documentation/kbuild/llvm.rst
4297 F:      scripts/clang-tools/
4298 F:      scripts/lld-version.sh
4299 K:      \b(?i:clang|llvm)\b
4300
4301 CLEANCACHE API
4302 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4303 L:      linux-kernel@vger.kernel.org
4304 S:      Maintained
4305 F:      include/linux/cleancache.h
4306 F:      mm/cleancache.c
4307
4308 CLK API
4309 M:      Russell King <linux@armlinux.org.uk>
4310 L:      linux-clk@vger.kernel.org
4311 S:      Maintained
4312 F:      include/linux/clk.h
4313
4314 CLOCKSOURCE, CLOCKEVENT DRIVERS
4315 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4316 M:      Thomas Gleixner <tglx@linutronix.de>
4317 L:      linux-kernel@vger.kernel.org
4318 S:      Supported
4319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4320 F:      Documentation/devicetree/bindings/timer/
4321 F:      drivers/clocksource/
4322
4323 CMPC ACPI DRIVER
4324 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4325 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4326 L:      platform-driver-x86@vger.kernel.org
4327 S:      Supported
4328 F:      drivers/platform/x86/classmate-laptop.c
4329
4330 COBALT MEDIA DRIVER
4331 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4332 L:      linux-media@vger.kernel.org
4333 S:      Supported
4334 W:      https://linuxtv.org
4335 T:      git git://linuxtv.org/media_tree.git
4336 F:      drivers/media/pci/cobalt/
4337
4338 COCCINELLE/Semantic Patches (SmPL)
4339 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4340 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4341 M:      Nicolas Palix <nicolas.palix@imag.fr>
4342 M:      Michal Marek <michal.lkml@markovi.net>
4343 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4344 S:      Supported
4345 W:      http://coccinelle.lip6.fr/
4346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4347 F:      Documentation/dev-tools/coccinelle.rst
4348 F:      scripts/coccicheck
4349 F:      scripts/coccinelle/
4350
4351 CODA FILE SYSTEM
4352 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4353 M:      coda@cs.cmu.edu
4354 L:      codalist@coda.cs.cmu.edu
4355 S:      Maintained
4356 W:      http://www.coda.cs.cmu.edu/
4357 F:      Documentation/filesystems/coda.rst
4358 F:      fs/coda/
4359 F:      include/linux/coda*.h
4360 F:      include/uapi/linux/coda*.h
4361
4362 CODA V4L2 MEM2MEM DRIVER
4363 M:      Philipp Zabel <p.zabel@pengutronix.de>
4364 L:      linux-media@vger.kernel.org
4365 S:      Maintained
4366 F:      Documentation/devicetree/bindings/media/coda.yaml
4367 F:      drivers/media/platform/coda/
4368
4369 CODE OF CONDUCT
4370 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4371 S:      Supported
4372 F:      Documentation/process/code-of-conduct-interpretation.rst
4373 F:      Documentation/process/code-of-conduct.rst
4374
4375 COMMON CLK FRAMEWORK
4376 M:      Michael Turquette <mturquette@baylibre.com>
4377 M:      Stephen Boyd <sboyd@kernel.org>
4378 L:      linux-clk@vger.kernel.org
4379 S:      Maintained
4380 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4382 F:      Documentation/devicetree/bindings/clock/
4383 F:      drivers/clk/
4384 F:      include/linux/clk-pr*
4385 F:      include/linux/clk/
4386 F:      include/linux/of_clk.h
4387 X:      drivers/clk/clkdev.c
4388
4389 COMMON INTERNET FILE SYSTEM (CIFS)
4390 M:      Steve French <sfrench@samba.org>
4391 L:      linux-cifs@vger.kernel.org
4392 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4393 S:      Supported
4394 W:      http://linux-cifs.samba.org/
4395 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4396 F:      Documentation/admin-guide/cifs/
4397 F:      fs/cifs/
4398
4399 COMPACTPCI HOTPLUG CORE
4400 M:      Scott Murray <scott@spiteful.org>
4401 L:      linux-pci@vger.kernel.org
4402 S:      Maintained
4403 F:      drivers/pci/hotplug/cpci_hotplug*
4404
4405 COMPACTPCI HOTPLUG GENERIC DRIVER
4406 M:      Scott Murray <scott@spiteful.org>
4407 L:      linux-pci@vger.kernel.org
4408 S:      Maintained
4409 F:      drivers/pci/hotplug/cpcihp_generic.c
4410
4411 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4412 M:      Scott Murray <scott@spiteful.org>
4413 L:      linux-pci@vger.kernel.org
4414 S:      Maintained
4415 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4416
4417 COMPAL LAPTOP SUPPORT
4418 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4419 L:      platform-driver-x86@vger.kernel.org
4420 S:      Maintained
4421 F:      drivers/platform/x86/compal-laptop.c
4422
4423 COMPILER ATTRIBUTES
4424 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4425 S:      Maintained
4426 F:      include/linux/compiler_attributes.h
4427
4428 CONEXANT ACCESSRUNNER USB DRIVER
4429 L:      accessrunner-general@lists.sourceforge.net
4430 S:      Orphan
4431 W:      http://accessrunner.sourceforge.net/
4432 F:      drivers/usb/atm/cxacru.c
4433
4434 CONFIGFS
4435 M:      Joel Becker <jlbec@evilplan.org>
4436 M:      Christoph Hellwig <hch@lst.de>
4437 S:      Supported
4438 T:      git git://git.infradead.org/users/hch/configfs.git
4439 F:      fs/configfs/
4440 F:      include/linux/configfs.h
4441 F:      samples/configfs/
4442
4443 CONSOLE SUBSYSTEM
4444 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4445 S:      Supported
4446 F:      drivers/video/console/
4447 F:      include/linux/console*
4448
4449 CONTROL GROUP (CGROUP)
4450 M:      Tejun Heo <tj@kernel.org>
4451 M:      Li Zefan <lizefan@huawei.com>
4452 M:      Johannes Weiner <hannes@cmpxchg.org>
4453 L:      cgroups@vger.kernel.org
4454 S:      Maintained
4455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4456 F:      Documentation/admin-guide/cgroup-v1/
4457 F:      Documentation/admin-guide/cgroup-v2.rst
4458 F:      include/linux/cgroup*
4459 F:      kernel/cgroup/
4460
4461 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4462 M:      Tejun Heo <tj@kernel.org>
4463 M:      Jens Axboe <axboe@kernel.dk>
4464 L:      cgroups@vger.kernel.org
4465 L:      linux-block@vger.kernel.org
4466 T:      git git://git.kernel.dk/linux-block
4467 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4468 F:      block/bfq-cgroup.c
4469 F:      block/blk-cgroup.c
4470 F:      block/blk-iolatency.c
4471 F:      block/blk-throttle.c
4472 F:      include/linux/blk-cgroup.h
4473
4474 CONTROL GROUP - CPUSET
4475 M:      Li Zefan <lizefan@huawei.com>
4476 L:      cgroups@vger.kernel.org
4477 S:      Maintained
4478 W:      http://www.bullopensource.org/cpuset/
4479 W:      http://oss.sgi.com/projects/cpusets/
4480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4481 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4482 F:      include/linux/cpuset.h
4483 F:      kernel/cgroup/cpuset.c
4484
4485 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4486 M:      Johannes Weiner <hannes@cmpxchg.org>
4487 M:      Michal Hocko <mhocko@kernel.org>
4488 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4489 L:      cgroups@vger.kernel.org
4490 L:      linux-mm@kvack.org
4491 S:      Maintained
4492 F:      mm/memcontrol.c
4493 F:      mm/swap_cgroup.c
4494
4495 CORETEMP HARDWARE MONITORING DRIVER
4496 M:      Fenghua Yu <fenghua.yu@intel.com>
4497 L:      linux-hwmon@vger.kernel.org
4498 S:      Maintained
4499 F:      Documentation/hwmon/coretemp.rst
4500 F:      drivers/hwmon/coretemp.c
4501
4502 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4503 M:      Marius Zachmann <mail@mariuszachmann.de>
4504 L:      linux-hwmon@vger.kernel.org
4505 S:      Maintained
4506 F:      drivers/hwmon/corsair-cpro.c
4507
4508 COSA/SRP SYNC SERIAL DRIVER
4509 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4510 S:      Maintained
4511 W:      http://www.fi.muni.cz/~kas/cosa/
4512 F:      drivers/net/wan/cosa*
4513
4514 COUNTER SUBSYSTEM
4515 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4516 L:      linux-iio@vger.kernel.org
4517 S:      Maintained
4518 F:      Documentation/ABI/testing/sysfs-bus-counter*
4519 F:      Documentation/driver-api/generic-counter.rst
4520 F:      drivers/counter/
4521 F:      include/linux/counter.h
4522 F:      include/linux/counter_enum.h
4523
4524 CPMAC ETHERNET DRIVER
4525 M:      Florian Fainelli <f.fainelli@gmail.com>
4526 L:      netdev@vger.kernel.org
4527 S:      Maintained
4528 F:      drivers/net/ethernet/ti/cpmac.c
4529
4530 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4531 M:      Viresh Kumar <viresh.kumar@linaro.org>
4532 M:      Sudeep Holla <sudeep.holla@arm.com>
4533 L:      linux-pm@vger.kernel.org
4534 S:      Maintained
4535 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4536 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4537
4538 CPU FREQUENCY SCALING FRAMEWORK
4539 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4540 M:      Viresh Kumar <viresh.kumar@linaro.org>
4541 L:      linux-pm@vger.kernel.org
4542 S:      Maintained
4543 B:      https://bugzilla.kernel.org
4544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4546 F:      Documentation/admin-guide/pm/cpufreq.rst
4547 F:      Documentation/admin-guide/pm/intel_pstate.rst
4548 F:      Documentation/cpu-freq/
4549 F:      Documentation/devicetree/bindings/cpufreq/
4550 F:      drivers/cpufreq/
4551 F:      include/linux/cpufreq.h
4552 F:      include/linux/sched/cpufreq.h
4553 F:      kernel/sched/cpufreq*.c
4554 F:      tools/testing/selftests/cpufreq/
4555
4556 CPU IDLE TIME MANAGEMENT FRAMEWORK
4557 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4558 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4559 L:      linux-pm@vger.kernel.org
4560 S:      Maintained
4561 B:      https://bugzilla.kernel.org
4562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4563 F:      Documentation/admin-guide/pm/cpuidle.rst
4564 F:      Documentation/driver-api/pm/cpuidle.rst
4565 F:      drivers/cpuidle/*
4566 F:      include/linux/cpuidle.h
4567
4568 CPU POWER MONITORING SUBSYSTEM
4569 M:      Thomas Renninger <trenn@suse.com>
4570 M:      Shuah Khan <shuah@kernel.org>
4571 M:      Shuah Khan <skhan@linuxfoundation.org>
4572 L:      linux-pm@vger.kernel.org
4573 S:      Maintained
4574 F:      tools/power/cpupower/
4575
4576 CPUID/MSR DRIVER
4577 M:      "H. Peter Anvin" <hpa@zytor.com>
4578 S:      Maintained
4579 F:      arch/x86/kernel/cpuid.c
4580 F:      arch/x86/kernel/msr.c
4581
4582 CPUIDLE DRIVER - ARM BIG LITTLE
4583 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4584 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4585 L:      linux-pm@vger.kernel.org
4586 L:      linux-arm-kernel@lists.infradead.org
4587 S:      Maintained
4588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4589 F:      drivers/cpuidle/cpuidle-big_little.c
4590
4591 CPUIDLE DRIVER - ARM EXYNOS
4592 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4593 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4594 M:      Kukjin Kim <kgene@kernel.org>
4595 L:      linux-pm@vger.kernel.org
4596 L:      linux-samsung-soc@vger.kernel.org
4597 S:      Supported
4598 F:      arch/arm/mach-exynos/pm.c
4599 F:      drivers/cpuidle/cpuidle-exynos.c
4600
4601 CPUIDLE DRIVER - ARM PSCI
4602 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4603 M:      Sudeep Holla <sudeep.holla@arm.com>
4604 L:      linux-pm@vger.kernel.org
4605 L:      linux-arm-kernel@lists.infradead.org
4606 S:      Supported
4607 F:      drivers/cpuidle/cpuidle-psci.c
4608
4609 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4610 M:      Ulf Hansson <ulf.hansson@linaro.org>
4611 L:      linux-pm@vger.kernel.org
4612 L:      linux-arm-kernel@lists.infradead.org
4613 S:      Supported
4614 F:      drivers/cpuidle/cpuidle-psci.h
4615 F:      drivers/cpuidle/cpuidle-psci-domain.c
4616
4617 CRAMFS FILESYSTEM
4618 M:      Nicolas Pitre <nico@fluxnic.net>
4619 S:      Maintained
4620 F:      Documentation/filesystems/cramfs.rst
4621 F:      fs/cramfs/
4622
4623 CREATIVE SB0540
4624 M:      Bastien Nocera <hadess@hadess.net>
4625 L:      linux-input@vger.kernel.org
4626 S:      Maintained
4627 F:      drivers/hid/hid-creative-sb0540.c
4628
4629 CRYPTO API
4630 M:      Herbert Xu <herbert@gondor.apana.org.au>
4631 M:      "David S. Miller" <davem@davemloft.net>
4632 L:      linux-crypto@vger.kernel.org
4633 S:      Maintained
4634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4636 F:      Documentation/crypto/
4637 F:      Documentation/devicetree/bindings/crypto/
4638 F:      arch/*/crypto/
4639 F:      crypto/
4640 F:      drivers/crypto/
4641 F:      include/crypto/
4642 F:      include/linux/crypto*
4643 F:      lib/crypto/
4644
4645 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4646 M:      Neil Horman <nhorman@tuxdriver.com>
4647 L:      linux-crypto@vger.kernel.org
4648 S:      Maintained
4649 F:      crypto/ansi_cprng.c
4650 F:      crypto/rng.c
4651
4652 CS3308 MEDIA DRIVER
4653 M:      Hans Verkuil <hverkuil@xs4all.nl>
4654 L:      linux-media@vger.kernel.org
4655 S:      Odd Fixes
4656 W:      http://linuxtv.org
4657 T:      git git://linuxtv.org/media_tree.git
4658 F:      drivers/media/i2c/cs3308.c
4659
4660 CS5535 Audio ALSA driver
4661 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4662 S:      Maintained
4663 F:      sound/pci/cs5535audio/
4664
4665 CSI DRIVERS FOR ALLWINNER V3s
4666 M:      Yong Deng <yong.deng@magewell.com>
4667 L:      linux-media@vger.kernel.org
4668 S:      Maintained
4669 T:      git git://linuxtv.org/media_tree.git
4670 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4671 F:      drivers/media/platform/sunxi/sun6i-csi/
4672
4673 CW1200 WLAN driver
4674 M:      Solomon Peachy <pizza@shaftnet.org>
4675 S:      Maintained
4676 F:      drivers/net/wireless/st/cw1200/
4677
4678 CX18 VIDEO4LINUX DRIVER
4679 M:      Andy Walls <awalls@md.metrocast.net>
4680 L:      linux-media@vger.kernel.org
4681 S:      Maintained
4682 W:      https://linuxtv.org
4683 T:      git git://linuxtv.org/media_tree.git
4684 F:      drivers/media/pci/cx18/
4685 F:      include/uapi/linux/ivtv*
4686
4687 CX2341X MPEG ENCODER HELPER MODULE
4688 M:      Hans Verkuil <hverkuil@xs4all.nl>
4689 L:      linux-media@vger.kernel.org
4690 S:      Maintained
4691 W:      https://linuxtv.org
4692 T:      git git://linuxtv.org/media_tree.git
4693 F:      drivers/media/common/cx2341x*
4694 F:      include/media/drv-intf/cx2341x.h
4695
4696 CX24120 MEDIA DRIVER
4697 M:      Jemma Denson <jdenson@gmail.com>
4698 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4699 L:      linux-media@vger.kernel.org
4700 S:      Maintained
4701 W:      https://linuxtv.org
4702 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4703 F:      drivers/media/dvb-frontends/cx24120*
4704
4705 CX88 VIDEO4LINUX DRIVER
4706 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4707 L:      linux-media@vger.kernel.org
4708 S:      Odd fixes
4709 W:      https://linuxtv.org
4710 T:      git git://linuxtv.org/media_tree.git
4711 F:      Documentation/driver-api/media/drivers/cx88*
4712 F:      drivers/media/pci/cx88/
4713
4714 CXD2820R MEDIA DRIVER
4715 M:      Antti Palosaari <crope@iki.fi>
4716 L:      linux-media@vger.kernel.org
4717 S:      Maintained
4718 W:      https://linuxtv.org
4719 W:      http://palosaari.fi/linux/
4720 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4721 T:      git git://linuxtv.org/anttip/media_tree.git
4722 F:      drivers/media/dvb-frontends/cxd2820r*
4723
4724 CXGB3 ETHERNET DRIVER (CXGB3)
4725 M:      Raju Rangoju <rajur@chelsio.com>
4726 L:      netdev@vger.kernel.org
4727 S:      Supported
4728 W:      http://www.chelsio.com
4729 F:      drivers/net/ethernet/chelsio/cxgb3/
4730
4731 CXGB3 ISCSI DRIVER (CXGB3I)
4732 M:      Karen Xie <kxie@chelsio.com>
4733 L:      linux-scsi@vger.kernel.org
4734 S:      Supported
4735 W:      http://www.chelsio.com
4736 F:      drivers/scsi/cxgbi/cxgb3i
4737
4738 CXGB4 CRYPTO DRIVER (chcr)
4739 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4740 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4741 M:      Rohit Maheshwari <rohitm@chelsio.com>
4742 L:      linux-crypto@vger.kernel.org
4743 S:      Supported
4744 W:      http://www.chelsio.com
4745 F:      drivers/crypto/chelsio
4746
4747 CXGB4 INLINE CRYPTO DRIVER
4748 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4749 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4750 M:      Rohit Maheshwari <rohitm@chelsio.com>
4751 L:      netdev@vger.kernel.org
4752 S:      Supported
4753 W:      http://www.chelsio.com
4754 F:      drivers/net/ethernet/chelsio/inline_crypto/
4755
4756 CXGB4 ETHERNET DRIVER (CXGB4)
4757 M:      Raju Rangoju <rajur@chelsio.com>
4758 L:      netdev@vger.kernel.org
4759 S:      Supported
4760 W:      http://www.chelsio.com
4761 F:      drivers/net/ethernet/chelsio/cxgb4/
4762
4763 CXGB4 ISCSI DRIVER (CXGB4I)
4764 M:      Karen Xie <kxie@chelsio.com>
4765 L:      linux-scsi@vger.kernel.org
4766 S:      Supported
4767 W:      http://www.chelsio.com
4768 F:      drivers/scsi/cxgbi/cxgb4i
4769
4770 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4771 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4772 L:      linux-rdma@vger.kernel.org
4773 S:      Supported
4774 W:      http://www.openfabrics.org
4775 F:      drivers/infiniband/hw/cxgb4/
4776 F:      include/uapi/rdma/cxgb4-abi.h
4777
4778 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4779 M:      Raju Rangoju <rajur@chelsio.com>
4780 L:      netdev@vger.kernel.org
4781 S:      Supported
4782 W:      http://www.chelsio.com
4783 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4784
4785 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4786 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4787 M:      Andrew Donnellan <ajd@linux.ibm.com>
4788 L:      linuxppc-dev@lists.ozlabs.org
4789 S:      Supported
4790 F:      Documentation/ABI/testing/sysfs-class-cxl
4791 F:      Documentation/powerpc/cxl.rst
4792 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4793 F:      drivers/misc/cxl/
4794 F:      include/misc/cxl*
4795 F:      include/uapi/misc/cxl.h
4796
4797 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4798 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4799 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4800 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4801 L:      linux-scsi@vger.kernel.org
4802 S:      Supported
4803 F:      Documentation/powerpc/cxlflash.rst
4804 F:      drivers/scsi/cxlflash/
4805 F:      include/uapi/scsi/cxlflash_ioctl.h
4806
4807 CYBERPRO FB DRIVER
4808 M:      Russell King <linux@armlinux.org.uk>
4809 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4810 S:      Maintained
4811 W:      http://www.armlinux.org.uk/
4812 F:      drivers/video/fbdev/cyber2000fb.*
4813
4814 CYCLADES ASYNC MUX DRIVER
4815 S:      Orphan
4816 W:      http://www.cyclades.com/
4817 F:      drivers/tty/cyclades.c
4818 F:      include/linux/cyclades.h
4819 F:      include/uapi/linux/cyclades.h
4820
4821 CYCLADES PC300 DRIVER
4822 S:      Orphan
4823 W:      http://www.cyclades.com/
4824 F:      drivers/net/wan/pc300*
4825
4826 CYPRESS_FIRMWARE MEDIA DRIVER
4827 M:      Antti Palosaari <crope@iki.fi>
4828 L:      linux-media@vger.kernel.org
4829 S:      Maintained
4830 W:      https://linuxtv.org
4831 W:      http://palosaari.fi/linux/
4832 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4833 T:      git git://linuxtv.org/anttip/media_tree.git
4834 F:      drivers/media/common/cypress_firmware*
4835
4836 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4837 M:      Linus Walleij <linus.walleij@linaro.org>
4838 L:      linux-input@vger.kernel.org
4839 S:      Maintained
4840 F:      drivers/input/touchscreen/cy8ctma140.c
4841
4842 CYTTSP TOUCHSCREEN DRIVER
4843 M:      Ferruh Yigit <fery@cypress.com>
4844 L:      linux-input@vger.kernel.org
4845 S:      Supported
4846 F:      drivers/input/touchscreen/cyttsp*
4847 F:      include/linux/input/cyttsp.h
4848
4849 D-LINK DIR-685 TOUCHKEYS DRIVER
4850 M:      Linus Walleij <linus.walleij@linaro.org>
4851 L:      linux-input@vger.kernel.org
4852 S:      Supported
4853 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4854
4855 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4856 M:      Joshua Kinard <kumba@gentoo.org>
4857 S:      Maintained
4858 F:      drivers/rtc/rtc-ds1685.c
4859 F:      include/linux/rtc/ds1685.h
4860
4861 DAMA SLAVE for AX.25
4862 M:      Joerg Reuter <jreuter@yaina.de>
4863 L:      linux-hams@vger.kernel.org
4864 S:      Maintained
4865 W:      http://yaina.de/jreuter/
4866 W:      http://www.qsl.net/dl1bke/
4867 F:      net/ax25/af_ax25.c
4868 F:      net/ax25/ax25_dev.c
4869 F:      net/ax25/ax25_ds_*
4870 F:      net/ax25/ax25_in.c
4871 F:      net/ax25/ax25_out.c
4872 F:      net/ax25/ax25_timer.c
4873 F:      net/ax25/sysctl_net_ax25.c
4874
4875 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4876 L:      netdev@vger.kernel.org
4877 S:      Orphan
4878 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
4879 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4880
4881 DC390/AM53C974 SCSI driver
4882 M:      Hannes Reinecke <hare@suse.com>
4883 L:      linux-scsi@vger.kernel.org
4884 S:      Maintained
4885 F:      drivers/scsi/am53c974.c
4886
4887 DC395x SCSI driver
4888 M:      Oliver Neukum <oliver@neukum.org>
4889 M:      Ali Akcaagac <aliakc@web.de>
4890 M:      Jamie Lenehan <lenehan@twibble.org>
4891 L:      dc395x@twibble.org
4892 S:      Maintained
4893 W:      http://twibble.org/dist/dc395x/
4894 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4895 F:      Documentation/scsi/dc395x.rst
4896 F:      drivers/scsi/dc395x.*
4897
4898 DCCP PROTOCOL
4899 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4900 L:      dccp@vger.kernel.org
4901 S:      Maintained
4902 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4903 F:      include/linux/dccp.h
4904 F:      include/linux/tfrc.h
4905 F:      include/uapi/linux/dccp.h
4906 F:      net/dccp/
4907
4908 DECnet NETWORK LAYER
4909 L:      linux-decnet-user@lists.sourceforge.net
4910 S:      Orphan
4911 W:      http://linux-decnet.sourceforge.net
4912 F:      Documentation/networking/decnet.rst
4913 F:      net/decnet/
4914
4915 DECSTATION PLATFORM SUPPORT
4916 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4917 L:      linux-mips@vger.kernel.org
4918 S:      Maintained
4919 W:      http://www.linux-mips.org/wiki/DECstation
4920 F:      arch/mips/dec/
4921 F:      arch/mips/include/asm/dec/
4922 F:      arch/mips/include/asm/mach-dec/
4923
4924 DEFXX FDDI NETWORK DRIVER
4925 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4926 S:      Maintained
4927 F:      drivers/net/fddi/defxx.*
4928
4929 DEFZA FDDI NETWORK DRIVER
4930 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4931 S:      Maintained
4932 F:      drivers/net/fddi/defza.*
4933
4934 DEINTERLACE DRIVERS FOR ALLWINNER H3
4935 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4936 L:      linux-media@vger.kernel.org
4937 S:      Maintained
4938 T:      git git://linuxtv.org/media_tree.git
4939 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4940 F:      drivers/media/platform/sunxi/sun8i-di/
4941
4942 DELL LAPTOP DRIVER
4943 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4944 M:      Pali Rohár <pali@kernel.org>
4945 L:      platform-driver-x86@vger.kernel.org
4946 S:      Maintained
4947 F:      drivers/platform/x86/dell-laptop.c
4948
4949 DELL LAPTOP FREEFALL DRIVER
4950 M:      Pali Rohár <pali@kernel.org>
4951 S:      Maintained
4952 F:      drivers/platform/x86/dell-smo8800.c
4953
4954 DELL LAPTOP RBTN DRIVER
4955 M:      Pali Rohár <pali@kernel.org>
4956 S:      Maintained
4957 F:      drivers/platform/x86/dell-rbtn.*
4958
4959 DELL LAPTOP SMM DRIVER
4960 M:      Pali Rohár <pali@kernel.org>
4961 S:      Maintained
4962 F:      drivers/hwmon/dell-smm-hwmon.c
4963 F:      include/uapi/linux/i8k.h
4964
4965 DELL REMOTE BIOS UPDATE DRIVER
4966 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4967 L:      platform-driver-x86@vger.kernel.org
4968 S:      Maintained
4969 F:      drivers/platform/x86/dell_rbu.c
4970
4971 DELL SMBIOS DRIVER
4972 M:      Pali Rohár <pali@kernel.org>
4973 M:      Mario Limonciello <mario.limonciello@dell.com>
4974 L:      platform-driver-x86@vger.kernel.org
4975 S:      Maintained
4976 F:      drivers/platform/x86/dell-smbios.*
4977
4978 DELL SMBIOS SMM DRIVER
4979 M:      Mario Limonciello <mario.limonciello@dell.com>
4980 L:      platform-driver-x86@vger.kernel.org
4981 S:      Maintained
4982 F:      drivers/platform/x86/dell-smbios-smm.c
4983
4984 DELL SMBIOS WMI DRIVER
4985 M:      Mario Limonciello <mario.limonciello@dell.com>
4986 L:      platform-driver-x86@vger.kernel.org
4987 S:      Maintained
4988 F:      drivers/platform/x86/dell-smbios-wmi.c
4989 F:      tools/wmi/dell-smbios-example.c
4990
4991 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4992 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4993 L:      platform-driver-x86@vger.kernel.org
4994 S:      Maintained
4995 F:      Documentation/driver-api/dcdbas.rst
4996 F:      drivers/platform/x86/dcdbas.*
4997
4998 DELL WMI DESCRIPTOR DRIVER
4999 M:      Mario Limonciello <mario.limonciello@dell.com>
5000 S:      Maintained
5001 F:      drivers/platform/x86/dell-wmi-descriptor.c
5002
5003 DELL WMI NOTIFICATIONS DRIVER
5004 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5005 M:      Pali Rohár <pali@kernel.org>
5006 S:      Maintained
5007 F:      drivers/platform/x86/dell-wmi.c
5008
5009 DELTA ST MEDIA DRIVER
5010 M:      Hugues Fruchet <hugues.fruchet@st.com>
5011 L:      linux-media@vger.kernel.org
5012 S:      Supported
5013 W:      https://linuxtv.org
5014 T:      git git://linuxtv.org/media_tree.git
5015 F:      drivers/media/platform/sti/delta
5016
5017 DENALI NAND DRIVER
5018 L:      linux-mtd@lists.infradead.org
5019 S:      Orphan
5020 F:      drivers/mtd/nand/raw/denali*
5021
5022 DESIGNWARE EDMA CORE IP DRIVER
5023 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5024 L:      dmaengine@vger.kernel.org
5025 S:      Maintained
5026 F:      drivers/dma/dw-edma/
5027 F:      include/linux/dma/edma.h
5028
5029 DESIGNWARE USB2 DRD IP DRIVER
5030 M:      Minas Harutyunyan <hminas@synopsys.com>
5031 L:      linux-usb@vger.kernel.org
5032 S:      Maintained
5033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5034 F:      drivers/usb/dwc2/
5035
5036 DESIGNWARE USB3 DRD IP DRIVER
5037 M:      Felipe Balbi <balbi@kernel.org>
5038 L:      linux-usb@vger.kernel.org
5039 S:      Maintained
5040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5041 F:      drivers/usb/dwc3/
5042
5043 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5044 M:      Andreas Klinger <ak@it-klinger.de>
5045 L:      linux-iio@vger.kernel.org
5046 S:      Maintained
5047 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5048 F:      drivers/iio/proximity/srf*.c
5049
5050 DEVICE COREDUMP (DEV_COREDUMP)
5051 M:      Johannes Berg <johannes@sipsolutions.net>
5052 L:      linux-kernel@vger.kernel.org
5053 S:      Maintained
5054 F:      drivers/base/devcoredump.c
5055 F:      include/linux/devcoredump.h
5056
5057 DEVICE DEPENDENCY HELPER SCRIPT
5058 M:      Saravana Kannan <saravanak@google.com>
5059 L:      linux-kernel@vger.kernel.org
5060 S:      Maintained
5061 F:      scripts/dev-needs.sh
5062
5063 DEVICE DIRECT ACCESS (DAX)
5064 M:      Dan Williams <dan.j.williams@intel.com>
5065 M:      Vishal Verma <vishal.l.verma@intel.com>
5066 M:      Dave Jiang <dave.jiang@intel.com>
5067 L:      linux-nvdimm@lists.01.org
5068 S:      Supported
5069 F:      drivers/dax/
5070
5071 DEVICE FREQUENCY (DEVFREQ)
5072 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5073 M:      Kyungmin Park <kyungmin.park@samsung.com>
5074 M:      Chanwoo Choi <cw00.choi@samsung.com>
5075 L:      linux-pm@vger.kernel.org
5076 S:      Maintained
5077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5078 F:      Documentation/devicetree/bindings/devfreq/
5079 F:      drivers/devfreq/
5080 F:      include/linux/devfreq.h
5081 F:      include/trace/events/devfreq.h
5082
5083 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5084 M:      Chanwoo Choi <cw00.choi@samsung.com>
5085 L:      linux-pm@vger.kernel.org
5086 S:      Supported
5087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5088 F:      Documentation/devicetree/bindings/devfreq/event/
5089 F:      drivers/devfreq/devfreq-event.c
5090 F:      drivers/devfreq/event/
5091 F:      include/dt-bindings/pmu/exynos_ppmu.h
5092 F:      include/linux/devfreq-event.h
5093
5094 DEVICE NUMBER REGISTRY
5095 M:      Torben Mathiasen <device@lanana.org>
5096 S:      Maintained
5097 W:      http://lanana.org/docs/device-list/index.html
5098
5099 DEVICE-MAPPER  (LVM)
5100 M:      Alasdair Kergon <agk@redhat.com>
5101 M:      Mike Snitzer <snitzer@redhat.com>
5102 M:      dm-devel@redhat.com
5103 L:      dm-devel@redhat.com
5104 S:      Maintained
5105 W:      http://sources.redhat.com/dm
5106 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5108 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5109 F:      Documentation/admin-guide/device-mapper/
5110 F:      drivers/md/Kconfig
5111 F:      drivers/md/Makefile
5112 F:      drivers/md/dm*
5113 F:      drivers/md/persistent-data/
5114 F:      include/linux/device-mapper.h
5115 F:      include/linux/dm-*.h
5116 F:      include/uapi/linux/dm-*.h
5117
5118 DEVLINK
5119 M:      Jiri Pirko <jiri@nvidia.com>
5120 L:      netdev@vger.kernel.org
5121 S:      Supported
5122 F:      Documentation/networking/devlink
5123 F:      include/net/devlink.h
5124 F:      include/uapi/linux/devlink.h
5125 F:      net/core/devlink.c
5126
5127 DIALOG SEMICONDUCTOR DRIVERS
5128 M:      Support Opensource <support.opensource@diasemi.com>
5129 S:      Supported
5130 W:      http://www.dialog-semiconductor.com/products
5131 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5132 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5133 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5134 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5135 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5136 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5137 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5138 F:      Documentation/hwmon/da90??.rst
5139 F:      drivers/gpio/gpio-da90??.c
5140 F:      drivers/hwmon/da90??-hwmon.c
5141 F:      drivers/iio/adc/da91??-*.c
5142 F:      drivers/input/misc/da90??_onkey.c
5143 F:      drivers/input/touchscreen/da9052_tsi.c
5144 F:      drivers/leds/leds-da90??.c
5145 F:      drivers/mfd/da903x.c
5146 F:      drivers/mfd/da90??-*.c
5147 F:      drivers/mfd/da91??-*.c
5148 F:      drivers/pinctrl/pinctrl-da90??.c
5149 F:      drivers/power/supply/da9052-battery.c
5150 F:      drivers/power/supply/da91??-*.c
5151 F:      drivers/regulator/da9???-regulator.[ch]
5152 F:      drivers/regulator/slg51000-regulator.[ch]
5153 F:      drivers/rtc/rtc-da90??.c
5154 F:      drivers/thermal/da90??-thermal.c
5155 F:      drivers/video/backlight/da90??_bl.c
5156 F:      drivers/watchdog/da90??_wdt.c
5157 F:      include/linux/mfd/da903x.h
5158 F:      include/linux/mfd/da9052/
5159 F:      include/linux/mfd/da9055/
5160 F:      include/linux/mfd/da9062/
5161 F:      include/linux/mfd/da9063/
5162 F:      include/linux/mfd/da9150/
5163 F:      include/linux/regulator/da9211.h
5164 F:      include/sound/da[79]*.h
5165 F:      sound/soc/codecs/da[79]*.[ch]
5166
5167 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5168 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5169 L:      linux-gpio@vger.kernel.org
5170 S:      Maintained
5171 F:      drivers/gpio/gpio-gpio-mm.c
5172
5173 DIOLAN U2C-12 I2C DRIVER
5174 M:      Guenter Roeck <linux@roeck-us.net>
5175 L:      linux-i2c@vger.kernel.org
5176 S:      Maintained
5177 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5178
5179 DIRECTORY NOTIFICATION (DNOTIFY)
5180 M:      Jan Kara <jack@suse.cz>
5181 R:      Amir Goldstein <amir73il@gmail.com>
5182 L:      linux-fsdevel@vger.kernel.org
5183 S:      Maintained
5184 F:      Documentation/filesystems/dnotify.rst
5185 F:      fs/notify/dnotify/
5186 F:      include/linux/dnotify.h
5187
5188 DISK GEOMETRY AND PARTITION HANDLING
5189 M:      Andries Brouwer <aeb@cwi.nl>
5190 S:      Maintained
5191 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5192 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5193 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5194
5195 DISKQUOTA
5196 M:      Jan Kara <jack@suse.com>
5197 S:      Maintained
5198 F:      Documentation/filesystems/quota.rst
5199 F:      fs/quota/
5200 F:      include/linux/quota*.h
5201 F:      include/uapi/linux/quota*.h
5202
5203 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5204 M:      Bernie Thompson <bernie@plugable.com>
5205 L:      linux-fbdev@vger.kernel.org
5206 S:      Maintained
5207 W:      http://plugable.com/category/projects/udlfb/
5208 F:      Documentation/fb/udlfb.rst
5209 F:      drivers/video/fbdev/udlfb.c
5210 F:      include/video/udlfb.h
5211
5212 DISTRIBUTED LOCK MANAGER (DLM)
5213 M:      Christine Caulfield <ccaulfie@redhat.com>
5214 M:      David Teigland <teigland@redhat.com>
5215 L:      cluster-devel@redhat.com
5216 S:      Supported
5217 W:      http://sources.redhat.com/cluster/
5218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5219 F:      fs/dlm/
5220
5221 DMA BUFFER SHARING FRAMEWORK
5222 M:      Sumit Semwal <sumit.semwal@linaro.org>
5223 M:      Christian König <christian.koenig@amd.com>
5224 L:      linux-media@vger.kernel.org
5225 L:      dri-devel@lists.freedesktop.org
5226 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5227 S:      Maintained
5228 T:      git git://anongit.freedesktop.org/drm/drm-misc
5229 F:      Documentation/driver-api/dma-buf.rst
5230 F:      drivers/dma-buf/
5231 F:      include/linux/*fence.h
5232 F:      include/linux/dma-buf*
5233 F:      include/linux/dma-resv.h
5234 K:      \bdma_(?:buf|fence|resv)\b
5235
5236 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5237 M:      Vinod Koul <vkoul@kernel.org>
5238 L:      dmaengine@vger.kernel.org
5239 S:      Maintained
5240 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5242 F:      Documentation/devicetree/bindings/dma/
5243 F:      Documentation/driver-api/dmaengine/
5244 F:      drivers/dma/
5245 F:      include/linux/dmaengine.h
5246 F:      include/linux/of_dma.h
5247
5248 DMA MAPPING HELPERS
5249 M:      Christoph Hellwig <hch@lst.de>
5250 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5251 R:      Robin Murphy <robin.murphy@arm.com>
5252 L:      iommu@lists.linux-foundation.org
5253 S:      Supported
5254 W:      http://git.infradead.org/users/hch/dma-mapping.git
5255 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5256 F:      include/asm-generic/dma-mapping.h
5257 F:      include/linux/dma-direct.h
5258 F:      include/linux/dma-mapping.h
5259 F:      include/linux/dma-map-ops.h
5260 F:      kernel/dma/
5261
5262 DMA-BUF HEAPS FRAMEWORK
5263 M:      Sumit Semwal <sumit.semwal@linaro.org>
5264 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5265 R:      Liam Mark <lmark@codeaurora.org>
5266 R:      Laura Abbott <labbott@redhat.com>
5267 R:      Brian Starkey <Brian.Starkey@arm.com>
5268 R:      John Stultz <john.stultz@linaro.org>
5269 L:      linux-media@vger.kernel.org
5270 L:      dri-devel@lists.freedesktop.org
5271 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5272 S:      Maintained
5273 T:      git git://anongit.freedesktop.org/drm/drm-misc
5274 F:      drivers/dma-buf/dma-heap.c
5275 F:      drivers/dma-buf/heaps/*
5276 F:      include/linux/dma-heap.h
5277 F:      include/uapi/linux/dma-heap.h
5278
5279 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5280 M:      Lukasz Luba <lukasz.luba@arm.com>
5281 L:      linux-pm@vger.kernel.org
5282 L:      linux-samsung-soc@vger.kernel.org
5283 S:      Maintained
5284 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5285 F:      drivers/memory/samsung/exynos5422-dmc.c
5286
5287 DME1737 HARDWARE MONITOR DRIVER
5288 M:      Juerg Haefliger <juergh@gmail.com>
5289 L:      linux-hwmon@vger.kernel.org
5290 S:      Maintained
5291 F:      Documentation/hwmon/dme1737.rst
5292 F:      drivers/hwmon/dme1737.c
5293
5294 DMI/SMBIOS SUPPORT
5295 M:      Jean Delvare <jdelvare@suse.com>
5296 S:      Maintained
5297 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5298 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5299 F:      drivers/firmware/dmi-id.c
5300 F:      drivers/firmware/dmi_scan.c
5301 F:      include/linux/dmi.h
5302
5303 DOCUMENTATION
5304 M:      Jonathan Corbet <corbet@lwn.net>
5305 L:      linux-doc@vger.kernel.org
5306 S:      Maintained
5307 P:      Documentation/doc-guide/maintainer-profile.rst
5308 T:      git git://git.lwn.net/linux.git docs-next
5309 F:      Documentation/
5310 F:      scripts/documentation-file-ref-check
5311 F:      scripts/kernel-doc
5312 F:      scripts/sphinx-pre-install
5313 X:      Documentation/ABI/
5314 X:      Documentation/admin-guide/media/
5315 X:      Documentation/devicetree/
5316 X:      Documentation/driver-api/media/
5317 X:      Documentation/firmware-guide/acpi/
5318 X:      Documentation/i2c/
5319 X:      Documentation/power/
5320 X:      Documentation/spi/
5321 X:      Documentation/userspace-api/media/
5322
5323 DOCUMENTATION SCRIPTS
5324 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5325 L:      linux-doc@vger.kernel.org
5326 S:      Maintained
5327 F:      Documentation/sphinx/parse-headers.pl
5328 F:      scripts/documentation-file-ref-check
5329 F:      scripts/sphinx-pre-install
5330
5331 DOCUMENTATION/ITALIAN
5332 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5333 L:      linux-doc@vger.kernel.org
5334 S:      Maintained
5335 F:      Documentation/translations/it_IT
5336
5337 DONGWOON DW9714 LENS VOICE COIL DRIVER
5338 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5339 L:      linux-media@vger.kernel.org
5340 S:      Maintained
5341 T:      git git://linuxtv.org/media_tree.git
5342 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5343 F:      drivers/media/i2c/dw9714.c
5344
5345 DONGWOON DW9768 LENS VOICE COIL DRIVER
5346 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5347 L:      linux-media@vger.kernel.org
5348 S:      Maintained
5349 T:      git git://linuxtv.org/media_tree.git
5350 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5351 F:      drivers/media/i2c/dw9768.c
5352
5353 DONGWOON DW9807 LENS VOICE COIL DRIVER
5354 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5355 L:      linux-media@vger.kernel.org
5356 S:      Maintained
5357 T:      git git://linuxtv.org/media_tree.git
5358 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5359 F:      drivers/media/i2c/dw9807-vcm.c
5360
5361 DOUBLETALK DRIVER
5362 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5363 L:      blinux-list@redhat.com
5364 S:      Maintained
5365 F:      drivers/char/dtlk.c
5366 F:      include/linux/dtlk.h
5367
5368 DPAA2 DATAPATH I/O (DPIO) DRIVER
5369 M:      Roy Pledge <Roy.Pledge@nxp.com>
5370 L:      linux-kernel@vger.kernel.org
5371 S:      Maintained
5372 F:      drivers/soc/fsl/dpio
5373
5374 DPAA2 ETHERNET DRIVER
5375 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5376 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5377 L:      netdev@vger.kernel.org
5378 S:      Maintained
5379 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5380 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5381 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5382 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5383 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5384 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5385 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5386 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5387 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5388
5389 DPAA2 ETHERNET SWITCH DRIVER
5390 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5391 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5392 L:      linux-kernel@vger.kernel.org
5393 S:      Maintained
5394 F:      drivers/staging/fsl-dpaa2/ethsw
5395
5396 DPT_I2O SCSI RAID DRIVER
5397 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5398 L:      linux-scsi@vger.kernel.org
5399 S:      Maintained
5400 W:      http://www.adaptec.com/
5401 F:      drivers/scsi/dpt*
5402 F:      drivers/scsi/dpt/
5403
5404 DRBD DRIVER
5405 M:      Philipp Reisner <philipp.reisner@linbit.com>
5406 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5407 L:      drbd-dev@lists.linbit.com
5408 S:      Supported
5409 W:      http://www.drbd.org
5410 T:      git git://git.linbit.com/linux-drbd.git
5411 T:      git git://git.linbit.com/drbd-8.4.git
5412 F:      Documentation/admin-guide/blockdev/
5413 F:      drivers/block/drbd/
5414 F:      lib/lru_cache.c
5415
5416 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5417 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5418 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5419 S:      Supported
5420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5421 F:      Documentation/core-api/kobject.rst
5422 F:      drivers/base/
5423 F:      fs/debugfs/
5424 F:      fs/sysfs/
5425 F:      include/linux/debugfs.h
5426 F:      include/linux/kobj*
5427 F:      lib/kobj*
5428
5429 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5430 M:      Nishanth Menon <nm@ti.com>
5431 L:      linux-pm@vger.kernel.org
5432 S:      Maintained
5433 F:      drivers/soc/ti/smartreflex.c
5434 F:      include/linux/power/smartreflex.h
5435
5436 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5437 M:      Maxime Ripard <mripard@kernel.org>
5438 M:      Chen-Yu Tsai <wens@csie.org>
5439 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5440 L:      dri-devel@lists.freedesktop.org
5441 S:      Supported
5442 T:      git git://anongit.freedesktop.org/drm/drm-misc
5443 F:      drivers/gpu/drm/sun4i/sun8i*
5444
5445 DRM DRIVER FOR ARM PL111 CLCD
5446 M:      Eric Anholt <eric@anholt.net>
5447 S:      Supported
5448 T:      git git://anongit.freedesktop.org/drm/drm-misc
5449 F:      drivers/gpu/drm/pl111/
5450
5451 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5452 M:      Linus Walleij <linus.walleij@linaro.org>
5453 S:      Maintained
5454 T:      git git://anongit.freedesktop.org/drm/drm-misc
5455 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5456 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5457
5458 DRM DRIVER FOR ASPEED BMC GFX
5459 M:      Joel Stanley <joel@jms.id.au>
5460 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5461 S:      Supported
5462 T:      git git://anongit.freedesktop.org/drm/drm-misc
5463 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5464 F:      drivers/gpu/drm/aspeed/
5465
5466 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5467 M:      Dave Airlie <airlied@redhat.com>
5468 R:      Thomas Zimmermann <tzimmermann@suse.de>
5469 L:      dri-devel@lists.freedesktop.org
5470 S:      Supported
5471 T:      git git://anongit.freedesktop.org/drm/drm-misc
5472 F:      drivers/gpu/drm/ast/
5473
5474 DRM DRIVER FOR BOCHS VIRTUAL GPU
5475 M:      Gerd Hoffmann <kraxel@redhat.com>
5476 L:      virtualization@lists.linux-foundation.org
5477 S:      Maintained
5478 T:      git git://anongit.freedesktop.org/drm/drm-misc
5479 F:      drivers/gpu/drm/bochs/
5480
5481 DRM DRIVER FOR BOE HIMAX8279D PANELS
5482 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5483 S:      Maintained
5484 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5485 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5486
5487 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5488 M:      Linus Walleij <linus.walleij@linaro.org>
5489 S:      Maintained
5490 T:      git git://anongit.freedesktop.org/drm/drm-misc
5491 F:      drivers/gpu/drm/tve200/
5492
5493 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5494 M:      Icenowy Zheng <icenowy@aosc.io>
5495 S:      Maintained
5496 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5497 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5498
5499 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5500 M:      Jagan Teki <jagan@amarulasolutions.com>
5501 S:      Maintained
5502 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5503 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5504
5505 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5506 M:      Hans de Goede <hdegoede@redhat.com>
5507 S:      Maintained
5508 T:      git git://anongit.freedesktop.org/drm/drm-misc
5509 F:      drivers/gpu/drm/tiny/gm12u320.c
5510
5511 DRM DRIVER FOR HX8357D PANELS
5512 M:      Eric Anholt <eric@anholt.net>
5513 S:      Maintained
5514 T:      git git://anongit.freedesktop.org/drm/drm-misc
5515 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5516 F:      drivers/gpu/drm/tiny/hx8357d.c
5517
5518 DRM DRIVER FOR ILITEK ILI9225 PANELS
5519 M:      David Lechner <david@lechnology.com>
5520 S:      Maintained
5521 T:      git git://anongit.freedesktop.org/drm/drm-misc
5522 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5523 F:      drivers/gpu/drm/tiny/ili9225.c
5524
5525 DRM DRIVER FOR ILITEK ILI9486 PANELS
5526 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5527 S:      Maintained
5528 T:      git git://anongit.freedesktop.org/drm/drm-misc
5529 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5530 F:      drivers/gpu/drm/tiny/ili9486.c
5531
5532 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5533 S:      Orphan / Obsolete
5534 F:      drivers/gpu/drm/i810/
5535 F:      include/uapi/drm/i810_drm.h
5536
5537 DRM DRIVER FOR LVDS PANELS
5538 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5539 L:      dri-devel@lists.freedesktop.org
5540 T:      git git://anongit.freedesktop.org/drm/drm-misc
5541 S:      Maintained
5542 F:      drivers/gpu/drm/panel/panel-lvds.c
5543 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5544
5545 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5546 M:      Guido Günther <agx@sigxcpu.org>
5547 R:      Purism Kernel Team <kernel@puri.sm>
5548 S:      Maintained
5549 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5550 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5551
5552 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5553 S:      Orphan / Obsolete
5554 F:      drivers/gpu/drm/mga/
5555 F:      include/uapi/drm/mga_drm.h
5556
5557 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5558 M:      Dave Airlie <airlied@redhat.com>
5559 R:      Thomas Zimmermann <tzimmermann@suse.de>
5560 L:      dri-devel@lists.freedesktop.org
5561 S:      Supported
5562 T:      git git://anongit.freedesktop.org/drm/drm-misc
5563 F:      drivers/gpu/drm/mgag200/
5564
5565 DRM DRIVER FOR MI0283QT
5566 M:      Noralf Trønnes <noralf@tronnes.org>
5567 S:      Maintained
5568 T:      git git://anongit.freedesktop.org/drm/drm-misc
5569 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5570 F:      drivers/gpu/drm/tiny/mi0283qt.c
5571
5572 DRM DRIVER FOR MSM ADRENO GPU
5573 M:      Rob Clark <robdclark@gmail.com>
5574 M:      Sean Paul <sean@poorly.run>
5575 L:      linux-arm-msm@vger.kernel.org
5576 L:      dri-devel@lists.freedesktop.org
5577 L:      freedreno@lists.freedesktop.org
5578 S:      Maintained
5579 T:      git https://gitlab.freedesktop.org/drm/msm.git
5580 F:      Documentation/devicetree/bindings/display/msm/
5581 F:      drivers/gpu/drm/msm/
5582 F:      include/uapi/drm/msm_drm.h
5583
5584 DRM DRIVER FOR NOVATEK NT35510 PANELS
5585 M:      Linus Walleij <linus.walleij@linaro.org>
5586 S:      Maintained
5587 T:      git git://anongit.freedesktop.org/drm/drm-misc
5588 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5589 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5590
5591 DRM DRIVER FOR NOVATEK NT36672A PANELS
5592 M:      Sumit Semwal <sumit.semwal@linaro.org>
5593 S:      Maintained
5594 T:      git git://anongit.freedesktop.org/drm/drm-misc
5595 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5596 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5597
5598 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5599 M:      Ben Skeggs <bskeggs@redhat.com>
5600 L:      dri-devel@lists.freedesktop.org
5601 L:      nouveau@lists.freedesktop.org
5602 S:      Supported
5603 T:      git git://github.com/skeggsb/linux
5604 F:      drivers/gpu/drm/nouveau/
5605 F:      include/uapi/drm/nouveau_drm.h
5606
5607 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5608 M:      Stefan Mavrodiev <stefan@olimex.com>
5609 S:      Maintained
5610 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5611 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5612
5613 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5614 M:      Noralf Trønnes <noralf@tronnes.org>
5615 S:      Maintained
5616 T:      git git://anongit.freedesktop.org/drm/drm-misc
5617 F:      Documentation/devicetree/bindings/display/repaper.txt
5618 F:      drivers/gpu/drm/tiny/repaper.c
5619
5620 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5621 M:      Dave Airlie <airlied@redhat.com>
5622 M:      Gerd Hoffmann <kraxel@redhat.com>
5623 L:      virtualization@lists.linux-foundation.org
5624 S:      Obsolete
5625 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5626 T:      git git://anongit.freedesktop.org/drm/drm-misc
5627 F:      drivers/gpu/drm/tiny/cirrus.c
5628
5629 DRM DRIVER FOR QXL VIRTUAL GPU
5630 M:      Dave Airlie <airlied@redhat.com>
5631 M:      Gerd Hoffmann <kraxel@redhat.com>
5632 L:      virtualization@lists.linux-foundation.org
5633 L:      spice-devel@lists.freedesktop.org
5634 S:      Maintained
5635 T:      git git://anongit.freedesktop.org/drm/drm-misc
5636 F:      drivers/gpu/drm/qxl/
5637 F:      include/uapi/drm/qxl_drm.h
5638
5639 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5640 S:      Orphan / Obsolete
5641 F:      drivers/gpu/drm/r128/
5642 F:      include/uapi/drm/r128_drm.h
5643
5644 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5645 M:      Robert Chiras <robert.chiras@nxp.com>
5646 S:      Maintained
5647 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5648 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5649
5650 DRM DRIVER FOR SITRONIX ST7703 PANELS
5651 M:      Guido Günther <agx@sigxcpu.org>
5652 R:      Purism Kernel Team <kernel@puri.sm>
5653 R:      Ondrej Jirman <megous@megous.com>
5654 S:      Maintained
5655 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5656 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5657
5658 DRM DRIVER FOR SAVAGE VIDEO CARDS
5659 S:      Orphan / Obsolete
5660 F:      drivers/gpu/drm/savage/
5661 F:      include/uapi/drm/savage_drm.h
5662
5663 DRM DRIVER FOR SIS VIDEO CARDS
5664 S:      Orphan / Obsolete
5665 F:      drivers/gpu/drm/sis/
5666 F:      include/uapi/drm/sis_drm.h
5667
5668 DRM DRIVER FOR SITRONIX ST7586 PANELS
5669 M:      David Lechner <david@lechnology.com>
5670 S:      Maintained
5671 T:      git git://anongit.freedesktop.org/drm/drm-misc
5672 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5673 F:      drivers/gpu/drm/tiny/st7586.c
5674
5675 DRM DRIVER FOR SITRONIX ST7701 PANELS
5676 M:      Jagan Teki <jagan@amarulasolutions.com>
5677 S:      Maintained
5678 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5679 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5680
5681 DRM DRIVER FOR SITRONIX ST7735R PANELS
5682 M:      David Lechner <david@lechnology.com>
5683 S:      Maintained
5684 T:      git git://anongit.freedesktop.org/drm/drm-misc
5685 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5686 F:      drivers/gpu/drm/tiny/st7735r.c
5687
5688 DRM DRIVER FOR SONY ACX424AKP PANELS
5689 M:      Linus Walleij <linus.walleij@linaro.org>
5690 S:      Maintained
5691 T:      git git://anongit.freedesktop.org/drm/drm-misc
5692 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5693
5694 DRM DRIVER FOR ST-ERICSSON MCDE
5695 M:      Linus Walleij <linus.walleij@linaro.org>
5696 S:      Maintained
5697 T:      git git://anongit.freedesktop.org/drm/drm-misc
5698 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5699 F:      drivers/gpu/drm/mcde/
5700
5701 DRM DRIVER FOR TDFX VIDEO CARDS
5702 S:      Orphan / Obsolete
5703 F:      drivers/gpu/drm/tdfx/
5704
5705 DRM DRIVER FOR TPO TPG110 PANELS
5706 M:      Linus Walleij <linus.walleij@linaro.org>
5707 S:      Maintained
5708 T:      git git://anongit.freedesktop.org/drm/drm-misc
5709 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5710 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5711
5712 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5713 M:      Dave Airlie <airlied@redhat.com>
5714 R:      Sean Paul <sean@poorly.run>
5715 R:      Thomas Zimmermann <tzimmermann@suse.de>
5716 L:      dri-devel@lists.freedesktop.org
5717 S:      Supported
5718 T:      git git://anongit.freedesktop.org/drm/drm-misc
5719 F:      drivers/gpu/drm/udl/
5720
5721 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5722 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5723 M:      Melissa Wen <melissa.srw@gmail.com>
5724 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5725 R:      Daniel Vetter <daniel@ffwll.ch>
5726 L:      dri-devel@lists.freedesktop.org
5727 S:      Maintained
5728 T:      git git://anongit.freedesktop.org/drm/drm-misc
5729 F:      Documentation/gpu/vkms.rst
5730 F:      drivers/gpu/drm/vkms/
5731
5732 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5733 M:      Hans de Goede <hdegoede@redhat.com>
5734 L:      dri-devel@lists.freedesktop.org
5735 S:      Maintained
5736 T:      git git://anongit.freedesktop.org/drm/drm-misc
5737 F:      drivers/gpu/drm/vboxvideo/
5738
5739 DRM DRIVER FOR VMWARE VIRTUAL GPU
5740 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5741 M:      Roland Scheidegger <sroland@vmware.com>
5742 L:      dri-devel@lists.freedesktop.org
5743 S:      Supported
5744 T:      git git://people.freedesktop.org/~sroland/linux
5745 F:      drivers/gpu/drm/vmwgfx/
5746 F:      include/uapi/drm/vmwgfx_drm.h
5747
5748 DRM DRIVERS
5749 M:      David Airlie <airlied@linux.ie>
5750 M:      Daniel Vetter <daniel@ffwll.ch>
5751 L:      dri-devel@lists.freedesktop.org
5752 S:      Maintained
5753 B:      https://bugs.freedesktop.org/
5754 C:      irc://chat.freenode.net/dri-devel
5755 T:      git git://anongit.freedesktop.org/drm/drm
5756 F:      Documentation/devicetree/bindings/display/
5757 F:      Documentation/devicetree/bindings/gpu/
5758 F:      Documentation/gpu/
5759 F:      drivers/gpu/drm/
5760 F:      drivers/gpu/vga/
5761 F:      include/drm/
5762 F:      include/linux/vga*
5763 F:      include/uapi/drm/
5764
5765 DRM DRIVERS AND MISC GPU PATCHES
5766 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5767 M:      Maxime Ripard <mripard@kernel.org>
5768 M:      Thomas Zimmermann <tzimmermann@suse.de>
5769 S:      Maintained
5770 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5771 T:      git git://anongit.freedesktop.org/drm/drm-misc
5772 F:      Documentation/gpu/
5773 F:      drivers/gpu/drm/*
5774 F:      drivers/gpu/vga/
5775 F:      include/drm/drm*
5776 F:      include/linux/vga*
5777 F:      include/uapi/drm/drm*
5778
5779 DRM DRIVERS FOR ALLWINNER A10
5780 M:      Maxime Ripard <mripard@kernel.org>
5781 M:      Chen-Yu Tsai <wens@csie.org>
5782 L:      dri-devel@lists.freedesktop.org
5783 S:      Supported
5784 T:      git git://anongit.freedesktop.org/drm/drm-misc
5785 F:      Documentation/devicetree/bindings/display/allwinner*
5786 F:      drivers/gpu/drm/sun4i/
5787
5788 DRM DRIVERS FOR AMLOGIC SOCS
5789 M:      Neil Armstrong <narmstrong@baylibre.com>
5790 L:      dri-devel@lists.freedesktop.org
5791 L:      linux-amlogic@lists.infradead.org
5792 S:      Supported
5793 W:      http://linux-meson.com/
5794 T:      git git://anongit.freedesktop.org/drm/drm-misc
5795 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5796 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5797 F:      Documentation/gpu/meson.rst
5798 F:      drivers/gpu/drm/meson/
5799
5800 DRM DRIVERS FOR ATMEL HLCDC
5801 M:      Sam Ravnborg <sam@ravnborg.org>
5802 M:      Boris Brezillon <bbrezillon@kernel.org>
5803 L:      dri-devel@lists.freedesktop.org
5804 S:      Supported
5805 T:      git git://anongit.freedesktop.org/drm/drm-misc
5806 F:      Documentation/devicetree/bindings/display/atmel/
5807 F:      drivers/gpu/drm/atmel-hlcdc/
5808
5809 DRM DRIVERS FOR BRIDGE CHIPS
5810 M:      Andrzej Hajda <a.hajda@samsung.com>
5811 M:      Neil Armstrong <narmstrong@baylibre.com>
5812 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5813 R:      Jonas Karlman <jonas@kwiboo.se>
5814 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5815 S:      Maintained
5816 T:      git git://anongit.freedesktop.org/drm/drm-misc
5817 F:      drivers/gpu/drm/bridge/
5818
5819 DRM DRIVERS FOR EXYNOS
5820 M:      Inki Dae <inki.dae@samsung.com>
5821 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5822 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5823 M:      Kyungmin Park <kyungmin.park@samsung.com>
5824 L:      dri-devel@lists.freedesktop.org
5825 S:      Supported
5826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5827 F:      Documentation/devicetree/bindings/display/exynos/
5828 F:      drivers/gpu/drm/exynos/
5829 F:      include/uapi/drm/exynos_drm.h
5830
5831 DRM DRIVERS FOR FREESCALE DCU
5832 M:      Stefan Agner <stefan@agner.ch>
5833 M:      Alison Wang <alison.wang@nxp.com>
5834 L:      dri-devel@lists.freedesktop.org
5835 S:      Supported
5836 T:      git git://anongit.freedesktop.org/drm/drm-misc
5837 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5838 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5839 F:      drivers/gpu/drm/fsl-dcu/
5840
5841 DRM DRIVERS FOR FREESCALE IMX
5842 M:      Philipp Zabel <p.zabel@pengutronix.de>
5843 L:      dri-devel@lists.freedesktop.org
5844 S:      Maintained
5845 F:      Documentation/devicetree/bindings/display/imx/
5846 F:      drivers/gpu/drm/imx/
5847 F:      drivers/gpu/ipu-v3/
5848
5849 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5850 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5851 L:      dri-devel@lists.freedesktop.org
5852 S:      Maintained
5853 T:      git git://github.com/patjak/drm-gma500
5854 F:      drivers/gpu/drm/gma500/
5855
5856 DRM DRIVERS FOR HISILICON
5857 M:      Xinliang Liu <xinliang.liu@linaro.org>
5858 M:      Tian Tao  <tiantao6@hisilicon.com>
5859 R:      John Stultz <john.stultz@linaro.org>
5860 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5861 R:      Chen Feng <puck.chen@hisilicon.com>
5862 L:      dri-devel@lists.freedesktop.org
5863 S:      Maintained
5864 T:      git git://anongit.freedesktop.org/drm/drm-misc
5865 F:      Documentation/devicetree/bindings/display/hisilicon/
5866 F:      drivers/gpu/drm/hisilicon/
5867
5868 DRM DRIVERS FOR LIMA
5869 M:      Qiang Yu <yuq825@gmail.com>
5870 L:      dri-devel@lists.freedesktop.org
5871 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5872 S:      Maintained
5873 T:      git git://anongit.freedesktop.org/drm/drm-misc
5874 F:      drivers/gpu/drm/lima/
5875 F:      include/uapi/drm/lima_drm.h
5876
5877 DRM DRIVERS FOR MEDIATEK
5878 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5879 M:      Philipp Zabel <p.zabel@pengutronix.de>
5880 L:      dri-devel@lists.freedesktop.org
5881 S:      Supported
5882 F:      Documentation/devicetree/bindings/display/mediatek/
5883 F:      drivers/gpu/drm/mediatek/
5884 F:      drivers/phy/mediatek/phy-mtk-hdmi*
5885 F:      drivers/phy/mediatek/phy-mtk-mipi*
5886
5887 DRM DRIVERS FOR NVIDIA TEGRA
5888 M:      Thierry Reding <thierry.reding@gmail.com>
5889 L:      dri-devel@lists.freedesktop.org
5890 L:      linux-tegra@vger.kernel.org
5891 S:      Supported
5892 T:      git git://anongit.freedesktop.org/tegra/linux.git
5893 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5894 F:      drivers/gpu/drm/tegra/
5895 F:      drivers/gpu/host1x/
5896 F:      include/linux/host1x.h
5897 F:      include/uapi/drm/tegra_drm.h
5898
5899 DRM DRIVERS FOR RENESAS
5900 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5901 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5902 L:      dri-devel@lists.freedesktop.org
5903 L:      linux-renesas-soc@vger.kernel.org
5904 S:      Supported
5905 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5906 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5907 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
5908 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5909 F:      drivers/gpu/drm/rcar-du/
5910 F:      drivers/gpu/drm/shmobile/
5911 F:      include/linux/platform_data/shmob_drm.h
5912
5913 DRM DRIVERS FOR ROCKCHIP
5914 M:      Sandy Huang <hjc@rock-chips.com>
5915 M:      Heiko Stübner <heiko@sntech.de>
5916 L:      dri-devel@lists.freedesktop.org
5917 S:      Maintained
5918 T:      git git://anongit.freedesktop.org/drm/drm-misc
5919 F:      Documentation/devicetree/bindings/display/rockchip/
5920 F:      drivers/gpu/drm/rockchip/
5921
5922 DRM DRIVERS FOR STI
5923 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5924 M:      Vincent Abriou <vincent.abriou@st.com>
5925 L:      dri-devel@lists.freedesktop.org
5926 S:      Maintained
5927 T:      git git://anongit.freedesktop.org/drm/drm-misc
5928 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5929 F:      drivers/gpu/drm/sti
5930
5931 DRM DRIVERS FOR STM
5932 M:      Yannick Fertre <yannick.fertre@st.com>
5933 M:      Philippe Cornu <philippe.cornu@st.com>
5934 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5935 M:      Vincent Abriou <vincent.abriou@st.com>
5936 L:      dri-devel@lists.freedesktop.org
5937 S:      Maintained
5938 T:      git git://anongit.freedesktop.org/drm/drm-misc
5939 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5940 F:      drivers/gpu/drm/stm
5941
5942 DRM DRIVERS FOR TI KEYSTONE
5943 M:      Jyri Sarha <jsarha@ti.com>
5944 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5945 L:      dri-devel@lists.freedesktop.org
5946 S:      Maintained
5947 T:      git git://anongit.freedesktop.org/drm/drm-misc
5948 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5949 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5950 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5951 F:      drivers/gpu/drm/tidss/
5952
5953 DRM DRIVERS FOR TI LCDC
5954 M:      Jyri Sarha <jsarha@ti.com>
5955 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5956 L:      dri-devel@lists.freedesktop.org
5957 S:      Maintained
5958 F:      Documentation/devicetree/bindings/display/tilcdc/
5959 F:      drivers/gpu/drm/tilcdc/
5960
5961 DRM DRIVERS FOR TI OMAP
5962 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5963 L:      dri-devel@lists.freedesktop.org
5964 S:      Maintained
5965 F:      Documentation/devicetree/bindings/display/ti/
5966 F:      drivers/gpu/drm/omapdrm/
5967
5968 DRM DRIVERS FOR V3D
5969 M:      Eric Anholt <eric@anholt.net>
5970 S:      Supported
5971 T:      git git://anongit.freedesktop.org/drm/drm-misc
5972 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5973 F:      drivers/gpu/drm/v3d/
5974 F:      include/uapi/drm/v3d_drm.h
5975
5976 DRM DRIVERS FOR VC4
5977 M:      Eric Anholt <eric@anholt.net>
5978 M:      Maxime Ripard <mripard@kernel.org>
5979 S:      Supported
5980 T:      git git://github.com/anholt/linux
5981 T:      git git://anongit.freedesktop.org/drm/drm-misc
5982 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
5983 F:      drivers/gpu/drm/vc4/
5984 F:      include/uapi/drm/vc4_drm.h
5985
5986 DRM DRIVERS FOR VIVANTE GPU IP
5987 M:      Lucas Stach <l.stach@pengutronix.de>
5988 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5989 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5990 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5991 L:      dri-devel@lists.freedesktop.org
5992 S:      Maintained
5993 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5994 F:      drivers/gpu/drm/etnaviv/
5995 F:      include/uapi/drm/etnaviv_drm.h
5996
5997 DRM DRIVERS FOR XEN
5998 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5999 L:      dri-devel@lists.freedesktop.org
6000 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6001 S:      Supported
6002 T:      git git://anongit.freedesktop.org/drm/drm-misc
6003 F:      Documentation/gpu/xen-front.rst
6004 F:      drivers/gpu/drm/xen/
6005
6006 DRM DRIVERS FOR XILINX
6007 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6008 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6009 L:      dri-devel@lists.freedesktop.org
6010 S:      Maintained
6011 T:      git git://anongit.freedesktop.org/drm/drm-misc
6012 F:      Documentation/devicetree/bindings/display/xlnx/
6013 F:      drivers/gpu/drm/xlnx/
6014
6015 DRM DRIVERS FOR ZTE ZX
6016 M:      Shawn Guo <shawnguo@kernel.org>
6017 L:      dri-devel@lists.freedesktop.org
6018 S:      Maintained
6019 T:      git git://anongit.freedesktop.org/drm/drm-misc
6020 F:      Documentation/devicetree/bindings/display/zte,vou.txt
6021 F:      drivers/gpu/drm/zte/
6022
6023 DRM PANEL DRIVERS
6024 M:      Thierry Reding <thierry.reding@gmail.com>
6025 R:      Sam Ravnborg <sam@ravnborg.org>
6026 L:      dri-devel@lists.freedesktop.org
6027 S:      Maintained
6028 T:      git git://anongit.freedesktop.org/drm/drm-misc
6029 F:      Documentation/devicetree/bindings/display/panel/
6030 F:      drivers/gpu/drm/drm_panel.c
6031 F:      drivers/gpu/drm/panel/
6032 F:      include/drm/drm_panel.h
6033
6034 DRM TTM SUBSYSTEM
6035 M:      Christian Koenig <christian.koenig@amd.com>
6036 M:      Huang Rui <ray.huang@amd.com>
6037 L:      dri-devel@lists.freedesktop.org
6038 S:      Maintained
6039 T:      git git://people.freedesktop.org/~agd5f/linux
6040 F:      drivers/gpu/drm/ttm/
6041 F:      include/drm/ttm/
6042
6043 DSBR100 USB FM RADIO DRIVER
6044 M:      Alexey Klimov <klimov.linux@gmail.com>
6045 L:      linux-media@vger.kernel.org
6046 S:      Maintained
6047 T:      git git://linuxtv.org/media_tree.git
6048 F:      drivers/media/radio/dsbr100.c
6049
6050 DT3155 MEDIA DRIVER
6051 M:      Hans Verkuil <hverkuil@xs4all.nl>
6052 L:      linux-media@vger.kernel.org
6053 S:      Odd Fixes
6054 W:      https://linuxtv.org
6055 T:      git git://linuxtv.org/media_tree.git
6056 F:      drivers/media/pci/dt3155/
6057
6058 DVB_USB_AF9015 MEDIA DRIVER
6059 M:      Antti Palosaari <crope@iki.fi>
6060 L:      linux-media@vger.kernel.org
6061 S:      Maintained
6062 W:      https://linuxtv.org
6063 W:      http://palosaari.fi/linux/
6064 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6065 T:      git git://linuxtv.org/anttip/media_tree.git
6066 F:      drivers/media/usb/dvb-usb-v2/af9015*
6067
6068 DVB_USB_AF9035 MEDIA DRIVER
6069 M:      Antti Palosaari <crope@iki.fi>
6070 L:      linux-media@vger.kernel.org
6071 S:      Maintained
6072 W:      https://linuxtv.org
6073 W:      http://palosaari.fi/linux/
6074 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6075 T:      git git://linuxtv.org/anttip/media_tree.git
6076 F:      drivers/media/usb/dvb-usb-v2/af9035*
6077
6078 DVB_USB_ANYSEE MEDIA DRIVER
6079 M:      Antti Palosaari <crope@iki.fi>
6080 L:      linux-media@vger.kernel.org
6081 S:      Maintained
6082 W:      https://linuxtv.org
6083 W:      http://palosaari.fi/linux/
6084 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6085 T:      git git://linuxtv.org/anttip/media_tree.git
6086 F:      drivers/media/usb/dvb-usb-v2/anysee*
6087
6088 DVB_USB_AU6610 MEDIA DRIVER
6089 M:      Antti Palosaari <crope@iki.fi>
6090 L:      linux-media@vger.kernel.org
6091 S:      Maintained
6092 W:      https://linuxtv.org
6093 W:      http://palosaari.fi/linux/
6094 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6095 T:      git git://linuxtv.org/anttip/media_tree.git
6096 F:      drivers/media/usb/dvb-usb-v2/au6610*
6097
6098 DVB_USB_CE6230 MEDIA DRIVER
6099 M:      Antti Palosaari <crope@iki.fi>
6100 L:      linux-media@vger.kernel.org
6101 S:      Maintained
6102 W:      https://linuxtv.org
6103 W:      http://palosaari.fi/linux/
6104 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6105 T:      git git://linuxtv.org/anttip/media_tree.git
6106 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6107
6108 DVB_USB_CXUSB MEDIA DRIVER
6109 M:      Michael Krufky <mkrufky@linuxtv.org>
6110 L:      linux-media@vger.kernel.org
6111 S:      Maintained
6112 W:      https://linuxtv.org
6113 W:      http://github.com/mkrufky
6114 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6115 T:      git git://linuxtv.org/media_tree.git
6116 F:      drivers/media/usb/dvb-usb/cxusb*
6117
6118 DVB_USB_EC168 MEDIA DRIVER
6119 M:      Antti Palosaari <crope@iki.fi>
6120 L:      linux-media@vger.kernel.org
6121 S:      Maintained
6122 W:      https://linuxtv.org
6123 W:      http://palosaari.fi/linux/
6124 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6125 T:      git git://linuxtv.org/anttip/media_tree.git
6126 F:      drivers/media/usb/dvb-usb-v2/ec168*
6127
6128 DVB_USB_GL861 MEDIA DRIVER
6129 M:      Antti Palosaari <crope@iki.fi>
6130 L:      linux-media@vger.kernel.org
6131 S:      Maintained
6132 W:      https://linuxtv.org
6133 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6134 T:      git git://linuxtv.org/anttip/media_tree.git
6135 F:      drivers/media/usb/dvb-usb-v2/gl861*
6136
6137 DVB_USB_MXL111SF MEDIA DRIVER
6138 M:      Michael Krufky <mkrufky@linuxtv.org>
6139 L:      linux-media@vger.kernel.org
6140 S:      Maintained
6141 W:      https://linuxtv.org
6142 W:      http://github.com/mkrufky
6143 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6144 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6145 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6146
6147 DVB_USB_RTL28XXU MEDIA DRIVER
6148 M:      Antti Palosaari <crope@iki.fi>
6149 L:      linux-media@vger.kernel.org
6150 S:      Maintained
6151 W:      https://linuxtv.org
6152 W:      http://palosaari.fi/linux/
6153 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6154 T:      git git://linuxtv.org/anttip/media_tree.git
6155 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6156
6157 DVB_USB_V2 MEDIA DRIVER
6158 M:      Antti Palosaari <crope@iki.fi>
6159 L:      linux-media@vger.kernel.org
6160 S:      Maintained
6161 W:      https://linuxtv.org
6162 W:      http://palosaari.fi/linux/
6163 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6164 T:      git git://linuxtv.org/anttip/media_tree.git
6165 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6166 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6167
6168 DYNAMIC DEBUG
6169 M:      Jason Baron <jbaron@akamai.com>
6170 S:      Maintained
6171 F:      include/linux/dynamic_debug.h
6172 F:      lib/dynamic_debug.c
6173
6174 DYNAMIC INTERRUPT MODERATION
6175 M:      Tal Gilboa <talgi@nvidia.com>
6176 S:      Maintained
6177 F:      Documentation/networking/net_dim.rst
6178 F:      include/linux/dim.h
6179 F:      lib/dim/
6180
6181 DZ DECSTATION DZ11 SERIAL DRIVER
6182 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
6183 S:      Maintained
6184 F:      drivers/tty/serial/dz.*
6185
6186 E3X0 POWER BUTTON DRIVER
6187 M:      Moritz Fischer <moritz.fischer@ettus.com>
6188 L:      usrp-users@lists.ettus.com
6189 S:      Supported
6190 W:      http://www.ettus.com
6191 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6192 F:      drivers/input/misc/e3x0-button.c
6193
6194 E4000 MEDIA DRIVER
6195 M:      Antti Palosaari <crope@iki.fi>
6196 L:      linux-media@vger.kernel.org
6197 S:      Maintained
6198 W:      https://linuxtv.org
6199 W:      http://palosaari.fi/linux/
6200 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6201 T:      git git://linuxtv.org/anttip/media_tree.git
6202 F:      drivers/media/tuners/e4000*
6203
6204 EARTH_PT1 MEDIA DRIVER
6205 M:      Akihiro Tsukada <tskd08@gmail.com>
6206 L:      linux-media@vger.kernel.org
6207 S:      Odd Fixes
6208 F:      drivers/media/pci/pt1/
6209
6210 EARTH_PT3 MEDIA DRIVER
6211 M:      Akihiro Tsukada <tskd08@gmail.com>
6212 L:      linux-media@vger.kernel.org
6213 S:      Odd Fixes
6214 F:      drivers/media/pci/pt3/
6215
6216 EC100 MEDIA DRIVER
6217 M:      Antti Palosaari <crope@iki.fi>
6218 L:      linux-media@vger.kernel.org
6219 S:      Maintained
6220 W:      https://linuxtv.org
6221 W:      http://palosaari.fi/linux/
6222 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6223 T:      git git://linuxtv.org/anttip/media_tree.git
6224 F:      drivers/media/dvb-frontends/ec100*
6225
6226 ECRYPT FILE SYSTEM
6227 M:      Tyler Hicks <code@tyhicks.com>
6228 L:      ecryptfs@vger.kernel.org
6229 S:      Odd Fixes
6230 W:      http://ecryptfs.org
6231 W:      https://launchpad.net/ecryptfs
6232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6233 F:      Documentation/filesystems/ecryptfs.rst
6234 F:      fs/ecryptfs/
6235
6236 EDAC-AMD64
6237 M:      Borislav Petkov <bp@alien8.de>
6238 L:      linux-edac@vger.kernel.org
6239 S:      Maintained
6240 F:      drivers/edac/amd64_edac*
6241
6242 EDAC-ARMADA
6243 M:      Jan Luebbe <jlu@pengutronix.de>
6244 L:      linux-edac@vger.kernel.org
6245 S:      Maintained
6246 F:      drivers/edac/armada_xp_*
6247
6248 EDAC-AST2500
6249 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6250 S:      Supported
6251 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6252 F:      drivers/edac/aspeed_edac.c
6253
6254 EDAC-BLUEFIELD
6255 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6256 S:      Supported
6257 F:      drivers/edac/bluefield_edac.c
6258
6259 EDAC-CALXEDA
6260 M:      Andre Przywara <andre.przywara@arm.com>
6261 L:      linux-edac@vger.kernel.org
6262 S:      Maintained
6263 F:      drivers/edac/highbank*
6264
6265 EDAC-CAVIUM OCTEON
6266 M:      Ralf Baechle <ralf@linux-mips.org>
6267 L:      linux-edac@vger.kernel.org
6268 L:      linux-mips@vger.kernel.org
6269 S:      Supported
6270 F:      drivers/edac/octeon_edac*
6271
6272 EDAC-CAVIUM THUNDERX
6273 M:      Robert Richter <rric@kernel.org>
6274 L:      linux-edac@vger.kernel.org
6275 S:      Odd Fixes
6276 F:      drivers/edac/thunderx_edac*
6277
6278 EDAC-CORE
6279 M:      Borislav Petkov <bp@alien8.de>
6280 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6281 M:      Tony Luck <tony.luck@intel.com>
6282 R:      James Morse <james.morse@arm.com>
6283 R:      Robert Richter <rric@kernel.org>
6284 L:      linux-edac@vger.kernel.org
6285 S:      Supported
6286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6287 F:      Documentation/admin-guide/ras.rst
6288 F:      Documentation/driver-api/edac.rst
6289 F:      drivers/edac/
6290 F:      include/linux/edac.h
6291
6292 EDAC-DMC520
6293 M:      Lei Wang <lewan@microsoft.com>
6294 L:      linux-edac@vger.kernel.org
6295 S:      Supported
6296 F:      drivers/edac/dmc520_edac.c
6297
6298 EDAC-E752X
6299 M:      Mark Gross <mark.gross@intel.com>
6300 L:      linux-edac@vger.kernel.org
6301 S:      Maintained
6302 F:      drivers/edac/e752x_edac.c
6303
6304 EDAC-E7XXX
6305 L:      linux-edac@vger.kernel.org
6306 S:      Maintained
6307 F:      drivers/edac/e7xxx_edac.c
6308
6309 EDAC-FSL_DDR
6310 M:      York Sun <york.sun@nxp.com>
6311 L:      linux-edac@vger.kernel.org
6312 S:      Maintained
6313 F:      drivers/edac/fsl_ddr_edac.*
6314
6315 EDAC-GHES
6316 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6317 L:      linux-edac@vger.kernel.org
6318 S:      Maintained
6319 F:      drivers/edac/ghes_edac.c
6320
6321 EDAC-I10NM
6322 M:      Tony Luck <tony.luck@intel.com>
6323 L:      linux-edac@vger.kernel.org
6324 S:      Maintained
6325 F:      drivers/edac/i10nm_base.c
6326
6327 EDAC-I3000
6328 L:      linux-edac@vger.kernel.org
6329 S:      Orphan
6330 F:      drivers/edac/i3000_edac.c
6331
6332 EDAC-I5000
6333 L:      linux-edac@vger.kernel.org
6334 S:      Maintained
6335 F:      drivers/edac/i5000_edac.c
6336
6337 EDAC-I5400
6338 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6339 L:      linux-edac@vger.kernel.org
6340 S:      Maintained
6341 F:      drivers/edac/i5400_edac.c
6342
6343 EDAC-I7300
6344 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6345 L:      linux-edac@vger.kernel.org
6346 S:      Maintained
6347 F:      drivers/edac/i7300_edac.c
6348
6349 EDAC-I7CORE
6350 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6351 L:      linux-edac@vger.kernel.org
6352 S:      Maintained
6353 F:      drivers/edac/i7core_edac.c
6354
6355 EDAC-I82443BXGX
6356 M:      Tim Small <tim@buttersideup.com>
6357 L:      linux-edac@vger.kernel.org
6358 S:      Maintained
6359 F:      drivers/edac/i82443bxgx_edac.c
6360
6361 EDAC-I82975X
6362 M:      "Arvind R." <arvino55@gmail.com>
6363 L:      linux-edac@vger.kernel.org
6364 S:      Maintained
6365 F:      drivers/edac/i82975x_edac.c
6366
6367 EDAC-IE31200
6368 M:      Jason Baron <jbaron@akamai.com>
6369 L:      linux-edac@vger.kernel.org
6370 S:      Maintained
6371 F:      drivers/edac/ie31200_edac.c
6372
6373 EDAC-MPC85XX
6374 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6375 L:      linux-edac@vger.kernel.org
6376 S:      Maintained
6377 F:      drivers/edac/mpc85xx_edac.[ch]
6378
6379 EDAC-PASEMI
6380 M:      Egor Martovetsky <egor@pasemi.com>
6381 L:      linux-edac@vger.kernel.org
6382 S:      Maintained
6383 F:      drivers/edac/pasemi_edac.c
6384
6385 EDAC-PND2
6386 M:      Tony Luck <tony.luck@intel.com>
6387 L:      linux-edac@vger.kernel.org
6388 S:      Maintained
6389 F:      drivers/edac/pnd2_edac.[ch]
6390
6391 EDAC-QCOM
6392 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6393 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6394 L:      linux-arm-msm@vger.kernel.org
6395 L:      linux-edac@vger.kernel.org
6396 S:      Maintained
6397 F:      drivers/edac/qcom_edac.c
6398
6399 EDAC-R82600
6400 M:      Tim Small <tim@buttersideup.com>
6401 L:      linux-edac@vger.kernel.org
6402 S:      Maintained
6403 F:      drivers/edac/r82600_edac.c
6404
6405 EDAC-SBRIDGE
6406 M:      Tony Luck <tony.luck@intel.com>
6407 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6408 L:      linux-edac@vger.kernel.org
6409 S:      Maintained
6410 F:      drivers/edac/sb_edac.c
6411
6412 EDAC-SIFIVE
6413 M:      Yash Shah <yash.shah@sifive.com>
6414 L:      linux-edac@vger.kernel.org
6415 S:      Supported
6416 F:      drivers/edac/sifive_edac.c
6417
6418 EDAC-SKYLAKE
6419 M:      Tony Luck <tony.luck@intel.com>
6420 L:      linux-edac@vger.kernel.org
6421 S:      Maintained
6422 F:      drivers/edac/skx_*.c
6423
6424 EDAC-TI
6425 M:      Tero Kristo <t-kristo@ti.com>
6426 L:      linux-edac@vger.kernel.org
6427 S:      Maintained
6428 F:      drivers/edac/ti_edac.c
6429
6430 EDIROL UA-101/UA-1000 DRIVER
6431 M:      Clemens Ladisch <clemens@ladisch.de>
6432 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6433 S:      Maintained
6434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6435 F:      sound/usb/misc/ua101.c
6436
6437 EFI TEST DRIVER
6438 M:      Ivan Hu <ivan.hu@canonical.com>
6439 M:      Ard Biesheuvel <ardb@kernel.org>
6440 L:      linux-efi@vger.kernel.org
6441 S:      Maintained
6442 F:      drivers/firmware/efi/test/
6443
6444 EFI VARIABLE FILESYSTEM
6445 M:      Matthew Garrett <matthew.garrett@nebula.com>
6446 M:      Jeremy Kerr <jk@ozlabs.org>
6447 M:      Ard Biesheuvel <ardb@kernel.org>
6448 L:      linux-efi@vger.kernel.org
6449 S:      Maintained
6450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6451 F:      fs/efivarfs/
6452
6453 EFIFB FRAMEBUFFER DRIVER
6454 M:      Peter Jones <pjones@redhat.com>
6455 L:      linux-fbdev@vger.kernel.org
6456 S:      Maintained
6457 F:      drivers/video/fbdev/efifb.c
6458
6459 EFS FILESYSTEM
6460 S:      Orphan
6461 W:      http://aeschi.ch.eu.org/efs/
6462 F:      fs/efs/
6463
6464 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6465 M:      Douglas Miller <dougmill@linux.ibm.com>
6466 L:      netdev@vger.kernel.org
6467 S:      Maintained
6468 F:      drivers/net/ethernet/ibm/ehea/
6469
6470 EM28XX VIDEO4LINUX DRIVER
6471 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6472 L:      linux-media@vger.kernel.org
6473 S:      Maintained
6474 W:      https://linuxtv.org
6475 T:      git git://linuxtv.org/media_tree.git
6476 F:      Documentation/admin-guide/media/em28xx*
6477 F:      drivers/media/usb/em28xx/
6478
6479 EMBEDDED LINUX
6480 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6481 M:      Matt Mackall <mpm@selenic.com>
6482 M:      David Woodhouse <dwmw2@infradead.org>
6483 L:      linux-embedded@vger.kernel.org
6484 S:      Maintained
6485
6486 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6487 M:      Adrian Hunter <adrian.hunter@intel.com>
6488 M:      Ritesh Harjani <riteshh@codeaurora.org>
6489 M:      Asutosh Das <asutoshd@codeaurora.org>
6490 L:      linux-mmc@vger.kernel.org
6491 S:      Maintained
6492 F:      drivers/mmc/host/cqhci*
6493
6494 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6495 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6496 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6497 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6498 L:      linux-scsi@vger.kernel.org
6499 S:      Supported
6500 W:      http://www.broadcom.com
6501 F:      drivers/scsi/be2iscsi/
6502
6503 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6504 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6505 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6506 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6507 L:      netdev@vger.kernel.org
6508 S:      Supported
6509 W:      http://www.emulex.com
6510 F:      drivers/net/ethernet/emulex/benet/
6511
6512 EMULEX ONECONNECT ROCE DRIVER
6513 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6514 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6515 L:      linux-rdma@vger.kernel.org
6516 S:      Odd Fixes
6517 W:      http://www.broadcom.com
6518 F:      drivers/infiniband/hw/ocrdma/
6519 F:      include/uapi/rdma/ocrdma-abi.h
6520
6521 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6522 M:      James Smart <james.smart@broadcom.com>
6523 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6524 L:      linux-scsi@vger.kernel.org
6525 S:      Supported
6526 W:      http://www.broadcom.com
6527 F:      drivers/scsi/lpfc/
6528
6529 ENE CB710 FLASH CARD READER DRIVER
6530 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6531 S:      Maintained
6532 F:      drivers/misc/cb710/
6533 F:      drivers/mmc/host/cb710-mmc.*
6534 F:      include/linux/cb710.h
6535
6536 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6537 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6538 S:      Maintained
6539 F:      drivers/media/rc/ene_ir.*
6540
6541 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6542 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6543 L:      linuxppc-dev@lists.ozlabs.org
6544 S:      Maintained
6545 F:      drivers/tty/ehv_bytechan.c
6546
6547 EPSON S1D13XXX FRAMEBUFFER DRIVER
6548 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6549 S:      Maintained
6550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6551 F:      drivers/video/fbdev/s1d13xxxfb.c
6552 F:      include/video/s1d13xxxfb.h
6553
6554 EROFS FILE SYSTEM
6555 M:      Gao Xiang <xiang@kernel.org>
6556 M:      Chao Yu <yuchao0@huawei.com>
6557 L:      linux-erofs@lists.ozlabs.org
6558 S:      Maintained
6559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6560 F:      Documentation/filesystems/erofs.rst
6561 F:      fs/erofs/
6562 F:      include/trace/events/erofs.h
6563
6564 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6565 M:      Jeff Layton <jlayton@kernel.org>
6566 S:      Maintained
6567 F:      include/linux/errseq.h
6568 F:      lib/errseq.c
6569
6570 ET131X NETWORK DRIVER
6571 M:      Mark Einon <mark.einon@gmail.com>
6572 S:      Odd Fixes
6573 F:      drivers/net/ethernet/agere/
6574
6575 ETHERNET BRIDGE
6576 M:      Roopa Prabhu <roopa@nvidia.com>
6577 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6578 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6579 L:      netdev@vger.kernel.org
6580 S:      Maintained
6581 W:      http://www.linuxfoundation.org/en/Net:Bridge
6582 F:      include/linux/netfilter_bridge/
6583 F:      net/bridge/
6584
6585 ETHERNET PHY LIBRARY
6586 M:      Andrew Lunn <andrew@lunn.ch>
6587 M:      Heiner Kallweit <hkallweit1@gmail.com>
6588 R:      Russell King <linux@armlinux.org.uk>
6589 L:      netdev@vger.kernel.org
6590 S:      Maintained
6591 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6592 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6593 F:      Documentation/devicetree/bindings/net/mdio*
6594 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6595 F:      Documentation/networking/phy.rst
6596 F:      drivers/net/mdio/
6597 F:      drivers/net/mdio/of_mdio.c
6598 F:      drivers/net/pcs/
6599 F:      drivers/net/phy/
6600 F:      drivers/of/of_net.c
6601 F:      include/dt-bindings/net/qca-ar803x.h
6602 F:      include/linux/*mdio*.h
6603 F:      include/linux/mdio/*.h
6604 F:      include/linux/of_net.h
6605 F:      include/linux/phy.h
6606 F:      include/linux/phy_fixed.h
6607 F:      include/linux/platform_data/mdio-bcm-unimac.h
6608 F:      include/linux/platform_data/mdio-gpio.h
6609 F:      include/trace/events/mdio.h
6610 F:      include/uapi/linux/mdio.h
6611 F:      include/uapi/linux/mii.h
6612
6613 EXFAT FILE SYSTEM
6614 M:      Namjae Jeon <namjae.jeon@samsung.com>
6615 M:      Sungjong Seo <sj1557.seo@samsung.com>
6616 L:      linux-fsdevel@vger.kernel.org
6617 S:      Maintained
6618 F:      fs/exfat/
6619
6620 EXT2 FILE SYSTEM
6621 M:      Jan Kara <jack@suse.com>
6622 L:      linux-ext4@vger.kernel.org
6623 S:      Maintained
6624 F:      Documentation/filesystems/ext2.rst
6625 F:      fs/ext2/
6626 F:      include/linux/ext2*
6627
6628 EXT4 FILE SYSTEM
6629 M:      "Theodore Ts'o" <tytso@mit.edu>
6630 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6631 L:      linux-ext4@vger.kernel.org
6632 S:      Maintained
6633 W:      http://ext4.wiki.kernel.org
6634 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6636 F:      Documentation/filesystems/ext4/
6637 F:      fs/ext4/
6638 F:      include/trace/events/ext4.h
6639
6640 Extended Verification Module (EVM)
6641 M:      Mimi Zohar <zohar@linux.ibm.com>
6642 L:      linux-integrity@vger.kernel.org
6643 S:      Supported
6644 F:      security/integrity/evm/
6645
6646 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6647 M:      Ard Biesheuvel <ardb@kernel.org>
6648 L:      linux-efi@vger.kernel.org
6649 S:      Maintained
6650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6651 F:      Documentation/admin-guide/efi-stub.rst
6652 F:      arch/*/include/asm/efi.h
6653 F:      arch/*/kernel/efi.c
6654 F:      arch/arm/boot/compressed/efi-header.S
6655 F:      arch/arm64/kernel/efi-entry.S
6656 F:      arch/x86/platform/efi/
6657 F:      drivers/firmware/efi/
6658 F:      include/linux/efi*.h
6659
6660 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6661 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6662 M:      Chanwoo Choi <cw00.choi@samsung.com>
6663 L:      linux-kernel@vger.kernel.org
6664 S:      Maintained
6665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6666 F:      Documentation/devicetree/bindings/extcon/
6667 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6668 F:      drivers/extcon/
6669 F:      include/linux/extcon.h
6670 F:      include/linux/extcon/
6671
6672 EXTRA BOOT CONFIG
6673 M:      Masami Hiramatsu <mhiramat@kernel.org>
6674 S:      Maintained
6675 F:      Documentation/admin-guide/bootconfig.rst
6676 F:      fs/proc/bootconfig.c
6677 F:      include/linux/bootconfig.h
6678 F:      lib/bootconfig.c
6679 F:      tools/bootconfig/*
6680 F:      tools/bootconfig/scripts/*
6681
6682 EXYNOS DP DRIVER
6683 M:      Jingoo Han <jingoohan1@gmail.com>
6684 L:      dri-devel@lists.freedesktop.org
6685 S:      Maintained
6686 F:      drivers/gpu/drm/exynos/exynos_dp*
6687
6688 EXYNOS SYSMMU (IOMMU) driver
6689 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6690 L:      iommu@lists.linux-foundation.org
6691 S:      Maintained
6692 F:      drivers/iommu/exynos-iommu.c
6693
6694 F2FS FILE SYSTEM
6695 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6696 M:      Chao Yu <yuchao0@huawei.com>
6697 L:      linux-f2fs-devel@lists.sourceforge.net
6698 S:      Maintained
6699 W:      https://f2fs.wiki.kernel.org/
6700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6701 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6702 F:      Documentation/filesystems/f2fs.rst
6703 F:      fs/f2fs/
6704 F:      include/linux/f2fs_fs.h
6705 F:      include/trace/events/f2fs.h
6706
6707 F71805F HARDWARE MONITORING DRIVER
6708 M:      Jean Delvare <jdelvare@suse.com>
6709 L:      linux-hwmon@vger.kernel.org
6710 S:      Maintained
6711 F:      Documentation/hwmon/f71805f.rst
6712 F:      drivers/hwmon/f71805f.c
6713
6714 FADDR2LINE
6715 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6716 S:      Maintained
6717 F:      scripts/faddr2line
6718
6719 FAILOVER MODULE
6720 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6721 L:      netdev@vger.kernel.org
6722 S:      Supported
6723 F:      Documentation/networking/failover.rst
6724 F:      include/net/failover.h
6725 F:      net/core/failover.c
6726
6727 FANOTIFY
6728 M:      Jan Kara <jack@suse.cz>
6729 R:      Amir Goldstein <amir73il@gmail.com>
6730 L:      linux-fsdevel@vger.kernel.org
6731 S:      Maintained
6732 F:      fs/notify/fanotify/
6733 F:      include/linux/fanotify.h
6734 F:      include/uapi/linux/fanotify.h
6735
6736 FARSYNC SYNCHRONOUS DRIVER
6737 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6738 S:      Supported
6739 W:      http://www.farsite.co.uk/
6740 F:      drivers/net/wan/farsync.*
6741
6742 FAULT INJECTION SUPPORT
6743 M:      Akinobu Mita <akinobu.mita@gmail.com>
6744 S:      Supported
6745 F:      Documentation/fault-injection/
6746 F:      lib/fault-inject.c
6747
6748 FBTFT Framebuffer drivers
6749 L:      dri-devel@lists.freedesktop.org
6750 L:      linux-fbdev@vger.kernel.org
6751 S:      Orphan
6752 F:      drivers/staging/fbtft/
6753
6754 FC0011 TUNER DRIVER
6755 M:      Michael Buesch <m@bues.ch>
6756 L:      linux-media@vger.kernel.org
6757 S:      Maintained
6758 F:      drivers/media/tuners/fc0011.c
6759 F:      drivers/media/tuners/fc0011.h
6760
6761 FC2580 MEDIA DRIVER
6762 M:      Antti Palosaari <crope@iki.fi>
6763 L:      linux-media@vger.kernel.org
6764 S:      Maintained
6765 W:      https://linuxtv.org
6766 W:      http://palosaari.fi/linux/
6767 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6768 T:      git git://linuxtv.org/anttip/media_tree.git
6769 F:      drivers/media/tuners/fc2580*
6770
6771 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6772 M:      Hannes Reinecke <hare@suse.de>
6773 L:      linux-scsi@vger.kernel.org
6774 S:      Supported
6775 W:      www.Open-FCoE.org
6776 F:      drivers/scsi/fcoe/
6777 F:      drivers/scsi/libfc/
6778 F:      include/scsi/fc/
6779 F:      include/scsi/libfc.h
6780 F:      include/scsi/libfcoe.h
6781 F:      include/uapi/scsi/fc/
6782
6783 FILE LOCKING (flock() and fcntl()/lockf())
6784 M:      Jeff Layton <jlayton@kernel.org>
6785 M:      "J. Bruce Fields" <bfields@fieldses.org>
6786 L:      linux-fsdevel@vger.kernel.org
6787 S:      Maintained
6788 F:      fs/fcntl.c
6789 F:      fs/locks.c
6790 F:      include/linux/fcntl.h
6791 F:      include/uapi/linux/fcntl.h
6792
6793 FILESYSTEM DIRECT ACCESS (DAX)
6794 M:      Dan Williams <dan.j.williams@intel.com>
6795 R:      Matthew Wilcox <willy@infradead.org>
6796 R:      Jan Kara <jack@suse.cz>
6797 L:      linux-fsdevel@vger.kernel.org
6798 L:      linux-nvdimm@lists.01.org
6799 S:      Supported
6800 F:      fs/dax.c
6801 F:      include/linux/dax.h
6802 F:      include/trace/events/fs_dax.h
6803
6804 FILESYSTEMS (VFS and infrastructure)
6805 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6806 L:      linux-fsdevel@vger.kernel.org
6807 S:      Maintained
6808 F:      fs/*
6809 F:      include/linux/fs.h
6810 F:      include/linux/fs_types.h
6811 F:      include/uapi/linux/fs.h
6812 F:      include/uapi/linux/openat2.h
6813
6814 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6815 M:      Riku Voipio <riku.voipio@iki.fi>
6816 L:      linux-hwmon@vger.kernel.org
6817 S:      Maintained
6818 F:      drivers/hwmon/f75375s.c
6819 F:      include/linux/f75375s.h
6820
6821 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6822 M:      Clemens Ladisch <clemens@ladisch.de>
6823 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6824 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6825 S:      Maintained
6826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6827 F:      include/uapi/sound/firewire.h
6828 F:      sound/firewire/
6829
6830 FIREWIRE MEDIA DRIVERS (firedtv)
6831 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6832 L:      linux-media@vger.kernel.org
6833 L:      linux1394-devel@lists.sourceforge.net
6834 S:      Maintained
6835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6836 F:      drivers/media/firewire/
6837
6838 FIREWIRE SBP-2 TARGET
6839 M:      Chris Boot <bootc@bootc.net>
6840 L:      linux-scsi@vger.kernel.org
6841 L:      target-devel@vger.kernel.org
6842 L:      linux1394-devel@lists.sourceforge.net
6843 S:      Maintained
6844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6845 F:      drivers/target/sbp/
6846
6847 FIREWIRE SUBSYSTEM
6848 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6849 L:      linux1394-devel@lists.sourceforge.net
6850 S:      Maintained
6851 W:      http://ieee1394.wiki.kernel.org/
6852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6853 F:      drivers/firewire/
6854 F:      include/linux/firewire.h
6855 F:      include/uapi/linux/firewire*.h
6856 F:      tools/firewire/
6857
6858 FIRMWARE LOADER (request_firmware)
6859 M:      Luis Chamberlain <mcgrof@kernel.org>
6860 L:      linux-kernel@vger.kernel.org
6861 S:      Maintained
6862 F:      Documentation/firmware_class/
6863 F:      drivers/base/firmware_loader/
6864 F:      include/linux/firmware.h
6865
6866 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6867 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6868 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6869 S:      Maintained
6870 F:      drivers/block/rsxx/
6871
6872 FLEXTIMER FTM-QUADDEC DRIVER
6873 M:      Patrick Havelange <patrick.havelange@essensium.com>
6874 L:      linux-iio@vger.kernel.org
6875 S:      Maintained
6876 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6877 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6878 F:      drivers/counter/ftm-quaddec.c
6879
6880 FLOPPY DRIVER
6881 M:      Denis Efremov <efremov@linux.com>
6882 L:      linux-block@vger.kernel.org
6883 S:      Odd Fixes
6884 F:      drivers/block/floppy.c
6885
6886 FLYSKY FSIA6B RC RECEIVER
6887 M:      Markus Koch <markus@notsyncing.net>
6888 L:      linux-input@vger.kernel.org
6889 S:      Maintained
6890 F:      drivers/input/joystick/fsia6b.c
6891
6892 FORCEDETH GIGABIT ETHERNET DRIVER
6893 M:      Rain River <rain.1986.08.12@gmail.com>
6894 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
6895 L:      netdev@vger.kernel.org
6896 S:      Maintained
6897 F:      drivers/net/ethernet/nvidia/*
6898
6899 FPGA DFL DRIVERS
6900 M:      Wu Hao <hao.wu@intel.com>
6901 R:      Tom Rix <trix@redhat.com>
6902 L:      linux-fpga@vger.kernel.org
6903 S:      Maintained
6904 F:      Documentation/ABI/testing/sysfs-bus-dfl
6905 F:      Documentation/fpga/dfl.rst
6906 F:      drivers/fpga/dfl*
6907 F:      include/uapi/linux/fpga-dfl.h
6908
6909 FPGA MANAGER FRAMEWORK
6910 M:      Moritz Fischer <mdf@kernel.org>
6911 R:      Tom Rix <trix@redhat.com>
6912 L:      linux-fpga@vger.kernel.org
6913 S:      Maintained
6914 W:      http://www.rocketboards.org
6915 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6917 F:      Documentation/devicetree/bindings/fpga/
6918 F:      Documentation/driver-api/fpga/
6919 F:      Documentation/fpga/
6920 F:      drivers/fpga/
6921 F:      include/linux/fpga/
6922
6923 FPU EMULATOR
6924 M:      Bill Metzenthen <billm@melbpc.org.au>
6925 S:      Maintained
6926 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6927 F:      arch/x86/math-emu/
6928
6929 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6930 L:      netdev@vger.kernel.org
6931 S:      Orphan
6932 F:      drivers/net/wan/dlci.c
6933 F:      drivers/net/wan/sdla.c
6934
6935 FRAMEBUFFER LAYER
6936 L:      dri-devel@lists.freedesktop.org
6937 L:      linux-fbdev@vger.kernel.org
6938 S:      Orphan
6939 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6940 T:      git git://anongit.freedesktop.org/drm/drm-misc
6941 F:      Documentation/fb/
6942 F:      drivers/video/
6943 F:      include/linux/fb.h
6944 F:      include/uapi/linux/fb.h
6945 F:      include/uapi/video/
6946 F:      include/video/
6947
6948 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6949 M:      Horia Geantă <horia.geanta@nxp.com>
6950 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6951 L:      linux-crypto@vger.kernel.org
6952 S:      Maintained
6953 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6954 F:      drivers/crypto/caam/
6955
6956 FREESCALE COLDFIRE M5441X MMC DRIVER
6957 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
6958 L:      linux-mmc@vger.kernel.org
6959 S:      Maintained
6960 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6961 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6962
6963 FREESCALE DIU FRAMEBUFFER DRIVER
6964 M:      Timur Tabi <timur@kernel.org>
6965 L:      linux-fbdev@vger.kernel.org
6966 S:      Maintained
6967 F:      drivers/video/fbdev/fsl-diu-fb.*
6968
6969 FREESCALE DMA DRIVER
6970 M:      Li Yang <leoyang.li@nxp.com>
6971 M:      Zhang Wei <zw@zh-kernel.org>
6972 L:      linuxppc-dev@lists.ozlabs.org
6973 S:      Maintained
6974 F:      drivers/dma/fsldma.*
6975
6976 FREESCALE DSPI DRIVER
6977 M:      Vladimir Oltean <olteanv@gmail.com>
6978 L:      linux-spi@vger.kernel.org
6979 S:      Maintained
6980 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
6981 F:      drivers/spi/spi-fsl-dspi.c
6982 F:      include/linux/spi/spi-fsl-dspi.h
6983
6984 FREESCALE ENETC ETHERNET DRIVERS
6985 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6986 L:      netdev@vger.kernel.org
6987 S:      Maintained
6988 F:      drivers/net/ethernet/freescale/enetc/
6989
6990 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6991 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6992 L:      netdev@vger.kernel.org
6993 S:      Maintained
6994 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6995 F:      drivers/net/ethernet/freescale/gianfar*
6996
6997 FREESCALE GPMI NAND DRIVER
6998 M:      Han Xu <han.xu@nxp.com>
6999 L:      linux-mtd@lists.infradead.org
7000 S:      Maintained
7001 F:      drivers/mtd/nand/raw/gpmi-nand/*
7002
7003 FREESCALE I2C CPM DRIVER
7004 M:      Jochen Friedrich <jochen@scram.de>
7005 L:      linuxppc-dev@lists.ozlabs.org
7006 L:      linux-i2c@vger.kernel.org
7007 S:      Maintained
7008 F:      drivers/i2c/busses/i2c-cpm.c
7009
7010 FREESCALE IMX / MXC FEC DRIVER
7011 M:      Fugang Duan <fugang.duan@nxp.com>
7012 L:      netdev@vger.kernel.org
7013 S:      Maintained
7014 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7015 F:      drivers/net/ethernet/freescale/fec.h
7016 F:      drivers/net/ethernet/freescale/fec_main.c
7017 F:      drivers/net/ethernet/freescale/fec_ptp.c
7018
7019 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7020 M:      Sascha Hauer <s.hauer@pengutronix.de>
7021 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7022 L:      linux-fbdev@vger.kernel.org
7023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7024 S:      Maintained
7025 F:      drivers/video/fbdev/imxfb.c
7026 F:      include/linux/platform_data/video-imxfb.h
7027
7028 FREESCALE IMX DDR PMU DRIVER
7029 M:      Frank Li <Frank.li@nxp.com>
7030 L:      linux-arm-kernel@lists.infradead.org
7031 S:      Maintained
7032 F:      Documentation/admin-guide/perf/imx-ddr.rst
7033 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7034 F:      drivers/perf/fsl_imx8_ddr_perf.c
7035
7036 FREESCALE IMX I2C DRIVER
7037 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7038 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7039 L:      linux-i2c@vger.kernel.org
7040 S:      Maintained
7041 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7042 F:      drivers/i2c/busses/i2c-imx.c
7043
7044 FREESCALE IMX LPI2C DRIVER
7045 M:      Dong Aisheng <aisheng.dong@nxp.com>
7046 L:      linux-i2c@vger.kernel.org
7047 L:      linux-imx@nxp.com
7048 S:      Maintained
7049 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7050 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7051
7052 FREESCALE QORIQ DPAA ETHERNET DRIVER
7053 M:      Madalin Bucur <madalin.bucur@nxp.com>
7054 L:      netdev@vger.kernel.org
7055 S:      Maintained
7056 F:      drivers/net/ethernet/freescale/dpaa
7057
7058 FREESCALE QORIQ DPAA FMAN DRIVER
7059 M:      Madalin Bucur <madalin.bucur@nxp.com>
7060 L:      netdev@vger.kernel.org
7061 S:      Maintained
7062 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7063 F:      drivers/net/ethernet/freescale/fman
7064
7065 FREESCALE QORIQ PTP CLOCK DRIVER
7066 M:      Yangbo Lu <yangbo.lu@nxp.com>
7067 L:      netdev@vger.kernel.org
7068 S:      Maintained
7069 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7070 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7071 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7072 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7073 F:      drivers/ptp/ptp_qoriq.c
7074 F:      drivers/ptp/ptp_qoriq_debugfs.c
7075 F:      include/linux/fsl/ptp_qoriq.h
7076
7077 FREESCALE QUAD SPI DRIVER
7078 M:      Han Xu <han.xu@nxp.com>
7079 L:      linux-spi@vger.kernel.org
7080 S:      Maintained
7081 F:      drivers/spi/spi-fsl-qspi.c
7082
7083 FREESCALE QUICC ENGINE LIBRARY
7084 M:      Qiang Zhao <qiang.zhao@nxp.com>
7085 L:      linuxppc-dev@lists.ozlabs.org
7086 S:      Maintained
7087 F:      drivers/soc/fsl/qe/
7088 F:      include/soc/fsl/*qe*.h
7089 F:      include/soc/fsl/*ucc*.h
7090
7091 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7092 M:      Li Yang <leoyang.li@nxp.com>
7093 L:      netdev@vger.kernel.org
7094 L:      linuxppc-dev@lists.ozlabs.org
7095 S:      Maintained
7096 F:      drivers/net/ethernet/freescale/ucc_geth*
7097
7098 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7099 M:      Zhao Qiang <qiang.zhao@nxp.com>
7100 L:      netdev@vger.kernel.org
7101 L:      linuxppc-dev@lists.ozlabs.org
7102 S:      Maintained
7103 F:      drivers/net/wan/fsl_ucc_hdlc*
7104
7105 FREESCALE QUICC ENGINE UCC UART DRIVER
7106 M:      Timur Tabi <timur@kernel.org>
7107 L:      linuxppc-dev@lists.ozlabs.org
7108 S:      Maintained
7109 F:      drivers/tty/serial/ucc_uart.c
7110
7111 FREESCALE SOC DRIVERS
7112 M:      Li Yang <leoyang.li@nxp.com>
7113 L:      linuxppc-dev@lists.ozlabs.org
7114 L:      linux-arm-kernel@lists.infradead.org
7115 S:      Maintained
7116 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
7117 F:      Documentation/devicetree/bindings/soc/fsl/
7118 F:      drivers/soc/fsl/
7119 F:      include/linux/fsl/
7120
7121 FREESCALE SOC FS_ENET DRIVER
7122 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7123 L:      linuxppc-dev@lists.ozlabs.org
7124 L:      netdev@vger.kernel.org
7125 S:      Maintained
7126 F:      drivers/net/ethernet/freescale/fs_enet/
7127 F:      include/linux/fs_enet_pd.h
7128
7129 FREESCALE SOC SOUND DRIVERS
7130 M:      Timur Tabi <timur@kernel.org>
7131 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7132 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7133 R:      Fabio Estevam <festevam@gmail.com>
7134 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7135 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7136 L:      linuxppc-dev@lists.ozlabs.org
7137 S:      Maintained
7138 F:      sound/soc/fsl/fsl*
7139 F:      sound/soc/fsl/imx*
7140 F:      sound/soc/fsl/mpc8610_hpcd.c
7141
7142 FREESCALE USB PERIPHERAL DRIVERS
7143 M:      Li Yang <leoyang.li@nxp.com>
7144 L:      linux-usb@vger.kernel.org
7145 L:      linuxppc-dev@lists.ozlabs.org
7146 S:      Maintained
7147 F:      drivers/usb/gadget/udc/fsl*
7148
7149 FREESCALE USB PHY DRIVER
7150 M:      Ran Wang <ran.wang_1@nxp.com>
7151 L:      linux-usb@vger.kernel.org
7152 L:      linuxppc-dev@lists.ozlabs.org
7153 S:      Maintained
7154 F:      drivers/usb/phy/phy-fsl-usb*
7155
7156 FREEVXFS FILESYSTEM
7157 M:      Christoph Hellwig <hch@infradead.org>
7158 S:      Maintained
7159 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7160 F:      fs/freevxfs/
7161
7162 FREEZER
7163 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7164 M:      Pavel Machek <pavel@ucw.cz>
7165 L:      linux-pm@vger.kernel.org
7166 S:      Supported
7167 F:      Documentation/power/freezing-of-tasks.rst
7168 F:      include/linux/freezer.h
7169 F:      kernel/freezer.c
7170
7171 FRONTSWAP API
7172 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7173 L:      linux-kernel@vger.kernel.org
7174 S:      Maintained
7175 F:      include/linux/frontswap.h
7176 F:      mm/frontswap.c
7177
7178 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7179 M:      David Howells <dhowells@redhat.com>
7180 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7181 S:      Supported
7182 F:      Documentation/filesystems/caching/
7183 F:      fs/fscache/
7184 F:      include/linux/fscache*.h
7185
7186 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7187 M:      Theodore Y. Ts'o <tytso@mit.edu>
7188 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7189 M:      Eric Biggers <ebiggers@kernel.org>
7190 L:      linux-fscrypt@vger.kernel.org
7191 S:      Supported
7192 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7193 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7194 F:      Documentation/filesystems/fscrypt.rst
7195 F:      fs/crypto/
7196 F:      include/linux/fscrypt*.h
7197 F:      include/uapi/linux/fscrypt.h
7198
7199 FSI SUBSYSTEM
7200 M:      Jeremy Kerr <jk@ozlabs.org>
7201 M:      Joel Stanley <joel@jms.id.au>
7202 R:      Alistar Popple <alistair@popple.id.au>
7203 R:      Eddie James <eajames@linux.ibm.com>
7204 L:      linux-fsi@lists.ozlabs.org
7205 S:      Supported
7206 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7208 F:      drivers/fsi/
7209 F:      include/linux/fsi*.h
7210 F:      include/trace/events/fsi*.h
7211
7212 FSI-ATTACHED I2C DRIVER
7213 M:      Eddie James <eajames@linux.ibm.com>
7214 L:      linux-i2c@vger.kernel.org
7215 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7216 S:      Maintained
7217 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7218 F:      drivers/i2c/busses/i2c-fsi.c
7219
7220 FSI-ATTACHED SPI DRIVER
7221 M:      Eddie James <eajames@linux.ibm.com>
7222 L:      linux-spi@vger.kernel.org
7223 S:      Maintained
7224 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7225 F:      drivers/spi/spi-fsi.c
7226
7227 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7228 M:      Jan Kara <jack@suse.cz>
7229 R:      Amir Goldstein <amir73il@gmail.com>
7230 L:      linux-fsdevel@vger.kernel.org
7231 S:      Maintained
7232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7233 F:      fs/notify/
7234 F:      include/linux/fsnotify*.h
7235
7236 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7237 M:      Eric Biggers <ebiggers@kernel.org>
7238 M:      Theodore Y. Ts'o <tytso@mit.edu>
7239 L:      linux-fscrypt@vger.kernel.org
7240 S:      Supported
7241 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7242 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7243 F:      Documentation/filesystems/fsverity.rst
7244 F:      fs/verity/
7245 F:      include/linux/fsverity.h
7246 F:      include/uapi/linux/fsverity.h
7247
7248 FUJITSU LAPTOP EXTRAS
7249 M:      Jonathan Woithe <jwoithe@just42.net>
7250 L:      platform-driver-x86@vger.kernel.org
7251 S:      Maintained
7252 F:      drivers/platform/x86/fujitsu-laptop.c
7253
7254 FUJITSU M-5MO LS CAMERA ISP DRIVER
7255 M:      Kyungmin Park <kyungmin.park@samsung.com>
7256 M:      Heungjun Kim <riverful.kim@samsung.com>
7257 L:      linux-media@vger.kernel.org
7258 S:      Maintained
7259 F:      drivers/media/i2c/m5mols/
7260 F:      include/media/i2c/m5mols.h
7261
7262 FUJITSU TABLET EXTRAS
7263 M:      Robert Gerlach <khnz@gmx.de>
7264 L:      platform-driver-x86@vger.kernel.org
7265 S:      Maintained
7266 F:      drivers/platform/x86/fujitsu-tablet.c
7267
7268 FUSE: FILESYSTEM IN USERSPACE
7269 M:      Miklos Szeredi <miklos@szeredi.hu>
7270 L:      linux-fsdevel@vger.kernel.org
7271 S:      Maintained
7272 W:      https://github.com/libfuse/
7273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7274 F:      Documentation/filesystems/fuse.rst
7275 F:      fs/fuse/
7276 F:      include/uapi/linux/fuse.h
7277
7278 FUTEX SUBSYSTEM
7279 M:      Thomas Gleixner <tglx@linutronix.de>
7280 M:      Ingo Molnar <mingo@redhat.com>
7281 R:      Peter Zijlstra <peterz@infradead.org>
7282 R:      Darren Hart <dvhart@infradead.org>
7283 L:      linux-kernel@vger.kernel.org
7284 S:      Maintained
7285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7286 F:      Documentation/locking/*futex*
7287 F:      include/asm-generic/futex.h
7288 F:      include/linux/futex.h
7289 F:      include/uapi/linux/futex.h
7290 F:      kernel/futex.c
7291 F:      tools/perf/bench/futex*
7292 F:      tools/testing/selftests/futex/
7293
7294 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7295 M:      Tim Harvey <tharvey@gateworks.com>
7296 M:      Robert Jones <rjones@gateworks.com>
7297 S:      Maintained
7298 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7299 F:      drivers/mfd/gateworks-gsc.c
7300 F:      include/linux/mfd/gsc.h
7301 F:      Documentation/hwmon/gsc-hwmon.rst
7302 F:      drivers/hwmon/gsc-hwmon.c
7303 F:      include/linux/platform_data/gsc_hwmon.h
7304
7305 GASKET DRIVER FRAMEWORK
7306 M:      Rob Springer <rspringer@google.com>
7307 M:      Todd Poynor <toddpoynor@google.com>
7308 M:      Ben Chan <benchan@chromium.org>
7309 M:      Richard Yeh <rcy@google.com>
7310 S:      Maintained
7311 F:      drivers/staging/gasket/
7312
7313 GCC PLUGINS
7314 M:      Kees Cook <keescook@chromium.org>
7315 R:      Emese Revfy <re.emese@gmail.com>
7316 L:      linux-hardening@vger.kernel.org
7317 S:      Maintained
7318 F:      Documentation/kbuild/gcc-plugins.rst
7319 F:      scripts/Makefile.gcc-plugins
7320 F:      scripts/gcc-plugin.sh
7321 F:      scripts/gcc-plugins/
7322
7323 GCOV BASED KERNEL PROFILING
7324 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7325 S:      Maintained
7326 F:      Documentation/dev-tools/gcov.rst
7327 F:      kernel/gcov/
7328
7329 GDB KERNEL DEBUGGING HELPER SCRIPTS
7330 M:      Jan Kiszka <jan.kiszka@siemens.com>
7331 M:      Kieran Bingham <kbingham@kernel.org>
7332 S:      Supported
7333 F:      scripts/gdb/
7334
7335 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7336 M:      Achim Leubner <achim_leubner@adaptec.com>
7337 L:      linux-scsi@vger.kernel.org
7338 S:      Supported
7339 W:      http://www.icp-vortex.com/
7340 F:      drivers/scsi/gdt*
7341
7342 GEMTEK FM RADIO RECEIVER DRIVER
7343 M:      Hans Verkuil <hverkuil@xs4all.nl>
7344 L:      linux-media@vger.kernel.org
7345 S:      Maintained
7346 W:      https://linuxtv.org
7347 T:      git git://linuxtv.org/media_tree.git
7348 F:      drivers/media/radio/radio-gemtek*
7349
7350 GENERIC ARCHITECTURE TOPOLOGY
7351 M:      Sudeep Holla <sudeep.holla@arm.com>
7352 L:      linux-kernel@vger.kernel.org
7353 S:      Maintained
7354 F:      drivers/base/arch_topology.c
7355 F:      include/linux/arch_topology.h
7356
7357 GENERIC GPIO I2C DRIVER
7358 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7359 S:      Supported
7360 F:      drivers/i2c/busses/i2c-gpio.c
7361 F:      include/linux/platform_data/i2c-gpio.h
7362
7363 GENERIC GPIO I2C MULTIPLEXER DRIVER
7364 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7365 L:      linux-i2c@vger.kernel.org
7366 S:      Supported
7367 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7368 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7369 F:      include/linux/platform_data/i2c-mux-gpio.h
7370
7371 GENERIC HDLC (WAN) DRIVERS
7372 M:      Krzysztof Halasa <khc@pm.waw.pl>
7373 S:      Maintained
7374 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7375 F:      drivers/net/wan/c101.c
7376 F:      drivers/net/wan/hd6457*
7377 F:      drivers/net/wan/hdlc*
7378 F:      drivers/net/wan/n2.c
7379 F:      drivers/net/wan/pc300too.c
7380 F:      drivers/net/wan/pci200syn.c
7381 F:      drivers/net/wan/wanxl*
7382
7383 GENERIC INCLUDE/ASM HEADER FILES
7384 M:      Arnd Bergmann <arnd@arndb.de>
7385 L:      linux-arch@vger.kernel.org
7386 S:      Maintained
7387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7388 F:      include/asm-generic/
7389 F:      include/uapi/asm-generic/
7390
7391 GENERIC PHY FRAMEWORK
7392 M:      Kishon Vijay Abraham I <kishon@ti.com>
7393 M:      Vinod Koul <vkoul@kernel.org>
7394 L:      linux-kernel@vger.kernel.org
7395 S:      Supported
7396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7397 F:      Documentation/devicetree/bindings/phy/
7398 F:      drivers/phy/
7399 F:      include/linux/phy/
7400
7401 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7402 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7403 S:      Supported
7404 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7405
7406 GENERIC PM DOMAINS
7407 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7408 M:      Kevin Hilman <khilman@kernel.org>
7409 M:      Ulf Hansson <ulf.hansson@linaro.org>
7410 L:      linux-pm@vger.kernel.org
7411 S:      Supported
7412 F:      Documentation/devicetree/bindings/power/power?domain*
7413 F:      drivers/base/power/domain*.c
7414 F:      include/linux/pm_domain.h
7415
7416 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7417 M:      Eugen Hristev <eugen.hristev@microchip.com>
7418 L:      linux-input@vger.kernel.org
7419 S:      Maintained
7420 F:      drivers/input/touchscreen/resistive-adc-touch.c
7421
7422 GENERIC UIO DRIVER FOR PCI DEVICES
7423 M:      "Michael S. Tsirkin" <mst@redhat.com>
7424 L:      kvm@vger.kernel.org
7425 S:      Supported
7426 F:      drivers/uio/uio_pci_generic.c
7427
7428 GENERIC VDSO LIBRARY
7429 M:      Andy Lutomirski <luto@kernel.org>
7430 M:      Thomas Gleixner <tglx@linutronix.de>
7431 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7432 L:      linux-kernel@vger.kernel.org
7433 S:      Maintained
7434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7435 F:      include/asm-generic/vdso/vsyscall.h
7436 F:      include/vdso/
7437 F:      kernel/time/vsyscall.c
7438 F:      lib/vdso/
7439
7440 GENWQE (IBM Generic Workqueue Card)
7441 M:      Frank Haverkamp <haver@linux.ibm.com>
7442 S:      Supported
7443 F:      drivers/misc/genwqe/
7444
7445 GET_MAINTAINER SCRIPT
7446 M:      Joe Perches <joe@perches.com>
7447 S:      Maintained
7448 F:      scripts/get_maintainer.pl
7449
7450 GFS2 FILE SYSTEM
7451 M:      Bob Peterson <rpeterso@redhat.com>
7452 M:      Andreas Gruenbacher <agruenba@redhat.com>
7453 L:      cluster-devel@redhat.com
7454 S:      Supported
7455 W:      http://sources.redhat.com/cluster/
7456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7457 F:      Documentation/filesystems/gfs2*
7458 F:      fs/gfs2/
7459 F:      include/uapi/linux/gfs2_ondisk.h
7460
7461 GNSS SUBSYSTEM
7462 M:      Johan Hovold <johan@kernel.org>
7463 S:      Maintained
7464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7465 F:      Documentation/ABI/testing/sysfs-class-gnss
7466 F:      Documentation/devicetree/bindings/gnss/
7467 F:      drivers/gnss/
7468 F:      include/linux/gnss.h
7469
7470 GO7007 MPEG CODEC
7471 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7472 L:      linux-media@vger.kernel.org
7473 S:      Maintained
7474 F:      drivers/media/usb/go7007/
7475
7476 GOODIX TOUCHSCREEN
7477 M:      Bastien Nocera <hadess@hadess.net>
7478 L:      linux-input@vger.kernel.org
7479 S:      Maintained
7480 F:      drivers/input/touchscreen/goodix.c
7481
7482 GOOGLE ETHERNET DRIVERS
7483 M:      Catherine Sullivan <csully@google.com>
7484 R:      Sagi Shahar <sagis@google.com>
7485 R:      Jon Olson <jonolson@google.com>
7486 L:      netdev@vger.kernel.org
7487 S:      Supported
7488 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7489 F:      drivers/net/ethernet/google
7490
7491 GPD POCKET FAN DRIVER
7492 M:      Hans de Goede <hdegoede@redhat.com>
7493 L:      platform-driver-x86@vger.kernel.org
7494 S:      Maintained
7495 F:      drivers/platform/x86/gpd-pocket-fan.c
7496
7497 GPIO ACPI SUPPORT
7498 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7499 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7500 L:      linux-gpio@vger.kernel.org
7501 L:      linux-acpi@vger.kernel.org
7502 S:      Maintained
7503 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7504 F:      drivers/gpio/gpiolib-acpi.c
7505 F:      drivers/gpio/gpiolib-acpi.h
7506
7507 GPIO AGGREGATOR
7508 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7509 L:      linux-gpio@vger.kernel.org
7510 S:      Supported
7511 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7512 F:      drivers/gpio/gpio-aggregator.c
7513
7514 GPIO IR Transmitter
7515 M:      Sean Young <sean@mess.org>
7516 L:      linux-media@vger.kernel.org
7517 S:      Maintained
7518 F:      drivers/media/rc/gpio-ir-tx.c
7519
7520 GPIO MOCKUP DRIVER
7521 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7522 L:      linux-gpio@vger.kernel.org
7523 S:      Maintained
7524 F:      drivers/gpio/gpio-mockup.c
7525 F:      tools/testing/selftests/gpio/
7526
7527 GPIO REGMAP
7528 R:      Michael Walle <michael@walle.cc>
7529 S:      Maintained
7530 F:      drivers/gpio/gpio-regmap.c
7531 F:      include/linux/gpio/regmap.h
7532
7533 GPIO SUBSYSTEM
7534 M:      Linus Walleij <linus.walleij@linaro.org>
7535 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7536 L:      linux-gpio@vger.kernel.org
7537 S:      Maintained
7538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7539 F:      Documentation/ABI/obsolete/sysfs-gpio
7540 F:      Documentation/ABI/testing/gpio-cdev
7541 F:      Documentation/admin-guide/gpio/
7542 F:      Documentation/devicetree/bindings/gpio/
7543 F:      Documentation/driver-api/gpio/
7544 F:      drivers/gpio/
7545 F:      include/asm-generic/gpio.h
7546 F:      include/linux/gpio.h
7547 F:      include/linux/gpio/
7548 F:      include/linux/of_gpio.h
7549 F:      include/uapi/linux/gpio.h
7550 F:      tools/gpio/
7551
7552 GRE DEMULTIPLEXER DRIVER
7553 M:      Dmitry Kozlov <xeb@mail.ru>
7554 L:      netdev@vger.kernel.org
7555 S:      Maintained
7556 F:      include/net/gre.h
7557 F:      net/ipv4/gre_demux.c
7558 F:      net/ipv4/gre_offload.c
7559
7560 GRETH 10/100/1G Ethernet MAC device driver
7561 M:      Andreas Larsson <andreas@gaisler.com>
7562 L:      netdev@vger.kernel.org
7563 S:      Maintained
7564 F:      drivers/net/ethernet/aeroflex/
7565
7566 GREYBUS AUDIO PROTOCOLS DRIVERS
7567 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7568 M:      Mark Greer <mgreer@animalcreek.com>
7569 S:      Maintained
7570 F:      drivers/staging/greybus/audio_apbridgea.c
7571 F:      drivers/staging/greybus/audio_apbridgea.h
7572 F:      drivers/staging/greybus/audio_codec.c
7573 F:      drivers/staging/greybus/audio_codec.h
7574 F:      drivers/staging/greybus/audio_gb.c
7575 F:      drivers/staging/greybus/audio_manager.c
7576 F:      drivers/staging/greybus/audio_manager.h
7577 F:      drivers/staging/greybus/audio_manager_module.c
7578 F:      drivers/staging/greybus/audio_manager_private.h
7579 F:      drivers/staging/greybus/audio_manager_sysfs.c
7580 F:      drivers/staging/greybus/audio_module.c
7581 F:      drivers/staging/greybus/audio_topology.c
7582
7583 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7584 M:      Viresh Kumar <vireshk@kernel.org>
7585 S:      Maintained
7586 F:      drivers/staging/greybus/authentication.c
7587 F:      drivers/staging/greybus/bootrom.c
7588 F:      drivers/staging/greybus/firmware.h
7589 F:      drivers/staging/greybus/fw-core.c
7590 F:      drivers/staging/greybus/fw-download.c
7591 F:      drivers/staging/greybus/fw-management.c
7592 F:      drivers/staging/greybus/greybus_authentication.h
7593 F:      drivers/staging/greybus/greybus_firmware.h
7594 F:      drivers/staging/greybus/hid.c
7595 F:      drivers/staging/greybus/i2c.c
7596 F:      drivers/staging/greybus/spi.c
7597 F:      drivers/staging/greybus/spilib.c
7598 F:      drivers/staging/greybus/spilib.h
7599
7600 GREYBUS LOOPBACK DRIVER
7601 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7602 S:      Maintained
7603 F:      drivers/staging/greybus/loopback.c
7604
7605 GREYBUS PLATFORM DRIVERS
7606 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7607 S:      Maintained
7608 F:      drivers/staging/greybus/arche-apb-ctrl.c
7609 F:      drivers/staging/greybus/arche-platform.c
7610 F:      drivers/staging/greybus/arche_platform.h
7611
7612 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7613 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7614 S:      Maintained
7615 F:      drivers/staging/greybus/gpio.c
7616 F:      drivers/staging/greybus/light.c
7617 F:      drivers/staging/greybus/power_supply.c
7618 F:      drivers/staging/greybus/sdio.c
7619 F:      drivers/staging/greybus/spi.c
7620 F:      drivers/staging/greybus/spilib.c
7621
7622 GREYBUS SUBSYSTEM
7623 M:      Johan Hovold <johan@kernel.org>
7624 M:      Alex Elder <elder@kernel.org>
7625 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7626 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7627 S:      Maintained
7628 F:      drivers/greybus/
7629 F:      drivers/staging/greybus/
7630 F:      include/linux/greybus.h
7631 F:      include/linux/greybus/
7632
7633 GREYBUS UART PROTOCOLS DRIVERS
7634 M:      David Lin <dtwlin@gmail.com>
7635 S:      Maintained
7636 F:      drivers/staging/greybus/log.c
7637 F:      drivers/staging/greybus/uart.c
7638
7639 GS1662 VIDEO SERIALIZER
7640 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7641 L:      linux-media@vger.kernel.org
7642 S:      Maintained
7643 T:      git git://linuxtv.org/media_tree.git
7644 F:      drivers/media/spi/gs1662.c
7645
7646 GSPCA FINEPIX SUBDRIVER
7647 M:      Frank Zago <frank@zago.net>
7648 L:      linux-media@vger.kernel.org
7649 S:      Maintained
7650 T:      git git://linuxtv.org/media_tree.git
7651 F:      drivers/media/usb/gspca/finepix.c
7652
7653 GSPCA GL860 SUBDRIVER
7654 M:      Olivier Lorin <o.lorin@laposte.net>
7655 L:      linux-media@vger.kernel.org
7656 S:      Maintained
7657 T:      git git://linuxtv.org/media_tree.git
7658 F:      drivers/media/usb/gspca/gl860/
7659
7660 GSPCA M5602 SUBDRIVER
7661 M:      Erik Andren <erik.andren@gmail.com>
7662 L:      linux-media@vger.kernel.org
7663 S:      Maintained
7664 T:      git git://linuxtv.org/media_tree.git
7665 F:      drivers/media/usb/gspca/m5602/
7666
7667 GSPCA PAC207 SONIXB SUBDRIVER
7668 M:      Hans Verkuil <hverkuil@xs4all.nl>
7669 L:      linux-media@vger.kernel.org
7670 S:      Odd Fixes
7671 T:      git git://linuxtv.org/media_tree.git
7672 F:      drivers/media/usb/gspca/pac207.c
7673
7674 GSPCA SN9C20X SUBDRIVER
7675 M:      Brian Johnson <brijohn@gmail.com>
7676 L:      linux-media@vger.kernel.org
7677 S:      Maintained
7678 T:      git git://linuxtv.org/media_tree.git
7679 F:      drivers/media/usb/gspca/sn9c20x.c
7680
7681 GSPCA T613 SUBDRIVER
7682 M:      Leandro Costantino <lcostantino@gmail.com>
7683 L:      linux-media@vger.kernel.org
7684 S:      Maintained
7685 T:      git git://linuxtv.org/media_tree.git
7686 F:      drivers/media/usb/gspca/t613.c
7687
7688 GSPCA USB WEBCAM DRIVER
7689 M:      Hans Verkuil <hverkuil@xs4all.nl>
7690 L:      linux-media@vger.kernel.org
7691 S:      Odd Fixes
7692 T:      git git://linuxtv.org/media_tree.git
7693 F:      drivers/media/usb/gspca/
7694
7695 GTP (GPRS Tunneling Protocol)
7696 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7697 M:      Harald Welte <laforge@gnumonks.org>
7698 L:      osmocom-net-gprs@lists.osmocom.org
7699 S:      Maintained
7700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7701 F:      drivers/net/gtp.c
7702
7703 GUID PARTITION TABLE (GPT)
7704 M:      Davidlohr Bueso <dave@stgolabs.net>
7705 L:      linux-efi@vger.kernel.org
7706 S:      Maintained
7707 F:      block/partitions/efi.*
7708
7709 H8/300 ARCHITECTURE
7710 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7711 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7712 S:      Maintained
7713 W:      http://uclinux-h8.sourceforge.jp
7714 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7715 F:      arch/h8300/
7716 F:      drivers/clk/h8300/
7717 F:      drivers/clocksource/h8300_*.c
7718 F:      drivers/irqchip/irq-renesas-h8*.c
7719
7720 HABANALABS PCI DRIVER
7721 M:      Oded Gabbay <oded.gabbay@gmail.com>
7722 S:      Supported
7723 T:      git https://github.com/HabanaAI/linux.git
7724 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7725 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7726 F:      drivers/misc/habanalabs/
7727 F:      include/uapi/misc/habanalabs.h
7728
7729 HACKRF MEDIA DRIVER
7730 M:      Antti Palosaari <crope@iki.fi>
7731 L:      linux-media@vger.kernel.org
7732 S:      Maintained
7733 W:      https://linuxtv.org
7734 W:      http://palosaari.fi/linux/
7735 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7736 T:      git git://linuxtv.org/anttip/media_tree.git
7737 F:      drivers/media/usb/hackrf/
7738
7739 HANTRO VPU CODEC DRIVER
7740 M:      Ezequiel Garcia <ezequiel@collabora.com>
7741 M:      Philipp Zabel <p.zabel@pengutronix.de>
7742 L:      linux-media@vger.kernel.org
7743 L:      linux-rockchip@lists.infradead.org
7744 S:      Maintained
7745 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7746 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7747 F:      drivers/staging/media/hantro/
7748
7749 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7750 M:      Frank Seidel <frank@f-seidel.de>
7751 L:      platform-driver-x86@vger.kernel.org
7752 S:      Maintained
7753 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7754 F:      drivers/platform/x86/hdaps.c
7755
7756 HARDWARE MONITORING
7757 M:      Jean Delvare <jdelvare@suse.com>
7758 M:      Guenter Roeck <linux@roeck-us.net>
7759 L:      linux-hwmon@vger.kernel.org
7760 S:      Maintained
7761 W:      http://hwmon.wiki.kernel.org/
7762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7763 F:      Documentation/devicetree/bindings/hwmon/
7764 F:      Documentation/hwmon/
7765 F:      drivers/hwmon/
7766 F:      include/linux/hwmon*.h
7767 F:      include/trace/events/hwmon*.h
7768
7769 HARDWARE RANDOM NUMBER GENERATOR CORE
7770 M:      Matt Mackall <mpm@selenic.com>
7771 M:      Herbert Xu <herbert@gondor.apana.org.au>
7772 L:      linux-crypto@vger.kernel.org
7773 S:      Odd fixes
7774 F:      Documentation/admin-guide/hw_random.rst
7775 F:      Documentation/devicetree/bindings/rng/
7776 F:      drivers/char/hw_random/
7777 F:      include/linux/hw_random.h
7778
7779 HARDWARE SPINLOCK CORE
7780 M:      Ohad Ben-Cohen <ohad@wizery.com>
7781 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7782 R:      Baolin Wang <baolin.wang7@gmail.com>
7783 L:      linux-remoteproc@vger.kernel.org
7784 S:      Maintained
7785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7786 F:      Documentation/devicetree/bindings/hwlock/
7787 F:      Documentation/locking/hwspinlock.rst
7788 F:      drivers/hwspinlock/
7789 F:      include/linux/hwspinlock.h
7790
7791 HARDWARE TRACING FACILITIES
7792 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7793 S:      Maintained
7794 F:      drivers/hwtracing/
7795
7796 HARMONY SOUND DRIVER
7797 L:      linux-parisc@vger.kernel.org
7798 S:      Maintained
7799 F:      sound/parisc/harmony.*
7800
7801 HDPVR USB VIDEO ENCODER DRIVER
7802 M:      Hans Verkuil <hverkuil@xs4all.nl>
7803 L:      linux-media@vger.kernel.org
7804 S:      Odd Fixes
7805 W:      https://linuxtv.org
7806 T:      git git://linuxtv.org/media_tree.git
7807 F:      drivers/media/usb/hdpvr/
7808
7809 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7810 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7811 S:      Supported
7812 F:      Documentation/watchdog/hpwdt.rst
7813 F:      drivers/watchdog/hpwdt.c
7814
7815 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7816 M:      Don Brace <don.brace@microchip.com>
7817 L:      storagedev@microchip.com
7818 L:      linux-scsi@vger.kernel.org
7819 S:      Supported
7820 F:      Documentation/scsi/hpsa.rst
7821 F:      drivers/scsi/hpsa*.[ch]
7822 F:      include/linux/cciss*.h
7823 F:      include/uapi/linux/cciss*.h
7824
7825 HFI1 DRIVER
7826 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
7827 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
7828 L:      linux-rdma@vger.kernel.org
7829 S:      Supported
7830 F:      drivers/infiniband/hw/hfi1
7831
7832 HFS FILESYSTEM
7833 L:      linux-fsdevel@vger.kernel.org
7834 S:      Orphan
7835 F:      Documentation/filesystems/hfs.rst
7836 F:      fs/hfs/
7837
7838 HFSPLUS FILESYSTEM
7839 L:      linux-fsdevel@vger.kernel.org
7840 S:      Orphan
7841 F:      Documentation/filesystems/hfsplus.rst
7842 F:      fs/hfsplus/
7843
7844 HGA FRAMEBUFFER DRIVER
7845 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7846 L:      linux-nvidia@lists.surfsouth.com
7847 S:      Maintained
7848 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7849 F:      drivers/video/fbdev/hgafb.c
7850
7851 HIBERNATION (aka Software Suspend, aka swsusp)
7852 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7853 M:      Pavel Machek <pavel@ucw.cz>
7854 L:      linux-pm@vger.kernel.org
7855 S:      Supported
7856 B:      https://bugzilla.kernel.org
7857 F:      arch/*/include/asm/suspend*.h
7858 F:      arch/x86/power/
7859 F:      drivers/base/power/
7860 F:      include/linux/freezer.h
7861 F:      include/linux/pm.h
7862 F:      include/linux/suspend.h
7863 F:      kernel/power/
7864
7865 HID CORE LAYER
7866 M:      Jiri Kosina <jikos@kernel.org>
7867 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7868 L:      linux-input@vger.kernel.org
7869 S:      Maintained
7870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7871 F:      drivers/hid/
7872 F:      include/linux/hid*
7873 F:      include/uapi/linux/hid*
7874
7875 HID SENSOR HUB DRIVERS
7876 M:      Jiri Kosina <jikos@kernel.org>
7877 M:      Jonathan Cameron <jic23@kernel.org>
7878 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7879 L:      linux-input@vger.kernel.org
7880 L:      linux-iio@vger.kernel.org
7881 S:      Maintained
7882 F:      Documentation/hid/hid-sensor*
7883 F:      drivers/hid/hid-sensor-*
7884 F:      drivers/iio/*/hid-*
7885 F:      include/linux/hid-sensor-*
7886
7887 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7888 M:      Thomas Gleixner <tglx@linutronix.de>
7889 L:      linux-kernel@vger.kernel.org
7890 S:      Maintained
7891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7892 F:      Documentation/timers/
7893 F:      include/linux/clockchips.h
7894 F:      include/linux/hrtimer.h
7895 F:      kernel/time/clockevents.c
7896 F:      kernel/time/hrtimer.c
7897 F:      kernel/time/timer_*.c
7898
7899 HIGH-SPEED SCC DRIVER FOR AX.25
7900 L:      linux-hams@vger.kernel.org
7901 S:      Orphan
7902 F:      drivers/net/hamradio/dmascc.c
7903 F:      drivers/net/hamradio/scc.c
7904
7905 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7906 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7907 S:      Supported
7908 W:      http://www.highpoint-tech.com
7909 F:      Documentation/scsi/hptiop.rst
7910 F:      drivers/scsi/hptiop.c
7911
7912 HIPPI
7913 M:      Jes Sorensen <jes@trained-monkey.org>
7914 L:      linux-hippi@sunsite.dk
7915 S:      Maintained
7916 F:      drivers/net/hippi/
7917 F:      include/linux/hippidevice.h
7918 F:      include/uapi/linux/if_hippi.h
7919 F:      net/802/hippi.c
7920
7921 HISILICON DMA DRIVER
7922 M:      Zhou Wang <wangzhou1@hisilicon.com>
7923 L:      dmaengine@vger.kernel.org
7924 S:      Maintained
7925 F:      drivers/dma/hisi_dma.c
7926
7927 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7928 M:      Zaibo Xu <xuzaibo@huawei.com>
7929 L:      linux-crypto@vger.kernel.org
7930 S:      Maintained
7931 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7932 F:      drivers/crypto/hisilicon/hpre/hpre.h
7933 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7934 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7935
7936 HISILICON LPC BUS DRIVER
7937 M:      john.garry@huawei.com
7938 S:      Maintained
7939 W:      http://www.hisilicon.com
7940 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
7941 F:      drivers/bus/hisi_lpc.c
7942
7943 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7944 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7945 M:      Salil Mehta <salil.mehta@huawei.com>
7946 L:      netdev@vger.kernel.org
7947 S:      Maintained
7948 W:      http://www.hisilicon.com
7949 F:      drivers/net/ethernet/hisilicon/hns3/
7950
7951 HISILICON NETWORK SUBSYSTEM DRIVER
7952 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7953 M:      Salil Mehta <salil.mehta@huawei.com>
7954 L:      netdev@vger.kernel.org
7955 S:      Maintained
7956 W:      http://www.hisilicon.com
7957 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7958 F:      drivers/net/ethernet/hisilicon/
7959
7960 HIKEY960 ONBOARD USB GPIO HUB DRIVER
7961 M:      John Stultz <john.stultz@linaro.org>
7962 L:      linux-kernel@vger.kernel.org
7963 S:      Maintained
7964 F:      drivers/misc/hisi_hikey_usb.c
7965 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
7966
7967 HISILICON PMU DRIVER
7968 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7969 S:      Supported
7970 W:      http://www.hisilicon.com
7971 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7972 F:      drivers/perf/hisilicon
7973
7974 HISILICON QM AND ZIP Controller DRIVER
7975 M:      Zhou Wang <wangzhou1@hisilicon.com>
7976 L:      linux-crypto@vger.kernel.org
7977 S:      Maintained
7978 F:      Documentation/ABI/testing/debugfs-hisi-zip
7979 F:      drivers/crypto/hisilicon/qm.c
7980 F:      drivers/crypto/hisilicon/qm.h
7981 F:      drivers/crypto/hisilicon/sgl.c
7982 F:      drivers/crypto/hisilicon/zip/
7983
7984 HISILICON ROCE DRIVER
7985 M:      Lijun Ou <oulijun@huawei.com>
7986 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
7987 M:      Weihang Li <liweihang@huawei.com>
7988 L:      linux-rdma@vger.kernel.org
7989 S:      Maintained
7990 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7991 F:      drivers/infiniband/hw/hns/
7992
7993 HISILICON SAS Controller
7994 M:      John Garry <john.garry@huawei.com>
7995 S:      Supported
7996 W:      http://www.hisilicon.com
7997 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7998 F:      drivers/scsi/hisi_sas/
7999
8000 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8001 M:      Zaibo Xu <xuzaibo@huawei.com>
8002 L:      linux-crypto@vger.kernel.org
8003 S:      Maintained
8004 F:      Documentation/ABI/testing/debugfs-hisi-sec
8005 F:      drivers/crypto/hisilicon/sec2/sec.h
8006 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8007 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8008 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8009
8010 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8011 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8012 L:      devel@driverdev.osuosl.org
8013 S:      Maintained
8014 F:      drivers/staging/hikey9xx/
8015
8016 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8017 M:      Zaibo Xu <xuzaibo@huawei.com>
8018 S:      Maintained
8019 F:      drivers/crypto/hisilicon/trng/trng.c
8020
8021 HISILICON V3XX SPI NOR FLASH Controller Driver
8022 M:      John Garry <john.garry@huawei.com>
8023 S:      Maintained
8024 W:      http://www.hisilicon.com
8025 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8026
8027 HMM - Heterogeneous Memory Management
8028 M:      Jérôme Glisse <jglisse@redhat.com>
8029 L:      linux-mm@kvack.org
8030 S:      Maintained
8031 F:      Documentation/vm/hmm.rst
8032 F:      include/linux/hmm*
8033 F:      lib/test_hmm*
8034 F:      mm/hmm*
8035 F:      tools/testing/selftests/vm/*hmm*
8036
8037 HOST AP DRIVER
8038 M:      Jouni Malinen <j@w1.fi>
8039 L:      linux-wireless@vger.kernel.org
8040 S:      Obsolete
8041 W:      http://w1.fi/hostap-driver.html
8042 F:      drivers/net/wireless/intersil/hostap/
8043
8044 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8045 L:      platform-driver-x86@vger.kernel.org
8046 S:      Orphan
8047 F:      drivers/platform/x86/tc1100-wmi.c
8048
8049 HPET:   High Precision Event Timers driver
8050 M:      Clemens Ladisch <clemens@ladisch.de>
8051 S:      Maintained
8052 F:      Documentation/timers/hpet.rst
8053 F:      drivers/char/hpet.c
8054 F:      include/linux/hpet.h
8055 F:      include/uapi/linux/hpet.h
8056
8057 HPET:   x86
8058 S:      Orphan
8059 F:      arch/x86/include/asm/hpet.h
8060 F:      arch/x86/kernel/hpet.c
8061
8062 HPFS FILESYSTEM
8063 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8064 S:      Maintained
8065 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8066 F:      fs/hpfs/
8067
8068 HSI SUBSYSTEM
8069 M:      Sebastian Reichel <sre@kernel.org>
8070 S:      Maintained
8071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8072 F:      Documentation/ABI/testing/sysfs-bus-hsi
8073 F:      Documentation/driver-api/hsi.rst
8074 F:      drivers/hsi/
8075 F:      include/linux/hsi/
8076 F:      include/uapi/linux/hsi/
8077
8078 HSO 3G MODEM DRIVER
8079 L:      linux-usb@vger.kernel.org
8080 S:      Orphan
8081 F:      drivers/net/usb/hso.c
8082
8083 HSR NETWORK PROTOCOL
8084 L:      netdev@vger.kernel.org
8085 S:      Orphan
8086 F:      net/hsr/
8087
8088 HT16K33 LED CONTROLLER DRIVER
8089 M:      Robin van der Gracht <robin@protonic.nl>
8090 S:      Maintained
8091 F:      Documentation/devicetree/bindings/display/ht16k33.txt
8092 F:      drivers/auxdisplay/ht16k33.c
8093
8094 HTCPEN TOUCHSCREEN DRIVER
8095 M:      Pau Oliva Fora <pof@eslack.org>
8096 L:      linux-input@vger.kernel.org
8097 S:      Maintained
8098 F:      drivers/input/touchscreen/htcpen.c
8099
8100 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8101 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8102 L:      linux-iio@vger.kernel.org
8103 S:      Maintained
8104 W:      http://www.st.com/
8105 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
8106 F:      drivers/iio/humidity/hts221*
8107
8108 HUAWEI ETHERNET DRIVER
8109 M:      Bin Luo <luobin9@huawei.com>
8110 L:      netdev@vger.kernel.org
8111 S:      Supported
8112 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8113 F:      drivers/net/ethernet/huawei/hinic/
8114
8115 HUGETLB FILESYSTEM
8116 M:      Mike Kravetz <mike.kravetz@oracle.com>
8117 L:      linux-mm@kvack.org
8118 S:      Maintained
8119 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8120 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8121 F:      Documentation/vm/hugetlbfs_reserv.rst
8122 F:      fs/hugetlbfs/
8123 F:      include/linux/hugetlb.h
8124 F:      mm/hugetlb.c
8125
8126 HVA ST MEDIA DRIVER
8127 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
8128 L:      linux-media@vger.kernel.org
8129 S:      Supported
8130 W:      https://linuxtv.org
8131 T:      git git://linuxtv.org/media_tree.git
8132 F:      drivers/media/platform/sti/hva
8133
8134 HWPOISON MEMORY FAILURE HANDLING
8135 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8136 L:      linux-mm@kvack.org
8137 S:      Maintained
8138 F:      mm/hwpoison-inject.c
8139 F:      mm/memory-failure.c
8140
8141 HYGON PROCESSOR SUPPORT
8142 M:      Pu Wen <puwen@hygon.cn>
8143 L:      linux-kernel@vger.kernel.org
8144 S:      Maintained
8145 F:      arch/x86/kernel/cpu/hygon.c
8146
8147 HYNIX HI556 SENSOR DRIVER
8148 M:      Shawn Tu <shawnx.tu@intel.com>
8149 L:      linux-media@vger.kernel.org
8150 S:      Maintained
8151 T:      git git://linuxtv.org/media_tree.git
8152 F:      drivers/media/i2c/hi556.c
8153
8154 Hyper-V CORE AND DRIVERS
8155 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8156 M:      Haiyang Zhang <haiyangz@microsoft.com>
8157 M:      Stephen Hemminger <sthemmin@microsoft.com>
8158 M:      Wei Liu <wei.liu@kernel.org>
8159 L:      linux-hyperv@vger.kernel.org
8160 S:      Supported
8161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8162 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8163 F:      Documentation/ABI/testing/debugfs-hyperv
8164 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8165 F:      arch/x86/hyperv
8166 F:      arch/x86/include/asm/hyperv-tlfs.h
8167 F:      arch/x86/include/asm/mshyperv.h
8168 F:      arch/x86/include/asm/trace/hyperv.h
8169 F:      arch/x86/kernel/cpu/mshyperv.c
8170 F:      drivers/clocksource/hyperv_timer.c
8171 F:      drivers/hid/hid-hyperv.c
8172 F:      drivers/hv/
8173 F:      drivers/input/serio/hyperv-keyboard.c
8174 F:      drivers/iommu/hyperv-iommu.c
8175 F:      drivers/net/hyperv/
8176 F:      drivers/pci/controller/pci-hyperv-intf.c
8177 F:      drivers/pci/controller/pci-hyperv.c
8178 F:      drivers/scsi/storvsc_drv.c
8179 F:      drivers/uio/uio_hv_generic.c
8180 F:      drivers/video/fbdev/hyperv_fb.c
8181 F:      include/asm-generic/hyperv-tlfs.h
8182 F:      include/asm-generic/mshyperv.h
8183 F:      include/clocksource/hyperv_timer.h
8184 F:      include/linux/hyperv.h
8185 F:      include/uapi/linux/hyperv.h
8186 F:      net/vmw_vsock/hyperv_transport.c
8187 F:      tools/hv/
8188
8189 HYPERBUS SUPPORT
8190 M:      Vignesh Raghavendra <vigneshr@ti.com>
8191 L:      linux-mtd@lists.infradead.org
8192 S:      Supported
8193 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8194 C:      irc://irc.oftc.net/mtd
8195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8196 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8197 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8198 F:      drivers/mtd/hyperbus/
8199 F:      include/linux/mtd/hyperbus.h
8200
8201 HYPERVISOR VIRTUAL CONSOLE DRIVER
8202 L:      linuxppc-dev@lists.ozlabs.org
8203 S:      Odd Fixes
8204 F:      drivers/tty/hvc/
8205
8206 I2C ACPI SUPPORT
8207 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8208 L:      linux-i2c@vger.kernel.org
8209 L:      linux-acpi@vger.kernel.org
8210 S:      Maintained
8211 F:      drivers/i2c/i2c-core-acpi.c
8212
8213 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8214 M:      Ajay Gupta <ajayg@nvidia.com>
8215 L:      linux-i2c@vger.kernel.org
8216 S:      Maintained
8217 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8218 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8219
8220 I2C MUXES
8221 M:      Peter Rosin <peda@axentia.se>
8222 L:      linux-i2c@vger.kernel.org
8223 S:      Maintained
8224 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8225 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8226 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8227 F:      Documentation/i2c/i2c-topology.rst
8228 F:      Documentation/i2c/muxes/
8229 F:      drivers/i2c/i2c-mux.c
8230 F:      drivers/i2c/muxes/
8231 F:      include/linux/i2c-mux.h
8232
8233 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8234 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8235 L:      linux-i2c@vger.kernel.org
8236 S:      Maintained
8237 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8238 F:      drivers/i2c/busses/i2c-mv64xxx.c
8239
8240 I2C OVER PARALLEL PORT
8241 M:      Jean Delvare <jdelvare@suse.com>
8242 L:      linux-i2c@vger.kernel.org
8243 S:      Maintained
8244 F:      Documentation/i2c/busses/i2c-parport.rst
8245 F:      drivers/i2c/busses/i2c-parport.c
8246
8247 I2C SUBSYSTEM
8248 M:      Wolfram Sang <wsa@kernel.org>
8249 L:      linux-i2c@vger.kernel.org
8250 S:      Maintained
8251 W:      https://i2c.wiki.kernel.org/
8252 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8254 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8255 F:      Documentation/i2c/
8256 F:      drivers/i2c/*
8257 F:      include/linux/i2c-dev.h
8258 F:      include/linux/i2c-smbus.h
8259 F:      include/linux/i2c.h
8260 F:      include/uapi/linux/i2c-*.h
8261 F:      include/uapi/linux/i2c.h
8262
8263 I2C SUBSYSTEM HOST DRIVERS
8264 L:      linux-i2c@vger.kernel.org
8265 S:      Odd Fixes
8266 W:      https://i2c.wiki.kernel.org/
8267 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8269 F:      Documentation/devicetree/bindings/i2c/
8270 F:      drivers/i2c/algos/
8271 F:      drivers/i2c/busses/
8272
8273 I2C-TAOS-EVM DRIVER
8274 M:      Jean Delvare <jdelvare@suse.com>
8275 L:      linux-i2c@vger.kernel.org
8276 S:      Maintained
8277 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8278 F:      drivers/i2c/busses/i2c-taos-evm.c
8279
8280 I2C-TINY-USB DRIVER
8281 M:      Till Harbaum <till@harbaum.org>
8282 L:      linux-i2c@vger.kernel.org
8283 S:      Maintained
8284 W:      http://www.harbaum.org/till/i2c_tiny_usb
8285 F:      drivers/i2c/busses/i2c-tiny-usb.c
8286
8287 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8288 M:      Jean Delvare <jdelvare@suse.com>
8289 L:      linux-i2c@vger.kernel.org
8290 S:      Maintained
8291 F:      Documentation/i2c/busses/i2c-ali1535.rst
8292 F:      Documentation/i2c/busses/i2c-ali1563.rst
8293 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8294 F:      Documentation/i2c/busses/i2c-amd756.rst
8295 F:      Documentation/i2c/busses/i2c-amd8111.rst
8296 F:      Documentation/i2c/busses/i2c-i801.rst
8297 F:      Documentation/i2c/busses/i2c-nforce2.rst
8298 F:      Documentation/i2c/busses/i2c-piix4.rst
8299 F:      Documentation/i2c/busses/i2c-sis5595.rst
8300 F:      Documentation/i2c/busses/i2c-sis630.rst
8301 F:      Documentation/i2c/busses/i2c-sis96x.rst
8302 F:      Documentation/i2c/busses/i2c-via.rst
8303 F:      Documentation/i2c/busses/i2c-viapro.rst
8304 F:      drivers/i2c/busses/i2c-ali1535.c
8305 F:      drivers/i2c/busses/i2c-ali1563.c
8306 F:      drivers/i2c/busses/i2c-ali15x3.c
8307 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8308 F:      drivers/i2c/busses/i2c-amd756.c
8309 F:      drivers/i2c/busses/i2c-amd8111.c
8310 F:      drivers/i2c/busses/i2c-i801.c
8311 F:      drivers/i2c/busses/i2c-isch.c
8312 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8313 F:      drivers/i2c/busses/i2c-nforce2.c
8314 F:      drivers/i2c/busses/i2c-piix4.c
8315 F:      drivers/i2c/busses/i2c-sis5595.c
8316 F:      drivers/i2c/busses/i2c-sis630.c
8317 F:      drivers/i2c/busses/i2c-sis96x.c
8318 F:      drivers/i2c/busses/i2c-via.c
8319 F:      drivers/i2c/busses/i2c-viapro.c
8320
8321 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8322 M:      Hans de Goede <hdegoede@redhat.com>
8323 L:      linux-i2c@vger.kernel.org
8324 S:      Maintained
8325 F:      drivers/i2c/busses/i2c-cht-wc.c
8326
8327 I2C/SMBUS ISMT DRIVER
8328 M:      Seth Heasley <seth.heasley@intel.com>
8329 M:      Neil Horman <nhorman@tuxdriver.com>
8330 L:      linux-i2c@vger.kernel.org
8331 F:      Documentation/i2c/busses/i2c-ismt.rst
8332 F:      drivers/i2c/busses/i2c-ismt.c
8333
8334 I2C/SMBUS STUB DRIVER
8335 M:      Jean Delvare <jdelvare@suse.com>
8336 L:      linux-i2c@vger.kernel.org
8337 S:      Maintained
8338 F:      drivers/i2c/i2c-stub.c
8339
8340 I3C DRIVER FOR CADENCE I3C MASTER IP
8341 M:      Przemysław Gaj <pgaj@cadence.com>
8342 S:      Maintained
8343 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8344 F:      drivers/i3c/master/i3c-master-cdns.c
8345
8346 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8347 M:      Vitor Soares <vitor.soares@synopsys.com>
8348 S:      Maintained
8349 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8350 F:      drivers/i3c/master/dw*
8351
8352 I3C SUBSYSTEM
8353 M:      Boris Brezillon <bbrezillon@kernel.org>
8354 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8355 S:      Maintained
8356 C:      irc://chat.freenode.net/linux-i3c
8357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8358 F:      Documentation/ABI/testing/sysfs-bus-i3c
8359 F:      Documentation/devicetree/bindings/i3c/
8360 F:      Documentation/driver-api/i3c
8361 F:      drivers/i3c/
8362 F:      include/linux/i3c/
8363
8364 IA64 (Itanium) PLATFORM
8365 M:      Tony Luck <tony.luck@intel.com>
8366 M:      Fenghua Yu <fenghua.yu@intel.com>
8367 L:      linux-ia64@vger.kernel.org
8368 S:      Odd Fixes
8369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8370 F:      Documentation/ia64/
8371 F:      arch/ia64/
8372
8373 IBM Power 842 compression accelerator
8374 M:      Haren Myneni <haren@us.ibm.com>
8375 S:      Supported
8376 F:      crypto/842.c
8377 F:      drivers/crypto/nx/Kconfig
8378 F:      drivers/crypto/nx/Makefile
8379 F:      drivers/crypto/nx/nx-842*
8380 F:      include/linux/sw842.h
8381 F:      lib/842/
8382
8383 IBM Power in-Nest Crypto Acceleration
8384 M:      Breno Leitão <leitao@debian.org>
8385 M:      Nayna Jain <nayna@linux.ibm.com>
8386 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8387 L:      linux-crypto@vger.kernel.org
8388 S:      Supported
8389 F:      drivers/crypto/nx/Kconfig
8390 F:      drivers/crypto/nx/Makefile
8391 F:      drivers/crypto/nx/nx-aes*
8392 F:      drivers/crypto/nx/nx-sha*
8393 F:      drivers/crypto/nx/nx.*
8394 F:      drivers/crypto/nx/nx_csbcpb.h
8395 F:      drivers/crypto/nx/nx_debugfs.c
8396
8397 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8398 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8399 L:      linux-pci@vger.kernel.org
8400 L:      linuxppc-dev@lists.ozlabs.org
8401 S:      Supported
8402 F:      drivers/pci/hotplug/rpadlpar*
8403
8404 IBM Power Linux RAID adapter
8405 M:      Brian King <brking@us.ibm.com>
8406 S:      Supported
8407 F:      drivers/scsi/ipr.*
8408
8409 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8410 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8411 L:      linux-pci@vger.kernel.org
8412 L:      linuxppc-dev@lists.ozlabs.org
8413 S:      Supported
8414 F:      drivers/pci/hotplug/rpaphp*
8415
8416 IBM Power SRIOV Virtual NIC Device Driver
8417 M:      Dany Madden <drt@linux.ibm.com>
8418 M:      Lijun Pan <ljp@linux.ibm.com>
8419 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8420 L:      netdev@vger.kernel.org
8421 S:      Supported
8422 F:      drivers/net/ethernet/ibm/ibmvnic.*
8423
8424 IBM Power Virtual Accelerator Switchboard
8425 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8426 L:      linuxppc-dev@lists.ozlabs.org
8427 S:      Supported
8428 F:      arch/powerpc/include/asm/vas.h
8429 F:      arch/powerpc/platforms/powernv/copy-paste.h
8430 F:      arch/powerpc/platforms/powernv/vas*
8431
8432 IBM Power Virtual Ethernet Device Driver
8433 M:      Cristobal Forno <cforno12@linux.ibm.com>
8434 L:      netdev@vger.kernel.org
8435 S:      Supported
8436 F:      drivers/net/ethernet/ibm/ibmveth.*
8437
8438 IBM Power Virtual FC Device Drivers
8439 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8440 L:      linux-scsi@vger.kernel.org
8441 S:      Supported
8442 F:      drivers/scsi/ibmvscsi/ibmvfc*
8443
8444 IBM Power Virtual Management Channel Driver
8445 M:      Steven Royer <seroyer@linux.ibm.com>
8446 S:      Supported
8447 F:      drivers/misc/ibmvmc.*
8448
8449 IBM Power Virtual SCSI Device Drivers
8450 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8451 L:      linux-scsi@vger.kernel.org
8452 S:      Supported
8453 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8454 F:      include/scsi/viosrp.h
8455
8456 IBM Power Virtual SCSI Device Target Driver
8457 M:      Michael Cyr <mikecyr@linux.ibm.com>
8458 L:      linux-scsi@vger.kernel.org
8459 L:      target-devel@vger.kernel.org
8460 S:      Supported
8461 F:      drivers/scsi/ibmvscsi_tgt/
8462
8463 IBM Power VMX Cryptographic instructions
8464 M:      Breno Leitão <leitao@debian.org>
8465 M:      Nayna Jain <nayna@linux.ibm.com>
8466 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8467 L:      linux-crypto@vger.kernel.org
8468 S:      Supported
8469 F:      drivers/crypto/vmx/Kconfig
8470 F:      drivers/crypto/vmx/Makefile
8471 F:      drivers/crypto/vmx/aes*
8472 F:      drivers/crypto/vmx/ghash*
8473 F:      drivers/crypto/vmx/ppc-xlate.pl
8474 F:      drivers/crypto/vmx/vmx.c
8475
8476 IBM ServeRAID RAID DRIVER
8477 S:      Orphan
8478 F:      drivers/scsi/ips.*
8479
8480 ICH LPC AND GPIO DRIVER
8481 M:      Peter Tyser <ptyser@xes-inc.com>
8482 S:      Maintained
8483 F:      drivers/gpio/gpio-ich.c
8484 F:      drivers/mfd/lpc_ich.c
8485
8486 ICY I2C DRIVER
8487 M:      Max Staudt <max@enpas.org>
8488 L:      linux-i2c@vger.kernel.org
8489 S:      Maintained
8490 F:      drivers/i2c/busses/i2c-icy.c
8491
8492 IDE SUBSYSTEM
8493 M:      "David S. Miller" <davem@davemloft.net>
8494 L:      linux-ide@vger.kernel.org
8495 S:      Maintained
8496 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8498 F:      Documentation/ide/
8499 F:      drivers/ide/
8500 F:      include/linux/ide.h
8501
8502 IDE/ATAPI DRIVERS
8503 M:      Borislav Petkov <bp@alien8.de>
8504 L:      linux-ide@vger.kernel.org
8505 S:      Maintained
8506 F:      Documentation/cdrom/ide-cd.rst
8507 F:      drivers/ide/ide-cd*
8508
8509 IDEAPAD LAPTOP EXTRAS DRIVER
8510 M:      Ike Panhc <ike.pan@canonical.com>
8511 L:      platform-driver-x86@vger.kernel.org
8512 S:      Maintained
8513 W:      http://launchpad.net/ideapad-laptop
8514 F:      drivers/platform/x86/ideapad-laptop.c
8515
8516 IDEAPAD LAPTOP SLIDEBAR DRIVER
8517 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8518 L:      linux-input@vger.kernel.org
8519 S:      Maintained
8520 W:      https://github.com/o2genum/ideapad-slidebar
8521 F:      drivers/input/misc/ideapad_slidebar.c
8522
8523 IDT VersaClock 5 CLOCK DRIVER
8524 M:      Luca Ceresoli <luca@lucaceresoli.net>
8525 S:      Maintained
8526 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8527 F:      drivers/clk/clk-versaclock5.c
8528
8529 IEEE 802.15.4 SUBSYSTEM
8530 M:      Alexander Aring <alex.aring@gmail.com>
8531 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8532 L:      linux-wpan@vger.kernel.org
8533 S:      Maintained
8534 W:      https://linux-wpan.org/
8535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8537 F:      Documentation/networking/ieee802154.rst
8538 F:      drivers/net/ieee802154/
8539 F:      include/linux/ieee802154.h
8540 F:      include/linux/nl802154.h
8541 F:      include/net/af_ieee802154.h
8542 F:      include/net/cfg802154.h
8543 F:      include/net/ieee802154_netdev.h
8544 F:      include/net/mac802154.h
8545 F:      include/net/nl802154.h
8546 F:      net/ieee802154/
8547 F:      net/mac802154/
8548
8549 IFE PROTOCOL
8550 M:      Yotam Gigi <yotam.gi@gmail.com>
8551 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8552 F:      include/net/ife.h
8553 F:      include/uapi/linux/ife.h
8554 F:      net/ife
8555
8556 IGORPLUG-USB IR RECEIVER
8557 M:      Sean Young <sean@mess.org>
8558 L:      linux-media@vger.kernel.org
8559 S:      Maintained
8560 F:      drivers/media/rc/igorplugusb.c
8561
8562 IGUANAWORKS USB IR TRANSCEIVER
8563 M:      Sean Young <sean@mess.org>
8564 L:      linux-media@vger.kernel.org
8565 S:      Maintained
8566 F:      drivers/media/rc/iguanair.c
8567
8568 IIO DIGITAL POTENTIOMETER DAC
8569 M:      Peter Rosin <peda@axentia.se>
8570 L:      linux-iio@vger.kernel.org
8571 S:      Maintained
8572 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8573 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8574 F:      drivers/iio/dac/dpot-dac.c
8575
8576 IIO ENVELOPE DETECTOR
8577 M:      Peter Rosin <peda@axentia.se>
8578 L:      linux-iio@vger.kernel.org
8579 S:      Maintained
8580 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8581 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8582 F:      drivers/iio/adc/envelope-detector.c
8583
8584 IIO MULTIPLEXER
8585 M:      Peter Rosin <peda@axentia.se>
8586 L:      linux-iio@vger.kernel.org
8587 S:      Maintained
8588 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8589 F:      drivers/iio/multiplexer/iio-mux.c
8590
8591 IIO SUBSYSTEM AND DRIVERS
8592 M:      Jonathan Cameron <jic23@kernel.org>
8593 R:      Lars-Peter Clausen <lars@metafoo.de>
8594 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8595 L:      linux-iio@vger.kernel.org
8596 S:      Maintained
8597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8598 F:      Documentation/ABI/testing/configfs-iio*
8599 F:      Documentation/ABI/testing/sysfs-bus-iio*
8600 F:      Documentation/devicetree/bindings/iio/
8601 F:      drivers/iio/
8602 F:      drivers/staging/iio/
8603 F:      include/linux/iio/
8604 F:      tools/iio/
8605
8606 IIO UNIT CONVERTER
8607 M:      Peter Rosin <peda@axentia.se>
8608 L:      linux-iio@vger.kernel.org
8609 S:      Maintained
8610 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8611 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8612 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8613 F:      drivers/iio/afe/iio-rescale.c
8614
8615 IKANOS/ADI EAGLE ADSL USB DRIVER
8616 M:      Matthieu Castet <castet.matthieu@free.fr>
8617 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8618 S:      Maintained
8619 F:      drivers/usb/atm/ueagle-atm.c
8620
8621 IMGTEC ASCII LCD DRIVER
8622 M:      Paul Burton <paulburton@kernel.org>
8623 S:      Maintained
8624 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8625 F:      drivers/auxdisplay/img-ascii-lcd.c
8626
8627 IMGTEC IR DECODER DRIVER
8628 S:      Orphan
8629 F:      drivers/media/rc/img-ir/
8630
8631 IMON SOUNDGRAPH USB IR RECEIVER
8632 M:      Sean Young <sean@mess.org>
8633 L:      linux-media@vger.kernel.org
8634 S:      Maintained
8635 F:      drivers/media/rc/imon.c
8636 F:      drivers/media/rc/imon_raw.c
8637
8638 IMS TWINTURBO FRAMEBUFFER DRIVER
8639 L:      linux-fbdev@vger.kernel.org
8640 S:      Orphan
8641 F:      drivers/video/fbdev/imsttfb.c
8642
8643 INA209 HARDWARE MONITOR DRIVER
8644 M:      Guenter Roeck <linux@roeck-us.net>
8645 L:      linux-hwmon@vger.kernel.org
8646 S:      Maintained
8647 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8648 F:      Documentation/hwmon/ina209.rst
8649 F:      drivers/hwmon/ina209.c
8650
8651 INA2XX HARDWARE MONITOR DRIVER
8652 M:      Guenter Roeck <linux@roeck-us.net>
8653 L:      linux-hwmon@vger.kernel.org
8654 S:      Maintained
8655 F:      Documentation/hwmon/ina2xx.rst
8656 F:      drivers/hwmon/ina2xx.c
8657 F:      include/linux/platform_data/ina2xx.h
8658
8659 INDUSTRY PACK SUBSYSTEM (IPACK)
8660 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8661 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8662 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8663 L:      industrypack-devel@lists.sourceforge.net
8664 S:      Maintained
8665 W:      http://industrypack.sourceforge.net
8666 F:      drivers/ipack/
8667
8668 INFINEON DPS310 Driver
8669 M:      Eddie James <eajames@linux.ibm.com>
8670 L:      linux-iio@vger.kernel.org
8671 S:      Maintained
8672 F:      drivers/iio/pressure/dps310.c
8673
8674 INFINIBAND SUBSYSTEM
8675 M:      Doug Ledford <dledford@redhat.com>
8676 M:      Jason Gunthorpe <jgg@nvidia.com>
8677 L:      linux-rdma@vger.kernel.org
8678 S:      Supported
8679 W:      https://github.com/linux-rdma/rdma-core
8680 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8682 F:      Documentation/devicetree/bindings/infiniband/
8683 F:      Documentation/infiniband/
8684 F:      drivers/infiniband/
8685 F:      include/rdma/
8686 F:      include/trace/events/ib_mad.h
8687 F:      include/trace/events/ib_umad.h
8688 F:      include/uapi/linux/if_infiniband.h
8689 F:      include/uapi/rdma/
8690 F:      samples/bpf/ibumad_kern.c
8691 F:      samples/bpf/ibumad_user.c
8692
8693 INGENIC JZ4780 DMA Driver
8694 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8695 S:      Maintained
8696 F:      drivers/dma/dma-jz4780.c
8697
8698 INGENIC JZ4780 NAND DRIVER
8699 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8700 L:      linux-mtd@lists.infradead.org
8701 S:      Maintained
8702 F:      drivers/mtd/nand/raw/ingenic/
8703
8704 INGENIC JZ47xx SoCs
8705 M:      Paul Cercueil <paul@crapouillou.net>
8706 S:      Maintained
8707 F:      arch/mips/boot/dts/ingenic/
8708 F:      arch/mips/generic/board-ingenic.c
8709 F:      arch/mips/include/asm/mach-ingenic/
8710 F:      arch/mips/ingenic/Kconfig
8711 F:      drivers/clk/ingenic/
8712 F:      drivers/dma/dma-jz4780.c
8713 F:      drivers/gpu/drm/ingenic/
8714 F:      drivers/i2c/busses/i2c-jz4780.c
8715 F:      drivers/iio/adc/ingenic-adc.c
8716 F:      drivers/irqchip/irq-ingenic.c
8717 F:      drivers/memory/jz4780-nemc.c
8718 F:      drivers/mmc/host/jz4740_mmc.c
8719 F:      drivers/mtd/nand/raw/ingenic/
8720 F:      drivers/pinctrl/pinctrl-ingenic.c
8721 F:      drivers/power/supply/ingenic-battery.c
8722 F:      drivers/pwm/pwm-jz4740.c
8723 F:      drivers/remoteproc/ingenic_rproc.c
8724 F:      drivers/rtc/rtc-jz4740.c
8725 F:      drivers/tty/serial/8250/8250_ingenic.c
8726 F:      drivers/usb/musb/jz4740.c
8727 F:      drivers/watchdog/jz4740_wdt.c
8728 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8729 F:      include/linux/mfd/ingenic-tcu.h
8730 F:      sound/soc/codecs/jz47*
8731 F:      sound/soc/jz4740/
8732
8733 INOTIFY
8734 M:      Jan Kara <jack@suse.cz>
8735 R:      Amir Goldstein <amir73il@gmail.com>
8736 L:      linux-fsdevel@vger.kernel.org
8737 S:      Maintained
8738 F:      Documentation/filesystems/inotify.rst
8739 F:      fs/notify/inotify/
8740 F:      include/linux/inotify.h
8741 F:      include/uapi/linux/inotify.h
8742
8743 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8744 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8745 L:      linux-input@vger.kernel.org
8746 S:      Maintained
8747 Q:      http://patchwork.kernel.org/project/linux-input/list/
8748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8749 F:      Documentation/devicetree/bindings/input/
8750 F:      Documentation/devicetree/bindings/serio/
8751 F:      Documentation/input/
8752 F:      drivers/input/
8753 F:      include/linux/input.h
8754 F:      include/linux/input/
8755 F:      include/uapi/linux/input-event-codes.h
8756 F:      include/uapi/linux/input.h
8757
8758 INPUT MULTITOUCH (MT) PROTOCOL
8759 M:      Henrik Rydberg <rydberg@bitmath.org>
8760 L:      linux-input@vger.kernel.org
8761 S:      Odd fixes
8762 F:      Documentation/input/multi-touch-protocol.rst
8763 F:      drivers/input/input-mt.c
8764 K:      \b(ABS|SYN)_MT_
8765
8766 INSIDE SECURE CRYPTO DRIVER
8767 M:      Antoine Tenart <atenart@kernel.org>
8768 L:      linux-crypto@vger.kernel.org
8769 S:      Maintained
8770 F:      drivers/crypto/inside-secure/
8771
8772 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8773 M:      Mimi Zohar <zohar@linux.ibm.com>
8774 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8775 L:      linux-integrity@vger.kernel.org
8776 S:      Supported
8777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8778 F:      security/integrity/ima/
8779
8780 INTEL 810/815 FRAMEBUFFER DRIVER
8781 M:      Antonino Daplas <adaplas@gmail.com>
8782 L:      linux-fbdev@vger.kernel.org
8783 S:      Maintained
8784 F:      drivers/video/fbdev/i810/
8785
8786 INTEL ASoC DRIVERS
8787 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8788 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8789 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8790 M:      Jie Yang <yang.jie@linux.intel.com>
8791 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8792 S:      Supported
8793 F:      sound/soc/intel/
8794
8795 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8796 M:      Hans de Goede <hdegoede@redhat.com>
8797 L:      platform-driver-x86@vger.kernel.org
8798 S:      Maintained
8799 F:      drivers/platform/x86/intel_atomisp2_pm.c
8800
8801 INTEL ATOMISP2 LED DRIVER
8802 M:      Hans de Goede <hdegoede@redhat.com>
8803 L:      platform-driver-x86@vger.kernel.org
8804 S:      Maintained
8805 F:      drivers/platform/x86/intel_atomisp2_led.c
8806
8807 INTEL BROXTON PMC DRIVER
8808 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8809 M:      Zha Qipeng <qipeng.zha@intel.com>
8810 S:      Maintained
8811 F:      drivers/mfd/intel_pmc_bxt.c
8812 F:      include/linux/mfd/intel_pmc_bxt.h
8813
8814 INTEL C600 SERIES SAS CONTROLLER DRIVER
8815 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8816 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8817 L:      linux-scsi@vger.kernel.org
8818 S:      Supported
8819 T:      git git://git.code.sf.net/p/intel-sas/isci
8820 F:      drivers/scsi/isci/
8821
8822 INTEL CPU family model numbers
8823 M:      Tony Luck <tony.luck@intel.com>
8824 M:      x86@kernel.org
8825 L:      linux-kernel@vger.kernel.org
8826 S:      Supported
8827 F:      arch/x86/include/asm/intel-family.h
8828
8829 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8830 M:      Jani Nikula <jani.nikula@linux.intel.com>
8831 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8832 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8833 L:      intel-gfx@lists.freedesktop.org
8834 S:      Supported
8835 W:      https://01.org/linuxgraphics/
8836 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8837 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8838 C:      irc://chat.freenode.net/intel-gfx
8839 T:      git git://anongit.freedesktop.org/drm-intel
8840 F:      Documentation/gpu/i915.rst
8841 F:      drivers/gpu/drm/i915/
8842 F:      include/drm/i915*
8843 F:      include/uapi/drm/i915_drm.h
8844
8845 INTEL ETHERNET DRIVERS
8846 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
8847 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
8848 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8849 S:      Supported
8850 W:      http://www.intel.com/support/feedback.htm
8851 W:      http://e1000.sourceforge.net/
8852 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
8854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
8855 F:      Documentation/networking/device_drivers/ethernet/intel/
8856 F:      drivers/net/ethernet/intel/
8857 F:      drivers/net/ethernet/intel/*/
8858 F:      include/linux/avf/virtchnl.h
8859
8860 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8861 M:      Maik Broemme <mbroemme@libmpq.org>
8862 L:      linux-fbdev@vger.kernel.org
8863 S:      Maintained
8864 F:      Documentation/fb/intelfb.rst
8865 F:      drivers/video/fbdev/intelfb/
8866
8867 INTEL GPIO DRIVERS
8868 M:      Andy Shevchenko <andy@kernel.org>
8869 L:      linux-gpio@vger.kernel.org
8870 S:      Maintained
8871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8872 F:      drivers/gpio/gpio-ich.c
8873 F:      drivers/gpio/gpio-intel-mid.c
8874 F:      drivers/gpio/gpio-merrifield.c
8875 F:      drivers/gpio/gpio-ml-ioh.c
8876 F:      drivers/gpio/gpio-pch.c
8877 F:      drivers/gpio/gpio-sch.c
8878 F:      drivers/gpio/gpio-sodaville.c
8879
8880 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8881 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8882 M:      Zhi Wang <zhi.a.wang@intel.com>
8883 L:      intel-gvt-dev@lists.freedesktop.org
8884 L:      intel-gfx@lists.freedesktop.org
8885 S:      Supported
8886 W:      https://01.org/igvt-g
8887 T:      git https://github.com/intel/gvt-linux.git
8888 F:      drivers/gpu/drm/i915/gvt/
8889
8890 INTEL HID EVENT DRIVER
8891 M:      Alex Hung <alex.hung@canonical.com>
8892 L:      platform-driver-x86@vger.kernel.org
8893 S:      Maintained
8894 F:      drivers/platform/x86/intel-hid.c
8895
8896 INTEL I/OAT DMA DRIVER
8897 M:      Dave Jiang <dave.jiang@intel.com>
8898 R:      Dan Williams <dan.j.williams@intel.com>
8899 L:      dmaengine@vger.kernel.org
8900 S:      Supported
8901 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8902 F:      drivers/dma/ioat*
8903
8904 INTEL IADX DRIVER
8905 M:      Dave Jiang <dave.jiang@intel.com>
8906 L:      dmaengine@vger.kernel.org
8907 S:      Supported
8908 F:      drivers/dma/idxd/*
8909 F:      include/uapi/linux/idxd.h
8910
8911 INTEL IDLE DRIVER
8912 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8913 M:      Len Brown <lenb@kernel.org>
8914 L:      linux-pm@vger.kernel.org
8915 S:      Supported
8916 B:      https://bugzilla.kernel.org
8917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8918 F:      drivers/idle/intel_idle.c
8919
8920 INTEL INTEGRATED SENSOR HUB DRIVER
8921 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8922 M:      Jiri Kosina <jikos@kernel.org>
8923 L:      linux-input@vger.kernel.org
8924 S:      Maintained
8925 F:      drivers/hid/intel-ish-hid/
8926
8927 INTEL IOMMU (VT-d)
8928 M:      David Woodhouse <dwmw2@infradead.org>
8929 M:      Lu Baolu <baolu.lu@linux.intel.com>
8930 L:      iommu@lists.linux-foundation.org
8931 S:      Supported
8932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8933 F:      drivers/iommu/intel/
8934 F:      include/linux/intel-iommu.h
8935 F:      include/linux/intel-svm.h
8936
8937 INTEL IOP-ADMA DMA DRIVER
8938 R:      Dan Williams <dan.j.williams@intel.com>
8939 S:      Odd fixes
8940 F:      drivers/dma/iop-adma.c
8941
8942 INTEL IPU3 CSI-2 CIO2 DRIVER
8943 M:      Yong Zhi <yong.zhi@intel.com>
8944 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8945 M:      Bingbu Cao <bingbu.cao@intel.com>
8946 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
8947 L:      linux-media@vger.kernel.org
8948 S:      Maintained
8949 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8950 F:      drivers/media/pci/intel/ipu3/
8951
8952 INTEL IPU3 CSI-2 IMGU DRIVER
8953 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8954 R:      Bingbu Cao <bingbu.cao@intel.com>
8955 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
8956 L:      linux-media@vger.kernel.org
8957 S:      Maintained
8958 F:      Documentation/admin-guide/media/ipu3.rst
8959 F:      Documentation/admin-guide/media/ipu3_rcb.svg
8960 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
8961 F:      drivers/staging/media/ipu3/
8962
8963 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8964 M:      Krzysztof Halasa <khalasa@piap.pl>
8965 S:      Maintained
8966 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8967 F:      drivers/net/wan/ixp4xx_hss.c
8968 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8969 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8970 F:      include/linux/soc/ixp4xx/npe.h
8971 F:      include/linux/soc/ixp4xx/qmgr.h
8972
8973 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8974 M:      Deepak Saxena <dsaxena@plexity.net>
8975 S:      Maintained
8976 F:      drivers/char/hw_random/ixp4xx-rng.c
8977
8978 INTEL KEEM BAY DRM DRIVER
8979 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
8980 M:      Edmund Dea <edmund.j.dea@intel.com>
8981 S:      Maintained
8982 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
8983 F:      drivers/gpu/drm/kmb/
8984
8985 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
8986 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
8987 S:      Maintained
8988 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
8989 F:      drivers/crypto/keembay/Kconfig
8990 F:      drivers/crypto/keembay/Makefile
8991 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
8992 F:      drivers/crypto/keembay/ocs-aes.c
8993 F:      drivers/crypto/keembay/ocs-aes.h
8994
8995 INTEL MANAGEMENT ENGINE (mei)
8996 M:      Tomas Winkler <tomas.winkler@intel.com>
8997 L:      linux-kernel@vger.kernel.org
8998 S:      Supported
8999 F:      Documentation/driver-api/mei/*
9000 F:      drivers/misc/mei/
9001 F:      drivers/watchdog/mei_wdt.c
9002 F:      include/linux/mei_cl_bus.h
9003 F:      include/uapi/linux/mei.h
9004 F:      samples/mei/*
9005
9006 INTEL MENLOW THERMAL DRIVER
9007 M:      Sujith Thomas <sujith.thomas@intel.com>
9008 L:      platform-driver-x86@vger.kernel.org
9009 S:      Supported
9010 W:      https://01.org/linux-acpi
9011 F:      drivers/platform/x86/intel_menlow.c
9012
9013 INTEL P-Unit IPC DRIVER
9014 M:      Zha Qipeng <qipeng.zha@intel.com>
9015 L:      platform-driver-x86@vger.kernel.org
9016 S:      Maintained
9017 F:      arch/x86/include/asm/intel_punit_ipc.h
9018 F:      drivers/platform/x86/intel_punit_ipc.c
9019
9020 INTEL PMC CORE DRIVER
9021 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9022 M:      David E Box <david.e.box@intel.com>
9023 L:      platform-driver-x86@vger.kernel.org
9024 S:      Maintained
9025 F:      drivers/platform/x86/intel_pmc_core*
9026
9027 INTEL PMIC GPIO DRIVERS
9028 M:      Andy Shevchenko <andy@kernel.org>
9029 S:      Maintained
9030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9031 F:      drivers/gpio/gpio-*cove.c
9032 F:      drivers/gpio/gpio-msic.c
9033
9034 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9035 M:      Andy Shevchenko <andy@kernel.org>
9036 S:      Maintained
9037 F:      drivers/mfd/intel_msic.c
9038 F:      drivers/mfd/intel_soc_pmic*
9039 F:      include/linux/mfd/intel_msic.h
9040 F:      include/linux/mfd/intel_soc_pmic*
9041
9042 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9043 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9044 L:      linux-wireless@vger.kernel.org
9045 S:      Maintained
9046 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9047 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9048 F:      drivers/net/wireless/intel/ipw2x00/
9049
9050 INTEL PSTATE DRIVER
9051 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9052 M:      Len Brown <lenb@kernel.org>
9053 L:      linux-pm@vger.kernel.org
9054 S:      Supported
9055 F:      drivers/cpufreq/intel_pstate.c
9056
9057 INTEL RDMA RNIC DRIVER
9058 M:      Faisal Latif <faisal.latif@intel.com>
9059 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9060 L:      linux-rdma@vger.kernel.org
9061 S:      Supported
9062 F:      drivers/infiniband/hw/i40iw/
9063 F:      include/uapi/rdma/i40iw-abi.h
9064
9065 INTEL SCU DRIVERS
9066 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9067 S:      Maintained
9068 F:      arch/x86/include/asm/intel_scu_ipc.h
9069 F:      drivers/platform/x86/intel_scu_*
9070
9071 INTEL SPEED SELECT TECHNOLOGY
9072 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9073 L:      platform-driver-x86@vger.kernel.org
9074 S:      Maintained
9075 F:      drivers/platform/x86/intel_speed_select_if/
9076 F:      include/uapi/linux/isst_if.h
9077 F:      tools/power/x86/intel-speed-select/
9078
9079 INTEL STRATIX10 FIRMWARE DRIVERS
9080 M:      Richard Gong <richard.gong@linux.intel.com>
9081 L:      linux-kernel@vger.kernel.org
9082 S:      Maintained
9083 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9084 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9085 F:      drivers/firmware/stratix10-rsu.c
9086 F:      drivers/firmware/stratix10-svc.c
9087 F:      include/linux/firmware/intel/stratix10-smc.h
9088 F:      include/linux/firmware/intel/stratix10-svc-client.h
9089
9090 INTEL TELEMETRY DRIVER
9091 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
9092 M:      "David E. Box" <david.e.box@linux.intel.com>
9093 L:      platform-driver-x86@vger.kernel.org
9094 S:      Maintained
9095 F:      arch/x86/include/asm/intel_telemetry.h
9096 F:      drivers/platform/x86/intel_telemetry*
9097
9098 INTEL UNCORE FREQUENCY CONTROL
9099 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9100 L:      platform-driver-x86@vger.kernel.org
9101 S:      Maintained
9102 F:      drivers/platform/x86/intel-uncore-frequency.c
9103
9104 INTEL VIRTUAL BUTTON DRIVER
9105 M:      AceLan Kao <acelan.kao@canonical.com>
9106 L:      platform-driver-x86@vger.kernel.org
9107 S:      Maintained
9108 F:      drivers/platform/x86/intel-vbtn.c
9109
9110 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9111 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9112 L:      linux-wireless@vger.kernel.org
9113 S:      Supported
9114 F:      drivers/net/wireless/intel/iwlegacy/
9115
9116 INTEL WIRELESS WIFI LINK (iwlwifi)
9117 M:      Luca Coelho <luciano.coelho@intel.com>
9118 L:      linux-wireless@vger.kernel.org
9119 S:      Supported
9120 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9122 F:      drivers/net/wireless/intel/iwlwifi/
9123
9124 INTEL WIRELESS WIMAX CONNECTION 2400
9125 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
9126 M:      linux-wimax@intel.com
9127 L:      wimax@linuxwimax.org (subscribers-only)
9128 S:      Supported
9129 W:      http://linuxwimax.org
9130 F:      Documentation/admin-guide/wimax/i2400m.rst
9131 F:      drivers/net/wimax/i2400m/
9132 F:      include/uapi/linux/wimax/i2400m.h
9133
9134 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9135 M:      Jithu Joseph <jithu.joseph@intel.com>
9136 R:      Maurice Ma <maurice.ma@intel.com>
9137 S:      Maintained
9138 W:      https://slimbootloader.github.io/security/firmware-update.html
9139 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9140
9141 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9142 M:      Mario Limonciello <mario.limonciello@dell.com>
9143 S:      Maintained
9144 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9145
9146 INTEL(R) TRACE HUB
9147 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9148 S:      Supported
9149 F:      Documentation/trace/intel_th.rst
9150 F:      drivers/hwtracing/intel_th/
9151 F:      include/linux/intel_th.h
9152
9153 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9154 M:      Ning Sun <ning.sun@intel.com>
9155 L:      tboot-devel@lists.sourceforge.net
9156 S:      Supported
9157 W:      http://tboot.sourceforge.net
9158 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9159 F:      Documentation/x86/intel_txt.rst
9160 F:      arch/x86/kernel/tboot.c
9161 F:      include/linux/tboot.h
9162
9163 INTERCONNECT API
9164 M:      Georgi Djakov <georgi.djakov@linaro.org>
9165 L:      linux-pm@vger.kernel.org
9166 S:      Maintained
9167 F:      Documentation/devicetree/bindings/interconnect/
9168 F:      Documentation/driver-api/interconnect.rst
9169 F:      drivers/interconnect/
9170 F:      include/dt-bindings/interconnect/
9171 F:      include/linux/interconnect-provider.h
9172 F:      include/linux/interconnect.h
9173
9174 INVENSENSE ICM-426xx IMU DRIVER
9175 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9176 L:      linux-iio@vger.kernel.org
9177 S:      Maintained
9178 W       https://invensense.tdk.com/
9179 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9180 F:      drivers/iio/imu/inv_icm42600/
9181
9182 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9183 M:      Linus Walleij <linus.walleij@linaro.org>
9184 L:      linux-iio@vger.kernel.org
9185 S:      Maintained
9186 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
9187 F:      drivers/iio/gyro/mpu3050*
9188
9189 IOC3 ETHERNET DRIVER
9190 M:      Ralf Baechle <ralf@linux-mips.org>
9191 L:      linux-mips@vger.kernel.org
9192 S:      Maintained
9193 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9194
9195 IOMAP FILESYSTEM LIBRARY
9196 M:      Christoph Hellwig <hch@infradead.org>
9197 M:      Darrick J. Wong <darrick.wong@oracle.com>
9198 M:      linux-xfs@vger.kernel.org
9199 M:      linux-fsdevel@vger.kernel.org
9200 L:      linux-xfs@vger.kernel.org
9201 L:      linux-fsdevel@vger.kernel.org
9202 S:      Supported
9203 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9204 F:      fs/iomap/
9205 F:      include/linux/iomap.h
9206
9207 IOMMU DRIVERS
9208 M:      Joerg Roedel <joro@8bytes.org>
9209 M:      Will Deacon <will@kernel.org>
9210 L:      iommu@lists.linux-foundation.org
9211 S:      Maintained
9212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9213 F:      Documentation/devicetree/bindings/iommu/
9214 F:      Documentation/userspace-api/iommu.rst
9215 F:      drivers/iommu/
9216 F:      include/linux/iommu.h
9217 F:      include/linux/iova.h
9218 F:      include/linux/of_iommu.h
9219 F:      include/uapi/linux/iommu.h
9220
9221 IO_URING
9222 M:      Jens Axboe <axboe@kernel.dk>
9223 L:      io-uring@vger.kernel.org
9224 S:      Maintained
9225 T:      git git://git.kernel.dk/linux-block
9226 T:      git git://git.kernel.dk/liburing
9227 F:      fs/io-wq.c
9228 F:      fs/io-wq.h
9229 F:      fs/io_uring.c
9230 F:      include/uapi/linux/io_uring.h
9231
9232 IPMI SUBSYSTEM
9233 M:      Corey Minyard <minyard@acm.org>
9234 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9235 S:      Supported
9236 W:      http://openipmi.sourceforge.net/
9237 F:      Documentation/driver-api/ipmi.rst
9238 F:      Documentation/devicetree/bindings/ipmi/
9239 F:      drivers/char/ipmi/
9240 F:      include/linux/ipmi*
9241 F:      include/uapi/linux/ipmi*
9242
9243 IPS SCSI RAID DRIVER
9244 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9245 L:      linux-scsi@vger.kernel.org
9246 S:      Maintained
9247 W:      http://www.adaptec.com/
9248 F:      drivers/scsi/ips*
9249
9250 IPVS
9251 M:      Wensong Zhang <wensong@linux-vs.org>
9252 M:      Simon Horman <horms@verge.net.au>
9253 M:      Julian Anastasov <ja@ssi.bg>
9254 L:      netdev@vger.kernel.org
9255 L:      lvs-devel@vger.kernel.org
9256 S:      Maintained
9257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9259 F:      Documentation/networking/ipvs-sysctl.rst
9260 F:      include/net/ip_vs.h
9261 F:      include/uapi/linux/ip_vs.h
9262 F:      net/netfilter/ipvs/
9263
9264 IPWIRELESS DRIVER
9265 M:      Jiri Kosina <jikos@kernel.org>
9266 M:      David Sterba <dsterba@suse.com>
9267 S:      Odd Fixes
9268 F:      drivers/tty/ipwireless/
9269
9270 IPX NETWORK LAYER
9271 L:      netdev@vger.kernel.org
9272 S:      Obsolete
9273 F:      include/uapi/linux/ipx.h
9274
9275 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9276 M:      Marc Zyngier <maz@kernel.org>
9277 S:      Maintained
9278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9279 F:      Documentation/core-api/irq/irq-domain.rst
9280 F:      include/linux/irqdomain.h
9281 F:      kernel/irq/irqdomain.c
9282 F:      kernel/irq/msi.c
9283
9284 IRQ SUBSYSTEM
9285 M:      Thomas Gleixner <tglx@linutronix.de>
9286 L:      linux-kernel@vger.kernel.org
9287 S:      Maintained
9288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9289 F:      kernel/irq/
9290
9291 IRQCHIP DRIVERS
9292 M:      Thomas Gleixner <tglx@linutronix.de>
9293 M:      Marc Zyngier <maz@kernel.org>
9294 L:      linux-kernel@vger.kernel.org
9295 S:      Maintained
9296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9297 F:      Documentation/devicetree/bindings/interrupt-controller/
9298 F:      drivers/irqchip/
9299
9300 ISA
9301 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9302 S:      Maintained
9303 F:      Documentation/driver-api/isa.rst
9304 F:      drivers/base/isa.c
9305 F:      include/linux/isa.h
9306
9307 ISA RADIO MODULE
9308 M:      Hans Verkuil <hverkuil@xs4all.nl>
9309 L:      linux-media@vger.kernel.org
9310 S:      Maintained
9311 W:      https://linuxtv.org
9312 T:      git git://linuxtv.org/media_tree.git
9313 F:      drivers/media/radio/radio-isa*
9314
9315 ISAPNP
9316 M:      Jaroslav Kysela <perex@perex.cz>
9317 S:      Maintained
9318 F:      Documentation/driver-api/isapnp.rst
9319 F:      drivers/pnp/isapnp/
9320 F:      include/linux/isapnp.h
9321
9322 ISCSI
9323 M:      Lee Duncan <lduncan@suse.com>
9324 M:      Chris Leech <cleech@redhat.com>
9325 L:      open-iscsi@googlegroups.com
9326 L:      linux-scsi@vger.kernel.org
9327 S:      Maintained
9328 W:      www.open-iscsi.com
9329 F:      drivers/scsi/*iscsi*
9330 F:      include/scsi/*iscsi*
9331
9332 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9333 M:      Peter Jones <pjones@redhat.com>
9334 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9335 S:      Maintained
9336 F:      drivers/firmware/iscsi_ibft*
9337
9338 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9339 M:      Sagi Grimberg <sagi@grimberg.me>
9340 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9341 L:      linux-rdma@vger.kernel.org
9342 S:      Supported
9343 W:      http://www.openfabrics.org
9344 W:      www.open-iscsi.org
9345 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9346 F:      drivers/infiniband/ulp/iser/
9347
9348 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9349 M:      Sagi Grimberg <sagi@grimberg.me>
9350 L:      linux-rdma@vger.kernel.org
9351 L:      target-devel@vger.kernel.org
9352 S:      Supported
9353 W:      http://www.linux-iscsi.org
9354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9355 F:      drivers/infiniband/ulp/isert
9356
9357 ISDN/CMTP OVER BLUETOOTH
9358 M:      Karsten Keil <isdn@linux-pingi.de>
9359 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9360 L:      netdev@vger.kernel.org
9361 S:      Odd Fixes
9362 W:      http://www.isdn4linux.de
9363 F:      Documentation/isdn/
9364 F:      drivers/isdn/capi/
9365 F:      include/linux/isdn/
9366 F:      include/uapi/linux/isdn/
9367 F:      net/bluetooth/cmtp/
9368
9369 ISDN/mISDN SUBSYSTEM
9370 M:      Karsten Keil <isdn@linux-pingi.de>
9371 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9372 L:      netdev@vger.kernel.org
9373 S:      Maintained
9374 W:      http://www.isdn4linux.de
9375 F:      drivers/isdn/Kconfig
9376 F:      drivers/isdn/Makefile
9377 F:      drivers/isdn/hardware/
9378 F:      drivers/isdn/mISDN/
9379
9380 IT87 HARDWARE MONITORING DRIVER
9381 M:      Jean Delvare <jdelvare@suse.com>
9382 L:      linux-hwmon@vger.kernel.org
9383 S:      Maintained
9384 F:      Documentation/hwmon/it87.rst
9385 F:      drivers/hwmon/it87.c
9386
9387 IT913X MEDIA DRIVER
9388 M:      Antti Palosaari <crope@iki.fi>
9389 L:      linux-media@vger.kernel.org
9390 S:      Maintained
9391 W:      https://linuxtv.org
9392 W:      http://palosaari.fi/linux/
9393 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9394 T:      git git://linuxtv.org/anttip/media_tree.git
9395 F:      drivers/media/tuners/it913x*
9396
9397 IVTV VIDEO4LINUX DRIVER
9398 M:      Andy Walls <awalls@md.metrocast.net>
9399 L:      linux-media@vger.kernel.org
9400 S:      Maintained
9401 W:      https://linuxtv.org
9402 T:      git git://linuxtv.org/media_tree.git
9403 F:      Documentation/admin-guide/media/ivtv*
9404 F:      drivers/media/pci/ivtv/
9405 F:      include/uapi/linux/ivtv*
9406
9407 IX2505V MEDIA DRIVER
9408 M:      Malcolm Priestley <tvboxspy@gmail.com>
9409 L:      linux-media@vger.kernel.org
9410 S:      Maintained
9411 W:      https://linuxtv.org
9412 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9413 F:      drivers/media/dvb-frontends/ix2505v*
9414
9415 JAILHOUSE HYPERVISOR INTERFACE
9416 M:      Jan Kiszka <jan.kiszka@siemens.com>
9417 L:      jailhouse-dev@googlegroups.com
9418 S:      Maintained
9419 F:      arch/x86/include/asm/jailhouse_para.h
9420 F:      arch/x86/kernel/jailhouse.c
9421
9422 JC42.4 TEMPERATURE SENSOR DRIVER
9423 M:      Guenter Roeck <linux@roeck-us.net>
9424 L:      linux-hwmon@vger.kernel.org
9425 S:      Maintained
9426 F:      Documentation/hwmon/jc42.rst
9427 F:      drivers/hwmon/jc42.c
9428
9429 JFS FILESYSTEM
9430 M:      Dave Kleikamp <shaggy@kernel.org>
9431 L:      jfs-discussion@lists.sourceforge.net
9432 S:      Maintained
9433 W:      http://jfs.sourceforge.net/
9434 T:      git git://github.com/kleikamp/linux-shaggy.git
9435 F:      Documentation/admin-guide/jfs.rst
9436 F:      fs/jfs/
9437
9438 JME NETWORK DRIVER
9439 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9440 L:      netdev@vger.kernel.org
9441 S:      Maintained
9442 F:      drivers/net/ethernet/jme.*
9443
9444 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9445 M:      David Woodhouse <dwmw2@infradead.org>
9446 M:      Richard Weinberger <richard@nod.at>
9447 L:      linux-mtd@lists.infradead.org
9448 S:      Odd Fixes
9449 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9450 T:      git git://git.infradead.org/ubifs-2.6.git
9451 F:      fs/jffs2/
9452 F:      include/uapi/linux/jffs2.h
9453
9454 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9455 M:      "Theodore Ts'o" <tytso@mit.edu>
9456 M:      Jan Kara <jack@suse.com>
9457 L:      linux-ext4@vger.kernel.org
9458 S:      Maintained
9459 F:      fs/jbd2/
9460 F:      include/linux/jbd2.h
9461
9462 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9463 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9464 L:      linux-media@vger.kernel.org
9465 S:      Maintained
9466 F:      drivers/media/platform/rcar_jpu.c
9467
9468 JSM Neo PCI based serial card
9469 L:      linux-serial@vger.kernel.org
9470 S:      Orphan
9471 F:      drivers/tty/serial/jsm/
9472
9473 K10TEMP HARDWARE MONITORING DRIVER
9474 M:      Clemens Ladisch <clemens@ladisch.de>
9475 L:      linux-hwmon@vger.kernel.org
9476 S:      Maintained
9477 F:      Documentation/hwmon/k10temp.rst
9478 F:      drivers/hwmon/k10temp.c
9479
9480 K8TEMP HARDWARE MONITORING DRIVER
9481 M:      Rudolf Marek <r.marek@assembler.cz>
9482 L:      linux-hwmon@vger.kernel.org
9483 S:      Maintained
9484 F:      Documentation/hwmon/k8temp.rst
9485 F:      drivers/hwmon/k8temp.c
9486
9487 KASAN
9488 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
9489 R:      Alexander Potapenko <glider@google.com>
9490 R:      Dmitry Vyukov <dvyukov@google.com>
9491 L:      kasan-dev@googlegroups.com
9492 S:      Maintained
9493 F:      Documentation/dev-tools/kasan.rst
9494 F:      arch/*/include/asm/kasan.h
9495 F:      arch/*/mm/kasan_init*
9496 F:      include/linux/kasan*.h
9497 F:      lib/test_kasan.c
9498 F:      mm/kasan/
9499 F:      scripts/Makefile.kasan
9500
9501 KCONFIG
9502 M:      Masahiro Yamada <masahiroy@kernel.org>
9503 L:      linux-kbuild@vger.kernel.org
9504 S:      Maintained
9505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9506 F:      Documentation/kbuild/kconfig*
9507 F:      scripts/Kconfig.include
9508 F:      scripts/kconfig/
9509
9510 KCOV
9511 R:      Dmitry Vyukov <dvyukov@google.com>
9512 R:      Andrey Konovalov <andreyknvl@google.com>
9513 L:      kasan-dev@googlegroups.com
9514 S:      Maintained
9515 F:      Documentation/dev-tools/kcov.rst
9516 F:      include/linux/kcov.h
9517 F:      include/uapi/linux/kcov.h
9518 F:      kernel/kcov.c
9519 F:      scripts/Makefile.kcov
9520
9521 KCSAN
9522 M:      Marco Elver <elver@google.com>
9523 R:      Dmitry Vyukov <dvyukov@google.com>
9524 L:      kasan-dev@googlegroups.com
9525 S:      Maintained
9526 F:      Documentation/dev-tools/kcsan.rst
9527 F:      include/linux/kcsan*.h
9528 F:      kernel/kcsan/
9529 F:      lib/Kconfig.kcsan
9530 F:      scripts/Makefile.kcsan
9531
9532 KDUMP
9533 M:      Dave Young <dyoung@redhat.com>
9534 M:      Baoquan He <bhe@redhat.com>
9535 R:      Vivek Goyal <vgoyal@redhat.com>
9536 L:      kexec@lists.infradead.org
9537 S:      Maintained
9538 W:      http://lse.sourceforge.net/kdump/
9539 F:      Documentation/admin-guide/kdump/
9540 F:      fs/proc/vmcore.c
9541 F:      include/linux/crash_core.h
9542 F:      include/linux/crash_dump.h
9543 F:      include/uapi/linux/vmcore.h
9544 F:      kernel/crash_*.c
9545
9546 KEENE FM RADIO TRANSMITTER DRIVER
9547 M:      Hans Verkuil <hverkuil@xs4all.nl>
9548 L:      linux-media@vger.kernel.org
9549 S:      Maintained
9550 W:      https://linuxtv.org
9551 T:      git git://linuxtv.org/media_tree.git
9552 F:      drivers/media/radio/radio-keene*
9553
9554 KERNEL AUTOMOUNTER
9555 M:      Ian Kent <raven@themaw.net>
9556 L:      autofs@vger.kernel.org
9557 S:      Maintained
9558 F:      fs/autofs/
9559
9560 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9561 M:      Masahiro Yamada <masahiroy@kernel.org>
9562 M:      Michal Marek <michal.lkml@markovi.net>
9563 L:      linux-kbuild@vger.kernel.org
9564 S:      Maintained
9565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9566 F:      Documentation/kbuild/
9567 F:      Makefile
9568 F:      scripts/*vmlinux*
9569 F:      scripts/Kbuild*
9570 F:      scripts/Makefile*
9571 F:      scripts/basic/
9572 F:      scripts/mk*
9573 F:      scripts/mod/
9574 F:      scripts/package/
9575
9576 KERNEL JANITORS
9577 L:      kernel-janitors@vger.kernel.org
9578 S:      Odd Fixes
9579 W:      http://kernelnewbies.org/KernelJanitors
9580
9581 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9582 M:      "J. Bruce Fields" <bfields@fieldses.org>
9583 M:      Chuck Lever <chuck.lever@oracle.com>
9584 L:      linux-nfs@vger.kernel.org
9585 S:      Supported
9586 W:      http://nfs.sourceforge.net/
9587 T:      git git://linux-nfs.org/~bfields/linux.git
9588 F:      fs/lockd/
9589 F:      fs/nfs_common/
9590 F:      fs/nfsd/
9591 F:      include/linux/lockd/
9592 F:      include/linux/sunrpc/
9593 F:      include/uapi/linux/nfsd/
9594 F:      include/uapi/linux/sunrpc/
9595 F:      net/sunrpc/
9596 F:      Documentation/filesystems/nfs/
9597
9598 KERNEL SELFTEST FRAMEWORK
9599 M:      Shuah Khan <shuah@kernel.org>
9600 M:      Shuah Khan <skhan@linuxfoundation.org>
9601 L:      linux-kselftest@vger.kernel.org
9602 S:      Maintained
9603 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9605 F:      Documentation/dev-tools/kselftest*
9606 F:      tools/testing/selftests/
9607
9608 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9609 M:      Brendan Higgins <brendanhiggins@google.com>
9610 L:      linux-kselftest@vger.kernel.org
9611 L:      kunit-dev@googlegroups.com
9612 S:      Maintained
9613 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9614 F:      Documentation/dev-tools/kunit/
9615 F:      include/kunit/
9616 F:      lib/kunit/
9617 F:      tools/testing/kunit/
9618
9619 KERNEL USERMODE HELPER
9620 M:      Luis Chamberlain <mcgrof@kernel.org>
9621 L:      linux-kernel@vger.kernel.org
9622 S:      Maintained
9623 F:      include/linux/umh.h
9624 F:      kernel/umh.c
9625
9626 KERNEL VIRTUAL MACHINE (KVM)
9627 M:      Paolo Bonzini <pbonzini@redhat.com>
9628 L:      kvm@vger.kernel.org
9629 S:      Supported
9630 W:      http://www.linux-kvm.org
9631 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9632 F:      Documentation/virt/kvm/
9633 F:      include/asm-generic/kvm*
9634 F:      include/kvm/iodev.h
9635 F:      include/linux/kvm*
9636 F:      include/trace/events/kvm.h
9637 F:      include/uapi/asm-generic/kvm*
9638 F:      include/uapi/linux/kvm*
9639 F:      tools/kvm/
9640 F:      tools/testing/selftests/kvm/
9641 F:      virt/kvm/*
9642
9643 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9644 M:      Marc Zyngier <maz@kernel.org>
9645 R:      James Morse <james.morse@arm.com>
9646 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9647 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9649 L:      kvmarm@lists.cs.columbia.edu
9650 S:      Maintained
9651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9652 F:      arch/arm64/include/asm/kvm*
9653 F:      arch/arm64/include/uapi/asm/kvm*
9654 F:      arch/arm64/kvm/
9655 F:      include/kvm/arm_*
9656
9657 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9658 M:      Huacai Chen <chenhc@lemote.com>
9659 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
9660 L:      linux-mips@vger.kernel.org
9661 L:      kvm@vger.kernel.org
9662 S:      Maintained
9663 F:      arch/mips/include/asm/kvm*
9664 F:      arch/mips/include/uapi/asm/kvm*
9665 F:      arch/mips/kvm/
9666
9667 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9668 M:      Paul Mackerras <paulus@ozlabs.org>
9669 L:      kvm-ppc@vger.kernel.org
9670 S:      Supported
9671 W:      http://www.linux-kvm.org/
9672 T:      git git://github.com/agraf/linux-2.6.git
9673 F:      arch/powerpc/include/asm/kvm*
9674 F:      arch/powerpc/include/uapi/asm/kvm*
9675 F:      arch/powerpc/kernel/kvm*
9676 F:      arch/powerpc/kvm/
9677
9678 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9679 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9680 M:      Janosch Frank <frankja@linux.ibm.com>
9681 R:      David Hildenbrand <david@redhat.com>
9682 R:      Cornelia Huck <cohuck@redhat.com>
9683 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9684 L:      kvm@vger.kernel.org
9685 S:      Supported
9686 W:      http://www.ibm.com/developerworks/linux/linux390/
9687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9688 F:      Documentation/virt/kvm/s390*
9689 F:      arch/s390/include/asm/gmap.h
9690 F:      arch/s390/include/asm/kvm*
9691 F:      arch/s390/include/uapi/asm/kvm*
9692 F:      arch/s390/kernel/uv.c
9693 F:      arch/s390/kvm/
9694 F:      arch/s390/mm/gmap.c
9695 F:      tools/testing/selftests/kvm/*/s390x/
9696 F:      tools/testing/selftests/kvm/s390x/
9697
9698 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9699 M:      Paolo Bonzini <pbonzini@redhat.com>
9700 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9701 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9702 R:      Wanpeng Li <wanpengli@tencent.com>
9703 R:      Jim Mattson <jmattson@google.com>
9704 R:      Joerg Roedel <joro@8bytes.org>
9705 L:      kvm@vger.kernel.org
9706 S:      Supported
9707 W:      http://www.linux-kvm.org
9708 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9709 F:      arch/x86/include/asm/kvm*
9710 F:      arch/x86/include/asm/pvclock-abi.h
9711 F:      arch/x86/include/asm/svm.h
9712 F:      arch/x86/include/asm/vmx*.h
9713 F:      arch/x86/include/uapi/asm/kvm*
9714 F:      arch/x86/include/uapi/asm/svm.h
9715 F:      arch/x86/include/uapi/asm/vmx.h
9716 F:      arch/x86/kernel/kvm.c
9717 F:      arch/x86/kernel/kvmclock.c
9718 F:      arch/x86/kvm/
9719 F:      arch/x86/kvm/*/
9720
9721 KERNFS
9722 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9723 M:      Tejun Heo <tj@kernel.org>
9724 S:      Supported
9725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9726 F:      fs/kernfs/
9727 F:      include/linux/kernfs.h
9728
9729 KEXEC
9730 M:      Eric Biederman <ebiederm@xmission.com>
9731 L:      kexec@lists.infradead.org
9732 S:      Maintained
9733 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9734 F:      include/linux/kexec.h
9735 F:      include/uapi/linux/kexec.h
9736 F:      kernel/kexec*
9737
9738 KEYS-ENCRYPTED
9739 M:      Mimi Zohar <zohar@linux.ibm.com>
9740 L:      linux-integrity@vger.kernel.org
9741 L:      keyrings@vger.kernel.org
9742 S:      Supported
9743 F:      Documentation/security/keys/trusted-encrypted.rst
9744 F:      include/keys/encrypted-type.h
9745 F:      security/keys/encrypted-keys/
9746
9747 KEYS-TRUSTED
9748 M:      James Bottomley <jejb@linux.ibm.com>
9749 M:      Jarkko Sakkinen <jarkko@kernel.org>
9750 M:      Mimi Zohar <zohar@linux.ibm.com>
9751 L:      linux-integrity@vger.kernel.org
9752 L:      keyrings@vger.kernel.org
9753 S:      Supported
9754 F:      Documentation/security/keys/trusted-encrypted.rst
9755 F:      include/keys/trusted-type.h
9756 F:      include/keys/trusted_tpm.h
9757 F:      security/keys/trusted-keys/
9758
9759 KEYS/KEYRINGS
9760 M:      David Howells <dhowells@redhat.com>
9761 M:      Jarkko Sakkinen <jarkko@kernel.org>
9762 L:      keyrings@vger.kernel.org
9763 S:      Maintained
9764 F:      Documentation/security/keys/core.rst
9765 F:      include/keys/
9766 F:      include/linux/key-type.h
9767 F:      include/linux/key.h
9768 F:      include/linux/keyctl.h
9769 F:      include/uapi/linux/keyctl.h
9770 F:      security/keys/
9771
9772 KFIFO
9773 M:      Stefani Seibold <stefani@seibold.net>
9774 S:      Maintained
9775 F:      include/linux/kfifo.h
9776 F:      lib/kfifo.c
9777 F:      samples/kfifo/
9778
9779 KGDB / KDB /debug_core
9780 M:      Jason Wessel <jason.wessel@windriver.com>
9781 M:      Daniel Thompson <daniel.thompson@linaro.org>
9782 R:      Douglas Anderson <dianders@chromium.org>
9783 L:      kgdb-bugreport@lists.sourceforge.net
9784 S:      Maintained
9785 W:      http://kgdb.wiki.kernel.org/
9786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9787 F:      Documentation/dev-tools/kgdb.rst
9788 F:      drivers/misc/kgdbts.c
9789 F:      drivers/tty/serial/kgdboc.c
9790 F:      include/linux/kdb.h
9791 F:      include/linux/kgdb.h
9792 F:      kernel/debug/
9793
9794 KHADAS MCU MFD DRIVER
9795 M:      Neil Armstrong <narmstrong@baylibre.com>
9796 L:      linux-amlogic@lists.infradead.org
9797 S:      Maintained
9798 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
9799 F:      drivers/mfd/khadas-mcu.c
9800 F:      include/linux/mfd/khadas-mcu.h
9801 F:      drivers/thermal/khadas_mcu_fan.c
9802
9803 KMEMLEAK
9804 M:      Catalin Marinas <catalin.marinas@arm.com>
9805 S:      Maintained
9806 F:      Documentation/dev-tools/kmemleak.rst
9807 F:      include/linux/kmemleak.h
9808 F:      mm/kmemleak.c
9809 F:      samples/kmemleak/kmemleak-test.c
9810
9811 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9812 M:      Luis Chamberlain <mcgrof@kernel.org>
9813 L:      linux-kernel@vger.kernel.org
9814 S:      Maintained
9815 F:      include/linux/kmod.h
9816 F:      kernel/kmod.c
9817 F:      lib/test_kmod.c
9818 F:      tools/testing/selftests/kmod/
9819
9820 KPROBES
9821 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9822 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9823 M:      "David S. Miller" <davem@davemloft.net>
9824 M:      Masami Hiramatsu <mhiramat@kernel.org>
9825 S:      Maintained
9826 F:      Documentation/trace/kprobes.rst
9827 F:      include/asm-generic/kprobes.h
9828 F:      include/linux/kprobes.h
9829 F:      kernel/kprobes.c
9830
9831 KS0108 LCD CONTROLLER DRIVER
9832 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9833 S:      Maintained
9834 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9835 F:      drivers/auxdisplay/ks0108.c
9836 F:      include/linux/ks0108.h
9837
9838 KTD253 BACKLIGHT DRIVER
9839 M:      Linus Walleij <linus.walleij@linaro.org>
9840 S:      Maintained
9841 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
9842 F:      drivers/video/backlight/ktd253-backlight.c
9843
9844 L3MDEV
9845 M:      David Ahern <dsahern@kernel.org>
9846 L:      netdev@vger.kernel.org
9847 S:      Maintained
9848 F:      include/net/l3mdev.h
9849 F:      net/l3mdev
9850
9851 L7 BPF FRAMEWORK
9852 M:      John Fastabend <john.fastabend@gmail.com>
9853 M:      Daniel Borkmann <daniel@iogearbox.net>
9854 M:      Jakub Sitnicki <jakub@cloudflare.com>
9855 M:      Lorenz Bauer <lmb@cloudflare.com>
9856 L:      netdev@vger.kernel.org
9857 L:      bpf@vger.kernel.org
9858 S:      Maintained
9859 F:      include/linux/skmsg.h
9860 F:      net/core/skmsg.c
9861 F:      net/core/sock_map.c
9862 F:      net/ipv4/tcp_bpf.c
9863 F:      net/ipv4/udp_bpf.c
9864
9865 LANTIQ / INTEL Ethernet drivers
9866 M:      Hauke Mehrtens <hauke@hauke-m.de>
9867 L:      netdev@vger.kernel.org
9868 S:      Maintained
9869 F:      drivers/net/dsa/lantiq_gswip.c
9870 F:      drivers/net/dsa/lantiq_pce.h
9871 F:      drivers/net/ethernet/lantiq_xrx200.c
9872 F:      net/dsa/tag_gswip.c
9873
9874 LANTIQ MIPS ARCHITECTURE
9875 M:      John Crispin <john@phrozen.org>
9876 L:      linux-mips@vger.kernel.org
9877 S:      Maintained
9878 F:      arch/mips/lantiq
9879 F:      drivers/soc/lantiq
9880
9881 LASI 53c700 driver for PARISC
9882 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9883 L:      linux-scsi@vger.kernel.org
9884 S:      Maintained
9885 F:      Documentation/scsi/53c700.rst
9886 F:      drivers/scsi/53c700*
9887
9888 LEAKING_ADDRESSES
9889 M:      Tobin C. Harding <me@tobin.cc>
9890 M:      Tycho Andersen <tycho@tycho.pizza>
9891 L:      linux-hardening@vger.kernel.org
9892 S:      Maintained
9893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9894 F:      scripts/leaking_addresses.pl
9895
9896 LED SUBSYSTEM
9897 M:      Pavel Machek <pavel@ucw.cz>
9898 R:      Dan Murphy <dmurphy@ti.com>
9899 L:      linux-leds@vger.kernel.org
9900 S:      Maintained
9901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9902 F:      Documentation/devicetree/bindings/leds/
9903 F:      drivers/leds/
9904 F:      include/linux/leds.h
9905
9906 LEGACY EEPROM DRIVER
9907 M:      Jean Delvare <jdelvare@suse.com>
9908 S:      Maintained
9909 F:      Documentation/misc-devices/eeprom.rst
9910 F:      drivers/misc/eeprom/eeprom.c
9911
9912 LEGO MINDSTORMS EV3
9913 R:      David Lechner <david@lechnology.com>
9914 S:      Maintained
9915 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9916 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9917 F:      drivers/power/supply/lego_ev3_battery.c
9918
9919 LEGO USB Tower driver
9920 M:      Juergen Stuber <starblue@users.sourceforge.net>
9921 L:      legousb-devel@lists.sourceforge.net
9922 S:      Maintained
9923 W:      http://legousb.sourceforge.net/
9924 F:      drivers/usb/misc/legousbtower.c
9925
9926 LG LAPTOP EXTRAS
9927 M:      Matan Ziv-Av <matan@svgalib.org>
9928 L:      platform-driver-x86@vger.kernel.org
9929 S:      Maintained
9930 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9931 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9932 F:      drivers/platform/x86/lg-laptop.c
9933
9934 LG2160 MEDIA DRIVER
9935 M:      Michael Krufky <mkrufky@linuxtv.org>
9936 L:      linux-media@vger.kernel.org
9937 S:      Maintained
9938 W:      https://linuxtv.org
9939 W:      http://github.com/mkrufky
9940 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9941 T:      git git://linuxtv.org/mkrufky/tuners.git
9942 F:      drivers/media/dvb-frontends/lg2160.*
9943
9944 LGDT3305 MEDIA DRIVER
9945 M:      Michael Krufky <mkrufky@linuxtv.org>
9946 L:      linux-media@vger.kernel.org
9947 S:      Maintained
9948 W:      https://linuxtv.org
9949 W:      http://github.com/mkrufky
9950 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9951 T:      git git://linuxtv.org/mkrufky/tuners.git
9952 F:      drivers/media/dvb-frontends/lgdt3305.*
9953
9954 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9955 M:      Viresh Kumar <vireshk@kernel.org>
9956 L:      linux-ide@vger.kernel.org
9957 S:      Maintained
9958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9959 F:      drivers/ata/pata_arasan_cf.c
9960 F:      include/linux/pata_arasan_cf_data.h
9961
9962 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9963 M:      Linus Walleij <linus.walleij@linaro.org>
9964 L:      linux-ide@vger.kernel.org
9965 S:      Maintained
9966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9967 F:      drivers/ata/pata_ftide010.c
9968 F:      drivers/ata/sata_gemini.c
9969 F:      drivers/ata/sata_gemini.h
9970
9971 LIBATA SATA AHCI PLATFORM devices support
9972 M:      Hans de Goede <hdegoede@redhat.com>
9973 M:      Jens Axboe <axboe@kernel.dk>
9974 L:      linux-ide@vger.kernel.org
9975 S:      Maintained
9976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9977 F:      drivers/ata/ahci_platform.c
9978 F:      drivers/ata/libahci_platform.c
9979 F:      include/linux/ahci_platform.h
9980
9981 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9982 M:      Mikael Pettersson <mikpelinux@gmail.com>
9983 L:      linux-ide@vger.kernel.org
9984 S:      Maintained
9985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9986 F:      drivers/ata/sata_promise.*
9987
9988 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9989 M:      Jens Axboe <axboe@kernel.dk>
9990 L:      linux-ide@vger.kernel.org
9991 S:      Maintained
9992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9993 F:      Documentation/devicetree/bindings/ata/
9994 F:      drivers/ata/
9995 F:      include/linux/ata.h
9996 F:      include/linux/libata.h
9997
9998 LIBLOCKDEP
9999 M:      Sasha Levin <alexander.levin@microsoft.com>
10000 S:      Maintained
10001 F:      tools/lib/lockdep/
10002
10003 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10004 M:      Dan Williams <dan.j.williams@intel.com>
10005 M:      Vishal Verma <vishal.l.verma@intel.com>
10006 M:      Dave Jiang <dave.jiang@intel.com>
10007 L:      linux-nvdimm@lists.01.org
10008 S:      Supported
10009 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10010 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10011 F:      drivers/nvdimm/blk.c
10012 F:      drivers/nvdimm/region_devs.c
10013
10014 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10015 M:      Vishal Verma <vishal.l.verma@intel.com>
10016 M:      Dan Williams <dan.j.williams@intel.com>
10017 M:      Dave Jiang <dave.jiang@intel.com>
10018 L:      linux-nvdimm@lists.01.org
10019 S:      Supported
10020 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10021 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10022 F:      drivers/nvdimm/btt*
10023
10024 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10025 M:      Dan Williams <dan.j.williams@intel.com>
10026 M:      Vishal Verma <vishal.l.verma@intel.com>
10027 M:      Dave Jiang <dave.jiang@intel.com>
10028 L:      linux-nvdimm@lists.01.org
10029 S:      Supported
10030 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10031 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10032 F:      drivers/nvdimm/pmem*
10033
10034 LIBNVDIMM: DEVICETREE BINDINGS
10035 M:      Oliver O'Halloran <oohall@gmail.com>
10036 L:      linux-nvdimm@lists.01.org
10037 S:      Supported
10038 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10039 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10040 F:      drivers/nvdimm/of_pmem.c
10041
10042 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10043 M:      Dan Williams <dan.j.williams@intel.com>
10044 M:      Vishal Verma <vishal.l.verma@intel.com>
10045 M:      Dave Jiang <dave.jiang@intel.com>
10046 M:      Ira Weiny <ira.weiny@intel.com>
10047 L:      linux-nvdimm@lists.01.org
10048 S:      Supported
10049 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10050 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10052 F:      drivers/acpi/nfit/*
10053 F:      drivers/nvdimm/*
10054 F:      include/linux/libnvdimm.h
10055 F:      include/linux/nd.h
10056 F:      include/uapi/linux/ndctl.h
10057 F:      tools/testing/nvdimm/
10058
10059 LICENSES and SPDX stuff
10060 M:      Thomas Gleixner <tglx@linutronix.de>
10061 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10062 L:      linux-spdx@vger.kernel.org
10063 S:      Maintained
10064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10065 F:      COPYING
10066 F:      Documentation/process/license-rules.rst
10067 F:      LICENSES/
10068 F:      scripts/spdxcheck-test.sh
10069 F:      scripts/spdxcheck.py
10070
10071 LIGHTNVM PLATFORM SUPPORT
10072 M:      Matias Bjorling <mb@lightnvm.io>
10073 L:      linux-block@vger.kernel.org
10074 S:      Maintained
10075 W:      http://github/OpenChannelSSD
10076 F:      drivers/lightnvm/
10077 F:      include/linux/lightnvm.h
10078 F:      include/uapi/linux/lightnvm.h
10079
10080 LINEAR RANGES HELPERS
10081 M:      Mark Brown <broonie@kernel.org>
10082 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10083 F:      lib/linear_ranges.c
10084 F:      lib/test_linear_ranges.c
10085 F:      include/linux/linear_range.h
10086
10087 LINUX FOR POWER MACINTOSH
10088 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10089 L:      linuxppc-dev@lists.ozlabs.org
10090 S:      Odd Fixes
10091 F:      arch/powerpc/platforms/powermac/
10092 F:      drivers/macintosh/
10093
10094 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10095 M:      Michael Ellerman <mpe@ellerman.id.au>
10096 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10097 R:      Paul Mackerras <paulus@samba.org>
10098 L:      linuxppc-dev@lists.ozlabs.org
10099 S:      Supported
10100 W:      https://github.com/linuxppc/wiki/wiki
10101 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10103 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10104 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10105 F:      Documentation/devicetree/bindings/powerpc/
10106 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10107 F:      Documentation/powerpc/
10108 F:      arch/powerpc/
10109 F:      drivers/*/*/*pasemi*
10110 F:      drivers/*/*pasemi*
10111 F:      drivers/char/tpm/tpm_ibmvtpm*
10112 F:      drivers/crypto/nx/
10113 F:      drivers/crypto/vmx/
10114 F:      drivers/i2c/busses/i2c-opal.c
10115 F:      drivers/net/ethernet/ibm/ibmveth.*
10116 F:      drivers/net/ethernet/ibm/ibmvnic.*
10117 F:      drivers/pci/hotplug/pnv_php.c
10118 F:      drivers/pci/hotplug/rpa*
10119 F:      drivers/rtc/rtc-opal.c
10120 F:      drivers/scsi/ibmvscsi/
10121 F:      drivers/tty/hvc/hvc_opal.c
10122 F:      drivers/watchdog/wdrtas.c
10123 F:      tools/testing/selftests/powerpc
10124 N:      /pmac
10125 N:      powermac
10126 N:      powernv
10127 N:      [^a-z0-9]ps3
10128 N:      pseries
10129
10130 LINUX FOR POWERPC EMBEDDED MPC5XXX
10131 M:      Anatolij Gustschin <agust@denx.de>
10132 L:      linuxppc-dev@lists.ozlabs.org
10133 S:      Odd Fixes
10134 F:      arch/powerpc/platforms/512x/
10135 F:      arch/powerpc/platforms/52xx/
10136
10137 LINUX FOR POWERPC EMBEDDED PPC4XX
10138 L:      linuxppc-dev@lists.ozlabs.org
10139 S:      Orphan
10140 F:      arch/powerpc/platforms/40x/
10141 F:      arch/powerpc/platforms/44x/
10142
10143 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10144 M:      Scott Wood <oss@buserror.net>
10145 L:      linuxppc-dev@lists.ozlabs.org
10146 S:      Odd fixes
10147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10148 F:      Documentation/devicetree/bindings/powerpc/fsl/
10149 F:      arch/powerpc/platforms/83xx/
10150 F:      arch/powerpc/platforms/85xx/
10151
10152 LINUX FOR POWERPC EMBEDDED PPC8XX
10153 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10154 L:      linuxppc-dev@lists.ozlabs.org
10155 S:      Maintained
10156 F:      arch/powerpc/platforms/8xx/
10157
10158 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10159 M:      Kees Cook <keescook@chromium.org>
10160 S:      Maintained
10161 F:      drivers/misc/lkdtm/*
10162 F:      tools/testing/selftests/lkdtm/*
10163
10164 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10165 M:      Alan Stern <stern@rowland.harvard.edu>
10166 M:      Andrea Parri <parri.andrea@gmail.com>
10167 M:      Will Deacon <will@kernel.org>
10168 M:      Peter Zijlstra <peterz@infradead.org>
10169 M:      Boqun Feng <boqun.feng@gmail.com>
10170 M:      Nicholas Piggin <npiggin@gmail.com>
10171 M:      David Howells <dhowells@redhat.com>
10172 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10173 M:      Luc Maranget <luc.maranget@inria.fr>
10174 M:      "Paul E. McKenney" <paulmck@kernel.org>
10175 R:      Akira Yokosawa <akiyks@gmail.com>
10176 R:      Daniel Lustig <dlustig@nvidia.com>
10177 R:      Joel Fernandes <joel@joelfernandes.org>
10178 L:      linux-kernel@vger.kernel.org
10179 L:      linux-arch@vger.kernel.org
10180 S:      Supported
10181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10182 F:      Documentation/atomic_bitops.txt
10183 F:      Documentation/atomic_t.txt
10184 F:      Documentation/core-api/atomic_ops.rst
10185 F:      Documentation/core-api/refcount-vs-atomic.rst
10186 F:      Documentation/litmus-tests/
10187 F:      Documentation/memory-barriers.txt
10188 F:      tools/memory-model/
10189
10190 LIS3LV02D ACCELEROMETER DRIVER
10191 M:      Eric Piel <eric.piel@tremplin-utc.net>
10192 S:      Maintained
10193 F:      Documentation/misc-devices/lis3lv02d.rst
10194 F:      drivers/misc/lis3lv02d/
10195 F:      drivers/platform/x86/hp_accel.c
10196
10197 LIST KUNIT TEST
10198 M:      David Gow <davidgow@google.com>
10199 L:      linux-kselftest@vger.kernel.org
10200 L:      kunit-dev@googlegroups.com
10201 S:      Maintained
10202 F:      lib/list-test.c
10203
10204 LIVE PATCHING
10205 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10206 M:      Jiri Kosina <jikos@kernel.org>
10207 M:      Miroslav Benes <mbenes@suse.cz>
10208 M:      Petr Mladek <pmladek@suse.com>
10209 R:      Joe Lawrence <joe.lawrence@redhat.com>
10210 L:      live-patching@vger.kernel.org
10211 S:      Maintained
10212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10213 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10214 F:      Documentation/livepatch/
10215 F:      arch/powerpc/include/asm/livepatch.h
10216 F:      arch/s390/include/asm/livepatch.h
10217 F:      arch/x86/include/asm/livepatch.h
10218 F:      include/linux/livepatch.h
10219 F:      kernel/livepatch/
10220 F:      lib/livepatch/
10221 F:      samples/livepatch/
10222 F:      tools/testing/selftests/livepatch/
10223
10224 LLC (802.2)
10225 L:      netdev@vger.kernel.org
10226 S:      Odd fixes
10227 F:      include/linux/llc.h
10228 F:      include/net/llc*
10229 F:      include/uapi/linux/llc.h
10230 F:      net/llc/
10231
10232 LM73 HARDWARE MONITOR DRIVER
10233 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10234 L:      linux-hwmon@vger.kernel.org
10235 S:      Maintained
10236 F:      drivers/hwmon/lm73.c
10237
10238 LM78 HARDWARE MONITOR DRIVER
10239 M:      Jean Delvare <jdelvare@suse.com>
10240 L:      linux-hwmon@vger.kernel.org
10241 S:      Maintained
10242 F:      Documentation/hwmon/lm78.rst
10243 F:      drivers/hwmon/lm78.c
10244
10245 LM83 HARDWARE MONITOR DRIVER
10246 M:      Jean Delvare <jdelvare@suse.com>
10247 L:      linux-hwmon@vger.kernel.org
10248 S:      Maintained
10249 F:      Documentation/hwmon/lm83.rst
10250 F:      drivers/hwmon/lm83.c
10251
10252 LM90 HARDWARE MONITOR DRIVER
10253 M:      Jean Delvare <jdelvare@suse.com>
10254 L:      linux-hwmon@vger.kernel.org
10255 S:      Maintained
10256 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10257 F:      Documentation/hwmon/lm90.rst
10258 F:      drivers/hwmon/lm90.c
10259 F:      include/dt-bindings/thermal/lm90.h
10260
10261 LM95234 HARDWARE MONITOR DRIVER
10262 M:      Guenter Roeck <linux@roeck-us.net>
10263 L:      linux-hwmon@vger.kernel.org
10264 S:      Maintained
10265 F:      Documentation/hwmon/lm95234.rst
10266 F:      drivers/hwmon/lm95234.c
10267
10268 LME2510 MEDIA DRIVER
10269 M:      Malcolm Priestley <tvboxspy@gmail.com>
10270 L:      linux-media@vger.kernel.org
10271 S:      Maintained
10272 W:      https://linuxtv.org
10273 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10274 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10275
10276 LOADPIN SECURITY MODULE
10277 M:      Kees Cook <keescook@chromium.org>
10278 S:      Supported
10279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10280 F:      Documentation/admin-guide/LSM/LoadPin.rst
10281 F:      security/loadpin/
10282
10283 LOCKING PRIMITIVES
10284 M:      Peter Zijlstra <peterz@infradead.org>
10285 M:      Ingo Molnar <mingo@redhat.com>
10286 M:      Will Deacon <will@kernel.org>
10287 L:      linux-kernel@vger.kernel.org
10288 S:      Maintained
10289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10290 F:      Documentation/locking/
10291 F:      arch/*/include/asm/spinlock*.h
10292 F:      include/linux/lockdep.h
10293 F:      include/linux/mutex*.h
10294 F:      include/linux/rwlock*.h
10295 F:      include/linux/rwsem*.h
10296 F:      include/linux/seqlock.h
10297 F:      include/linux/spinlock*.h
10298 F:      kernel/locking/
10299 F:      lib/locking*.[ch]
10300 X:      kernel/locking/locktorture.c
10301
10302 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10303 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10304 L:      linux-ntfs-dev@lists.sourceforge.net
10305 S:      Maintained
10306 W:      http://www.linux-ntfs.org/content/view/19/37/
10307 F:      Documentation/admin-guide/ldm.rst
10308 F:      block/partitions/ldm.*
10309
10310 LOGITECH HID GAMING KEYBOARDS
10311 M:      Hans de Goede <hdegoede@redhat.com>
10312 L:      linux-input@vger.kernel.org
10313 S:      Maintained
10314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10315 F:      drivers/hid/hid-lg-g15.c
10316
10317 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10318 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10319 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10320 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10321 L:      MPT-FusionLinux.pdl@broadcom.com
10322 L:      linux-scsi@vger.kernel.org
10323 S:      Supported
10324 W:      http://www.avagotech.com/support/
10325 F:      drivers/message/fusion/
10326 F:      drivers/scsi/mpt3sas/
10327
10328 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10329 M:      Matthew Wilcox <willy@infradead.org>
10330 L:      linux-scsi@vger.kernel.org
10331 S:      Maintained
10332 F:      drivers/scsi/sym53c8xx_2/
10333
10334 LTC1660 DAC DRIVER
10335 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10336 L:      linux-iio@vger.kernel.org
10337 S:      Maintained
10338 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10339 F:      drivers/iio/dac/ltc1660.c
10340
10341 LTC2947 HARDWARE MONITOR DRIVER
10342 M:      Nuno Sá <nuno.sa@analog.com>
10343 L:      linux-hwmon@vger.kernel.org
10344 S:      Supported
10345 W:      http://ez.analog.com/community/linux-device-drivers
10346 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10347 F:      drivers/hwmon/ltc2947-core.c
10348 F:      drivers/hwmon/ltc2947-i2c.c
10349 F:      drivers/hwmon/ltc2947-spi.c
10350 F:      drivers/hwmon/ltc2947.h
10351
10352 LTC2983 IIO TEMPERATURE DRIVER
10353 M:      Nuno Sá <nuno.sa@analog.com>
10354 L:      linux-iio@vger.kernel.org
10355 S:      Supported
10356 W:      http://ez.analog.com/community/linux-device-drivers
10357 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10358 F:      drivers/iio/temperature/ltc2983.c
10359
10360 LTC4261 HARDWARE MONITOR DRIVER
10361 M:      Guenter Roeck <linux@roeck-us.net>
10362 L:      linux-hwmon@vger.kernel.org
10363 S:      Maintained
10364 F:      Documentation/hwmon/ltc4261.rst
10365 F:      drivers/hwmon/ltc4261.c
10366
10367 LTC4306 I2C MULTIPLEXER DRIVER
10368 M:      Michael Hennerich <michael.hennerich@analog.com>
10369 L:      linux-i2c@vger.kernel.org
10370 S:      Supported
10371 W:      http://ez.analog.com/community/linux-device-drivers
10372 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10373 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10374
10375 LTP (Linux Test Project)
10376 M:      Mike Frysinger <vapier@gentoo.org>
10377 M:      Cyril Hrubis <chrubis@suse.cz>
10378 M:      Wanlong Gao <wanlong.gao@gmail.com>
10379 M:      Jan Stancek <jstancek@redhat.com>
10380 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10381 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10382 L:      ltp@lists.linux.it (subscribers-only)
10383 S:      Maintained
10384 W:      http://linux-test-project.github.io/
10385 T:      git git://github.com/linux-test-project/ltp.git
10386
10387 LYNX PCS MODULE
10388 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10389 L:      netdev@vger.kernel.org
10390 S:      Supported
10391 F:      drivers/net/pcs/pcs-lynx.c
10392 F:      include/linux/pcs-lynx.h
10393
10394 M68K ARCHITECTURE
10395 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10396 L:      linux-m68k@lists.linux-m68k.org
10397 S:      Maintained
10398 W:      http://www.linux-m68k.org/
10399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10400 F:      arch/m68k/
10401 F:      drivers/zorro/
10402
10403 M68K ON APPLE MACINTOSH
10404 M:      Joshua Thompson <funaho@jurai.org>
10405 L:      linux-m68k@lists.linux-m68k.org
10406 S:      Maintained
10407 W:      http://www.mac.linux-m68k.org/
10408 F:      arch/m68k/mac/
10409
10410 M68K ON HP9000/300
10411 M:      Philip Blundell <philb@gnu.org>
10412 S:      Maintained
10413 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10414 F:      arch/m68k/hp300/
10415
10416 M88DS3103 MEDIA DRIVER
10417 M:      Antti Palosaari <crope@iki.fi>
10418 L:      linux-media@vger.kernel.org
10419 S:      Maintained
10420 W:      https://linuxtv.org
10421 W:      http://palosaari.fi/linux/
10422 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10423 T:      git git://linuxtv.org/anttip/media_tree.git
10424 F:      drivers/media/dvb-frontends/m88ds3103*
10425
10426 M88RS2000 MEDIA DRIVER
10427 M:      Malcolm Priestley <tvboxspy@gmail.com>
10428 L:      linux-media@vger.kernel.org
10429 S:      Maintained
10430 W:      https://linuxtv.org
10431 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10432 F:      drivers/media/dvb-frontends/m88rs2000*
10433
10434 MA901 MASTERKIT USB FM RADIO DRIVER
10435 M:      Alexey Klimov <klimov.linux@gmail.com>
10436 L:      linux-media@vger.kernel.org
10437 S:      Maintained
10438 T:      git git://linuxtv.org/media_tree.git
10439 F:      drivers/media/radio/radio-ma901.c
10440
10441 MAC80211
10442 M:      Johannes Berg <johannes@sipsolutions.net>
10443 L:      linux-wireless@vger.kernel.org
10444 S:      Maintained
10445 W:      https://wireless.wiki.kernel.org/
10446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10448 F:      Documentation/networking/mac80211-injection.rst
10449 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10450 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10451 F:      include/net/mac80211.h
10452 F:      net/mac80211/
10453
10454 MAILBOX API
10455 M:      Jassi Brar <jassisinghbrar@gmail.com>
10456 L:      linux-kernel@vger.kernel.org
10457 S:      Maintained
10458 F:      drivers/mailbox/
10459 F:      include/linux/mailbox_client.h
10460 F:      include/linux/mailbox_controller.h
10461
10462 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10463 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10464 L:      linux-man@vger.kernel.org
10465 S:      Maintained
10466 W:      http://www.kernel.org/doc/man-pages
10467
10468 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10469 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10470 L:      linux-mips@vger.kernel.org
10471 S:      Maintained
10472 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10473
10474 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10475 M:      Andrew Lunn <andrew@lunn.ch>
10476 M:      Vivien Didelot <vivien.didelot@gmail.com>
10477 L:      netdev@vger.kernel.org
10478 S:      Maintained
10479 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10480 F:      Documentation/networking/devlink/mv88e6xxx.rst
10481 F:      drivers/net/dsa/mv88e6xxx/
10482 F:      include/linux/platform_data/mv88e6xxx.h
10483
10484 MARVELL ARMADA 3700 PHY DRIVERS
10485 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10486 S:      Maintained
10487 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10488 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10489 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10490 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10491
10492 MARVELL ARMADA DRM SUPPORT
10493 M:      Russell King <linux@armlinux.org.uk>
10494 S:      Maintained
10495 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10496 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10497 F:      Documentation/devicetree/bindings/display/armada/
10498 F:      drivers/gpu/drm/armada/
10499 F:      include/uapi/drm/armada_drm.h
10500
10501 MARVELL CRYPTO DRIVER
10502 M:      Boris Brezillon <bbrezillon@kernel.org>
10503 M:      Arnaud Ebalard <arno@natisbad.org>
10504 M:      Srujana Challa <schalla@marvell.com>
10505 L:      linux-crypto@vger.kernel.org
10506 S:      Maintained
10507 F:      drivers/crypto/marvell/
10508
10509 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10510 M:      Mirko Lindner <mlindner@marvell.com>
10511 M:      Stephen Hemminger <stephen@networkplumber.org>
10512 L:      netdev@vger.kernel.org
10513 S:      Maintained
10514 F:      drivers/net/ethernet/marvell/sk*
10515
10516 MARVELL LIBERTAS WIRELESS DRIVER
10517 L:      libertas-dev@lists.infradead.org
10518 S:      Orphan
10519 F:      drivers/net/wireless/marvell/libertas/
10520
10521 MARVELL MACCHIATOBIN SUPPORT
10522 M:      Russell King <linux@armlinux.org.uk>
10523 L:      linux-arm-kernel@lists.infradead.org
10524 S:      Maintained
10525 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10526
10527 MARVELL MV643XX ETHERNET DRIVER
10528 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10529 L:      netdev@vger.kernel.org
10530 S:      Maintained
10531 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10532 F:      include/linux/mv643xx.h
10533
10534 MARVELL MV88X3310 PHY DRIVER
10535 M:      Russell King <linux@armlinux.org.uk>
10536 L:      netdev@vger.kernel.org
10537 S:      Maintained
10538 F:      drivers/net/phy/marvell10g.c
10539
10540 MARVELL MVEBU THERMAL DRIVER
10541 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10542 S:      Maintained
10543 F:      drivers/thermal/armada_thermal.c
10544
10545 MARVELL MVNETA ETHERNET DRIVER
10546 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10547 L:      netdev@vger.kernel.org
10548 S:      Maintained
10549 F:      drivers/net/ethernet/marvell/mvneta.*
10550
10551 MARVELL MWIFIEX WIRELESS DRIVER
10552 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10553 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10554 M:      Xinming Hu <huxinming820@gmail.com>
10555 L:      linux-wireless@vger.kernel.org
10556 S:      Maintained
10557 F:      drivers/net/wireless/marvell/mwifiex/
10558
10559 MARVELL MWL8K WIRELESS DRIVER
10560 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10561 L:      linux-wireless@vger.kernel.org
10562 S:      Odd Fixes
10563 F:      drivers/net/wireless/marvell/mwl8k.c
10564
10565 MARVELL NAND CONTROLLER DRIVER
10566 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10567 L:      linux-mtd@lists.infradead.org
10568 S:      Maintained
10569 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10570 F:      drivers/mtd/nand/raw/marvell_nand.c
10571
10572 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10573 M:      Sunil Goutham <sgoutham@marvell.com>
10574 M:      Geetha sowjanya <gakula@marvell.com>
10575 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10576 M:      hariprasad <hkelam@marvell.com>
10577 L:      netdev@vger.kernel.org
10578 S:      Supported
10579 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10580
10581 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10582 M:      Sunil Goutham <sgoutham@marvell.com>
10583 M:      Linu Cherian <lcherian@marvell.com>
10584 M:      Geetha sowjanya <gakula@marvell.com>
10585 M:      Jerin Jacob <jerinj@marvell.com>
10586 L:      netdev@vger.kernel.org
10587 S:      Supported
10588 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10589 F:      drivers/net/ethernet/marvell/octeontx2/af/
10590
10591 MARVELL PRESTERA ETHERNET SWITCH DRIVER
10592 M:      Vadym Kochan <vkochan@marvell.com>
10593 M:      Taras Chornyi <tchornyi@marvell.com>
10594 S:      Supported
10595 W:      https://github.com/Marvell-switching/switchdev-prestera
10596 F:      drivers/net/ethernet/marvell/prestera/
10597
10598 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10599 M:      Nicolas Pitre <nico@fluxnic.net>
10600 S:      Odd Fixes
10601 F:      drivers/mmc/host/mvsdio.*
10602
10603 MARVELL USB MDIO CONTROLLER DRIVER
10604 M:      Tobias Waldekranz <tobias@waldekranz.com>
10605 L:      netdev@vger.kernel.org
10606 S:      Maintained
10607 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10608 F:      drivers/net/mdio/mdio-mvusb.c
10609
10610 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10611 M:      Hu Ziji <huziji@marvell.com>
10612 L:      linux-mmc@vger.kernel.org
10613 S:      Supported
10614 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10615 F:      drivers/mmc/host/sdhci-xenon*
10616
10617 MATROX FRAMEBUFFER DRIVER
10618 L:      linux-fbdev@vger.kernel.org
10619 S:      Orphan
10620 F:      drivers/video/fbdev/matrox/matroxfb_*
10621 F:      include/uapi/linux/matroxfb.h
10622
10623 MAX16065 HARDWARE MONITOR DRIVER
10624 M:      Guenter Roeck <linux@roeck-us.net>
10625 L:      linux-hwmon@vger.kernel.org
10626 S:      Maintained
10627 F:      Documentation/hwmon/max16065.rst
10628 F:      drivers/hwmon/max16065.c
10629
10630 MAX2175 SDR TUNER DRIVER
10631 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10632 L:      linux-media@vger.kernel.org
10633 S:      Maintained
10634 T:      git git://linuxtv.org/media_tree.git
10635 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10636 F:      Documentation/userspace-api/media/drivers/max2175.rst
10637 F:      drivers/media/i2c/max2175*
10638 F:      include/uapi/linux/max2175.h
10639
10640 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10641 L:      linux-hwmon@vger.kernel.org
10642 S:      Orphan
10643 F:      Documentation/hwmon/max6650.rst
10644 F:      drivers/hwmon/max6650.c
10645
10646 MAX6697 HARDWARE MONITOR DRIVER
10647 M:      Guenter Roeck <linux@roeck-us.net>
10648 L:      linux-hwmon@vger.kernel.org
10649 S:      Maintained
10650 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10651 F:      Documentation/hwmon/max6697.rst
10652 F:      drivers/hwmon/max6697.c
10653 F:      include/linux/platform_data/max6697.h
10654
10655 MAX9286 QUAD GMSL DESERIALIZER DRIVER
10656 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
10657 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10658 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
10659 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
10660 L:      linux-media@vger.kernel.org
10661 S:      Maintained
10662 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
10663 F:      drivers/media/i2c/max9286.c
10664
10665 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10666 M:      Peter Rosin <peda@axentia.se>
10667 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10668 S:      Maintained
10669 F:      Documentation/devicetree/bindings/sound/max9860.txt
10670 F:      sound/soc/codecs/max9860.*
10671
10672 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10673 M:      Andreas Klinger <ak@it-klinger.de>
10674 L:      linux-iio@vger.kernel.org
10675 S:      Maintained
10676 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10677 F:      drivers/iio/proximity/mb1232.c
10678
10679 MAXIM MAX77650 PMIC MFD DRIVER
10680 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10681 L:      linux-kernel@vger.kernel.org
10682 S:      Maintained
10683 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10684 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10685 F:      drivers/gpio/gpio-max77650.c
10686 F:      drivers/input/misc/max77650-onkey.c
10687 F:      drivers/leds/leds-max77650.c
10688 F:      drivers/mfd/max77650.c
10689 F:      drivers/power/supply/max77650-charger.c
10690 F:      drivers/regulator/max77650-regulator.c
10691 F:      include/linux/mfd/max77650.h
10692
10693 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10694 M:      Javier Martinez Canillas <javier@dowhile0.org>
10695 L:      linux-kernel@vger.kernel.org
10696 S:      Supported
10697 F:      Documentation/devicetree/bindings/*/*max77802.txt
10698 F:      drivers/regulator/max77802-regulator.c
10699 F:      include/dt-bindings/*/*max77802.h
10700
10701 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10702 M:      Krzysztof Kozlowski <krzk@kernel.org>
10703 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10704 L:      linux-pm@vger.kernel.org
10705 S:      Supported
10706 F:      drivers/power/supply/max14577_charger.c
10707 F:      drivers/power/supply/max77693_charger.c
10708
10709 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10710 M:      Chanwoo Choi <cw00.choi@samsung.com>
10711 M:      Krzysztof Kozlowski <krzk@kernel.org>
10712 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10713 L:      linux-kernel@vger.kernel.org
10714 S:      Supported
10715 F:      Documentation/devicetree/bindings/*/max77686.txt
10716 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10717 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10718 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10719 F:      drivers/*/max14577*.c
10720 F:      drivers/*/max77686*.c
10721 F:      drivers/*/max77693*.c
10722 F:      drivers/clk/clk-max77686.c
10723 F:      drivers/extcon/extcon-max14577.c
10724 F:      drivers/extcon/extcon-max77693.c
10725 F:      drivers/rtc/rtc-max77686.c
10726 F:      include/linux/mfd/max14577*.h
10727 F:      include/linux/mfd/max77686*.h
10728 F:      include/linux/mfd/max77693*.h
10729
10730 MAXIRADIO FM RADIO RECEIVER DRIVER
10731 M:      Hans Verkuil <hverkuil@xs4all.nl>
10732 L:      linux-media@vger.kernel.org
10733 S:      Maintained
10734 W:      https://linuxtv.org
10735 T:      git git://linuxtv.org/media_tree.git
10736 F:      drivers/media/radio/radio-maxiradio*
10737
10738 MCAN MMIO DEVICE DRIVER
10739 M:      Dan Murphy <dmurphy@ti.com>
10740 M:      Sriram Dash <sriram.dash@samsung.com>
10741 L:      linux-can@vger.kernel.org
10742 S:      Maintained
10743 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10744 F:      drivers/net/can/m_can/m_can.c
10745 F:      drivers/net/can/m_can/m_can.h
10746 F:      drivers/net/can/m_can/m_can_platform.c
10747
10748 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10749 M:      Rishi Gupta <gupt21@gmail.com>
10750 L:      linux-i2c@vger.kernel.org
10751 L:      linux-input@vger.kernel.org
10752 S:      Maintained
10753 F:      drivers/hid/hid-mcp2221.c
10754
10755 MCP251XFD SPI-CAN NETWORK DRIVER
10756 M:      Marc Kleine-Budde <mkl@pengutronix.de>
10757 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
10758 R:      Thomas Kopp <thomas.kopp@microchip.com>
10759 L:      linux-can@vger.kernel.org
10760 S:      Maintained
10761 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
10762 F:      drivers/net/can/spi/mcp251xfd/
10763
10764 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10765 M:      Peter Rosin <peda@axentia.se>
10766 L:      linux-iio@vger.kernel.org
10767 S:      Maintained
10768 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10769 F:      drivers/iio/potentiometer/mcp4018.c
10770 F:      drivers/iio/potentiometer/mcp4531.c
10771
10772 MCR20A IEEE-802.15.4 RADIO DRIVER
10773 M:      Xue Liu <liuxuenetmail@gmail.com>
10774 L:      linux-wpan@vger.kernel.org
10775 S:      Maintained
10776 W:      https://github.com/xueliu/mcr20a-linux
10777 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10778 F:      drivers/net/ieee802154/mcr20a.c
10779 F:      drivers/net/ieee802154/mcr20a.h
10780
10781 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10782 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10783 L:      linux-iio@vger.kernel.org
10784 S:      Maintained
10785 F:      drivers/iio/dac/cio-dac.c
10786
10787 MEDIA CONTROLLER FRAMEWORK
10788 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10789 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10790 L:      linux-media@vger.kernel.org
10791 S:      Supported
10792 W:      https://www.linuxtv.org
10793 T:      git git://linuxtv.org/media_tree.git
10794 F:      drivers/media/mc/
10795 F:      include/media/media-*.h
10796 F:      include/uapi/linux/media.h
10797
10798 MEDIA DRIVER FOR FREESCALE IMX PXP
10799 M:      Philipp Zabel <p.zabel@pengutronix.de>
10800 L:      linux-media@vger.kernel.org
10801 S:      Maintained
10802 T:      git git://linuxtv.org/media_tree.git
10803 F:      drivers/media/platform/imx-pxp.[ch]
10804
10805 MEDIA DRIVERS FOR ASCOT2E
10806 M:      Sergey Kozlov <serjk@netup.ru>
10807 M:      Abylay Ospan <aospan@netup.ru>
10808 L:      linux-media@vger.kernel.org
10809 S:      Supported
10810 W:      https://linuxtv.org
10811 W:      http://netup.tv/
10812 T:      git git://linuxtv.org/media_tree.git
10813 F:      drivers/media/dvb-frontends/ascot2e*
10814
10815 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10816 M:      Jasmin Jessich <jasmin@anw.at>
10817 L:      linux-media@vger.kernel.org
10818 S:      Maintained
10819 W:      https://linuxtv.org
10820 T:      git git://linuxtv.org/media_tree.git
10821 F:      drivers/media/dvb-frontends/cxd2099*
10822
10823 MEDIA DRIVERS FOR CXD2841ER
10824 M:      Sergey Kozlov <serjk@netup.ru>
10825 M:      Abylay Ospan <aospan@netup.ru>
10826 L:      linux-media@vger.kernel.org
10827 S:      Supported
10828 W:      https://linuxtv.org
10829 W:      http://netup.tv/
10830 T:      git git://linuxtv.org/media_tree.git
10831 F:      drivers/media/dvb-frontends/cxd2841er*
10832
10833 MEDIA DRIVERS FOR CXD2880
10834 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10835 L:      linux-media@vger.kernel.org
10836 S:      Supported
10837 W:      http://linuxtv.org/
10838 T:      git git://linuxtv.org/media_tree.git
10839 F:      drivers/media/dvb-frontends/cxd2880/*
10840 F:      drivers/media/spi/cxd2880*
10841
10842 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10843 L:      linux-media@vger.kernel.org
10844 S:      Orphan
10845 W:      https://linuxtv.org
10846 T:      git git://linuxtv.org/media_tree.git
10847 F:      drivers/media/pci/ddbridge/*
10848
10849 MEDIA DRIVERS FOR FREESCALE IMX
10850 M:      Steve Longerbeam <slongerbeam@gmail.com>
10851 M:      Philipp Zabel <p.zabel@pengutronix.de>
10852 L:      linux-media@vger.kernel.org
10853 S:      Maintained
10854 T:      git git://linuxtv.org/media_tree.git
10855 F:      Documentation/admin-guide/media/imx.rst
10856 F:      Documentation/devicetree/bindings/media/imx.txt
10857 F:      drivers/staging/media/imx/
10858 F:      include/linux/imx-media.h
10859 F:      include/media/imx.h
10860
10861 MEDIA DRIVERS FOR FREESCALE IMX7
10862 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10863 L:      linux-media@vger.kernel.org
10864 S:      Maintained
10865 T:      git git://linuxtv.org/media_tree.git
10866 F:      Documentation/admin-guide/media/imx7.rst
10867 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
10868 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
10869 F:      drivers/staging/media/imx/imx7-media-csi.c
10870 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10871
10872 MEDIA DRIVERS FOR HELENE
10873 M:      Abylay Ospan <aospan@netup.ru>
10874 L:      linux-media@vger.kernel.org
10875 S:      Supported
10876 W:      https://linuxtv.org
10877 W:      http://netup.tv/
10878 T:      git git://linuxtv.org/media_tree.git
10879 F:      drivers/media/dvb-frontends/helene*
10880
10881 MEDIA DRIVERS FOR HORUS3A
10882 M:      Sergey Kozlov <serjk@netup.ru>
10883 M:      Abylay Ospan <aospan@netup.ru>
10884 L:      linux-media@vger.kernel.org
10885 S:      Supported
10886 W:      https://linuxtv.org
10887 W:      http://netup.tv/
10888 T:      git git://linuxtv.org/media_tree.git
10889 F:      drivers/media/dvb-frontends/horus3a*
10890
10891 MEDIA DRIVERS FOR LNBH25
10892 M:      Sergey Kozlov <serjk@netup.ru>
10893 M:      Abylay Ospan <aospan@netup.ru>
10894 L:      linux-media@vger.kernel.org
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/lnbh25*
10900
10901 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10902 L:      linux-media@vger.kernel.org
10903 S:      Orphan
10904 W:      https://linuxtv.org
10905 T:      git git://linuxtv.org/media_tree.git
10906 F:      drivers/media/dvb-frontends/mxl5xx*
10907
10908 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10909 M:      Sergey Kozlov <serjk@netup.ru>
10910 M:      Abylay Ospan <aospan@netup.ru>
10911 L:      linux-media@vger.kernel.org
10912 S:      Supported
10913 W:      https://linuxtv.org
10914 W:      http://netup.tv/
10915 T:      git git://linuxtv.org/media_tree.git
10916 F:      drivers/media/pci/netup_unidvb/*
10917
10918 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10919 M:      Dmitry Osipenko <digetx@gmail.com>
10920 L:      linux-media@vger.kernel.org
10921 L:      linux-tegra@vger.kernel.org
10922 S:      Maintained
10923 T:      git git://linuxtv.org/media_tree.git
10924 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10925 F:      drivers/staging/media/tegra-vde/
10926
10927 MEDIA DRIVERS FOR RENESAS - CEU
10928 M:      Jacopo Mondi <jacopo@jmondi.org>
10929 L:      linux-media@vger.kernel.org
10930 L:      linux-renesas-soc@vger.kernel.org
10931 S:      Supported
10932 T:      git git://linuxtv.org/media_tree.git
10933 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10934 F:      drivers/media/platform/renesas-ceu.c
10935 F:      include/media/drv-intf/renesas-ceu.h
10936
10937 MEDIA DRIVERS FOR RENESAS - DRIF
10938 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10939 L:      linux-media@vger.kernel.org
10940 L:      linux-renesas-soc@vger.kernel.org
10941 S:      Supported
10942 T:      git git://linuxtv.org/media_tree.git
10943 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10944 F:      drivers/media/platform/rcar_drif.c
10945
10946 MEDIA DRIVERS FOR RENESAS - FCP
10947 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10948 L:      linux-media@vger.kernel.org
10949 L:      linux-renesas-soc@vger.kernel.org
10950 S:      Supported
10951 T:      git git://linuxtv.org/media_tree.git
10952 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
10953 F:      drivers/media/platform/rcar-fcp.c
10954 F:      include/media/rcar-fcp.h
10955
10956 MEDIA DRIVERS FOR RENESAS - FDP1
10957 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10958 L:      linux-media@vger.kernel.org
10959 L:      linux-renesas-soc@vger.kernel.org
10960 S:      Supported
10961 T:      git git://linuxtv.org/media_tree.git
10962 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
10963 F:      drivers/media/platform/rcar_fdp1.c
10964
10965 MEDIA DRIVERS FOR RENESAS - VIN
10966 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10967 L:      linux-media@vger.kernel.org
10968 L:      linux-renesas-soc@vger.kernel.org
10969 S:      Supported
10970 T:      git git://linuxtv.org/media_tree.git
10971 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10972 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10973 F:      drivers/media/platform/rcar-vin/
10974
10975 MEDIA DRIVERS FOR RENESAS - VSP1
10976 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10977 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10978 L:      linux-media@vger.kernel.org
10979 L:      linux-renesas-soc@vger.kernel.org
10980 S:      Supported
10981 T:      git git://linuxtv.org/media_tree.git
10982 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
10983 F:      drivers/media/platform/vsp1/
10984
10985 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10986 L:      linux-media@vger.kernel.org
10987 S:      Orphan
10988 W:      https://linuxtv.org
10989 T:      git git://linuxtv.org/media_tree.git
10990 F:      drivers/media/dvb-frontends/stv0910*
10991
10992 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10993 L:      linux-media@vger.kernel.org
10994 S:      Orphan
10995 W:      https://linuxtv.org
10996 T:      git git://linuxtv.org/media_tree.git
10997 F:      drivers/media/dvb-frontends/stv6111*
10998
10999 MEDIA DRIVERS FOR STM32 - DCMI
11000 M:      Hugues Fruchet <hugues.fruchet@st.com>
11001 L:      linux-media@vger.kernel.org
11002 S:      Supported
11003 T:      git git://linuxtv.org/media_tree.git
11004 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11005 F:      drivers/media/platform/stm32/stm32-dcmi.c
11006
11007 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11008 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11009 L:      linux-media@vger.kernel.org
11010 S:      Maintained
11011 W:      https://linuxtv.org
11012 Q:      http://patchwork.kernel.org/project/linux-media/list/
11013 T:      git git://linuxtv.org/media_tree.git
11014 F:      Documentation/admin-guide/media/
11015 F:      Documentation/devicetree/bindings/media/
11016 F:      Documentation/driver-api/media/
11017 F:      Documentation/userspace-api/media/
11018 F:      drivers/media/
11019 F:      drivers/staging/media/
11020 F:      include/linux/platform_data/media/
11021 F:      include/media/
11022 F:      include/uapi/linux/dvb/
11023 F:      include/uapi/linux/ivtv*
11024 F:      include/uapi/linux/media.h
11025 F:      include/uapi/linux/meye.h
11026 F:      include/uapi/linux/uvcvideo.h
11027 F:      include/uapi/linux/v4l2-*
11028 F:      include/uapi/linux/videodev2.h
11029
11030 MEDIATEK BLUETOOTH DRIVER
11031 M:      Sean Wang <sean.wang@mediatek.com>
11032 L:      linux-bluetooth@vger.kernel.org
11033 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11034 S:      Maintained
11035 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11036 F:      drivers/bluetooth/btmtkuart.c
11037
11038 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11039 M:      Sean Wang <sean.wang@mediatek.com>
11040 L:      linux-pm@vger.kernel.org
11041 S:      Maintained
11042 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11043 F:      drivers/power/reset/mt6323-poweroff.c
11044
11045 MEDIATEK CIR DRIVER
11046 M:      Sean Wang <sean.wang@mediatek.com>
11047 S:      Maintained
11048 F:      drivers/media/rc/mtk-cir.c
11049
11050 MEDIATEK DMA DRIVER
11051 M:      Sean Wang <sean.wang@mediatek.com>
11052 L:      dmaengine@vger.kernel.org
11053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11054 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11055 S:      Maintained
11056 F:      Documentation/devicetree/bindings/dma/mtk-*
11057 F:      drivers/dma/mediatek/
11058
11059 MEDIATEK ETHERNET DRIVER
11060 M:      Felix Fietkau <nbd@nbd.name>
11061 M:      John Crispin <john@phrozen.org>
11062 M:      Sean Wang <sean.wang@mediatek.com>
11063 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11064 L:      netdev@vger.kernel.org
11065 S:      Maintained
11066 F:      drivers/net/ethernet/mediatek/
11067
11068 MEDIATEK I2C CONTROLLER DRIVER
11069 M:      Qii Wang <qii.wang@mediatek.com>
11070 L:      linux-i2c@vger.kernel.org
11071 S:      Maintained
11072 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11073 F:      drivers/i2c/busses/i2c-mt65xx.c
11074
11075 MEDIATEK JPEG DRIVER
11076 M:      Rick Chang <rick.chang@mediatek.com>
11077 M:      Bin Liu <bin.liu@mediatek.com>
11078 S:      Supported
11079 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11080 F:      drivers/media/platform/mtk-jpeg/
11081
11082 MEDIATEK MDP DRIVER
11083 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11084 M:      Houlong Wei <houlong.wei@mediatek.com>
11085 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11086 S:      Supported
11087 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11088 F:      drivers/media/platform/mtk-mdp/
11089 F:      drivers/media/platform/mtk-vpu/
11090
11091 MEDIATEK MEDIA DRIVER
11092 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11093 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11094 S:      Supported
11095 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11096 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11097 F:      drivers/media/platform/mtk-vcodec/
11098 F:      drivers/media/platform/mtk-vpu/
11099
11100 MEDIATEK MMC/SD/SDIO DRIVER
11101 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11102 S:      Maintained
11103 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
11104 F:      drivers/mmc/host/mtk-sd.c
11105
11106 MEDIATEK MT76 WIRELESS LAN DRIVER
11107 M:      Felix Fietkau <nbd@nbd.name>
11108 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11109 R:      Ryder Lee <ryder.lee@mediatek.com>
11110 L:      linux-wireless@vger.kernel.org
11111 S:      Maintained
11112 F:      drivers/net/wireless/mediatek/mt76/
11113
11114 MEDIATEK MT7601U WIRELESS LAN DRIVER
11115 M:      Jakub Kicinski <kubakici@wp.pl>
11116 L:      linux-wireless@vger.kernel.org
11117 S:      Maintained
11118 F:      drivers/net/wireless/mediatek/mt7601u/
11119
11120 MEDIATEK MT7621/28/88 I2C DRIVER
11121 M:      Stefan Roese <sr@denx.de>
11122 L:      linux-i2c@vger.kernel.org
11123 S:      Maintained
11124 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11125 F:      drivers/i2c/busses/i2c-mt7621.c
11126
11127 MEDIATEK NAND CONTROLLER DRIVER
11128 L:      linux-mtd@lists.infradead.org
11129 S:      Orphan
11130 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11131 F:      drivers/mtd/nand/raw/mtk_*
11132
11133 MEDIATEK PMIC LED DRIVER
11134 M:      Sean Wang <sean.wang@mediatek.com>
11135 S:      Maintained
11136 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11137 F:      drivers/leds/leds-mt6323.c
11138
11139 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11140 M:      Sean Wang <sean.wang@mediatek.com>
11141 S:      Maintained
11142 F:      drivers/char/hw_random/mtk-rng.c
11143
11144 MEDIATEK SWITCH DRIVER
11145 M:      Sean Wang <sean.wang@mediatek.com>
11146 M:      Landen Chao <Landen.Chao@mediatek.com>
11147 L:      netdev@vger.kernel.org
11148 S:      Maintained
11149 F:      drivers/net/dsa/mt7530.*
11150 F:      net/dsa/tag_mtk.c
11151
11152 MEDIATEK USB3 DRD IP DRIVER
11153 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11154 L:      linux-usb@vger.kernel.org
11155 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11156 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11157 S:      Maintained
11158 F:      drivers/usb/mtu3/
11159
11160 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11161 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11162 M:      Martin Donnelly <martin.donnelly@ge.com>
11163 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11164 S:      Maintained
11165 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11166 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11167
11168 MEGARAID SCSI/SAS DRIVERS
11169 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11170 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11171 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11172 L:      megaraidlinux.pdl@broadcom.com
11173 L:      linux-scsi@vger.kernel.org
11174 S:      Maintained
11175 W:      http://www.avagotech.com/support/
11176 F:      Documentation/scsi/megaraid.rst
11177 F:      drivers/scsi/megaraid.*
11178 F:      drivers/scsi/megaraid/
11179
11180 MELEXIS MLX90614 DRIVER
11181 M:      Crt Mori <cmo@melexis.com>
11182 L:      linux-iio@vger.kernel.org
11183 S:      Supported
11184 W:      http://www.melexis.com
11185 F:      drivers/iio/temperature/mlx90614.c
11186
11187 MELEXIS MLX90632 DRIVER
11188 M:      Crt Mori <cmo@melexis.com>
11189 L:      linux-iio@vger.kernel.org
11190 S:      Supported
11191 W:      http://www.melexis.com
11192 F:      drivers/iio/temperature/mlx90632.c
11193
11194 MELFAS MIP4 TOUCHSCREEN DRIVER
11195 M:      Sangwon Jee <jeesw@melfas.com>
11196 S:      Supported
11197 W:      http://www.melfas.com
11198 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11199 F:      drivers/input/touchscreen/melfas_mip4.c
11200
11201 MELLANOX BLUEFIELD I2C DRIVER
11202 M:      Khalil Blaiech <kblaiech@nvidia.com>
11203 L:      linux-i2c@vger.kernel.org
11204 S:      Supported
11205 F:      drivers/i2c/busses/i2c-mlxbf.c
11206
11207 MELLANOX ETHERNET DRIVER (mlx4_en)
11208 M:      Tariq Toukan <tariqt@nvidia.com>
11209 L:      netdev@vger.kernel.org
11210 S:      Supported
11211 W:      http://www.mellanox.com
11212 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11213 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11214
11215 MELLANOX ETHERNET DRIVER (mlx5e)
11216 M:      Saeed Mahameed <saeedm@nvidia.com>
11217 L:      netdev@vger.kernel.org
11218 S:      Supported
11219 W:      http://www.mellanox.com
11220 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11221 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11222
11223 MELLANOX ETHERNET INNOVA DRIVERS
11224 R:      Boris Pismenny <borisp@nvidia.com>
11225 L:      netdev@vger.kernel.org
11226 S:      Supported
11227 W:      http://www.mellanox.com
11228 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11229 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11230 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11231 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11232 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11233
11234 MELLANOX ETHERNET SWITCH DRIVERS
11235 M:      Jiri Pirko <jiri@nvidia.com>
11236 M:      Ido Schimmel <idosch@nvidia.com>
11237 L:      netdev@vger.kernel.org
11238 S:      Supported
11239 W:      http://www.mellanox.com
11240 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11241 F:      drivers/net/ethernet/mellanox/mlxsw/
11242 F:      tools/testing/selftests/drivers/net/mlxsw/
11243
11244 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11245 M:      mlxsw@nvidia.com
11246 L:      netdev@vger.kernel.org
11247 S:      Supported
11248 W:      http://www.mellanox.com
11249 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11250 F:      drivers/net/ethernet/mellanox/mlxfw/
11251
11252 MELLANOX HARDWARE PLATFORM SUPPORT
11253 M:      Andy Shevchenko <andy@infradead.org>
11254 M:      Darren Hart <dvhart@infradead.org>
11255 M:      Vadim Pasternak <vadimp@nvidia.com>
11256 L:      platform-driver-x86@vger.kernel.org
11257 S:      Supported
11258 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11259 F:      drivers/platform/mellanox/
11260 F:      include/linux/platform_data/mlxreg.h
11261
11262 MELLANOX MLX4 core VPI driver
11263 M:      Tariq Toukan <tariqt@nvidia.com>
11264 L:      netdev@vger.kernel.org
11265 L:      linux-rdma@vger.kernel.org
11266 S:      Supported
11267 W:      http://www.mellanox.com
11268 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11269 F:      drivers/net/ethernet/mellanox/mlx4/
11270 F:      include/linux/mlx4/
11271
11272 MELLANOX MLX4 IB driver
11273 M:      Yishai Hadas <yishaih@nvidia.com>
11274 L:      linux-rdma@vger.kernel.org
11275 S:      Supported
11276 W:      http://www.mellanox.com
11277 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11278 F:      drivers/infiniband/hw/mlx4/
11279 F:      include/linux/mlx4/
11280 F:      include/uapi/rdma/mlx4-abi.h
11281
11282 MELLANOX MLX5 core VPI driver
11283 M:      Saeed Mahameed <saeedm@nvidia.com>
11284 M:      Leon Romanovsky <leonro@nvidia.com>
11285 L:      netdev@vger.kernel.org
11286 L:      linux-rdma@vger.kernel.org
11287 S:      Supported
11288 W:      http://www.mellanox.com
11289 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11290 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11291 F:      drivers/net/ethernet/mellanox/mlx5/core/
11292 F:      include/linux/mlx5/
11293
11294 MELLANOX MLX5 IB driver
11295 M:      Leon Romanovsky <leonro@nvidia.com>
11296 L:      linux-rdma@vger.kernel.org
11297 S:      Supported
11298 W:      http://www.mellanox.com
11299 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11300 F:      drivers/infiniband/hw/mlx5/
11301 F:      include/linux/mlx5/
11302 F:      include/uapi/rdma/mlx5-abi.h
11303
11304 MELLANOX MLXCPLD I2C AND MUX DRIVER
11305 M:      Vadim Pasternak <vadimp@nvidia.com>
11306 M:      Michael Shych <michaelsh@nvidia.com>
11307 L:      linux-i2c@vger.kernel.org
11308 S:      Supported
11309 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11310 F:      drivers/i2c/busses/i2c-mlxcpld.c
11311 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11312
11313 MELLANOX MLXCPLD LED DRIVER
11314 M:      Vadim Pasternak <vadimp@nvidia.com>
11315 L:      linux-leds@vger.kernel.org
11316 S:      Supported
11317 F:      Documentation/leds/leds-mlxcpld.rst
11318 F:      drivers/leds/leds-mlxcpld.c
11319 F:      drivers/leds/leds-mlxreg.c
11320
11321 MELLANOX PLATFORM DRIVER
11322 M:      Vadim Pasternak <vadimp@nvidia.com>
11323 L:      platform-driver-x86@vger.kernel.org
11324 S:      Supported
11325 F:      drivers/platform/x86/mlx-platform.c
11326
11327 MEMBARRIER SUPPORT
11328 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11329 M:      "Paul E. McKenney" <paulmck@kernel.org>
11330 L:      linux-kernel@vger.kernel.org
11331 S:      Supported
11332 F:      arch/powerpc/include/asm/membarrier.h
11333 F:      include/uapi/linux/membarrier.h
11334 F:      kernel/sched/membarrier.c
11335
11336 MEMBLOCK
11337 M:      Mike Rapoport <rppt@linux.ibm.com>
11338 L:      linux-mm@kvack.org
11339 S:      Maintained
11340 F:      Documentation/core-api/boot-time-mm.rst
11341 F:      include/linux/memblock.h
11342 F:      mm/memblock.c
11343
11344 MEMORY CONTROLLER DRIVERS
11345 M:      Krzysztof Kozlowski <krzk@kernel.org>
11346 L:      linux-kernel@vger.kernel.org
11347 S:      Maintained
11348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11349 F:      Documentation/devicetree/bindings/memory-controllers/
11350 F:      drivers/memory/
11351
11352 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11353 M:      Dmitry Osipenko <digetx@gmail.com>
11354 L:      linux-pm@vger.kernel.org
11355 L:      linux-tegra@vger.kernel.org
11356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11357 S:      Maintained
11358 F:      drivers/devfreq/tegra20-devfreq.c
11359 F:      drivers/devfreq/tegra30-devfreq.c
11360
11361 MEMORY MANAGEMENT
11362 M:      Andrew Morton <akpm@linux-foundation.org>
11363 L:      linux-mm@kvack.org
11364 S:      Maintained
11365 W:      http://www.linux-mm.org
11366 T:      quilt https://ozlabs.org/~akpm/mmotm/
11367 T:      quilt https://ozlabs.org/~akpm/mmots/
11368 T:      git git://github.com/hnaz/linux-mm.git
11369 F:      include/linux/gfp.h
11370 F:      include/linux/memory_hotplug.h
11371 F:      include/linux/mm.h
11372 F:      include/linux/mmzone.h
11373 F:      include/linux/vmalloc.h
11374 F:      mm/
11375
11376 MEMORY TECHNOLOGY DEVICES (MTD)
11377 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11378 M:      Richard Weinberger <richard@nod.at>
11379 M:      Vignesh Raghavendra <vigneshr@ti.com>
11380 L:      linux-mtd@lists.infradead.org
11381 S:      Maintained
11382 W:      http://www.linux-mtd.infradead.org/
11383 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11384 C:      irc://irc.oftc.net/mtd
11385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11387 F:      Documentation/devicetree/bindings/mtd/
11388 F:      drivers/mtd/
11389 F:      include/linux/mtd/
11390 F:      include/uapi/mtd/
11391
11392 MEN A21 WATCHDOG DRIVER
11393 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11394 L:      linux-watchdog@vger.kernel.org
11395 S:      Maintained
11396 F:      drivers/watchdog/mena21_wdt.c
11397
11398 MEN CHAMELEON BUS (mcb)
11399 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11400 S:      Maintained
11401 F:      Documentation/driver-api/men-chameleon-bus.rst
11402 F:      drivers/mcb/
11403 F:      include/linux/mcb.h
11404
11405 MEN F21BMC (Board Management Controller)
11406 M:      Andreas Werner <andreas.werner@men.de>
11407 S:      Supported
11408 F:      Documentation/hwmon/menf21bmc.rst
11409 F:      drivers/hwmon/menf21bmc_hwmon.c
11410 F:      drivers/leds/leds-menf21bmc.c
11411 F:      drivers/mfd/menf21bmc.c
11412 F:      drivers/watchdog/menf21bmc_wdt.c
11413
11414 MEN Z069 WATCHDOG DRIVER
11415 M:      Johannes Thumshirn <jth@kernel.org>
11416 L:      linux-watchdog@vger.kernel.org
11417 S:      Maintained
11418 F:      drivers/watchdog/menz69_wdt.c
11419
11420 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11421 M:      Neil Armstrong <narmstrong@baylibre.com>
11422 L:      linux-media@vger.kernel.org
11423 L:      linux-amlogic@lists.infradead.org
11424 S:      Supported
11425 W:      http://linux-meson.com/
11426 T:      git git://linuxtv.org/media_tree.git
11427 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11428 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
11429 F:      drivers/media/cec/platform/meson/ao-cec.c
11430
11431 MESON GE2D DRIVER FOR AMLOGIC SOCS
11432 M:      Neil Armstrong <narmstrong@baylibre.com>
11433 L:      linux-media@vger.kernel.org
11434 L:      linux-amlogic@lists.infradead.org
11435 S:      Supported
11436 T:      git git://linuxtv.org/media_tree.git
11437 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
11438 F:      drivers/media/meson/ge2d/
11439
11440 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11441 M:      Liang Yang <liang.yang@amlogic.com>
11442 L:      linux-mtd@lists.infradead.org
11443 S:      Maintained
11444 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11445 F:      drivers/mtd/nand/raw/meson_*
11446
11447 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11448 M:      Neil Armstrong <narmstrong@baylibre.com>
11449 L:      linux-media@vger.kernel.org
11450 L:      linux-amlogic@lists.infradead.org
11451 S:      Supported
11452 T:      git git://linuxtv.org/media_tree.git
11453 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11454 F:      drivers/staging/media/meson/vdec/
11455
11456 METHODE UDPU SUPPORT
11457 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11458 S:      Maintained
11459 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11460
11461 MHI BUS
11462 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11463 M:      Hemant Kumar <hemantk@codeaurora.org>
11464 L:      linux-arm-msm@vger.kernel.org
11465 S:      Maintained
11466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11467 F:      Documentation/ABI/stable/sysfs-bus-mhi
11468 F:      Documentation/mhi/
11469 F:      drivers/bus/mhi/
11470 F:      include/linux/mhi.h
11471
11472 MICROBLAZE ARCHITECTURE
11473 M:      Michal Simek <monstr@monstr.eu>
11474 S:      Supported
11475 W:      http://www.monstr.eu/fdt/
11476 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11477 F:      arch/microblaze/
11478
11479 MICROCHIP AT91 DMA DRIVERS
11480 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11481 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11482 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11483 L:      dmaengine@vger.kernel.org
11484 S:      Supported
11485 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11486 F:      drivers/dma/at_hdmac.c
11487 F:      drivers/dma/at_hdmac_regs.h
11488 F:      drivers/dma/at_xdmac.c
11489 F:      include/dt-bindings/dma/at91.h
11490 F:      include/linux/platform_data/dma-atmel.h
11491
11492 MICROCHIP AT91 SERIAL DRIVER
11493 M:      Richard Genoud <richard.genoud@gmail.com>
11494 S:      Maintained
11495 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11496 F:      drivers/tty/serial/atmel_serial.c
11497 F:      drivers/tty/serial/atmel_serial.h
11498
11499 MICROCHIP AT91 USART MFD DRIVER
11500 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11501 L:      linux-kernel@vger.kernel.org
11502 S:      Supported
11503 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11504 F:      drivers/mfd/at91-usart.c
11505 F:      include/dt-bindings/mfd/at91-usart.h
11506
11507 MICROCHIP AT91 USART SPI DRIVER
11508 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11509 L:      linux-spi@vger.kernel.org
11510 S:      Supported
11511 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11512 F:      drivers/spi/spi-at91-usart.c
11513
11514 MICROCHIP AUDIO ASOC DRIVERS
11515 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11516 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11517 S:      Supported
11518 F:      sound/soc/atmel
11519
11520 MICROCHIP ECC DRIVER
11521 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11522 L:      linux-crypto@vger.kernel.org
11523 S:      Maintained
11524 F:      drivers/crypto/atmel-ecc.*
11525
11526 MICROCHIP I2C DRIVER
11527 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11528 L:      linux-i2c@vger.kernel.org
11529 S:      Supported
11530 F:      drivers/i2c/busses/i2c-at91-*.c
11531 F:      drivers/i2c/busses/i2c-at91.h
11532
11533 MICROCHIP ISC DRIVER
11534 M:      Eugen Hristev <eugen.hristev@microchip.com>
11535 L:      linux-media@vger.kernel.org
11536 S:      Supported
11537 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11538 F:      drivers/media/platform/atmel/atmel-isc-base.c
11539 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11540 F:      drivers/media/platform/atmel/atmel-isc.h
11541 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11542 F:      include/linux/atmel-isc-media.h
11543
11544 MICROCHIP ISI DRIVER
11545 M:      Eugen Hristev <eugen.hristev@microchip.com>
11546 L:      linux-media@vger.kernel.org
11547 S:      Supported
11548 F:      drivers/media/platform/atmel/atmel-isi.c
11549 F:      drivers/media/platform/atmel/atmel-isi.h
11550
11551 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11552 M:      Woojung Huh <woojung.huh@microchip.com>
11553 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11554 L:      netdev@vger.kernel.org
11555 S:      Maintained
11556 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11557 F:      drivers/net/dsa/microchip/*
11558 F:      include/linux/platform_data/microchip-ksz.h
11559 F:      net/dsa/tag_ksz.c
11560
11561 MICROCHIP LAN743X ETHERNET DRIVER
11562 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11563 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11564 L:      netdev@vger.kernel.org
11565 S:      Maintained
11566 F:      drivers/net/ethernet/microchip/lan743x_*
11567
11568 MICROCHIP LCDFB DRIVER
11569 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11570 L:      linux-fbdev@vger.kernel.org
11571 S:      Maintained
11572 F:      drivers/video/fbdev/atmel_lcdfb.c
11573 F:      include/video/atmel_lcdc.h
11574
11575 MICROCHIP MCP16502 PMIC DRIVER
11576 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11577 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11578 S:      Maintained
11579 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11580 F:      drivers/regulator/mcp16502.c
11581
11582 MICROCHIP MCP3911 ADC DRIVER
11583 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11584 M:      Kent Gustavsson <kent@minoris.se>
11585 L:      linux-iio@vger.kernel.org
11586 S:      Supported
11587 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11588 F:      drivers/iio/adc/mcp3911.c
11589
11590 MICROCHIP MMC/SD/SDIO MCI DRIVER
11591 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11592 S:      Maintained
11593 F:      drivers/mmc/host/atmel-mci.c
11594
11595 MICROCHIP NAND DRIVER
11596 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11597 L:      linux-mtd@lists.infradead.org
11598 S:      Supported
11599 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11600 F:      drivers/mtd/nand/raw/atmel/*
11601
11602 MICROCHIP PWM DRIVER
11603 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11604 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11605 L:      linux-pwm@vger.kernel.org
11606 S:      Supported
11607 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11608 F:      drivers/pwm/pwm-atmel.c
11609
11610 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11611 M:      Eugen Hristev <eugen.hristev@microchip.com>
11612 L:      linux-iio@vger.kernel.org
11613 S:      Supported
11614 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11615 F:      drivers/iio/adc/at91-sama5d2_adc.c
11616 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11617
11618 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11619 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11620 S:      Supported
11621 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11622
11623 MICROCHIP SPI DRIVER
11624 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11625 S:      Supported
11626 F:      drivers/spi/spi-atmel.*
11627
11628 MICROCHIP SSC DRIVER
11629 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11631 S:      Supported
11632 F:      drivers/misc/atmel-ssc.c
11633 F:      include/linux/atmel-ssc.h
11634
11635 MICROCHIP USB251XB DRIVER
11636 M:      Richard Leitner <richard.leitner@skidata.com>
11637 L:      linux-usb@vger.kernel.org
11638 S:      Maintained
11639 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11640 F:      drivers/usb/misc/usb251xb.c
11641
11642 MICROCHIP USBA UDC DRIVER
11643 M:      Cristian Birsan <cristian.birsan@microchip.com>
11644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11645 S:      Supported
11646 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11647
11648 MICROCHIP WILC1000 WIFI DRIVER
11649 M:      Ajay Singh <ajay.kathat@microchip.com>
11650 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11651 L:      linux-wireless@vger.kernel.org
11652 S:      Supported
11653 F:      drivers/net/wireless/microchip/wilc1000/
11654
11655 MICROSEMI MIPS SOCS
11656 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11657 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11658 L:      linux-mips@vger.kernel.org
11659 S:      Supported
11660 F:      Documentation/devicetree/bindings/mips/mscc.txt
11661 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
11662 F:      arch/mips/boot/dts/mscc/
11663 F:      arch/mips/configs/generic/board-ocelot.config
11664 F:      arch/mips/generic/board-ocelot.c
11665
11666 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11667 M:      Don Brace <don.brace@microchip.com>
11668 L:      storagedev@microchip.com
11669 L:      linux-scsi@vger.kernel.org
11670 S:      Supported
11671 F:      Documentation/scsi/smartpqi.rst
11672 F:      drivers/scsi/smartpqi/Kconfig
11673 F:      drivers/scsi/smartpqi/Makefile
11674 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11675 F:      include/linux/cciss*.h
11676 F:      include/uapi/linux/cciss*.h
11677
11678 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11679 M:      Chen Yu <yu.c.chen@intel.com>
11680 L:      platform-driver-x86@vger.kernel.org
11681 S:      Supported
11682 F:      drivers/platform/x86/surfacepro3_button.c
11683
11684 MICROTEK X6 SCANNER
11685 M:      Oliver Neukum <oliver@neukum.org>
11686 S:      Maintained
11687 F:      drivers/usb/image/microtek.*
11688
11689 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
11690 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11691 L:      linux-media@vger.kernel.org
11692 S:      Maintained
11693 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
11694 F:      Documentation/driver-api/media/drivers/ccs/
11695 F:      drivers/media/i2c/ccs-pll.c
11696 F:      drivers/media/i2c/ccs-pll.h
11697 F:      drivers/media/i2c/ccs/
11698 F:      include/uapi/linux/smiapp.h
11699
11700 MIPS
11701 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11702 L:      linux-mips@vger.kernel.org
11703 S:      Maintained
11704 W:      http://www.linux-mips.org/
11705 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11707 F:      Documentation/devicetree/bindings/mips/
11708 F:      Documentation/mips/
11709 F:      arch/mips/
11710 F:      drivers/platform/mips/
11711
11712 MIPS BOSTON DEVELOPMENT BOARD
11713 M:      Paul Burton <paulburton@kernel.org>
11714 L:      linux-mips@vger.kernel.org
11715 S:      Maintained
11716 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11717 F:      arch/mips/boot/dts/img/boston.dts
11718 F:      arch/mips/configs/generic/board-boston.config
11719 F:      drivers/clk/imgtec/clk-boston.c
11720 F:      include/dt-bindings/clock/boston-clock.h
11721
11722 MIPS CORE DRIVERS
11723 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11724 M:      Serge Semin <fancer.lancer@gmail.com>
11725 L:      linux-mips@vger.kernel.org
11726 S:      Supported
11727 F:      drivers/bus/mips_cdmm.c
11728 F:      drivers/clocksource/mips-gic-timer.c
11729 F:      drivers/cpuidle/cpuidle-cps.c
11730 F:      drivers/irqchip/irq-mips-cpu.c
11731 F:      drivers/irqchip/irq-mips-gic.c
11732
11733 MIPS GENERIC PLATFORM
11734 M:      Paul Burton <paulburton@kernel.org>
11735 L:      linux-mips@vger.kernel.org
11736 S:      Supported
11737 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
11738 F:      arch/mips/generic/
11739 F:      arch/mips/tools/generic-board-config.sh
11740
11741 MIPS RINT INSTRUCTION EMULATION
11742 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11743 L:      linux-mips@vger.kernel.org
11744 S:      Supported
11745 F:      arch/mips/math-emu/dp_rint.c
11746 F:      arch/mips/math-emu/sp_rint.c
11747
11748 MIPS/LOONGSON1 ARCHITECTURE
11749 M:      Keguang Zhang <keguang.zhang@gmail.com>
11750 L:      linux-mips@vger.kernel.org
11751 S:      Maintained
11752 F:      arch/mips/include/asm/mach-loongson32/
11753 F:      arch/mips/loongson32/
11754 F:      drivers/*/*/*loongson1*
11755 F:      drivers/*/*loongson1*
11756
11757 MIPS/LOONGSON2EF ARCHITECTURE
11758 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11759 L:      linux-mips@vger.kernel.org
11760 S:      Maintained
11761 F:      arch/mips/include/asm/mach-loongson2ef/
11762 F:      arch/mips/loongson2ef/
11763 F:      drivers/*/*/*loongson2*
11764 F:      drivers/*/*loongson2*
11765
11766 MIPS/LOONGSON64 ARCHITECTURE
11767 M:      Huacai Chen <chenhc@lemote.com>
11768 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11769 L:      linux-mips@vger.kernel.org
11770 S:      Maintained
11771 F:      arch/mips/include/asm/mach-loongson64/
11772 F:      arch/mips/loongson64/
11773 F:      drivers/*/*/*loongson3*
11774 F:      drivers/*/*loongson3*
11775 F:      drivers/irqchip/irq-loongson*
11776 F:      drivers/platform/mips/cpu_hwmon.c
11777
11778 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11779 M:      Hans Verkuil <hverkuil@xs4all.nl>
11780 L:      linux-media@vger.kernel.org
11781 S:      Odd Fixes
11782 W:      https://linuxtv.org
11783 T:      git git://linuxtv.org/media_tree.git
11784 F:      drivers/media/radio/radio-miropcm20*
11785
11786 MMP SUPPORT
11787 R:      Lubomir Rintel <lkundrak@v3.sk>
11788 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11789 S:      Odd Fixes
11790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11791 F:      arch/arm/boot/dts/mmp*
11792 F:      arch/arm/mach-mmp/
11793 F:      include/linux/soc/mmp/
11794
11795 MMP USB PHY DRIVERS
11796 R:      Lubomir Rintel <lkundrak@v3.sk>
11797 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11798 S:      Maintained
11799 F:      drivers/phy/marvell/phy-mmp3-usb.c
11800 F:      drivers/phy/marvell/phy-pxa-usb.c
11801
11802 MMU GATHER AND TLB INVALIDATION
11803 M:      Will Deacon <will@kernel.org>
11804 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11805 M:      Andrew Morton <akpm@linux-foundation.org>
11806 M:      Nick Piggin <npiggin@gmail.com>
11807 M:      Peter Zijlstra <peterz@infradead.org>
11808 L:      linux-arch@vger.kernel.org
11809 L:      linux-mm@kvack.org
11810 S:      Maintained
11811 F:      arch/*/include/asm/tlb.h
11812 F:      include/asm-generic/tlb.h
11813 F:      mm/mmu_gather.c
11814
11815 MN88472 MEDIA DRIVER
11816 M:      Antti Palosaari <crope@iki.fi>
11817 L:      linux-media@vger.kernel.org
11818 S:      Maintained
11819 W:      https://linuxtv.org
11820 W:      http://palosaari.fi/linux/
11821 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11822 F:      drivers/media/dvb-frontends/mn88472*
11823
11824 MN88473 MEDIA DRIVER
11825 M:      Antti Palosaari <crope@iki.fi>
11826 L:      linux-media@vger.kernel.org
11827 S:      Maintained
11828 W:      https://linuxtv.org
11829 W:      http://palosaari.fi/linux/
11830 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11831 F:      drivers/media/dvb-frontends/mn88473*
11832
11833 MODULE SUPPORT
11834 M:      Jessica Yu <jeyu@kernel.org>
11835 S:      Maintained
11836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11837 F:      include/linux/module.h
11838 F:      kernel/module.c
11839
11840 MONOLITHIC POWER SYSTEM PMIC DRIVER
11841 M:      Saravanan Sekar <sravanhome@gmail.com>
11842 S:      Maintained
11843 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11844 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11845 F:      drivers/iio/adc/mp2629_adc.c
11846 F:      drivers/mfd/mp2629.c
11847 F:      drivers/power/supply/mp2629_charger.c
11848 F:      drivers/regulator/mp5416.c
11849 F:      drivers/regulator/mpq7920.c
11850 F:      drivers/regulator/mpq7920.h
11851 F:      include/linux/mfd/mp2629.h
11852
11853 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11854 S:      Orphan
11855 W:      http://popies.net/meye/
11856 F:      Documentation/userspace-api/media/drivers/meye*
11857 F:      drivers/media/pci/meye/
11858 F:      include/uapi/linux/meye.h
11859
11860 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11861 M:      Jiri Slaby <jirislaby@kernel.org>
11862 S:      Maintained
11863 F:      Documentation/driver-api/serial/moxa-smartio.rst
11864 F:      drivers/tty/mxser.*
11865
11866 MR800 AVERMEDIA USB FM RADIO DRIVER
11867 M:      Alexey Klimov <klimov.linux@gmail.com>
11868 L:      linux-media@vger.kernel.org
11869 S:      Maintained
11870 T:      git git://linuxtv.org/media_tree.git
11871 F:      drivers/media/radio/radio-mr800.c
11872
11873 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11874 M:      Alan Ott <alan@signal11.us>
11875 L:      linux-wpan@vger.kernel.org
11876 S:      Maintained
11877 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11878 F:      drivers/net/ieee802154/mrf24j40.c
11879
11880 MSI LAPTOP SUPPORT
11881 M:      "Lee, Chun-Yi" <jlee@suse.com>
11882 L:      platform-driver-x86@vger.kernel.org
11883 S:      Maintained
11884 F:      drivers/platform/x86/msi-laptop.c
11885
11886 MSI WMI SUPPORT
11887 L:      platform-driver-x86@vger.kernel.org
11888 S:      Orphan
11889 F:      drivers/platform/x86/msi-wmi.c
11890
11891 MSI001 MEDIA DRIVER
11892 M:      Antti Palosaari <crope@iki.fi>
11893 L:      linux-media@vger.kernel.org
11894 S:      Maintained
11895 W:      https://linuxtv.org
11896 W:      http://palosaari.fi/linux/
11897 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11898 T:      git git://linuxtv.org/anttip/media_tree.git
11899 F:      drivers/media/tuners/msi001*
11900
11901 MSI2500 MEDIA DRIVER
11902 M:      Antti Palosaari <crope@iki.fi>
11903 L:      linux-media@vger.kernel.org
11904 S:      Maintained
11905 W:      https://linuxtv.org
11906 W:      http://palosaari.fi/linux/
11907 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11908 T:      git git://linuxtv.org/anttip/media_tree.git
11909 F:      drivers/media/usb/msi2500/
11910
11911 MSTAR INTERRUPT CONTROLLER DRIVER
11912 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
11913 M:      Daniel Palmer <daniel@thingy.jp>
11914 S:      Maintained
11915 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
11916 F:      drivers/irqchip/irq-mst-intc.c
11917
11918 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11919 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11920 L:      linux-mtd@lists.infradead.org
11921 S:      Maintained
11922 F:      drivers/mtd/devices/docg3*
11923
11924 MT9M032 APTINA SENSOR DRIVER
11925 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11926 L:      linux-media@vger.kernel.org
11927 S:      Maintained
11928 T:      git git://linuxtv.org/media_tree.git
11929 F:      drivers/media/i2c/mt9m032.c
11930 F:      include/media/i2c/mt9m032.h
11931
11932 MT9P031 APTINA CAMERA SENSOR
11933 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11934 L:      linux-media@vger.kernel.org
11935 S:      Maintained
11936 T:      git git://linuxtv.org/media_tree.git
11937 F:      drivers/media/i2c/mt9p031.c
11938 F:      include/media/i2c/mt9p031.h
11939
11940 MT9T001 APTINA CAMERA SENSOR
11941 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11942 L:      linux-media@vger.kernel.org
11943 S:      Maintained
11944 T:      git git://linuxtv.org/media_tree.git
11945 F:      drivers/media/i2c/mt9t001.c
11946 F:      include/media/i2c/mt9t001.h
11947
11948 MT9T112 APTINA CAMERA SENSOR
11949 M:      Jacopo Mondi <jacopo@jmondi.org>
11950 L:      linux-media@vger.kernel.org
11951 S:      Odd Fixes
11952 T:      git git://linuxtv.org/media_tree.git
11953 F:      drivers/media/i2c/mt9t112.c
11954 F:      include/media/i2c/mt9t112.h
11955
11956 MT9V032 APTINA CAMERA SENSOR
11957 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11958 L:      linux-media@vger.kernel.org
11959 S:      Maintained
11960 T:      git git://linuxtv.org/media_tree.git
11961 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11962 F:      drivers/media/i2c/mt9v032.c
11963 F:      include/media/i2c/mt9v032.h
11964
11965 MT9V111 APTINA CAMERA SENSOR
11966 M:      Jacopo Mondi <jacopo@jmondi.org>
11967 L:      linux-media@vger.kernel.org
11968 S:      Maintained
11969 T:      git git://linuxtv.org/media_tree.git
11970 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
11971 F:      drivers/media/i2c/mt9v111.c
11972
11973 MULTIFUNCTION DEVICES (MFD)
11974 M:      Lee Jones <lee.jones@linaro.org>
11975 S:      Supported
11976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11977 F:      Documentation/devicetree/bindings/mfd/
11978 F:      drivers/mfd/
11979 F:      include/dt-bindings/mfd/
11980 F:      include/linux/mfd/
11981
11982 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11983 S:      Orphan
11984 F:      drivers/mmc/host/mmc_spi.c
11985 F:      include/linux/spi/mmc_spi.h
11986
11987 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11988 M:      Ulf Hansson <ulf.hansson@linaro.org>
11989 L:      linux-mmc@vger.kernel.org
11990 S:      Maintained
11991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11992 F:      Documentation/devicetree/bindings/mmc/
11993 F:      drivers/mmc/
11994 F:      include/linux/mmc/
11995 F:      include/uapi/linux/mmc/
11996
11997 MULTIPLEXER SUBSYSTEM
11998 M:      Peter Rosin <peda@axentia.se>
11999 S:      Maintained
12000 F:      Documentation/ABI/testing/sysfs-class-mux*
12001 F:      Documentation/devicetree/bindings/mux/
12002 F:      drivers/mux/
12003 F:      include/dt-bindings/mux/
12004 F:      include/linux/mux/
12005
12006 MULTITECH MULTIPORT CARD (ISICOM)
12007 S:      Orphan
12008 F:      drivers/tty/isicom.c
12009 F:      include/linux/isicom.h
12010
12011 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12012 M:      Bin Liu <b-liu@ti.com>
12013 L:      linux-usb@vger.kernel.org
12014 S:      Maintained
12015 F:      drivers/usb/musb/
12016
12017 MXL301RF MEDIA DRIVER
12018 M:      Akihiro Tsukada <tskd08@gmail.com>
12019 L:      linux-media@vger.kernel.org
12020 S:      Odd Fixes
12021 F:      drivers/media/tuners/mxl301rf*
12022
12023 MXL5007T MEDIA DRIVER
12024 M:      Michael Krufky <mkrufky@linuxtv.org>
12025 L:      linux-media@vger.kernel.org
12026 S:      Maintained
12027 W:      https://linuxtv.org
12028 W:      http://github.com/mkrufky
12029 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12030 T:      git git://linuxtv.org/mkrufky/tuners.git
12031 F:      drivers/media/tuners/mxl5007t.*
12032
12033 MXSFB DRM DRIVER
12034 M:      Marek Vasut <marex@denx.de>
12035 M:      Stefan Agner <stefan@agner.ch>
12036 L:      dri-devel@lists.freedesktop.org
12037 S:      Supported
12038 T:      git git://anongit.freedesktop.org/drm/drm-misc
12039 F:      Documentation/devicetree/bindings/display/mxsfb.txt
12040 F:      drivers/gpu/drm/mxsfb/
12041
12042 MYLEX DAC960 PCI RAID Controller
12043 M:      Hannes Reinecke <hare@kernel.org>
12044 L:      linux-scsi@vger.kernel.org
12045 S:      Supported
12046 F:      drivers/scsi/myrb.*
12047 F:      drivers/scsi/myrs.*
12048
12049 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12050 M:      Chris Lee <christopher.lee@cspi.com>
12051 L:      netdev@vger.kernel.org
12052 S:      Supported
12053 W:      https://www.cspi.com/ethernet-products/support/downloads/
12054 F:      drivers/net/ethernet/myricom/myri10ge/
12055
12056 NAND FLASH SUBSYSTEM
12057 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12058 R:      Richard Weinberger <richard@nod.at>
12059 L:      linux-mtd@lists.infradead.org
12060 S:      Maintained
12061 W:      http://www.linux-mtd.infradead.org/
12062 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12063 C:      irc://irc.oftc.net/mtd
12064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12065 F:      drivers/mtd/nand/
12066 F:      include/linux/mtd/*nand*.h
12067
12068 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12069 M:      Daniel Mack <zonque@gmail.com>
12070 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12071 S:      Maintained
12072 W:      http://www.native-instruments.com
12073 F:      sound/usb/caiaq/
12074
12075 NATSEMI ETHERNET DRIVER (DP8381x)
12076 S:      Orphan
12077 F:      drivers/net/ethernet/natsemi/natsemi.c
12078
12079 NCR 5380 SCSI DRIVERS
12080 M:      Finn Thain <fthain@telegraphics.com.au>
12081 M:      Michael Schmitz <schmitzmic@gmail.com>
12082 L:      linux-scsi@vger.kernel.org
12083 S:      Maintained
12084 F:      Documentation/scsi/g_NCR5380.rst
12085 F:      drivers/scsi/NCR5380.*
12086 F:      drivers/scsi/arm/cumana_1.c
12087 F:      drivers/scsi/arm/oak.c
12088 F:      drivers/scsi/atari_scsi.*
12089 F:      drivers/scsi/dmx3191d.c
12090 F:      drivers/scsi/g_NCR5380.*
12091 F:      drivers/scsi/mac_scsi.*
12092 F:      drivers/scsi/sun3_scsi.*
12093 F:      drivers/scsi/sun3_scsi_vme.c
12094
12095 NCSI LIBRARY
12096 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12097 S:      Maintained
12098 F:      net/ncsi/
12099
12100 NCT6775 HARDWARE MONITOR DRIVER
12101 M:      Guenter Roeck <linux@roeck-us.net>
12102 L:      linux-hwmon@vger.kernel.org
12103 S:      Maintained
12104 F:      Documentation/hwmon/nct6775.rst
12105 F:      drivers/hwmon/nct6775.c
12106
12107 NETDEVSIM
12108 M:      Jakub Kicinski <kuba@kernel.org>
12109 S:      Maintained
12110 F:      drivers/net/netdevsim/*
12111
12112 NETEM NETWORK EMULATOR
12113 M:      Stephen Hemminger <stephen@networkplumber.org>
12114 L:      netdev@vger.kernel.org
12115 S:      Maintained
12116 F:      net/sched/sch_netem.c
12117
12118 NETERION 10GbE DRIVERS (s2io/vxge)
12119 M:      Jon Mason <jdmason@kudzu.us>
12120 L:      netdev@vger.kernel.org
12121 S:      Supported
12122 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12123 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12124 F:      drivers/net/ethernet/neterion/
12125
12126 NETFILTER
12127 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12128 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12129 M:      Florian Westphal <fw@strlen.de>
12130 L:      netfilter-devel@vger.kernel.org
12131 L:      coreteam@netfilter.org
12132 S:      Maintained
12133 W:      http://www.netfilter.org/
12134 W:      http://www.iptables.org/
12135 W:      http://www.nftables.org/
12136 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12139 F:      include/linux/netfilter*
12140 F:      include/linux/netfilter/
12141 F:      include/net/netfilter/
12142 F:      include/uapi/linux/netfilter*
12143 F:      include/uapi/linux/netfilter/
12144 F:      net/*/netfilter.c
12145 F:      net/*/netfilter/
12146 F:      net/bridge/br_netfilter*.c
12147 F:      net/netfilter/
12148
12149 NETROM NETWORK LAYER
12150 M:      Ralf Baechle <ralf@linux-mips.org>
12151 L:      linux-hams@vger.kernel.org
12152 S:      Maintained
12153 W:      http://www.linux-ax25.org/
12154 F:      include/net/netrom.h
12155 F:      include/uapi/linux/netrom.h
12156 F:      net/netrom/
12157
12158 NETRONOME ETHERNET DRIVERS
12159 M:      Simon Horman <simon.horman@netronome.com>
12160 R:      Jakub Kicinski <kuba@kernel.org>
12161 L:      oss-drivers@netronome.com
12162 S:      Maintained
12163 F:      drivers/net/ethernet/netronome/
12164
12165 NETWORK BLOCK DEVICE (NBD)
12166 M:      Josef Bacik <josef@toxicpanda.com>
12167 L:      linux-block@vger.kernel.org
12168 L:      nbd@other.debian.org
12169 S:      Maintained
12170 F:      Documentation/admin-guide/blockdev/nbd.rst
12171 F:      drivers/block/nbd.c
12172 F:      include/trace/events/nbd.h
12173 F:      include/uapi/linux/nbd.h
12174
12175 NETWORK DROP MONITOR
12176 M:      Neil Horman <nhorman@tuxdriver.com>
12177 L:      netdev@vger.kernel.org
12178 S:      Maintained
12179 W:      https://fedorahosted.org/dropwatch/
12180 F:      include/uapi/linux/net_dropmon.h
12181 F:      net/core/drop_monitor.c
12182
12183 NETWORKING DRIVERS
12184 M:      "David S. Miller" <davem@davemloft.net>
12185 M:      Jakub Kicinski <kuba@kernel.org>
12186 L:      netdev@vger.kernel.org
12187 S:      Maintained
12188 W:      http://www.linuxfoundation.org/en/Net
12189 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12192 F:      Documentation/devicetree/bindings/net/
12193 F:      drivers/connector/
12194 F:      drivers/net/
12195 F:      include/linux/etherdevice.h
12196 F:      include/linux/fcdevice.h
12197 F:      include/linux/fddidevice.h
12198 F:      include/linux/hippidevice.h
12199 F:      include/linux/if_*
12200 F:      include/linux/inetdevice.h
12201 F:      include/linux/netdevice.h
12202 F:      include/uapi/linux/if_*
12203 F:      include/uapi/linux/netdevice.h
12204
12205 NETWORKING DRIVERS (WIRELESS)
12206 M:      Kalle Valo <kvalo@codeaurora.org>
12207 L:      linux-wireless@vger.kernel.org
12208 S:      Maintained
12209 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12212 F:      Documentation/devicetree/bindings/net/wireless/
12213 F:      drivers/net/wireless/
12214
12215 NETWORKING [DSA]
12216 M:      Andrew Lunn <andrew@lunn.ch>
12217 M:      Vivien Didelot <vivien.didelot@gmail.com>
12218 M:      Florian Fainelli <f.fainelli@gmail.com>
12219 M:      Vladimir Oltean <olteanv@gmail.com>
12220 S:      Maintained
12221 F:      Documentation/devicetree/bindings/net/dsa/
12222 F:      drivers/net/dsa/
12223 F:      include/linux/dsa/
12224 F:      include/linux/platform_data/dsa.h
12225 F:      include/net/dsa.h
12226 F:      net/dsa/
12227
12228 NETWORKING [GENERAL]
12229 M:      "David S. Miller" <davem@davemloft.net>
12230 M:      Jakub Kicinski <kuba@kernel.org>
12231 L:      netdev@vger.kernel.org
12232 S:      Maintained
12233 W:      http://www.linuxfoundation.org/en/Net
12234 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12235 B:      mailto:netdev@vger.kernel.org
12236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12238 F:      Documentation/networking/
12239 F:      include/linux/in.h
12240 F:      include/linux/net.h
12241 F:      include/linux/netdevice.h
12242 F:      include/net/
12243 F:      include/uapi/linux/in.h
12244 F:      include/uapi/linux/net.h
12245 F:      include/uapi/linux/net_namespace.h
12246 F:      include/uapi/linux/netdevice.h
12247 F:      lib/net_utils.c
12248 F:      lib/random32.c
12249 F:      net/
12250 F:      tools/testing/selftests/net/
12251
12252 NETWORKING [IPSEC]
12253 M:      Steffen Klassert <steffen.klassert@secunet.com>
12254 M:      Herbert Xu <herbert@gondor.apana.org.au>
12255 M:      "David S. Miller" <davem@davemloft.net>
12256 L:      netdev@vger.kernel.org
12257 S:      Maintained
12258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12260 F:      include/net/xfrm.h
12261 F:      include/uapi/linux/xfrm.h
12262 F:      net/ipv4/ah4.c
12263 F:      net/ipv4/esp4*
12264 F:      net/ipv4/ip_vti.c
12265 F:      net/ipv4/ipcomp.c
12266 F:      net/ipv4/xfrm*
12267 F:      net/ipv6/ah6.c
12268 F:      net/ipv6/esp6*
12269 F:      net/ipv6/ip6_vti.c
12270 F:      net/ipv6/ipcomp6.c
12271 F:      net/ipv6/xfrm*
12272 F:      net/key/
12273 F:      net/xfrm/
12274 F:      tools/testing/selftests/net/ipsec.c
12275
12276 NETWORKING [IPv4/IPv6]
12277 M:      "David S. Miller" <davem@davemloft.net>
12278 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
12279 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
12280 L:      netdev@vger.kernel.org
12281 S:      Maintained
12282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12283 F:      arch/x86/net/*
12284 F:      include/net/ip*
12285 F:      net/ipv4/
12286 F:      net/ipv6/
12287
12288 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12289 M:      Paul Moore <paul@paul-moore.com>
12290 L:      netdev@vger.kernel.org
12291 L:      linux-security-module@vger.kernel.org
12292 S:      Maintained
12293 W:      https://github.com/netlabel
12294 F:      Documentation/netlabel/
12295 F:      include/net/calipso.h
12296 F:      include/net/cipso_ipv4.h
12297 F:      include/net/netlabel.h
12298 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12299 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12300 F:      net/ipv4/cipso_ipv4.c
12301 F:      net/ipv6/calipso.c
12302 F:      net/netfilter/xt_CONNSECMARK.c
12303 F:      net/netfilter/xt_SECMARK.c
12304 F:      net/netlabel/
12305
12306 NETWORKING [MPTCP]
12307 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
12308 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
12309 L:      netdev@vger.kernel.org
12310 L:      mptcp@lists.01.org
12311 S:      Maintained
12312 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12313 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12314 F:      include/net/mptcp.h
12315 F:      include/uapi/linux/mptcp.h
12316 F:      net/mptcp/
12317 F:      tools/testing/selftests/net/mptcp/
12318
12319 NETWORKING [TCP]
12320 M:      Eric Dumazet <edumazet@google.com>
12321 L:      netdev@vger.kernel.org
12322 S:      Maintained
12323 F:      include/linux/tcp.h
12324 F:      include/net/tcp.h
12325 F:      include/trace/events/tcp.h
12326 F:      include/uapi/linux/tcp.h
12327 F:      net/ipv4/syncookies.c
12328 F:      net/ipv4/tcp*.c
12329 F:      net/ipv6/syncookies.c
12330 F:      net/ipv6/tcp*.c
12331
12332 NETWORKING [TLS]
12333 M:      Boris Pismenny <borisp@nvidia.com>
12334 M:      Aviad Yehezkel <aviadye@nvidia.com>
12335 M:      John Fastabend <john.fastabend@gmail.com>
12336 M:      Daniel Borkmann <daniel@iogearbox.net>
12337 M:      Jakub Kicinski <kuba@kernel.org>
12338 L:      netdev@vger.kernel.org
12339 S:      Maintained
12340 F:      include/net/tls.h
12341 F:      include/uapi/linux/tls.h
12342 F:      net/tls/*
12343
12344 NETWORKING [WIRELESS]
12345 L:      linux-wireless@vger.kernel.org
12346 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12347
12348 NETXEN (1/10) GbE SUPPORT
12349 M:      Manish Chopra <manishc@marvell.com>
12350 M:      Rahul Verma <rahulv@marvell.com>
12351 M:      GR-Linux-NIC-Dev@marvell.com
12352 L:      netdev@vger.kernel.org
12353 S:      Supported
12354 F:      drivers/net/ethernet/qlogic/netxen/
12355
12356 NET_FAILOVER MODULE
12357 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12358 L:      netdev@vger.kernel.org
12359 S:      Supported
12360 F:      Documentation/networking/net_failover.rst
12361 F:      drivers/net/net_failover.c
12362 F:      include/net/net_failover.h
12363
12364 NEXTHOP
12365 M:      David Ahern <dsahern@kernel.org>
12366 L:      netdev@vger.kernel.org
12367 S:      Maintained
12368 F:      include/net/netns/nexthop.h
12369 F:      include/net/nexthop.h
12370 F:      include/uapi/linux/nexthop.h
12371 F:      net/ipv4/nexthop.c
12372
12373 NFC SUBSYSTEM
12374 L:      netdev@vger.kernel.org
12375 S:      Orphan
12376 F:      Documentation/devicetree/bindings/net/nfc/
12377 F:      drivers/nfc/
12378 F:      include/linux/platform_data/nfcmrvl.h
12379 F:      include/net/nfc/
12380 F:      include/uapi/linux/nfc.h
12381 F:      net/nfc/
12382
12383 NFS, SUNRPC, AND LOCKD CLIENTS
12384 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12385 M:      Anna Schumaker <anna.schumaker@netapp.com>
12386 L:      linux-nfs@vger.kernel.org
12387 S:      Maintained
12388 W:      http://client.linux-nfs.org
12389 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12390 F:      fs/lockd/
12391 F:      fs/nfs/
12392 F:      fs/nfs_common/
12393 F:      include/linux/lockd/
12394 F:      include/linux/nfs*
12395 F:      include/linux/sunrpc/
12396 F:      include/uapi/linux/nfs*
12397 F:      include/uapi/linux/sunrpc/
12398 F:      net/sunrpc/
12399 F:      Documentation/filesystems/nfs/
12400
12401 NILFS2 FILESYSTEM
12402 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12403 L:      linux-nilfs@vger.kernel.org
12404 S:      Supported
12405 W:      https://nilfs.sourceforge.io/
12406 W:      https://nilfs.osdn.jp/
12407 T:      git git://github.com/konis/nilfs2.git
12408 F:      Documentation/filesystems/nilfs2.rst
12409 F:      fs/nilfs2/
12410 F:      include/trace/events/nilfs2.h
12411 F:      include/uapi/linux/nilfs2_api.h
12412 F:      include/uapi/linux/nilfs2_ondisk.h
12413
12414 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12415 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12416 S:      Maintained
12417 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12418 F:      Documentation/scsi/NinjaSCSI.rst
12419 F:      drivers/scsi/pcmcia/nsp_*
12420
12421 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12422 M:      GOTO Masanori <gotom@debian.or.jp>
12423 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12424 S:      Maintained
12425 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12426 F:      Documentation/scsi/NinjaSCSI.rst
12427 F:      drivers/scsi/nsp32*
12428
12429 NIOS2 ARCHITECTURE
12430 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12431 S:      Maintained
12432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12433 F:      arch/nios2/
12434
12435 NITRO ENCLAVES (NE)
12436 M:      Andra Paraschiv <andraprs@amazon.com>
12437 M:      Alexandru Vasile <lexnv@amazon.com>
12438 M:      Alexandru Ciobotaru <alcioa@amazon.com>
12439 L:      linux-kernel@vger.kernel.org
12440 S:      Supported
12441 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
12442 F:      Documentation/virt/ne_overview.rst
12443 F:      drivers/virt/nitro_enclaves/
12444 F:      include/linux/nitro_enclaves.h
12445 F:      include/uapi/linux/nitro_enclaves.h
12446 F:      samples/nitro_enclaves/
12447
12448 NOHZ, DYNTICKS SUPPORT
12449 M:      Frederic Weisbecker <fweisbec@gmail.com>
12450 M:      Thomas Gleixner <tglx@linutronix.de>
12451 M:      Ingo Molnar <mingo@kernel.org>
12452 L:      linux-kernel@vger.kernel.org
12453 S:      Maintained
12454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12455 F:      include/linux/sched/nohz.h
12456 F:      include/linux/tick.h
12457 F:      kernel/time/tick*.*
12458
12459 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12460 M:      Pavel Machek <pavel@ucw.cz>
12461 M:      Sakari Ailus <sakari.ailus@iki.fi>
12462 L:      linux-media@vger.kernel.org
12463 S:      Maintained
12464 F:      drivers/media/i2c/ad5820.c
12465 F:      drivers/media/i2c/et8ek8
12466
12467 NOKIA N900 POWER SUPPLY DRIVERS
12468 R:      Pali Rohár <pali@kernel.org>
12469 F:      drivers/power/supply/bq2415x_charger.c
12470 F:      drivers/power/supply/bq27xxx_battery.c
12471 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12472 F:      drivers/power/supply/isp1704_charger.c
12473 F:      drivers/power/supply/rx51_battery.c
12474 F:      include/linux/power/bq2415x_charger.h
12475 F:      include/linux/power/bq27xxx_battery.h
12476
12477 NOLIBC HEADER FILE
12478 M:      Willy Tarreau <w@1wt.eu>
12479 S:      Maintained
12480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12481 F:      tools/include/nolibc/
12482
12483 NSDEPS
12484 M:      Matthias Maennich <maennich@google.com>
12485 S:      Maintained
12486 F:      Documentation/core-api/symbol-namespaces.rst
12487 F:      scripts/nsdeps
12488
12489 NTB AMD DRIVER
12490 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12491 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12492 L:      linux-ntb@googlegroups.com
12493 S:      Supported
12494 F:      drivers/ntb/hw/amd/
12495
12496 NTB DRIVER CORE
12497 M:      Jon Mason <jdmason@kudzu.us>
12498 M:      Dave Jiang <dave.jiang@intel.com>
12499 M:      Allen Hubbe <allenbh@gmail.com>
12500 L:      linux-ntb@googlegroups.com
12501 S:      Supported
12502 W:      https://github.com/jonmason/ntb/wiki
12503 T:      git git://github.com/jonmason/ntb.git
12504 F:      drivers/net/ntb_netdev.c
12505 F:      drivers/ntb/
12506 F:      include/linux/ntb.h
12507 F:      include/linux/ntb_transport.h
12508 F:      tools/testing/selftests/ntb/
12509
12510 NTB IDT DRIVER
12511 M:      Serge Semin <fancer.lancer@gmail.com>
12512 L:      linux-ntb@googlegroups.com
12513 S:      Supported
12514 F:      drivers/ntb/hw/idt/
12515
12516 NTB INTEL DRIVER
12517 M:      Dave Jiang <dave.jiang@intel.com>
12518 L:      linux-ntb@googlegroups.com
12519 S:      Supported
12520 W:      https://github.com/davejiang/linux/wiki
12521 T:      git https://github.com/davejiang/linux.git
12522 F:      drivers/ntb/hw/intel/
12523
12524 NTFS FILESYSTEM
12525 M:      Anton Altaparmakov <anton@tuxera.com>
12526 L:      linux-ntfs-dev@lists.sourceforge.net
12527 S:      Supported
12528 W:      http://www.tuxera.com/
12529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12530 F:      Documentation/filesystems/ntfs.rst
12531 F:      fs/ntfs/
12532
12533 NUBUS SUBSYSTEM
12534 M:      Finn Thain <fthain@telegraphics.com.au>
12535 L:      linux-m68k@lists.linux-m68k.org
12536 S:      Maintained
12537 F:      arch/*/include/asm/nubus.h
12538 F:      drivers/nubus/
12539 F:      include/linux/nubus.h
12540 F:      include/uapi/linux/nubus.h
12541
12542 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12543 M:      Antonino Daplas <adaplas@gmail.com>
12544 L:      linux-fbdev@vger.kernel.org
12545 S:      Maintained
12546 F:      drivers/video/fbdev/nvidia/
12547 F:      drivers/video/fbdev/riva/
12548
12549 NVM EXPRESS DRIVER
12550 M:      Keith Busch <kbusch@kernel.org>
12551 M:      Jens Axboe <axboe@fb.com>
12552 M:      Christoph Hellwig <hch@lst.de>
12553 M:      Sagi Grimberg <sagi@grimberg.me>
12554 L:      linux-nvme@lists.infradead.org
12555 S:      Supported
12556 W:      http://git.infradead.org/nvme.git
12557 T:      git://git.infradead.org/nvme.git
12558 F:      drivers/nvme/host/
12559 F:      include/linux/nvme.h
12560 F:      include/uapi/linux/nvme_ioctl.h
12561
12562 NVM EXPRESS FC TRANSPORT DRIVERS
12563 M:      James Smart <james.smart@broadcom.com>
12564 L:      linux-nvme@lists.infradead.org
12565 S:      Supported
12566 F:      drivers/nvme/host/fc.c
12567 F:      drivers/nvme/target/fc.c
12568 F:      drivers/nvme/target/fcloop.c
12569 F:      include/linux/nvme-fc-driver.h
12570 F:      include/linux/nvme-fc.h
12571
12572 NVM EXPRESS TARGET DRIVER
12573 M:      Christoph Hellwig <hch@lst.de>
12574 M:      Sagi Grimberg <sagi@grimberg.me>
12575 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12576 L:      linux-nvme@lists.infradead.org
12577 S:      Supported
12578 W:      http://git.infradead.org/nvme.git
12579 T:      git://git.infradead.org/nvme.git
12580 F:      drivers/nvme/target/
12581
12582 NVMEM FRAMEWORK
12583 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12584 S:      Maintained
12585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
12586 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12587 F:      Documentation/devicetree/bindings/nvmem/
12588 F:      drivers/nvmem/
12589 F:      include/linux/nvmem-consumer.h
12590 F:      include/linux/nvmem-provider.h
12591
12592 NXP FSPI DRIVER
12593 M:      Ashish Kumar <ashish.kumar@nxp.com>
12594 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12595 L:      linux-spi@vger.kernel.org
12596 S:      Maintained
12597 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12598 F:      drivers/spi/spi-nxp-fspi.c
12599
12600 NXP FXAS21002C DRIVER
12601 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12602 L:      linux-iio@vger.kernel.org
12603 S:      Maintained
12604 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12605 F:      drivers/iio/gyro/fxas21002c.h
12606 F:      drivers/iio/gyro/fxas21002c_core.c
12607 F:      drivers/iio/gyro/fxas21002c_i2c.c
12608 F:      drivers/iio/gyro/fxas21002c_spi.c
12609
12610 NXP i.MX 8MQ DCSS DRIVER
12611 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
12612 R:      Lucas Stach <l.stach@pengutronix.de>
12613 L:      dri-devel@lists.freedesktop.org
12614 S:      Maintained
12615 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
12616 F:      drivers/gpu/drm/imx/dcss/
12617
12618 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
12619 M:      Krzysztof Kozlowski <krzk@kernel.org>
12620 L:      linux-kernel@vger.kernel.org
12621 S:      Maintained
12622 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
12623 F:      drivers/extcon/extcon-ptn5150.c
12624
12625 NXP SGTL5000 DRIVER
12626 M:      Fabio Estevam <festevam@gmail.com>
12627 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12628 S:      Maintained
12629 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
12630 F:      sound/soc/codecs/sgtl5000*
12631
12632 NXP SJA1105 ETHERNET SWITCH DRIVER
12633 M:      Vladimir Oltean <olteanv@gmail.com>
12634 L:      linux-kernel@vger.kernel.org
12635 S:      Maintained
12636 F:      drivers/net/dsa/sja1105
12637
12638 NXP TDA998X DRM DRIVER
12639 M:      Russell King <linux@armlinux.org.uk>
12640 S:      Maintained
12641 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12642 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12643 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12644 F:      include/drm/i2c/tda998x.h
12645 F:      include/dt-bindings/display/tda998x.h
12646 K:      "nxp,tda998x"
12647
12648 NXP TFA9879 DRIVER
12649 M:      Peter Rosin <peda@axentia.se>
12650 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12651 S:      Maintained
12652 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12653 F:      sound/soc/codecs/tfa9879*
12654
12655 NXP-NCI NFC DRIVER
12656 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12657 R:      Charles Gorand <charles.gorand@effinnov.com>
12658 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12659 S:      Supported
12660 F:      drivers/nfc/nxp-nci
12661
12662 OBJAGG
12663 M:      Jiri Pirko <jiri@nvidia.com>
12664 L:      netdev@vger.kernel.org
12665 S:      Supported
12666 F:      include/linux/objagg.h
12667 F:      lib/objagg.c
12668 F:      lib/test_objagg.c
12669
12670 OBJTOOL
12671 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12672 M:      Peter Zijlstra <peterz@infradead.org>
12673 S:      Supported
12674 F:      tools/objtool/
12675 F:      include/linux/objtool.h
12676
12677 OCELOT ETHERNET SWITCH DRIVER
12678 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
12679 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
12680 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
12681 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12682 L:      netdev@vger.kernel.org
12683 S:      Supported
12684 F:      drivers/net/dsa/ocelot/*
12685 F:      drivers/net/ethernet/mscc/
12686 F:      include/soc/mscc/ocelot*
12687 F:      net/dsa/tag_ocelot.c
12688 F:      tools/testing/selftests/drivers/net/ocelot/*
12689
12690 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12691 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12692 M:      Andrew Donnellan <ajd@linux.ibm.com>
12693 L:      linuxppc-dev@lists.ozlabs.org
12694 S:      Supported
12695 F:      Documentation/userspace-api/accelerators/ocxl.rst
12696 F:      arch/powerpc/include/asm/pnv-ocxl.h
12697 F:      arch/powerpc/platforms/powernv/ocxl.c
12698 F:      drivers/misc/ocxl/
12699 F:      include/misc/ocxl*
12700 F:      include/uapi/misc/ocxl.h
12701
12702 OMAP AUDIO SUPPORT
12703 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12704 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12705 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12706 L:      linux-omap@vger.kernel.org
12707 S:      Maintained
12708 F:      sound/soc/ti/n810.c
12709 F:      sound/soc/ti/omap*
12710 F:      sound/soc/ti/rx51.c
12711 F:      sound/soc/ti/sdma-pcm.*
12712
12713 OMAP CLOCK FRAMEWORK SUPPORT
12714 M:      Paul Walmsley <paul@pwsan.com>
12715 L:      linux-omap@vger.kernel.org
12716 S:      Maintained
12717 F:      arch/arm/*omap*/*clock*
12718
12719 OMAP DEVICE TREE SUPPORT
12720 M:      Benoît Cousson <bcousson@baylibre.com>
12721 M:      Tony Lindgren <tony@atomide.com>
12722 L:      linux-omap@vger.kernel.org
12723 L:      devicetree@vger.kernel.org
12724 S:      Maintained
12725 F:      arch/arm/boot/dts/*am3*
12726 F:      arch/arm/boot/dts/*am4*
12727 F:      arch/arm/boot/dts/*am5*
12728 F:      arch/arm/boot/dts/*dra7*
12729 F:      arch/arm/boot/dts/*omap*
12730 F:      arch/arm/boot/dts/logicpd-som-lv*
12731 F:      arch/arm/boot/dts/logicpd-torpedo*
12732
12733 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12734 L:      linux-omap@vger.kernel.org
12735 L:      linux-fbdev@vger.kernel.org
12736 S:      Orphan
12737 F:      Documentation/arm/omap/dss.rst
12738 F:      drivers/video/fbdev/omap2/
12739
12740 OMAP FRAMEBUFFER SUPPORT
12741 L:      linux-fbdev@vger.kernel.org
12742 L:      linux-omap@vger.kernel.org
12743 S:      Orphan
12744 F:      drivers/video/fbdev/omap/
12745
12746 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12747 M:      Roger Quadros <rogerq@ti.com>
12748 M:      Tony Lindgren <tony@atomide.com>
12749 L:      linux-omap@vger.kernel.org
12750 S:      Maintained
12751 F:      arch/arm/mach-omap2/*gpmc*
12752 F:      drivers/memory/omap-gpmc.c
12753
12754 OMAP GPIO DRIVER
12755 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12756 M:      Santosh Shilimkar <ssantosh@kernel.org>
12757 M:      Kevin Hilman <khilman@kernel.org>
12758 L:      linux-omap@vger.kernel.org
12759 S:      Maintained
12760 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12761 F:      drivers/gpio/gpio-omap.c
12762
12763 OMAP HARDWARE SPINLOCK SUPPORT
12764 M:      Ohad Ben-Cohen <ohad@wizery.com>
12765 L:      linux-omap@vger.kernel.org
12766 S:      Maintained
12767 F:      drivers/hwspinlock/omap_hwspinlock.c
12768
12769 OMAP HS MMC SUPPORT
12770 L:      linux-mmc@vger.kernel.org
12771 L:      linux-omap@vger.kernel.org
12772 S:      Orphan
12773 F:      drivers/mmc/host/omap_hsmmc.c
12774
12775 OMAP HWMOD DATA
12776 M:      Paul Walmsley <paul@pwsan.com>
12777 L:      linux-omap@vger.kernel.org
12778 S:      Maintained
12779 F:      arch/arm/mach-omap2/omap_hwmod*data*
12780
12781 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12782 M:      Benoît Cousson <bcousson@baylibre.com>
12783 L:      linux-omap@vger.kernel.org
12784 S:      Maintained
12785 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12786
12787 OMAP HWMOD SUPPORT
12788 M:      Benoît Cousson <bcousson@baylibre.com>
12789 M:      Paul Walmsley <paul@pwsan.com>
12790 L:      linux-omap@vger.kernel.org
12791 S:      Maintained
12792 F:      arch/arm/mach-omap2/omap_hwmod.*
12793
12794 OMAP I2C DRIVER
12795 M:      Vignesh R <vigneshr@ti.com>
12796 L:      linux-omap@vger.kernel.org
12797 L:      linux-i2c@vger.kernel.org
12798 S:      Maintained
12799 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12800 F:      drivers/i2c/busses/i2c-omap.c
12801
12802 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12803 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12804 L:      linux-media@vger.kernel.org
12805 S:      Maintained
12806 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12807 F:      drivers/media/platform/omap3isp/
12808 F:      drivers/staging/media/omap4iss/
12809
12810 OMAP MMC SUPPORT
12811 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12812 L:      linux-omap@vger.kernel.org
12813 S:      Odd Fixes
12814 F:      drivers/mmc/host/omap.c
12815
12816 OMAP POWER MANAGEMENT SUPPORT
12817 M:      Kevin Hilman <khilman@kernel.org>
12818 L:      linux-omap@vger.kernel.org
12819 S:      Maintained
12820 F:      arch/arm/*omap*/*pm*
12821 F:      drivers/cpufreq/omap-cpufreq.c
12822
12823 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12824 M:      Rajendra Nayak <rnayak@codeaurora.org>
12825 M:      Paul Walmsley <paul@pwsan.com>
12826 L:      linux-omap@vger.kernel.org
12827 S:      Maintained
12828 F:      arch/arm/mach-omap2/prm*
12829
12830 OMAP RANDOM NUMBER GENERATOR SUPPORT
12831 M:      Deepak Saxena <dsaxena@plexity.net>
12832 S:      Maintained
12833 F:      drivers/char/hw_random/omap-rng.c
12834
12835 OMAP USB SUPPORT
12836 L:      linux-usb@vger.kernel.org
12837 L:      linux-omap@vger.kernel.org
12838 S:      Orphan
12839 F:      arch/arm/*omap*/usb*
12840 F:      drivers/usb/*/*omap*
12841
12842 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12843 M:      Mark Jackson <mpfj@newflow.co.uk>
12844 L:      linux-omap@vger.kernel.org
12845 S:      Maintained
12846 F:      arch/arm/boot/dts/am335x-nano.dts
12847
12848 OMAP1 SUPPORT
12849 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12850 M:      Tony Lindgren <tony@atomide.com>
12851 L:      linux-omap@vger.kernel.org
12852 S:      Maintained
12853 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12855 F:      arch/arm/configs/omap1_defconfig
12856 F:      arch/arm/mach-omap1/
12857 F:      arch/arm/plat-omap/
12858 F:      drivers/i2c/busses/i2c-omap.c
12859 F:      include/linux/platform_data/ams-delta-fiq.h
12860 F:      include/linux/platform_data/i2c-omap.h
12861
12862 OMAP2+ SUPPORT
12863 M:      Tony Lindgren <tony@atomide.com>
12864 L:      linux-omap@vger.kernel.org
12865 S:      Maintained
12866 W:      http://www.muru.com/linux/omap/
12867 W:      http://linux.omap.com/
12868 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12870 F:      arch/arm/configs/omap2plus_defconfig
12871 F:      arch/arm/mach-omap2/
12872 F:      arch/arm/plat-omap/
12873 F:      drivers/bus/ti-sysc.c
12874 F:      drivers/i2c/busses/i2c-omap.c
12875 F:      drivers/irqchip/irq-omap-intc.c
12876 F:      drivers/mfd/*omap*.c
12877 F:      drivers/mfd/menelaus.c
12878 F:      drivers/mfd/palmas.c
12879 F:      drivers/mfd/tps65217.c
12880 F:      drivers/mfd/tps65218.c
12881 F:      drivers/mfd/tps65910.c
12882 F:      drivers/mfd/twl-core.[ch]
12883 F:      drivers/mfd/twl4030*.c
12884 F:      drivers/mfd/twl6030*.c
12885 F:      drivers/mfd/twl6040*.c
12886 F:      drivers/regulator/palmas-regulator*.c
12887 F:      drivers/regulator/pbias-regulator.c
12888 F:      drivers/regulator/tps65217-regulator.c
12889 F:      drivers/regulator/tps65218-regulator.c
12890 F:      drivers/regulator/tps65910-regulator.c
12891 F:      drivers/regulator/twl-regulator.c
12892 F:      drivers/regulator/twl6030-regulator.c
12893 F:      include/linux/platform_data/i2c-omap.h
12894 F:      include/linux/platform_data/ti-sysc.h
12895
12896 OMFS FILESYSTEM
12897 M:      Bob Copeland <me@bobcopeland.com>
12898 L:      linux-karma-devel@lists.sourceforge.net
12899 S:      Maintained
12900 F:      Documentation/filesystems/omfs.rst
12901 F:      fs/omfs/
12902
12903 OMNIKEY CARDMAN 4000 DRIVER
12904 M:      Harald Welte <laforge@gnumonks.org>
12905 S:      Maintained
12906 F:      drivers/char/pcmcia/cm4000_cs.c
12907 F:      include/linux/cm4000_cs.h
12908 F:      include/uapi/linux/cm4000_cs.h
12909
12910 OMNIKEY CARDMAN 4040 DRIVER
12911 M:      Harald Welte <laforge@gnumonks.org>
12912 S:      Maintained
12913 F:      drivers/char/pcmcia/cm4040_cs.*
12914
12915 OMNIVISION OV02A10 SENSOR DRIVER
12916 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
12917 L:      linux-media@vger.kernel.org
12918 S:      Maintained
12919 T:      git git://linuxtv.org/media_tree.git
12920 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
12921 F:      drivers/media/i2c/ov02a10.c
12922
12923 OMNIVISION OV13858 SENSOR DRIVER
12924 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12925 L:      linux-media@vger.kernel.org
12926 S:      Maintained
12927 T:      git git://linuxtv.org/media_tree.git
12928 F:      drivers/media/i2c/ov13858.c
12929
12930 OMNIVISION OV2680 SENSOR DRIVER
12931 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12932 L:      linux-media@vger.kernel.org
12933 S:      Maintained
12934 T:      git git://linuxtv.org/media_tree.git
12935 F:      Documentation/devicetree/bindings/media/i2c/ov2680.yaml
12936 F:      drivers/media/i2c/ov2680.c
12937
12938 OMNIVISION OV2685 SENSOR DRIVER
12939 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12940 L:      linux-media@vger.kernel.org
12941 S:      Maintained
12942 T:      git git://linuxtv.org/media_tree.git
12943 F:      drivers/media/i2c/ov2685.c
12944
12945 OMNIVISION OV2740 SENSOR DRIVER
12946 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
12947 R:      Shawn Tu <shawnx.tu@intel.com>
12948 R:      Bingbu Cao <bingbu.cao@intel.com>
12949 L:      linux-media@vger.kernel.org
12950 S:      Maintained
12951 T:      git git://linuxtv.org/media_tree.git
12952 F:      drivers/media/i2c/ov2740.c
12953
12954 OMNIVISION OV5640 SENSOR DRIVER
12955 M:      Steve Longerbeam <slongerbeam@gmail.com>
12956 L:      linux-media@vger.kernel.org
12957 S:      Maintained
12958 T:      git git://linuxtv.org/media_tree.git
12959 F:      drivers/media/i2c/ov5640.c
12960
12961 OMNIVISION OV5647 SENSOR DRIVER
12962 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
12963 M:      Jacopo Mondi <jacopo@jmondi.org>
12964 L:      linux-media@vger.kernel.org
12965 S:      Maintained
12966 T:      git git://linuxtv.org/media_tree.git
12967 F:      Documentation/devicetree/bindings/media/i2c/ov5647.yaml
12968 F:      drivers/media/i2c/ov5647.c
12969
12970 OMNIVISION OV5670 SENSOR DRIVER
12971 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12972 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
12973 L:      linux-media@vger.kernel.org
12974 S:      Maintained
12975 T:      git git://linuxtv.org/media_tree.git
12976 F:      drivers/media/i2c/ov5670.c
12977
12978 OMNIVISION OV5675 SENSOR DRIVER
12979 M:      Shawn Tu <shawnx.tu@intel.com>
12980 L:      linux-media@vger.kernel.org
12981 S:      Maintained
12982 T:      git git://linuxtv.org/media_tree.git
12983 F:      drivers/media/i2c/ov5675.c
12984
12985 OMNIVISION OV5695 SENSOR DRIVER
12986 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12987 L:      linux-media@vger.kernel.org
12988 S:      Maintained
12989 T:      git git://linuxtv.org/media_tree.git
12990 F:      drivers/media/i2c/ov5695.c
12991
12992 OMNIVISION OV7670 SENSOR DRIVER
12993 L:      linux-media@vger.kernel.org
12994 S:      Orphan
12995 T:      git git://linuxtv.org/media_tree.git
12996 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12997 F:      drivers/media/i2c/ov7670.c
12998
12999 OMNIVISION OV772x SENSOR DRIVER
13000 M:      Jacopo Mondi <jacopo@jmondi.org>
13001 L:      linux-media@vger.kernel.org
13002 S:      Odd fixes
13003 T:      git git://linuxtv.org/media_tree.git
13004 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13005 F:      drivers/media/i2c/ov772x.c
13006 F:      include/media/i2c/ov772x.h
13007
13008 OMNIVISION OV7740 SENSOR DRIVER
13009 M:      Wenyou Yang <wenyou.yang@microchip.com>
13010 L:      linux-media@vger.kernel.org
13011 S:      Maintained
13012 T:      git git://linuxtv.org/media_tree.git
13013 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13014 F:      drivers/media/i2c/ov7740.c
13015
13016 OMNIVISION OV8856 SENSOR DRIVER
13017 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13018 L:      linux-media@vger.kernel.org
13019 S:      Maintained
13020 T:      git git://linuxtv.org/media_tree.git
13021 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13022 F:      drivers/media/i2c/ov8856.c
13023
13024 OMNIVISION OV9640 SENSOR DRIVER
13025 M:      Petr Cvek <petrcvekcz@gmail.com>
13026 L:      linux-media@vger.kernel.org
13027 S:      Maintained
13028 F:      drivers/media/i2c/ov9640.*
13029
13030 OMNIVISION OV9650 SENSOR DRIVER
13031 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13032 R:      Akinobu Mita <akinobu.mita@gmail.com>
13033 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13034 L:      linux-media@vger.kernel.org
13035 S:      Maintained
13036 T:      git git://linuxtv.org/media_tree.git
13037 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13038 F:      drivers/media/i2c/ov9650.c
13039
13040 OMNIVISION OV9734 SENSOR DRIVER
13041 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13042 R:      Bingbu Cao <bingbu.cao@intel.com>
13043 L:      linux-media@vger.kernel.org
13044 S:      Maintained
13045 T:      git git://linuxtv.org/media_tree.git
13046 F:      drivers/media/i2c/ov9734.c
13047
13048 ONENAND FLASH DRIVER
13049 M:      Kyungmin Park <kyungmin.park@samsung.com>
13050 L:      linux-mtd@lists.infradead.org
13051 S:      Maintained
13052 F:      drivers/mtd/nand/onenand/
13053 F:      include/linux/mtd/onenand*.h
13054
13055 ONION OMEGA2+ BOARD
13056 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13057 L:      linux-mips@vger.kernel.org
13058 S:      Maintained
13059 F:      arch/mips/boot/dts/ralink/omega2p.dts
13060
13061 OP-TEE DRIVER
13062 M:      Jens Wiklander <jens.wiklander@linaro.org>
13063 L:      op-tee@lists.trustedfirmware.org
13064 S:      Maintained
13065 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13066 F:      drivers/tee/optee/
13067
13068 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13069 M:      Sumit Garg <sumit.garg@linaro.org>
13070 L:      op-tee@lists.trustedfirmware.org
13071 S:      Maintained
13072 F:      drivers/char/hw_random/optee-rng.c
13073
13074 OPA-VNIC DRIVER
13075 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13076 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13077 L:      linux-rdma@vger.kernel.org
13078 S:      Supported
13079 F:      drivers/infiniband/ulp/opa_vnic
13080
13081 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13082 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13083 M:      Frank Rowand <frowand.list@gmail.com>
13084 L:      devicetree@vger.kernel.org
13085 S:      Maintained
13086 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13087 F:      Documentation/devicetree/overlay-notes.rst
13088 F:      drivers/of/overlay.c
13089 F:      drivers/of/resolver.c
13090 K:      of_overlay_notifier_
13091
13092 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13093 M:      Rob Herring <robh+dt@kernel.org>
13094 M:      Frank Rowand <frowand.list@gmail.com>
13095 L:      devicetree@vger.kernel.org
13096 S:      Maintained
13097 W:      http://www.devicetree.org/
13098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13099 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13100 F:      drivers/of/
13101 F:      include/linux/of*.h
13102 F:      scripts/dtc/
13103
13104 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13105 M:      Rob Herring <robh+dt@kernel.org>
13106 L:      devicetree@vger.kernel.org
13107 S:      Maintained
13108 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13110 F:      Documentation/devicetree/
13111 F:      arch/*/boot/dts/
13112 F:      include/dt-bindings/
13113
13114 OPENCORES I2C BUS DRIVER
13115 M:      Peter Korsgaard <peter@korsgaard.com>
13116 M:      Andrew Lunn <andrew@lunn.ch>
13117 L:      linux-i2c@vger.kernel.org
13118 S:      Maintained
13119 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13120 F:      Documentation/i2c/busses/i2c-ocores.rst
13121 F:      drivers/i2c/busses/i2c-ocores.c
13122 F:      include/linux/platform_data/i2c-ocores.h
13123
13124 OPENRISC ARCHITECTURE
13125 M:      Jonas Bonn <jonas@southpole.se>
13126 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13127 M:      Stafford Horne <shorne@gmail.com>
13128 L:      openrisc@lists.librecores.org
13129 S:      Maintained
13130 W:      http://openrisc.io
13131 T:      git git://github.com/openrisc/linux.git
13132 F:      Documentation/devicetree/bindings/openrisc/
13133 F:      Documentation/openrisc/
13134 F:      arch/openrisc/
13135 F:      drivers/irqchip/irq-ompic.c
13136 F:      drivers/irqchip/irq-or1k-*
13137
13138 OPENVSWITCH
13139 M:      Pravin B Shelar <pshelar@ovn.org>
13140 L:      netdev@vger.kernel.org
13141 L:      dev@openvswitch.org
13142 S:      Maintained
13143 W:      http://openvswitch.org
13144 F:      include/uapi/linux/openvswitch.h
13145 F:      net/openvswitch/
13146
13147 OPERATING PERFORMANCE POINTS (OPP)
13148 M:      Viresh Kumar <vireshk@kernel.org>
13149 M:      Nishanth Menon <nm@ti.com>
13150 M:      Stephen Boyd <sboyd@kernel.org>
13151 L:      linux-pm@vger.kernel.org
13152 S:      Maintained
13153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13154 F:      Documentation/devicetree/bindings/opp/
13155 F:      Documentation/power/opp.rst
13156 F:      drivers/opp/
13157 F:      include/linux/pm_opp.h
13158
13159 OPL4 DRIVER
13160 M:      Clemens Ladisch <clemens@ladisch.de>
13161 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13162 S:      Maintained
13163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13164 F:      sound/drivers/opl4/
13165
13166 OPROFILE
13167 M:      Robert Richter <rric@kernel.org>
13168 L:      oprofile-list@lists.sf.net
13169 S:      Maintained
13170 F:      arch/*/include/asm/oprofile*.h
13171 F:      arch/*/oprofile/
13172 F:      drivers/oprofile/
13173 F:      include/linux/oprofile.h
13174
13175 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13176 M:      Mark Fasheh <mark@fasheh.com>
13177 M:      Joel Becker <jlbec@evilplan.org>
13178 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13179 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13180 S:      Supported
13181 W:      http://ocfs2.wiki.kernel.org
13182 F:      Documentation/filesystems/dlmfs.rst
13183 F:      Documentation/filesystems/ocfs2.rst
13184 F:      fs/ocfs2/
13185
13186 ORANGEFS FILESYSTEM
13187 M:      Mike Marshall <hubcap@omnibond.com>
13188 R:      Martin Brandenburg <martin@omnibond.com>
13189 L:      devel@lists.orangefs.org
13190 S:      Supported
13191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13192 F:      Documentation/filesystems/orangefs.rst
13193 F:      fs/orangefs/
13194
13195 ORINOCO DRIVER
13196 L:      linux-wireless@vger.kernel.org
13197 S:      Orphan
13198 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13199 W:      http://www.nongnu.org/orinoco/
13200 F:      drivers/net/wireless/intersil/orinoco/
13201
13202 OV2659 OMNIVISION SENSOR DRIVER
13203 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13204 L:      linux-media@vger.kernel.org
13205 S:      Maintained
13206 W:      https://linuxtv.org
13207 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13208 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13209 F:      drivers/media/i2c/ov2659.c
13210 F:      include/media/i2c/ov2659.h
13211
13212 OVERLAY FILESYSTEM
13213 M:      Miklos Szeredi <miklos@szeredi.hu>
13214 L:      linux-unionfs@vger.kernel.org
13215 S:      Supported
13216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13217 F:      Documentation/filesystems/overlayfs.rst
13218 F:      fs/overlayfs/
13219
13220 P54 WIRELESS DRIVER
13221 M:      Christian Lamparter <chunkeey@googlemail.com>
13222 L:      linux-wireless@vger.kernel.org
13223 S:      Maintained
13224 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13225 F:      drivers/net/wireless/intersil/p54/
13226
13227 PACKING
13228 M:      Vladimir Oltean <olteanv@gmail.com>
13229 L:      netdev@vger.kernel.org
13230 S:      Supported
13231 F:      Documentation/core-api/packing.rst
13232 F:      include/linux/packing.h
13233 F:      lib/packing.c
13234
13235 PADATA PARALLEL EXECUTION MECHANISM
13236 M:      Steffen Klassert <steffen.klassert@secunet.com>
13237 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
13238 L:      linux-crypto@vger.kernel.org
13239 L:      linux-kernel@vger.kernel.org
13240 S:      Maintained
13241 F:      Documentation/core-api/padata.rst
13242 F:      include/linux/padata.h
13243 F:      kernel/padata.c
13244
13245 PAGE POOL
13246 M:      Jesper Dangaard Brouer <hawk@kernel.org>
13247 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
13248 L:      netdev@vger.kernel.org
13249 S:      Supported
13250 F:      Documentation/networking/page_pool.rst
13251 F:      include/net/page_pool.h
13252 F:      include/trace/events/page_pool.h
13253 F:      net/core/page_pool.c
13254
13255 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13256 M:      Harald Welte <laforge@gnumonks.org>
13257 L:      platform-driver-x86@vger.kernel.org
13258 S:      Maintained
13259 F:      drivers/platform/x86/panasonic-laptop.c
13260
13261 PARALLAX PING IIO SENSOR DRIVER
13262 M:      Andreas Klinger <ak@it-klinger.de>
13263 L:      linux-iio@vger.kernel.org
13264 S:      Maintained
13265 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13266 F:      drivers/iio/proximity/ping.c
13267
13268 PARALLEL LCD/KEYPAD PANEL DRIVER
13269 M:      Willy Tarreau <willy@haproxy.com>
13270 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
13271 S:      Odd Fixes
13272 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13273 F:      drivers/auxdisplay/panel.c
13274
13275 PARALLEL PORT SUBSYSTEM
13276 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13277 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13278 L:      linux-parport@lists.infradead.org (subscribers-only)
13279 S:      Maintained
13280 F:      Documentation/driver-api/parport*.rst
13281 F:      drivers/char/ppdev.c
13282 F:      drivers/parport/
13283 F:      include/linux/parport*.h
13284 F:      include/uapi/linux/ppdev.h
13285
13286 PARAVIRT_OPS INTERFACE
13287 M:      Juergen Gross <jgross@suse.com>
13288 M:      Deep Shah <sdeep@vmware.com>
13289 M:      "VMware, Inc." <pv-drivers@vmware.com>
13290 L:      virtualization@lists.linux-foundation.org
13291 S:      Supported
13292 F:      Documentation/virt/paravirt_ops.rst
13293 F:      arch/*/include/asm/paravirt*.h
13294 F:      arch/*/kernel/paravirt*
13295 F:      include/linux/hypervisor.h
13296
13297 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13298 M:      Tim Waugh <tim@cyberelk.net>
13299 L:      linux-parport@lists.infradead.org (subscribers-only)
13300 S:      Maintained
13301 F:      Documentation/admin-guide/blockdev/paride.rst
13302 F:      drivers/block/paride/
13303
13304 PARISC ARCHITECTURE
13305 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
13306 M:      Helge Deller <deller@gmx.de>
13307 L:      linux-parisc@vger.kernel.org
13308 S:      Maintained
13309 W:      https://parisc.wiki.kernel.org
13310 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
13311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13313 F:      Documentation/parisc/
13314 F:      arch/parisc/
13315 F:      drivers/char/agp/parisc-agp.c
13316 F:      drivers/input/misc/hp_sdc_rtc.c
13317 F:      drivers/input/serio/gscps2.c
13318 F:      drivers/input/serio/hp_sdc*
13319 F:      drivers/parisc/
13320 F:      drivers/parport/parport_gsc.*
13321 F:      drivers/tty/serial/8250/8250_gsc.c
13322 F:      drivers/video/console/sti*
13323 F:      drivers/video/fbdev/sti*
13324 F:      drivers/video/logo/logo_parisc*
13325 F:      include/linux/hp_sdc.h
13326
13327 PARMAN
13328 M:      Jiri Pirko <jiri@nvidia.com>
13329 L:      netdev@vger.kernel.org
13330 S:      Supported
13331 F:      include/linux/parman.h
13332 F:      lib/parman.c
13333 F:      lib/test_parman.c
13334
13335 PC ENGINES APU BOARD DRIVER
13336 M:      Enrico Weigelt, metux IT consult <info@metux.net>
13337 S:      Maintained
13338 F:      drivers/platform/x86/pcengines-apuv2.c
13339
13340 PC87360 HARDWARE MONITORING DRIVER
13341 M:      Jim Cromie <jim.cromie@gmail.com>
13342 L:      linux-hwmon@vger.kernel.org
13343 S:      Maintained
13344 F:      Documentation/hwmon/pc87360.rst
13345 F:      drivers/hwmon/pc87360.c
13346
13347 PC8736x GPIO DRIVER
13348 M:      Jim Cromie <jim.cromie@gmail.com>
13349 S:      Maintained
13350 F:      drivers/char/pc8736x_gpio.c
13351
13352 PC87427 HARDWARE MONITORING DRIVER
13353 M:      Jean Delvare <jdelvare@suse.com>
13354 L:      linux-hwmon@vger.kernel.org
13355 S:      Maintained
13356 F:      Documentation/hwmon/pc87427.rst
13357 F:      drivers/hwmon/pc87427.c
13358
13359 PCA9532 LED DRIVER
13360 M:      Riku Voipio <riku.voipio@iki.fi>
13361 S:      Maintained
13362 F:      drivers/leds/leds-pca9532.c
13363 F:      include/linux/leds-pca9532.h
13364
13365 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13366 M:      Guenter Roeck <linux@roeck-us.net>
13367 L:      linux-i2c@vger.kernel.org
13368 S:      Maintained
13369 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13370
13371 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13372 M:      Khalid Aziz <khalid@gonehiking.org>
13373 S:      Maintained
13374 F:      drivers/firmware/pcdp.*
13375
13376 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13377 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13378 M:      Pali Rohár <pali@kernel.org>
13379 L:      linux-pci@vger.kernel.org
13380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13381 S:      Maintained
13382 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13383 F:      drivers/pci/controller/pci-aardvark.c
13384
13385 PCI DRIVER FOR ALTERA PCIE IP
13386 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13387 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13388 L:      linux-pci@vger.kernel.org
13389 S:      Supported
13390 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13391 F:      drivers/pci/controller/pcie-altera.c
13392
13393 PCI DRIVER FOR APPLIEDMICRO XGENE
13394 M:      Toan Le <toan@os.amperecomputing.com>
13395 L:      linux-pci@vger.kernel.org
13396 L:      linux-arm-kernel@lists.infradead.org
13397 S:      Maintained
13398 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13399 F:      drivers/pci/controller/pci-xgene.c
13400
13401 PCI DRIVER FOR ARM VERSATILE PLATFORM
13402 M:      Rob Herring <robh@kernel.org>
13403 L:      linux-pci@vger.kernel.org
13404 L:      linux-arm-kernel@lists.infradead.org
13405 S:      Maintained
13406 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13407 F:      drivers/pci/controller/pci-versatile.c
13408
13409 PCI DRIVER FOR ARMADA 8K
13410 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13411 L:      linux-pci@vger.kernel.org
13412 L:      linux-arm-kernel@lists.infradead.org
13413 S:      Maintained
13414 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13415 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13416
13417 PCI DRIVER FOR CADENCE PCIE IP
13418 M:      Tom Joseph <tjoseph@cadence.com>
13419 L:      linux-pci@vger.kernel.org
13420 S:      Maintained
13421 F:      Documentation/devicetree/bindings/pci/cdns,*
13422 F:      drivers/pci/controller/cadence/
13423
13424 PCI DRIVER FOR FREESCALE LAYERSCAPE
13425 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13426 M:      Mingkai Hu <mingkai.hu@nxp.com>
13427 M:      Roy Zang <roy.zang@nxp.com>
13428 L:      linuxppc-dev@lists.ozlabs.org
13429 L:      linux-pci@vger.kernel.org
13430 L:      linux-arm-kernel@lists.infradead.org
13431 S:      Maintained
13432 F:      drivers/pci/controller/dwc/*layerscape*
13433
13434 PCI DRIVER FOR GENERIC OF HOSTS
13435 M:      Will Deacon <will@kernel.org>
13436 L:      linux-pci@vger.kernel.org
13437 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13438 S:      Maintained
13439 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13440 F:      drivers/pci/controller/pci-host-common.c
13441 F:      drivers/pci/controller/pci-host-generic.c
13442
13443 PCI DRIVER FOR IMX6
13444 M:      Richard Zhu <hongxing.zhu@nxp.com>
13445 M:      Lucas Stach <l.stach@pengutronix.de>
13446 L:      linux-pci@vger.kernel.org
13447 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13448 S:      Maintained
13449 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13450 F:      drivers/pci/controller/dwc/*imx6*
13451
13452 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13453 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13454 L:      linux-pci@vger.kernel.org
13455 S:      Supported
13456 F:      drivers/pci/controller/vmd.c
13457
13458 PCI DRIVER FOR MICROSEMI SWITCHTEC
13459 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13460 M:      Logan Gunthorpe <logang@deltatee.com>
13461 L:      linux-pci@vger.kernel.org
13462 S:      Maintained
13463 F:      Documentation/ABI/testing/sysfs-class-switchtec
13464 F:      Documentation/driver-api/switchtec.rst
13465 F:      drivers/ntb/hw/mscc/
13466 F:      drivers/pci/switch/switchtec*
13467 F:      include/linux/switchtec.h
13468 F:      include/uapi/linux/switchtec_ioctl.h
13469
13470 PCI DRIVER FOR MOBIVEIL PCIE IP
13471 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13472 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13473 L:      linux-pci@vger.kernel.org
13474 S:      Supported
13475 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13476 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13477
13478 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13479 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13480 L:      linux-pci@vger.kernel.org
13481 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13482 S:      Maintained
13483 F:      drivers/pci/controller/*mvebu*
13484
13485 PCI DRIVER FOR NVIDIA TEGRA
13486 M:      Thierry Reding <thierry.reding@gmail.com>
13487 L:      linux-tegra@vger.kernel.org
13488 L:      linux-pci@vger.kernel.org
13489 S:      Supported
13490 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13491 F:      drivers/pci/controller/pci-tegra.c
13492
13493 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13494 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13495 L:      linux-pci@vger.kernel.org
13496 L:      linux-arm-kernel@lists.infradead.org
13497 S:      Maintained
13498 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13499 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13500
13501 PCI DRIVER FOR RENESAS R-CAR
13502 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13503 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13504 L:      linux-pci@vger.kernel.org
13505 L:      linux-renesas-soc@vger.kernel.org
13506 S:      Maintained
13507 F:      Documentation/devicetree/bindings/pci/*rcar*
13508 F:      drivers/pci/controller/*rcar*
13509
13510 PCI DRIVER FOR SAMSUNG EXYNOS
13511 M:      Jingoo Han <jingoohan1@gmail.com>
13512 L:      linux-pci@vger.kernel.org
13513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13514 L:      linux-samsung-soc@vger.kernel.org
13515 S:      Maintained
13516 F:      drivers/pci/controller/dwc/pci-exynos.c
13517
13518 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13519 M:      Jingoo Han <jingoohan1@gmail.com>
13520 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13521 L:      linux-pci@vger.kernel.org
13522 S:      Maintained
13523 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13524 F:      drivers/pci/controller/dwc/*designware*
13525
13526 PCI DRIVER FOR TI DRA7XX/J721E
13527 M:      Kishon Vijay Abraham I <kishon@ti.com>
13528 L:      linux-omap@vger.kernel.org
13529 L:      linux-pci@vger.kernel.org
13530 L:      linux-arm-kernel@lists.infradead.org
13531 S:      Supported
13532 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13533 F:      drivers/pci/controller/cadence/pci-j721e.c
13534 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13535
13536 PCI DRIVER FOR TI KEYSTONE
13537 M:      Murali Karicheri <m-karicheri2@ti.com>
13538 L:      linux-pci@vger.kernel.org
13539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13540 S:      Maintained
13541 F:      drivers/pci/controller/dwc/pci-keystone.c
13542
13543 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13544 M:      Linus Walleij <linus.walleij@linaro.org>
13545 L:      linux-pci@vger.kernel.org
13546 S:      Maintained
13547 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13548 F:      drivers/pci/controller/pci-v3-semi.c
13549
13550 PCI ENDPOINT SUBSYSTEM
13551 M:      Kishon Vijay Abraham I <kishon@ti.com>
13552 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13553 L:      linux-pci@vger.kernel.org
13554 S:      Supported
13555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13556 F:      drivers/misc/pci_endpoint_test.c
13557 F:      drivers/pci/endpoint/
13558 F:      tools/pci/
13559
13560 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13561 M:      Russell Currey <ruscur@russell.cc>
13562 M:      Oliver O'Halloran <oohall@gmail.com>
13563 L:      linuxppc-dev@lists.ozlabs.org
13564 S:      Supported
13565 F:      Documentation/PCI/pci-error-recovery.rst
13566 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13567 F:      arch/powerpc/include/*/eeh*.h
13568 F:      arch/powerpc/kernel/eeh*.c
13569 F:      arch/powerpc/platforms/*/eeh*.c
13570 F:      drivers/pci/pcie/aer.c
13571 F:      drivers/pci/pcie/dpc.c
13572 F:      drivers/pci/pcie/err.c
13573
13574 PCI ERROR RECOVERY
13575 M:      Linas Vepstas <linasvepstas@gmail.com>
13576 L:      linux-pci@vger.kernel.org
13577 S:      Supported
13578 F:      Documentation/PCI/pci-error-recovery.rst
13579
13580 PCI MSI DRIVER FOR ALTERA MSI IP
13581 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13582 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13583 L:      linux-pci@vger.kernel.org
13584 S:      Supported
13585 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13586 F:      drivers/pci/controller/pcie-altera-msi.c
13587
13588 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13589 M:      Toan Le <toan@os.amperecomputing.com>
13590 L:      linux-pci@vger.kernel.org
13591 L:      linux-arm-kernel@lists.infradead.org
13592 S:      Maintained
13593 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13594 F:      drivers/pci/controller/pci-xgene-msi.c
13595
13596 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13597 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13598 R:      Rob Herring <robh@kernel.org>
13599 L:      linux-pci@vger.kernel.org
13600 S:      Supported
13601 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13603 F:      drivers/pci/controller/
13604
13605 PCI SUBSYSTEM
13606 M:      Bjorn Helgaas <bhelgaas@google.com>
13607 L:      linux-pci@vger.kernel.org
13608 S:      Supported
13609 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13611 F:      Documentation/PCI/
13612 F:      Documentation/devicetree/bindings/pci/
13613 F:      arch/x86/kernel/early-quirks.c
13614 F:      arch/x86/kernel/quirks.c
13615 F:      arch/x86/pci/
13616 F:      drivers/acpi/pci*
13617 F:      drivers/pci/
13618 F:      include/asm-generic/pci*
13619 F:      include/linux/of_pci.h
13620 F:      include/linux/pci*
13621 F:      include/uapi/linux/pci*
13622 F:      lib/pci*
13623
13624 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13625 M:      Jonathan Chocron <jonnyc@amazon.com>
13626 L:      linux-pci@vger.kernel.org
13627 S:      Maintained
13628 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13629 F:      drivers/pci/controller/dwc/pcie-al.c
13630
13631 PCIE DRIVER FOR AMLOGIC MESON
13632 M:      Yue Wang <yue.wang@Amlogic.com>
13633 L:      linux-pci@vger.kernel.org
13634 L:      linux-amlogic@lists.infradead.org
13635 S:      Maintained
13636 F:      drivers/pci/controller/dwc/pci-meson.c
13637
13638 PCIE DRIVER FOR AXIS ARTPEC
13639 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13640 L:      linux-arm-kernel@axis.com
13641 L:      linux-pci@vger.kernel.org
13642 S:      Maintained
13643 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13644 F:      drivers/pci/controller/dwc/*artpec*
13645
13646 PCIE DRIVER FOR CAVIUM THUNDERX
13647 M:      Robert Richter <rric@kernel.org>
13648 L:      linux-pci@vger.kernel.org
13649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13650 S:      Odd Fixes
13651 F:      drivers/pci/controller/pci-thunder-*
13652
13653 PCIE DRIVER FOR HISILICON
13654 M:      Zhou Wang <wangzhou1@hisilicon.com>
13655 L:      linux-pci@vger.kernel.org
13656 S:      Maintained
13657 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13658 F:      drivers/pci/controller/dwc/pcie-hisi.c
13659
13660 PCIE DRIVER FOR HISILICON KIRIN
13661 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13662 M:      Binghui Wang <wangbinghui@hisilicon.com>
13663 L:      linux-pci@vger.kernel.org
13664 S:      Maintained
13665 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13666 F:      drivers/pci/controller/dwc/pcie-kirin.c
13667
13668 PCIE DRIVER FOR HISILICON STB
13669 M:      Shawn Guo <shawn.guo@linaro.org>
13670 L:      linux-pci@vger.kernel.org
13671 S:      Maintained
13672 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13673 F:      drivers/pci/controller/dwc/pcie-histb.c
13674
13675 PCIE DRIVER FOR MEDIATEK
13676 M:      Ryder Lee <ryder.lee@mediatek.com>
13677 L:      linux-pci@vger.kernel.org
13678 L:      linux-mediatek@lists.infradead.org
13679 S:      Supported
13680 F:      Documentation/devicetree/bindings/pci/mediatek*
13681 F:      drivers/pci/controller/*mediatek*
13682
13683 PCIE DRIVER FOR QUALCOMM MSM
13684 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13685 L:      linux-pci@vger.kernel.org
13686 L:      linux-arm-msm@vger.kernel.org
13687 S:      Maintained
13688 F:      drivers/pci/controller/dwc/*qcom*
13689
13690 PCIE DRIVER FOR ROCKCHIP
13691 M:      Shawn Lin <shawn.lin@rock-chips.com>
13692 L:      linux-pci@vger.kernel.org
13693 L:      linux-rockchip@lists.infradead.org
13694 S:      Maintained
13695 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13696 F:      drivers/pci/controller/pcie-rockchip*
13697
13698 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13699 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13700 L:      linux-pci@vger.kernel.org
13701 S:      Maintained
13702 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13703 F:      drivers/pci/controller/dwc/pcie-uniphier*
13704
13705 PCIE DRIVER FOR ST SPEAR13XX
13706 M:      Pratyush Anand <pratyush.anand@gmail.com>
13707 L:      linux-pci@vger.kernel.org
13708 S:      Maintained
13709 F:      drivers/pci/controller/dwc/*spear*
13710
13711 PCMCIA SUBSYSTEM
13712 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13713 S:      Odd Fixes
13714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13715 F:      Documentation/pcmcia/
13716 F:      drivers/pcmcia/
13717 F:      include/pcmcia/
13718 F:      tools/pcmcia/
13719
13720 PCNET32 NETWORK DRIVER
13721 M:      Don Fry <pcnet32@frontier.com>
13722 L:      netdev@vger.kernel.org
13723 S:      Maintained
13724 F:      drivers/net/ethernet/amd/pcnet32.c
13725
13726 PCRYPT PARALLEL CRYPTO ENGINE
13727 M:      Steffen Klassert <steffen.klassert@secunet.com>
13728 L:      linux-crypto@vger.kernel.org
13729 S:      Maintained
13730 F:      crypto/pcrypt.c
13731 F:      include/crypto/pcrypt.h
13732
13733 PEAQ WMI HOTKEYS DRIVER
13734 M:      Hans de Goede <hdegoede@redhat.com>
13735 L:      platform-driver-x86@vger.kernel.org
13736 S:      Maintained
13737 F:      drivers/platform/x86/peaq-wmi.c
13738
13739 PENSANDO ETHERNET DRIVERS
13740 M:      Shannon Nelson <snelson@pensando.io>
13741 M:      Pensando Drivers <drivers@pensando.io>
13742 L:      netdev@vger.kernel.org
13743 S:      Supported
13744 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
13745 F:      drivers/net/ethernet/pensando/
13746
13747 PER-CPU MEMORY ALLOCATOR
13748 M:      Dennis Zhou <dennis@kernel.org>
13749 M:      Tejun Heo <tj@kernel.org>
13750 M:      Christoph Lameter <cl@linux.com>
13751 S:      Maintained
13752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13753 F:      arch/*/include/asm/percpu.h
13754 F:      include/linux/percpu*.h
13755 F:      mm/percpu*.c
13756
13757 PER-TASK DELAY ACCOUNTING
13758 M:      Balbir Singh <bsingharora@gmail.com>
13759 S:      Maintained
13760 F:      include/linux/delayacct.h
13761 F:      kernel/delayacct.c
13762
13763 PERFORMANCE EVENTS SUBSYSTEM
13764 M:      Peter Zijlstra <peterz@infradead.org>
13765 M:      Ingo Molnar <mingo@redhat.com>
13766 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13767 R:      Mark Rutland <mark.rutland@arm.com>
13768 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13769 R:      Jiri Olsa <jolsa@redhat.com>
13770 R:      Namhyung Kim <namhyung@kernel.org>
13771 L:      linux-kernel@vger.kernel.org
13772 S:      Supported
13773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13774 F:      arch/*/events/*
13775 F:      arch/*/events/*/*
13776 F:      arch/*/include/asm/perf_event.h
13777 F:      arch/*/kernel/*/*/perf_event*.c
13778 F:      arch/*/kernel/*/perf_event*.c
13779 F:      arch/*/kernel/perf_callchain.c
13780 F:      arch/*/kernel/perf_event*.c
13781 F:      include/linux/perf_event.h
13782 F:      include/uapi/linux/perf_event.h
13783 F:      kernel/events/*
13784 F:      tools/lib/perf/
13785 F:      tools/perf/
13786
13787 PERFORMANCE EVENTS TOOLING ARM64
13788 R:      John Garry <john.garry@huawei.com>
13789 R:      Will Deacon <will@kernel.org>
13790 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
13791 R:      Leo Yan <leo.yan@linaro.org>
13792 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13793 S:      Supported
13794 F:      tools/build/feature/test-libopencsd.c
13795 F:      tools/perf/arch/arm*/
13796 F:      tools/perf/pmu-events/arch/arm64/
13797 F:      tools/perf/util/arm-spe*
13798 F:      tools/perf/util/cs-etm*
13799
13800 PERSONALITY HANDLING
13801 M:      Christoph Hellwig <hch@infradead.org>
13802 L:      linux-abi-devel@lists.sourceforge.net
13803 S:      Maintained
13804 F:      include/linux/personality.h
13805 F:      include/uapi/linux/personality.h
13806
13807 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13808 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13809 L:      linux-input@vger.kernel.org
13810 S:      Maintained
13811 F:      Documentation/input/devices/pxrc.rst
13812 F:      drivers/input/joystick/pxrc.c
13813
13814 PHONET PROTOCOL
13815 M:      Remi Denis-Courmont <courmisch@gmail.com>
13816 S:      Supported
13817 F:      Documentation/networking/phonet.rst
13818 F:      include/linux/phonet.h
13819 F:      include/net/phonet/
13820 F:      include/uapi/linux/phonet.h
13821 F:      net/phonet/
13822
13823 PHRAM MTD DRIVER
13824 M:      Joern Engel <joern@lazybastard.org>
13825 L:      linux-mtd@lists.infradead.org
13826 S:      Maintained
13827 F:      drivers/mtd/devices/phram.c
13828
13829 PICOLCD HID DRIVER
13830 M:      Bruno Prémont <bonbons@linux-vserver.org>
13831 L:      linux-input@vger.kernel.org
13832 S:      Maintained
13833 F:      drivers/hid/hid-picolcd*
13834
13835 PICOXCELL SUPPORT
13836 M:      Jamie Iles <jamie@jamieiles.com>
13837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13838 S:      Supported
13839 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13840 F:      arch/arm/boot/dts/picoxcell*
13841 F:      arch/arm/mach-picoxcell/
13842 F:      drivers/crypto/picoxcell*
13843
13844 PIDFD API
13845 M:      Christian Brauner <christian@brauner.io>
13846 L:      linux-kernel@vger.kernel.org
13847 S:      Maintained
13848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13849 F:      samples/pidfd/
13850 F:      tools/testing/selftests/clone3/
13851 F:      tools/testing/selftests/pid_namespace/
13852 F:      tools/testing/selftests/pidfd/
13853 K:      (?i)pidfd
13854 K:      (?i)clone3
13855 K:      \b(clone_args|kernel_clone_args)\b
13856
13857 PIN CONTROL SUBSYSTEM
13858 M:      Linus Walleij <linus.walleij@linaro.org>
13859 L:      linux-gpio@vger.kernel.org
13860 S:      Maintained
13861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13862 F:      Documentation/devicetree/bindings/pinctrl/
13863 F:      Documentation/driver-api/pinctl.rst
13864 F:      drivers/pinctrl/
13865 F:      include/linux/pinctrl/
13866
13867 PIN CONTROLLER - FREESCALE
13868 M:      Dong Aisheng <aisheng.dong@nxp.com>
13869 M:      Fabio Estevam <festevam@gmail.com>
13870 M:      Shawn Guo <shawnguo@kernel.org>
13871 M:      Stefan Agner <stefan@agner.ch>
13872 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13873 L:      linux-gpio@vger.kernel.org
13874 S:      Maintained
13875 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13876 F:      drivers/pinctrl/freescale/
13877
13878 PIN CONTROLLER - INTEL
13879 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13880 M:      Andy Shevchenko <andy@kernel.org>
13881 S:      Maintained
13882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13883 F:      drivers/pinctrl/intel/
13884
13885 PIN CONTROLLER - MEDIATEK
13886 M:      Sean Wang <sean.wang@kernel.org>
13887 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13888 S:      Maintained
13889 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13890 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13891 F:      drivers/pinctrl/mediatek/
13892
13893 PIN CONTROLLER - MICROCHIP AT91
13894 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13896 L:      linux-gpio@vger.kernel.org
13897 S:      Supported
13898 F:      drivers/gpio/gpio-sama5d2-piobu.c
13899 F:      drivers/pinctrl/pinctrl-at91*
13900
13901 PIN CONTROLLER - QUALCOMM
13902 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13903 L:      linux-arm-msm@vger.kernel.org
13904 S:      Maintained
13905 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13906 F:      drivers/pinctrl/qcom/
13907
13908 PIN CONTROLLER - RENESAS
13909 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13910 L:      linux-renesas-soc@vger.kernel.org
13911 S:      Supported
13912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
13913 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
13914 F:      drivers/pinctrl/renesas/
13915
13916 PIN CONTROLLER - SAMSUNG
13917 M:      Tomasz Figa <tomasz.figa@gmail.com>
13918 M:      Krzysztof Kozlowski <krzk@kernel.org>
13919 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13920 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13921 L:      linux-samsung-soc@vger.kernel.org
13922 S:      Maintained
13923 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13925 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13926 F:      drivers/pinctrl/samsung/
13927 F:      include/dt-bindings/pinctrl/samsung.h
13928
13929 PIN CONTROLLER - SINGLE
13930 M:      Tony Lindgren <tony@atomide.com>
13931 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
13932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13933 L:      linux-omap@vger.kernel.org
13934 S:      Maintained
13935 F:      drivers/pinctrl/pinctrl-single.c
13936
13937 PIN CONTROLLER - ST SPEAR
13938 M:      Viresh Kumar <vireshk@kernel.org>
13939 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13940 S:      Maintained
13941 W:      http://www.st.com/spear
13942 F:      drivers/pinctrl/spear/
13943
13944 PISTACHIO SOC SUPPORT
13945 M:      James Hartley <james.hartley@sondrel.com>
13946 L:      linux-mips@vger.kernel.org
13947 S:      Odd Fixes
13948 F:      arch/mips/boot/dts/img/pistachio*
13949 F:      arch/mips/configs/pistachio*_defconfig
13950 F:      arch/mips/include/asm/mach-pistachio/
13951 F:      arch/mips/pistachio/
13952
13953 PKTCDVD DRIVER
13954 M:      linux-block@vger.kernel.org
13955 S:      Orphan
13956 F:      drivers/block/pktcdvd.c
13957 F:      include/linux/pktcdvd.h
13958 F:      include/uapi/linux/pktcdvd.h
13959
13960 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13961 M:      Tomasz Duszynski <tduszyns@gmail.com>
13962 S:      Maintained
13963 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13964 F:      drivers/iio/chemical/pms7003.c
13965
13966 PLDMFW LIBRARY
13967 M:      Jacob Keller <jacob.e.keller@intel.com>
13968 S:      Maintained
13969 F:      Documentation/driver-api/pldmfw/
13970 F:      include/linux/pldmfw.h
13971 F:      lib/pldmfw/
13972
13973 PLX DMA DRIVER
13974 M:      Logan Gunthorpe <logang@deltatee.com>
13975 S:      Maintained
13976 F:      drivers/dma/plx_dma.c
13977
13978 PM-GRAPH UTILITY
13979 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
13980 L:      linux-pm@vger.kernel.org
13981 S:      Supported
13982 W:      https://01.org/pm-graph
13983 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13984 T:      git git://github.com/intel/pm-graph
13985 F:      tools/power/pm-graph
13986
13987 PMBUS HARDWARE MONITORING DRIVERS
13988 M:      Guenter Roeck <linux@roeck-us.net>
13989 L:      linux-hwmon@vger.kernel.org
13990 S:      Maintained
13991 W:      http://hwmon.wiki.kernel.org/
13992 W:      http://www.roeck-us.net/linux/drivers/
13993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13994 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13995 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13996 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13997 F:      Documentation/hwmon/adm1275.rst
13998 F:      Documentation/hwmon/ibm-cffps.rst
13999 F:      Documentation/hwmon/ir35221.rst
14000 F:      Documentation/hwmon/lm25066.rst
14001 F:      Documentation/hwmon/ltc2978.rst
14002 F:      Documentation/hwmon/ltc3815.rst
14003 F:      Documentation/hwmon/max16064.rst
14004 F:      Documentation/hwmon/max20751.rst
14005 F:      Documentation/hwmon/max31785.rst
14006 F:      Documentation/hwmon/max34440.rst
14007 F:      Documentation/hwmon/max8688.rst
14008 F:      Documentation/hwmon/pmbus-core.rst
14009 F:      Documentation/hwmon/pmbus.rst
14010 F:      Documentation/hwmon/tps40422.rst
14011 F:      Documentation/hwmon/ucd9000.rst
14012 F:      Documentation/hwmon/ucd9200.rst
14013 F:      Documentation/hwmon/zl6100.rst
14014 F:      drivers/hwmon/pmbus/
14015 F:      include/linux/pmbus.h
14016
14017 PMC SIERRA MaxRAID DRIVER
14018 L:      linux-scsi@vger.kernel.org
14019 S:      Orphan
14020 W:      http://www.pmc-sierra.com/
14021 F:      drivers/scsi/pmcraid.*
14022
14023 PMC SIERRA PM8001 DRIVER
14024 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14025 L:      linux-scsi@vger.kernel.org
14026 S:      Supported
14027 F:      drivers/scsi/pm8001/
14028
14029 PNI RM3100 IIO DRIVER
14030 M:      Song Qiang <songqiang1304521@gmail.com>
14031 L:      linux-iio@vger.kernel.org
14032 S:      Maintained
14033 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
14034 F:      drivers/iio/magnetometer/rm3100*
14035
14036 PNP SUPPORT
14037 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14038 L:      linux-acpi@vger.kernel.org
14039 S:      Maintained
14040 F:      drivers/pnp/
14041 F:      include/linux/pnp.h
14042
14043 POSIX CLOCKS and TIMERS
14044 M:      Thomas Gleixner <tglx@linutronix.de>
14045 L:      linux-kernel@vger.kernel.org
14046 S:      Maintained
14047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14048 F:      fs/timerfd.c
14049 F:      include/linux/time_namespace.h
14050 F:      include/linux/timer*
14051 F:      kernel/time/*timer*
14052 F:      kernel/time/namespace.c
14053
14054 POWER MANAGEMENT CORE
14055 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14056 L:      linux-pm@vger.kernel.org
14057 S:      Supported
14058 B:      https://bugzilla.kernel.org
14059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14060 F:      drivers/base/power/
14061 F:      drivers/powercap/
14062 F:      include/linux/intel_rapl.h
14063 F:      include/linux/pm.h
14064 F:      include/linux/pm_*
14065 F:      include/linux/powercap.h
14066 F:      kernel/configs/nopm.config
14067
14068 POWER STATE COORDINATION INTERFACE (PSCI)
14069 M:      Mark Rutland <mark.rutland@arm.com>
14070 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14071 L:      linux-arm-kernel@lists.infradead.org
14072 S:      Maintained
14073 F:      drivers/firmware/psci/
14074 F:      include/linux/psci.h
14075 F:      include/uapi/linux/psci.h
14076
14077 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14078 M:      Sebastian Reichel <sre@kernel.org>
14079 L:      linux-pm@vger.kernel.org
14080 S:      Maintained
14081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14082 F:      Documentation/ABI/testing/sysfs-class-power
14083 F:      Documentation/devicetree/bindings/power/supply/
14084 F:      drivers/power/supply/
14085 F:      include/linux/power_supply.h
14086
14087 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14088 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14089 L:      linuxppc-dev@lists.ozlabs.org
14090 S:      Maintained
14091 F:      drivers/char/powernv-op-panel.c
14092
14093 PPP OVER ATM (RFC 2364)
14094 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14095 S:      Maintained
14096 F:      include/uapi/linux/atmppp.h
14097 F:      net/atm/pppoatm.c
14098
14099 PPP OVER ETHERNET
14100 M:      Michal Ostrowski <mostrows@earthlink.net>
14101 S:      Maintained
14102 F:      drivers/net/ppp/pppoe.c
14103 F:      drivers/net/ppp/pppox.c
14104
14105 PPP OVER L2TP
14106 M:      James Chapman <jchapman@katalix.com>
14107 S:      Maintained
14108 F:      include/linux/if_pppol2tp.h
14109 F:      include/uapi/linux/if_pppol2tp.h
14110 F:      net/l2tp/l2tp_ppp.c
14111
14112 PPP PROTOCOL DRIVERS AND COMPRESSORS
14113 M:      Paul Mackerras <paulus@samba.org>
14114 L:      linux-ppp@vger.kernel.org
14115 S:      Maintained
14116 F:      drivers/net/ppp/ppp_*
14117
14118 PPS SUPPORT
14119 M:      Rodolfo Giometti <giometti@enneenne.com>
14120 L:      linuxpps@ml.enneenne.com (subscribers-only)
14121 S:      Maintained
14122 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14123 F:      Documentation/ABI/testing/sysfs-pps
14124 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14125 F:      Documentation/driver-api/pps.rst
14126 F:      drivers/pps/
14127 F:      include/linux/pps*.h
14128 F:      include/uapi/linux/pps.h
14129
14130 PPTP DRIVER
14131 M:      Dmitry Kozlov <xeb@mail.ru>
14132 L:      netdev@vger.kernel.org
14133 S:      Maintained
14134 W:      http://sourceforge.net/projects/accel-pptp
14135 F:      drivers/net/ppp/pptp.c
14136
14137 PRESSURE STALL INFORMATION (PSI)
14138 M:      Johannes Weiner <hannes@cmpxchg.org>
14139 S:      Maintained
14140 F:      include/linux/psi*
14141 F:      kernel/sched/psi.c
14142
14143 PRINTK
14144 M:      Petr Mladek <pmladek@suse.com>
14145 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
14146 R:      Steven Rostedt <rostedt@goodmis.org>
14147 R:      John Ogness <john.ogness@linutronix.de>
14148 S:      Maintained
14149 F:      include/linux/printk.h
14150 F:      kernel/printk/
14151
14152 PRISM54 WIRELESS DRIVER
14153 M:      Luis Chamberlain <mcgrof@kernel.org>
14154 L:      linux-wireless@vger.kernel.org
14155 S:      Obsolete
14156 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14157 F:      drivers/net/wireless/intersil/prism54/
14158
14159 PROC FILESYSTEM
14160 R:      Alexey Dobriyan <adobriyan@gmail.com>
14161 L:      linux-kernel@vger.kernel.org
14162 L:      linux-fsdevel@vger.kernel.org
14163 S:      Maintained
14164 F:      Documentation/filesystems/proc.rst
14165 F:      fs/proc/
14166 F:      include/linux/proc_fs.h
14167 F:      tools/testing/selftests/proc/
14168
14169 PROC SYSCTL
14170 M:      Luis Chamberlain <mcgrof@kernel.org>
14171 M:      Kees Cook <keescook@chromium.org>
14172 M:      Iurii Zaikin <yzaikin@google.com>
14173 L:      linux-kernel@vger.kernel.org
14174 L:      linux-fsdevel@vger.kernel.org
14175 S:      Maintained
14176 F:      fs/proc/proc_sysctl.c
14177 F:      include/linux/sysctl.h
14178 F:      kernel/sysctl-test.c
14179 F:      kernel/sysctl.c
14180 F:      tools/testing/selftests/sysctl/
14181
14182 PS3 NETWORK SUPPORT
14183 M:      Geoff Levand <geoff@infradead.org>
14184 L:      netdev@vger.kernel.org
14185 L:      linuxppc-dev@lists.ozlabs.org
14186 S:      Maintained
14187 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14188
14189 PS3 PLATFORM SUPPORT
14190 M:      Geoff Levand <geoff@infradead.org>
14191 L:      linuxppc-dev@lists.ozlabs.org
14192 S:      Maintained
14193 F:      arch/powerpc/boot/ps3*
14194 F:      arch/powerpc/include/asm/lv1call.h
14195 F:      arch/powerpc/include/asm/ps3*.h
14196 F:      arch/powerpc/platforms/ps3/
14197 F:      drivers/*/ps3*
14198 F:      drivers/ps3/
14199 F:      drivers/rtc/rtc-ps3.c
14200 F:      drivers/usb/host/*ps3.c
14201 F:      sound/ppc/snd_ps3*
14202
14203 PS3VRAM DRIVER
14204 M:      Jim Paris <jim@jtan.com>
14205 M:      Geoff Levand <geoff@infradead.org>
14206 L:      linuxppc-dev@lists.ozlabs.org
14207 S:      Maintained
14208 F:      drivers/block/ps3vram.c
14209
14210 PSAMPLE PACKET SAMPLING SUPPORT
14211 M:      Yotam Gigi <yotam.gi@gmail.com>
14212 S:      Maintained
14213 F:      include/net/psample.h
14214 F:      include/uapi/linux/psample.h
14215 F:      net/psample
14216
14217 PSTORE FILESYSTEM
14218 M:      Kees Cook <keescook@chromium.org>
14219 M:      Anton Vorontsov <anton@enomsg.org>
14220 M:      Colin Cross <ccross@android.com>
14221 M:      Tony Luck <tony.luck@intel.com>
14222 S:      Maintained
14223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14224 F:      Documentation/admin-guide/ramoops.rst
14225 F:      Documentation/admin-guide/pstore-blk.rst
14226 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14227 F:      drivers/acpi/apei/erst.c
14228 F:      drivers/firmware/efi/efi-pstore.c
14229 F:      fs/pstore/
14230 F:      include/linux/pstore*
14231 K:      \b(pstore|ramoops)
14232
14233 PTP HARDWARE CLOCK SUPPORT
14234 M:      Richard Cochran <richardcochran@gmail.com>
14235 L:      netdev@vger.kernel.org
14236 S:      Maintained
14237 W:      http://linuxptp.sourceforge.net/
14238 F:      Documentation/ABI/testing/sysfs-ptp
14239 F:      Documentation/driver-api/ptp.rst
14240 F:      drivers/net/phy/dp83640*
14241 F:      drivers/ptp/*
14242 F:      include/linux/ptp_cl*
14243
14244 PTRACE SUPPORT
14245 M:      Oleg Nesterov <oleg@redhat.com>
14246 S:      Maintained
14247 F:      arch/*/*/ptrace*.c
14248 F:      arch/*/include/asm/ptrace*.h
14249 F:      arch/*/ptrace*.c
14250 F:      include/asm-generic/syscall.h
14251 F:      include/linux/ptrace.h
14252 F:      include/linux/regset.h
14253 F:      include/linux/tracehook.h
14254 F:      include/uapi/linux/ptrace.h
14255 F:      include/uapi/linux/ptrace.h
14256 F:      kernel/ptrace.c
14257
14258 PULSE8-CEC DRIVER
14259 M:      Hans Verkuil <hverkuil@xs4all.nl>
14260 L:      linux-media@vger.kernel.org
14261 S:      Maintained
14262 T:      git git://linuxtv.org/media_tree.git
14263 F:      Documentation/admin-guide/media/pulse8-cec.rst
14264 F:      drivers/media/cec/usb/pulse8/
14265
14266 PVRUSB2 VIDEO4LINUX DRIVER
14267 M:      Mike Isely <isely@pobox.com>
14268 L:      pvrusb2@isely.net       (subscribers-only)
14269 L:      linux-media@vger.kernel.org
14270 S:      Maintained
14271 W:      http://www.isely.net/pvrusb2/
14272 T:      git git://linuxtv.org/media_tree.git
14273 F:      Documentation/driver-api/media/drivers/pvrusb2*
14274 F:      drivers/media/usb/pvrusb2/
14275
14276 PWC WEBCAM DRIVER
14277 M:      Hans Verkuil <hverkuil@xs4all.nl>
14278 L:      linux-media@vger.kernel.org
14279 S:      Odd Fixes
14280 T:      git git://linuxtv.org/media_tree.git
14281 F:      drivers/media/usb/pwc/*
14282 F:      include/trace/events/pwc.h
14283
14284 PWM FAN DRIVER
14285 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14286 L:      linux-hwmon@vger.kernel.org
14287 S:      Supported
14288 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14289 F:      Documentation/hwmon/pwm-fan.rst
14290 F:      drivers/hwmon/pwm-fan.c
14291
14292 PWM IR Transmitter
14293 M:      Sean Young <sean@mess.org>
14294 L:      linux-media@vger.kernel.org
14295 S:      Maintained
14296 F:      drivers/media/rc/pwm-ir-tx.c
14297
14298 PWM SUBSYSTEM
14299 M:      Thierry Reding <thierry.reding@gmail.com>
14300 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14301 M:      Lee Jones <lee.jones@linaro.org>
14302 L:      linux-pwm@vger.kernel.org
14303 S:      Maintained
14304 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
14305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14306 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14307 F:      Documentation/devicetree/bindings/pwm/
14308 F:      Documentation/driver-api/pwm.rst
14309 F:      drivers/gpio/gpio-mvebu.c
14310 F:      drivers/pwm/
14311 F:      drivers/video/backlight/pwm_bl.c
14312 F:      include/linux/pwm.h
14313 F:      include/linux/pwm_backlight.h
14314 K:      pwm_(config|apply_state|ops)
14315
14316 PXA GPIO DRIVER
14317 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14318 L:      linux-gpio@vger.kernel.org
14319 S:      Maintained
14320 F:      drivers/gpio/gpio-pxa.c
14321
14322 PXA MMCI DRIVER
14323 S:      Orphan
14324
14325 PXA RTC DRIVER
14326 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14327 L:      linux-rtc@vger.kernel.org
14328 S:      Maintained
14329
14330 PXA2xx/PXA3xx SUPPORT
14331 M:      Daniel Mack <daniel@zonque.org>
14332 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
14333 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14335 S:      Maintained
14336 T:      git git://github.com/hzhuang1/linux.git
14337 T:      git git://github.com/rjarzmik/linux.git
14338 F:      arch/arm/boot/dts/pxa*
14339 F:      arch/arm/mach-pxa/
14340 F:      drivers/dma/pxa*
14341 F:      drivers/pcmcia/pxa2xx*
14342 F:      drivers/pinctrl/pxa/
14343 F:      drivers/spi/spi-pxa2xx*
14344 F:      drivers/usb/gadget/udc/pxa2*
14345 F:      include/sound/pxa2xx-lib.h
14346 F:      sound/arm/pxa*
14347 F:      sound/soc/pxa/
14348
14349 QAT DRIVER
14350 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
14351 L:      qat-linux@intel.com
14352 S:      Supported
14353 F:      drivers/crypto/qat/
14354
14355 QCOM AUDIO (ASoC) DRIVERS
14356 M:      Patrick Lai <plai@codeaurora.org>
14357 M:      Banajit Goswami <bgoswami@codeaurora.org>
14358 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14359 S:      Supported
14360 F:      sound/soc/qcom/
14361
14362 QCOM IPA DRIVER
14363 M:      Alex Elder <elder@kernel.org>
14364 L:      netdev@vger.kernel.org
14365 S:      Supported
14366 F:      drivers/net/ipa/
14367
14368 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14369 M:      Gabriel Somlo <somlo@cmu.edu>
14370 M:      "Michael S. Tsirkin" <mst@redhat.com>
14371 L:      qemu-devel@nongnu.org
14372 S:      Maintained
14373 F:      drivers/firmware/qemu_fw_cfg.c
14374 F:      include/uapi/linux/qemu_fw_cfg.h
14375
14376 QIB DRIVER
14377 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14378 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14379 L:      linux-rdma@vger.kernel.org
14380 S:      Supported
14381 F:      drivers/infiniband/hw/qib/
14382
14383 QLOGIC QL41xxx FCOE DRIVER
14384 M:      Saurav Kashyap <skashyap@marvell.com>
14385 M:      Javed Hasan <jhasan@marvell.com>
14386 M:      GR-QLogic-Storage-Upstream@marvell.com
14387 L:      linux-scsi@vger.kernel.org
14388 S:      Supported
14389 F:      drivers/scsi/qedf/
14390
14391 QLOGIC QL41xxx ISCSI DRIVER
14392 M:      Nilesh Javali <njavali@marvell.com>
14393 M:      Manish Rangankar <mrangankar@marvell.com>
14394 M:      GR-QLogic-Storage-Upstream@marvell.com
14395 L:      linux-scsi@vger.kernel.org
14396 S:      Supported
14397 F:      drivers/scsi/qedi/
14398
14399 QLOGIC QL4xxx ETHERNET DRIVER
14400 M:      Ariel Elior <aelior@marvell.com>
14401 M:      GR-everest-linux-l2@marvell.com
14402 L:      netdev@vger.kernel.org
14403 S:      Supported
14404 F:      drivers/net/ethernet/qlogic/qed/
14405 F:      drivers/net/ethernet/qlogic/qede/
14406 F:      include/linux/qed/
14407
14408 QLOGIC QL4xxx RDMA DRIVER
14409 M:      Michal Kalderon <mkalderon@marvell.com>
14410 M:      Ariel Elior <aelior@marvell.com>
14411 L:      linux-rdma@vger.kernel.org
14412 S:      Supported
14413 F:      drivers/infiniband/hw/qedr/
14414 F:      include/uapi/rdma/qedr-abi.h
14415
14416 QLOGIC QLA1280 SCSI DRIVER
14417 M:      Michael Reed <mdr@sgi.com>
14418 L:      linux-scsi@vger.kernel.org
14419 S:      Maintained
14420 F:      drivers/scsi/qla1280.[ch]
14421
14422 QLOGIC QLA2XXX FC-SCSI DRIVER
14423 M:      Nilesh Javali <njavali@marvell.com>
14424 M:      GR-QLogic-Storage-Upstream@marvell.com
14425 L:      linux-scsi@vger.kernel.org
14426 S:      Supported
14427 F:      drivers/scsi/qla2xxx/
14428
14429 QLOGIC QLA3XXX NETWORK DRIVER
14430 M:      GR-Linux-NIC-Dev@marvell.com
14431 L:      netdev@vger.kernel.org
14432 S:      Supported
14433 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14434
14435 QLOGIC QLA4XXX iSCSI DRIVER
14436 M:      Nilesh Javali <njavali@marvell.com>
14437 M:      Manish Rangankar <mrangankar@marvell.com>
14438 M:      GR-QLogic-Storage-Upstream@marvell.com
14439 L:      linux-scsi@vger.kernel.org
14440 S:      Supported
14441 F:      drivers/scsi/qla4xxx/
14442
14443 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14444 M:      Shahed Shaikh <shshaikh@marvell.com>
14445 M:      Manish Chopra <manishc@marvell.com>
14446 M:      GR-Linux-NIC-Dev@marvell.com
14447 L:      netdev@vger.kernel.org
14448 S:      Supported
14449 F:      drivers/net/ethernet/qlogic/qlcnic/
14450
14451 QLOGIC QLGE 10Gb ETHERNET DRIVER
14452 M:      Manish Chopra <manishc@marvell.com>
14453 M:      GR-Linux-NIC-Dev@marvell.com
14454 L:      netdev@vger.kernel.org
14455 S:      Supported
14456 F:      drivers/staging/qlge/
14457
14458 QM1D1B0004 MEDIA DRIVER
14459 M:      Akihiro Tsukada <tskd08@gmail.com>
14460 L:      linux-media@vger.kernel.org
14461 S:      Odd Fixes
14462 F:      drivers/media/tuners/qm1d1b0004*
14463
14464 QM1D1C0042 MEDIA DRIVER
14465 M:      Akihiro Tsukada <tskd08@gmail.com>
14466 L:      linux-media@vger.kernel.org
14467 S:      Odd Fixes
14468 F:      drivers/media/tuners/qm1d1c0042*
14469
14470 QNX4 FILESYSTEM
14471 M:      Anders Larsen <al@alarsen.net>
14472 S:      Maintained
14473 W:      http://www.alarsen.net/linux/qnx4fs/
14474 F:      fs/qnx4/
14475 F:      include/uapi/linux/qnx4_fs.h
14476 F:      include/uapi/linux/qnxtypes.h
14477
14478 QORIQ DPAA2 FSL-MC BUS DRIVER
14479 M:      Stuart Yoder <stuyoder@gmail.com>
14480 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14481 L:      linux-kernel@vger.kernel.org
14482 S:      Maintained
14483 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14484 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
14485 F:      drivers/bus/fsl-mc/
14486
14487 QT1010 MEDIA DRIVER
14488 M:      Antti Palosaari <crope@iki.fi>
14489 L:      linux-media@vger.kernel.org
14490 S:      Maintained
14491 W:      https://linuxtv.org
14492 W:      http://palosaari.fi/linux/
14493 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14494 T:      git git://linuxtv.org/anttip/media_tree.git
14495 F:      drivers/media/tuners/qt1010*
14496
14497 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14498 M:      Kalle Valo <kvalo@codeaurora.org>
14499 L:      ath10k@lists.infradead.org
14500 S:      Supported
14501 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14503 F:      drivers/net/wireless/ath/ath10k/
14504
14505 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14506 M:      Kalle Valo <kvalo@codeaurora.org>
14507 L:      ath11k@lists.infradead.org
14508 S:      Supported
14509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14510 F:      drivers/net/wireless/ath/ath11k/
14511
14512 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14513 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
14514 L:      linux-wireless@vger.kernel.org
14515 S:      Supported
14516 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14517 F:      drivers/net/wireless/ath/ath9k/
14518
14519 QUALCOMM CAMERA SUBSYSTEM DRIVER
14520 M:      Robert Foss <robert.foss@linaro.org>
14521 M:      Todor Tomov <todor.too@gmail.com>
14522 L:      linux-media@vger.kernel.org
14523 S:      Maintained
14524 F:      Documentation/admin-guide/media/qcom_camss.rst
14525 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14526 F:      drivers/media/platform/qcom/camss/
14527
14528 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14529 M:      Niklas Cassel <nks@flawful.org>
14530 L:      linux-pm@vger.kernel.org
14531 L:      linux-arm-msm@vger.kernel.org
14532 S:      Maintained
14533 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14534 F:      drivers/soc/qcom/cpr.c
14535
14536 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14537 M:      Ilia Lin <ilia.lin@kernel.org>
14538 L:      linux-pm@vger.kernel.org
14539 S:      Maintained
14540 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14541 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14542
14543 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14544 M:      Timur Tabi <timur@kernel.org>
14545 L:      netdev@vger.kernel.org
14546 S:      Maintained
14547 F:      drivers/net/ethernet/qualcomm/emac/
14548
14549 QUALCOMM ETHQOS ETHERNET DRIVER
14550 M:      Vinod Koul <vkoul@kernel.org>
14551 L:      netdev@vger.kernel.org
14552 S:      Maintained
14553 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14554 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14555
14556 QUALCOMM GENERIC INTERFACE I2C DRIVER
14557 M:      Akash Asthana <akashast@codeaurora.org>
14558 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
14559 L:      linux-i2c@vger.kernel.org
14560 L:      linux-arm-msm@vger.kernel.org
14561 S:      Supported
14562 F:      drivers/i2c/busses/i2c-qcom-geni.c
14563
14564 QUALCOMM HEXAGON ARCHITECTURE
14565 M:      Brian Cain <bcain@codeaurora.org>
14566 L:      linux-hexagon@vger.kernel.org
14567 S:      Supported
14568 F:      arch/hexagon/
14569
14570 QUALCOMM HIDMA DRIVER
14571 M:      Sinan Kaya <okaya@kernel.org>
14572 L:      linux-arm-kernel@lists.infradead.org
14573 L:      linux-arm-msm@vger.kernel.org
14574 L:      dmaengine@vger.kernel.org
14575 S:      Supported
14576 F:      drivers/dma/qcom/hidma*
14577
14578 QUALCOMM I2C CCI DRIVER
14579 M:      Loic Poulain <loic.poulain@linaro.org>
14580 M:      Robert Foss <robert.foss@linaro.org>
14581 L:      linux-i2c@vger.kernel.org
14582 L:      linux-arm-msm@vger.kernel.org
14583 S:      Maintained
14584 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14585 F:      drivers/i2c/busses/i2c-qcom-cci.c
14586
14587 QUALCOMM IOMMU
14588 M:      Rob Clark <robdclark@gmail.com>
14589 L:      iommu@lists.linux-foundation.org
14590 L:      linux-arm-msm@vger.kernel.org
14591 S:      Maintained
14592 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
14593
14594 QUALCOMM IPCC MAILBOX DRIVER
14595 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14596 L:      linux-arm-msm@vger.kernel.org
14597 S:      Supported
14598 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14599 F:      drivers/mailbox/qcom-ipcc.c
14600 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14601
14602 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
14603 M:      Robert Marko <robert.marko@sartura.hr>
14604 M:      Luka Perkov <luka.perkov@sartura.hr>
14605 L:      linux-arm-msm@vger.kernel.org
14606 S:      Maintained
14607 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
14608 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
14609
14610 QUALCOMM RMNET DRIVER
14611 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14612 M:      Sean Tranchetti <stranche@codeaurora.org>
14613 L:      netdev@vger.kernel.org
14614 S:      Maintained
14615 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
14616 F:      drivers/net/ethernet/qualcomm/rmnet/
14617 F:      include/linux/if_rmnet.h
14618
14619 QUALCOMM TSENS THERMAL DRIVER
14620 M:      Amit Kucheria <amitk@kernel.org>
14621 L:      linux-pm@vger.kernel.org
14622 L:      linux-arm-msm@vger.kernel.org
14623 S:      Maintained
14624 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14625 F:      drivers/thermal/qcom/
14626
14627 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14628 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14629 L:      linux-media@vger.kernel.org
14630 L:      linux-arm-msm@vger.kernel.org
14631 S:      Maintained
14632 T:      git git://linuxtv.org/media_tree.git
14633 F:      Documentation/devicetree/bindings/media/*venus*
14634 F:      drivers/media/platform/qcom/venus/
14635
14636 QUALCOMM WCN36XX WIRELESS DRIVER
14637 M:      Kalle Valo <kvalo@codeaurora.org>
14638 L:      wcn36xx@lists.infradead.org
14639 S:      Supported
14640 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14641 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14642 F:      drivers/net/wireless/ath/wcn36xx/
14643
14644 QUANTENNA QTNFMAC WIRELESS DRIVER
14645 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14646 R:      Sergey Matyukevich <geomatsi@gmail.com>
14647 L:      linux-wireless@vger.kernel.org
14648 S:      Maintained
14649 F:      drivers/net/wireless/quantenna
14650
14651 RADEON and AMDGPU DRM DRIVERS
14652 M:      Alex Deucher <alexander.deucher@amd.com>
14653 M:      Christian König <christian.koenig@amd.com>
14654 L:      amd-gfx@lists.freedesktop.org
14655 S:      Supported
14656 T:      git git://people.freedesktop.org/~agd5f/linux
14657 F:      drivers/gpu/drm/amd/
14658 F:      drivers/gpu/drm/radeon/
14659 F:      include/uapi/drm/amdgpu_drm.h
14660 F:      include/uapi/drm/radeon_drm.h
14661
14662 RADEON FRAMEBUFFER DISPLAY DRIVER
14663 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14664 L:      linux-fbdev@vger.kernel.org
14665 S:      Maintained
14666 F:      drivers/video/fbdev/aty/radeon*
14667 F:      include/uapi/linux/radeonfb.h
14668
14669 RADIOSHARK RADIO DRIVER
14670 M:      Hans Verkuil <hverkuil@xs4all.nl>
14671 L:      linux-media@vger.kernel.org
14672 S:      Maintained
14673 T:      git git://linuxtv.org/media_tree.git
14674 F:      drivers/media/radio/radio-shark.c
14675
14676 RADIOSHARK2 RADIO DRIVER
14677 M:      Hans Verkuil <hverkuil@xs4all.nl>
14678 L:      linux-media@vger.kernel.org
14679 S:      Maintained
14680 T:      git git://linuxtv.org/media_tree.git
14681 F:      drivers/media/radio/radio-shark2.c
14682 F:      drivers/media/radio/radio-tea5777.c
14683
14684 RADOS BLOCK DEVICE (RBD)
14685 M:      Ilya Dryomov <idryomov@gmail.com>
14686 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14687 L:      ceph-devel@vger.kernel.org
14688 S:      Supported
14689 W:      http://ceph.com/
14690 T:      git git://github.com/ceph/ceph-client.git
14691 F:      Documentation/ABI/testing/sysfs-bus-rbd
14692 F:      drivers/block/rbd.c
14693 F:      drivers/block/rbd_types.h
14694
14695 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14696 M:      Paul Mackerras <paulus@samba.org>
14697 L:      linux-fbdev@vger.kernel.org
14698 S:      Maintained
14699 F:      drivers/video/fbdev/aty/aty128fb.c
14700
14701 RAINSHADOW-CEC DRIVER
14702 M:      Hans Verkuil <hverkuil@xs4all.nl>
14703 L:      linux-media@vger.kernel.org
14704 S:      Maintained
14705 T:      git git://linuxtv.org/media_tree.git
14706 F:      drivers/media/cec/usb/rainshadow/
14707
14708 RALINK MIPS ARCHITECTURE
14709 M:      John Crispin <john@phrozen.org>
14710 L:      linux-mips@vger.kernel.org
14711 S:      Maintained
14712 F:      arch/mips/ralink
14713
14714 RALINK RT2X00 WIRELESS LAN DRIVER
14715 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14716 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14717 L:      linux-wireless@vger.kernel.org
14718 S:      Maintained
14719 F:      drivers/net/wireless/ralink/rt2x00/
14720
14721 RAMDISK RAM BLOCK DEVICE DRIVER
14722 M:      Jens Axboe <axboe@kernel.dk>
14723 S:      Maintained
14724 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14725 F:      drivers/block/brd.c
14726
14727 RANCHU VIRTUAL BOARD FOR MIPS
14728 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14729 L:      linux-mips@vger.kernel.org
14730 S:      Supported
14731 F:      arch/mips/configs/generic/board-ranchu.config
14732 F:      arch/mips/generic/board-ranchu.c
14733
14734 RANDOM NUMBER DRIVER
14735 M:      "Theodore Ts'o" <tytso@mit.edu>
14736 S:      Maintained
14737 F:      drivers/char/random.c
14738
14739 RAPIDIO SUBSYSTEM
14740 M:      Matt Porter <mporter@kernel.crashing.org>
14741 M:      Alexandre Bounine <alex.bou9@gmail.com>
14742 S:      Maintained
14743 F:      drivers/rapidio/
14744
14745 RAS INFRASTRUCTURE
14746 M:      Tony Luck <tony.luck@intel.com>
14747 M:      Borislav Petkov <bp@alien8.de>
14748 L:      linux-edac@vger.kernel.org
14749 S:      Maintained
14750 F:      Documentation/admin-guide/ras.rst
14751 F:      drivers/ras/
14752 F:      include/linux/ras.h
14753 F:      include/ras/ras_event.h
14754
14755 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14756 L:      linux-wireless@vger.kernel.org
14757 S:      Orphan
14758 F:      drivers/net/wireless/ray*
14759
14760 RC-CORE / LIRC FRAMEWORK
14761 M:      Sean Young <sean@mess.org>
14762 L:      linux-media@vger.kernel.org
14763 S:      Maintained
14764 W:      http://linuxtv.org
14765 T:      git git://linuxtv.org/media_tree.git
14766 F:      Documentation/driver-api/media/rc-core.rst
14767 F:      Documentation/userspace-api/media/rc/
14768 F:      drivers/media/rc/
14769 F:      include/media/rc-map.h
14770 F:      include/media/rc-core.h
14771 F:      include/uapi/linux/lirc.h
14772
14773 RCMM REMOTE CONTROLS DECODER
14774 M:      Patrick Lerda <patrick9876@free.fr>
14775 S:      Maintained
14776 F:      drivers/media/rc/ir-rcmm-decoder.c
14777
14778 RCUTORTURE TEST FRAMEWORK
14779 M:      "Paul E. McKenney" <paulmck@kernel.org>
14780 M:      Josh Triplett <josh@joshtriplett.org>
14781 R:      Steven Rostedt <rostedt@goodmis.org>
14782 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14783 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14784 L:      rcu@vger.kernel.org
14785 S:      Supported
14786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14787 F:      tools/testing/selftests/rcutorture
14788
14789 RDACM20 Camera Sensor
14790 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
14791 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
14792 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
14793 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
14794 L:      linux-media@vger.kernel.org
14795 S:      Maintained
14796 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
14797 F:      drivers/media/i2c/max9271.c
14798 F:      drivers/media/i2c/max9271.h
14799 F:      drivers/media/i2c/rdacm20.c
14800
14801 RDC R-321X SoC
14802 M:      Florian Fainelli <florian@openwrt.org>
14803 S:      Maintained
14804
14805 RDC R6040 FAST ETHERNET DRIVER
14806 M:      Florian Fainelli <f.fainelli@gmail.com>
14807 L:      netdev@vger.kernel.org
14808 S:      Maintained
14809 F:      drivers/net/ethernet/rdc/r6040.c
14810
14811 RDMAVT - RDMA verbs software
14812 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14813 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14814 L:      linux-rdma@vger.kernel.org
14815 S:      Supported
14816 F:      drivers/infiniband/sw/rdmavt
14817
14818 RDS - RELIABLE DATAGRAM SOCKETS
14819 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14820 L:      netdev@vger.kernel.org
14821 L:      linux-rdma@vger.kernel.org
14822 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14823 S:      Supported
14824 W:      https://oss.oracle.com/projects/rds/
14825 F:      Documentation/networking/rds.rst
14826 F:      net/rds/
14827
14828 RDT - RESOURCE ALLOCATION
14829 M:      Fenghua Yu <fenghua.yu@intel.com>
14830 M:      Reinette Chatre <reinette.chatre@intel.com>
14831 L:      linux-kernel@vger.kernel.org
14832 S:      Supported
14833 F:      Documentation/x86/resctrl*
14834 F:      arch/x86/include/asm/resctrl.h
14835 F:      arch/x86/kernel/cpu/resctrl/
14836 F:      tools/testing/selftests/resctrl/
14837
14838 READ-COPY UPDATE (RCU)
14839 M:      "Paul E. McKenney" <paulmck@kernel.org>
14840 M:      Josh Triplett <josh@joshtriplett.org>
14841 R:      Steven Rostedt <rostedt@goodmis.org>
14842 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14843 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14844 R:      Joel Fernandes <joel@joelfernandes.org>
14845 L:      rcu@vger.kernel.org
14846 S:      Supported
14847 W:      http://www.rdrop.com/users/paulmck/RCU/
14848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14849 F:      Documentation/RCU/
14850 F:      include/linux/rcu*
14851 F:      kernel/rcu/
14852 X:      Documentation/RCU/torture.rst
14853 X:      include/linux/srcu*.h
14854 X:      kernel/rcu/srcu*.c
14855
14856 REAL TIME CLOCK (RTC) SUBSYSTEM
14857 M:      Alessandro Zummo <a.zummo@towertech.it>
14858 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14859 L:      linux-rtc@vger.kernel.org
14860 S:      Maintained
14861 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14863 F:      Documentation/admin-guide/rtc.rst
14864 F:      Documentation/devicetree/bindings/rtc/
14865 F:      drivers/rtc/
14866 F:      include/linux/platform_data/rtc-*
14867 F:      include/linux/rtc.h
14868 F:      include/linux/rtc/
14869 F:      include/uapi/linux/rtc.h
14870 F:      tools/testing/selftests/rtc/
14871
14872 REALTEK AUDIO CODECS
14873 M:      Oder Chiou <oder_chiou@realtek.com>
14874 S:      Maintained
14875 F:      include/sound/rt*.h
14876 F:      sound/soc/codecs/rt*
14877
14878 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14879 M:      Linus Walleij <linus.walleij@linaro.org>
14880 S:      Maintained
14881 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14882 F:      drivers/net/dsa/realtek-smi*
14883 F:      drivers/net/dsa/rtl83*
14884
14885 REALTEK WIRELESS DRIVER (rtlwifi family)
14886 M:      Ping-Ke Shih <pkshih@realtek.com>
14887 L:      linux-wireless@vger.kernel.org
14888 S:      Maintained
14889 W:      https://wireless.wiki.kernel.org/
14890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14891 F:      drivers/net/wireless/realtek/rtlwifi/
14892
14893 REALTEK WIRELESS DRIVER (rtw88)
14894 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
14895 L:      linux-wireless@vger.kernel.org
14896 S:      Maintained
14897 F:      drivers/net/wireless/realtek/rtw88/
14898
14899 REDPINE WIRELESS DRIVER
14900 M:      Amitkumar Karwar <amitkarwar@gmail.com>
14901 M:      Siva Rebbagondla <siva8118@gmail.com>
14902 L:      linux-wireless@vger.kernel.org
14903 S:      Maintained
14904 F:      drivers/net/wireless/rsi/
14905
14906 REGISTER MAP ABSTRACTION
14907 M:      Mark Brown <broonie@kernel.org>
14908 L:      linux-kernel@vger.kernel.org
14909 S:      Supported
14910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14911 F:      Documentation/devicetree/bindings/regmap/
14912 F:      drivers/base/regmap/
14913 F:      include/linux/regmap.h
14914
14915 REISERFS FILE SYSTEM
14916 L:      reiserfs-devel@vger.kernel.org
14917 S:      Supported
14918 F:      fs/reiserfs/
14919
14920 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14921 M:      Ohad Ben-Cohen <ohad@wizery.com>
14922 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14923 L:      linux-remoteproc@vger.kernel.org
14924 S:      Maintained
14925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14926 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14927 F:      Documentation/devicetree/bindings/remoteproc/
14928 F:      Documentation/staging/remoteproc.rst
14929 F:      drivers/remoteproc/
14930 F:      include/linux/remoteproc.h
14931 F:      include/linux/remoteproc/
14932
14933 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14934 M:      Ohad Ben-Cohen <ohad@wizery.com>
14935 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14936 L:      linux-remoteproc@vger.kernel.org
14937 S:      Maintained
14938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14939 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14940 F:      Documentation/staging/rpmsg.rst
14941 F:      drivers/rpmsg/
14942 F:      include/linux/rpmsg.h
14943 F:      include/linux/rpmsg/
14944 F:      include/uapi/linux/rpmsg.h
14945 F:      samples/rpmsg/
14946
14947 RENESAS CLOCK DRIVERS
14948 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14949 L:      linux-renesas-soc@vger.kernel.org
14950 S:      Supported
14951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14952 F:      Documentation/devicetree/bindings/clock/renesas,*
14953 F:      drivers/clk/renesas/
14954
14955 RENESAS EMEV2 I2C DRIVER
14956 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14957 S:      Supported
14958 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14959 F:      drivers/i2c/busses/i2c-emev2.c
14960
14961 RENESAS ETHERNET DRIVERS
14962 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
14963 L:      netdev@vger.kernel.org
14964 L:      linux-renesas-soc@vger.kernel.org
14965 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14966 F:      drivers/net/ethernet/renesas/
14967 F:      include/linux/sh_eth.h
14968
14969 RENESAS R-CAR GYROADC DRIVER
14970 M:      Marek Vasut <marek.vasut@gmail.com>
14971 L:      linux-iio@vger.kernel.org
14972 S:      Supported
14973 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14974 F:      drivers/iio/adc/rcar-gyroadc.c
14975
14976 RENESAS R-CAR I2C DRIVERS
14977 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14978 S:      Supported
14979 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14980 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14981 F:      drivers/i2c/busses/i2c-rcar.c
14982 F:      drivers/i2c/busses/i2c-sh_mobile.c
14983
14984 RENESAS R-CAR THERMAL DRIVERS
14985 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
14986 L:      linux-renesas-soc@vger.kernel.org
14987 S:      Supported
14988 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
14989 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
14990 F:      drivers/thermal/rcar_gen3_thermal.c
14991 F:      drivers/thermal/rcar_thermal.c
14992
14993 RENESAS RIIC DRIVER
14994 M:      Chris Brandt <chris.brandt@renesas.com>
14995 S:      Supported
14996 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14997 F:      drivers/i2c/busses/i2c-riic.c
14998
14999 RENESAS USB PHY DRIVER
15000 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15001 L:      linux-renesas-soc@vger.kernel.org
15002 S:      Maintained
15003 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15004
15005 RESET CONTROLLER FRAMEWORK
15006 M:      Philipp Zabel <p.zabel@pengutronix.de>
15007 S:      Maintained
15008 T:      git git://git.pengutronix.de/git/pza/linux
15009 F:      Documentation/devicetree/bindings/reset/
15010 F:      drivers/reset/
15011 F:      include/dt-bindings/reset/
15012 F:      include/linux/reset-controller.h
15013 F:      include/linux/reset.h
15014 F:      include/linux/reset/
15015 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15016
15017 RESTARTABLE SEQUENCES SUPPORT
15018 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15019 M:      Peter Zijlstra <peterz@infradead.org>
15020 M:      "Paul E. McKenney" <paulmck@kernel.org>
15021 M:      Boqun Feng <boqun.feng@gmail.com>
15022 L:      linux-kernel@vger.kernel.org
15023 S:      Supported
15024 F:      include/trace/events/rseq.h
15025 F:      include/uapi/linux/rseq.h
15026 F:      kernel/rseq.c
15027 F:      tools/testing/selftests/rseq/
15028
15029 RFKILL
15030 M:      Johannes Berg <johannes@sipsolutions.net>
15031 L:      linux-wireless@vger.kernel.org
15032 S:      Maintained
15033 W:      https://wireless.wiki.kernel.org/
15034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15036 F:      Documentation/ABI/stable/sysfs-class-rfkill
15037 F:      Documentation/driver-api/rfkill.rst
15038 F:      include/linux/rfkill.h
15039 F:      include/uapi/linux/rfkill.h
15040 F:      net/rfkill/
15041
15042 RHASHTABLE
15043 M:      Thomas Graf <tgraf@suug.ch>
15044 M:      Herbert Xu <herbert@gondor.apana.org.au>
15045 L:      netdev@vger.kernel.org
15046 S:      Maintained
15047 F:      include/linux/rhashtable-types.h
15048 F:      include/linux/rhashtable.h
15049 F:      lib/rhashtable.c
15050 F:      lib/test_rhashtable.c
15051
15052 RICOH R5C592 MEMORYSTICK DRIVER
15053 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15054 S:      Maintained
15055 F:      drivers/memstick/host/r592.*
15056
15057 RICOH SMARTMEDIA/XD DRIVER
15058 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15059 S:      Maintained
15060 F:      drivers/mtd/nand/raw/r852.c
15061 F:      drivers/mtd/nand/raw/r852.h
15062
15063 RISC-V ARCHITECTURE
15064 M:      Paul Walmsley <paul.walmsley@sifive.com>
15065 M:      Palmer Dabbelt <palmer@dabbelt.com>
15066 M:      Albert Ou <aou@eecs.berkeley.edu>
15067 L:      linux-riscv@lists.infradead.org
15068 S:      Supported
15069 P:      Documentation/riscv/patch-acceptance.rst
15070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15071 F:      arch/riscv/
15072 N:      riscv
15073 K:      riscv
15074
15075 RNBD BLOCK DRIVERS
15076 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15077 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15078 L:      linux-block@vger.kernel.org
15079 S:      Maintained
15080 F:      drivers/block/rnbd/
15081
15082 ROCCAT DRIVERS
15083 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15084 S:      Maintained
15085 W:      http://sourceforge.net/projects/roccat/
15086 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15087 F:      drivers/hid/hid-roccat*
15088 F:      include/linux/hid-roccat*
15089
15090 ROCKCHIP ISP V1 DRIVER
15091 M:      Helen Koike <helen.koike@collabora.com>
15092 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15093 L:      linux-media@vger.kernel.org
15094 L:      linux-rockchip@lists.infradead.org
15095 S:      Maintained
15096 F:      Documentation/admin-guide/media/rkisp1.rst
15097 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15098 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15099 F:      drivers/media/platform/rockchip/rkisp1
15100 F:      include/uapi/linux/rkisp1-config.h
15101
15102 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15103 M:      Jacob Chen <jacob-chen@iotwrt.com>
15104 M:      Ezequiel Garcia <ezequiel@collabora.com>
15105 L:      linux-media@vger.kernel.org
15106 L:      linux-rockchip@lists.infradead.org
15107 S:      Maintained
15108 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15109 F:      drivers/media/platform/rockchip/rga/
15110
15111 ROCKCHIP VIDEO DECODER DRIVER
15112 M:      Ezequiel Garcia <ezequiel@collabora.com>
15113 L:      linux-media@vger.kernel.org
15114 L:      linux-rockchip@lists.infradead.org
15115 S:      Maintained
15116 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15117 F:      drivers/staging/media/rkvdec/
15118
15119 ROCKER DRIVER
15120 M:      Jiri Pirko <jiri@resnulli.us>
15121 L:      netdev@vger.kernel.org
15122 S:      Supported
15123 F:      drivers/net/ethernet/rocker/
15124
15125 ROCKETPORT DRIVER
15126 S:      Maintained
15127 W:      http://www.comtrol.com
15128 F:      Documentation/driver-api/serial/rocket.rst
15129 F:      drivers/tty/rocket*
15130
15131 ROCKETPORT EXPRESS/INFINITY DRIVER
15132 M:      Kevin Cernekee <cernekee@gmail.com>
15133 L:      linux-serial@vger.kernel.org
15134 S:      Odd Fixes
15135 F:      drivers/tty/serial/rp2.*
15136
15137 ROHM BD99954 CHARGER IC
15138 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15139 L:      linux-power@fi.rohmeurope.com
15140 S:      Supported
15141 F:      drivers/power/supply/bd99954-charger.c
15142 F:      drivers/power/supply/bd99954-charger.h
15143
15144 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15145 M:      Tomasz Duszynski <tduszyns@gmail.com>
15146 S:      Maintained
15147 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15148 F:      drivers/iio/light/bh1750.c
15149
15150 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15151 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15152 L:      linux-kernel@vger.kernel.org
15153 L:      linux-renesas-soc@vger.kernel.org
15154 S:      Supported
15155 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15156 F:      drivers/gpio/gpio-bd9571mwv.c
15157 F:      drivers/mfd/bd9571mwv.c
15158 F:      drivers/regulator/bd9571mwv-regulator.c
15159 F:      include/linux/mfd/bd9571mwv.h
15160
15161 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15162 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15163 L:      linux-power@fi.rohmeurope.com
15164 S:      Supported
15165 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15166 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15167 F:      drivers/clk/clk-bd718x7.c
15168 F:      drivers/gpio/gpio-bd70528.c
15169 F:      drivers/gpio/gpio-bd71828.c
15170 F:      drivers/mfd/rohm-bd70528.c
15171 F:      drivers/mfd/rohm-bd71828.c
15172 F:      drivers/mfd/rohm-bd718x7.c
15173 F:      drivers/power/supply/bd70528-charger.c
15174 F:      drivers/regulator/bd70528-regulator.c
15175 F:      drivers/regulator/bd71828-regulator.c
15176 F:      drivers/regulator/bd718x7-regulator.c
15177 F:      drivers/regulator/rohm-regulator.c
15178 F:      drivers/rtc/rtc-bd70528.c
15179 F:      drivers/watchdog/bd70528_wdt.c
15180 F:      include/linux/mfd/rohm-bd70528.h
15181 F:      include/linux/mfd/rohm-bd71828.h
15182 F:      include/linux/mfd/rohm-bd718x7.h
15183 F:      include/linux/mfd/rohm-generic.h
15184 F:      include/linux/mfd/rohm-shared.h
15185
15186 ROSE NETWORK LAYER
15187 M:      Ralf Baechle <ralf@linux-mips.org>
15188 L:      linux-hams@vger.kernel.org
15189 S:      Maintained
15190 W:      http://www.linux-ax25.org/
15191 F:      include/net/rose.h
15192 F:      include/uapi/linux/rose.h
15193 F:      net/rose/
15194
15195 ROTATION DRIVER FOR ALLWINNER A83T
15196 M:      Jernej Skrabec <jernej.skrabec@siol.net>
15197 L:      linux-media@vger.kernel.org
15198 S:      Maintained
15199 T:      git git://linuxtv.org/media_tree.git
15200 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15201 F:      drivers/media/platform/sunxi/sun8i-rotate/
15202
15203 RTL2830 MEDIA DRIVER
15204 M:      Antti Palosaari <crope@iki.fi>
15205 L:      linux-media@vger.kernel.org
15206 S:      Maintained
15207 W:      https://linuxtv.org
15208 W:      http://palosaari.fi/linux/
15209 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15210 T:      git git://linuxtv.org/anttip/media_tree.git
15211 F:      drivers/media/dvb-frontends/rtl2830*
15212
15213 RTL2832 MEDIA DRIVER
15214 M:      Antti Palosaari <crope@iki.fi>
15215 L:      linux-media@vger.kernel.org
15216 S:      Maintained
15217 W:      https://linuxtv.org
15218 W:      http://palosaari.fi/linux/
15219 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15220 T:      git git://linuxtv.org/anttip/media_tree.git
15221 F:      drivers/media/dvb-frontends/rtl2832*
15222
15223 RTL2832_SDR MEDIA DRIVER
15224 M:      Antti Palosaari <crope@iki.fi>
15225 L:      linux-media@vger.kernel.org
15226 S:      Maintained
15227 W:      https://linuxtv.org
15228 W:      http://palosaari.fi/linux/
15229 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15230 T:      git git://linuxtv.org/anttip/media_tree.git
15231 F:      drivers/media/dvb-frontends/rtl2832_sdr*
15232
15233 RTL8180 WIRELESS DRIVER
15234 L:      linux-wireless@vger.kernel.org
15235 S:      Orphan
15236 W:      https://wireless.wiki.kernel.org/
15237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15238 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
15239
15240 RTL8187 WIRELESS DRIVER
15241 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
15242 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
15243 M:      Larry Finger <Larry.Finger@lwfinger.net>
15244 L:      linux-wireless@vger.kernel.org
15245 S:      Maintained
15246 W:      https://wireless.wiki.kernel.org/
15247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15248 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
15249
15250 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15251 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
15252 L:      linux-wireless@vger.kernel.org
15253 S:      Maintained
15254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15255 F:      drivers/net/wireless/realtek/rtl8xxxu/
15256
15257 RTRS TRANSPORT DRIVERS
15258 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15259 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15260 L:      linux-rdma@vger.kernel.org
15261 S:      Maintained
15262 F:      drivers/infiniband/ulp/rtrs/
15263
15264 RXRPC SOCKETS (AF_RXRPC)
15265 M:      David Howells <dhowells@redhat.com>
15266 L:      linux-afs@lists.infradead.org
15267 S:      Supported
15268 W:      https://www.infradead.org/~dhowells/kafs/
15269 F:      Documentation/networking/rxrpc.rst
15270 F:      include/keys/rxrpc-type.h
15271 F:      include/net/af_rxrpc.h
15272 F:      include/trace/events/rxrpc.h
15273 F:      include/uapi/linux/rxrpc.h
15274 F:      net/rxrpc/
15275
15276 S3 SAVAGE FRAMEBUFFER DRIVER
15277 M:      Antonino Daplas <adaplas@gmail.com>
15278 L:      linux-fbdev@vger.kernel.org
15279 S:      Maintained
15280 F:      drivers/video/fbdev/savage/
15281
15282 S390
15283 M:      Heiko Carstens <hca@linux.ibm.com>
15284 M:      Vasily Gorbik <gor@linux.ibm.com>
15285 M:      Christian Borntraeger <borntraeger@de.ibm.com>
15286 L:      linux-s390@vger.kernel.org
15287 S:      Supported
15288 W:      http://www.ibm.com/developerworks/linux/linux390/
15289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15290 F:      Documentation/driver-api/s390-drivers.rst
15291 F:      Documentation/s390/
15292 F:      arch/s390/
15293 F:      drivers/s390/
15294
15295 S390 COMMON I/O LAYER
15296 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
15297 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
15298 L:      linux-s390@vger.kernel.org
15299 S:      Supported
15300 W:      http://www.ibm.com/developerworks/linux/linux390/
15301 F:      drivers/s390/cio/
15302
15303 S390 DASD DRIVER
15304 M:      Stefan Haberland <sth@linux.ibm.com>
15305 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
15306 L:      linux-s390@vger.kernel.org
15307 S:      Supported
15308 W:      http://www.ibm.com/developerworks/linux/linux390/
15309 F:      block/partitions/ibm.c
15310 F:      drivers/s390/block/dasd*
15311 F:      include/linux/dasd_mod.h
15312
15313 S390 IOMMU (PCI)
15314 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15315 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15316 L:      linux-s390@vger.kernel.org
15317 S:      Supported
15318 W:      http://www.ibm.com/developerworks/linux/linux390/
15319 F:      drivers/iommu/s390-iommu.c
15320
15321 S390 IUCV NETWORK LAYER
15322 M:      Julian Wiedmann <jwi@linux.ibm.com>
15323 M:      Karsten Graul <kgraul@linux.ibm.com>
15324 L:      linux-s390@vger.kernel.org
15325 S:      Supported
15326 W:      http://www.ibm.com/developerworks/linux/linux390/
15327 F:      drivers/s390/net/*iucv*
15328 F:      include/net/iucv/
15329 F:      net/iucv/
15330
15331 S390 NETWORK DRIVERS
15332 M:      Julian Wiedmann <jwi@linux.ibm.com>
15333 M:      Karsten Graul <kgraul@linux.ibm.com>
15334 L:      linux-s390@vger.kernel.org
15335 S:      Supported
15336 W:      http://www.ibm.com/developerworks/linux/linux390/
15337 F:      drivers/s390/net/
15338
15339 S390 PCI SUBSYSTEM
15340 M:      Niklas Schnelle <schnelle@linux.ibm.com>
15341 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15342 L:      linux-s390@vger.kernel.org
15343 S:      Supported
15344 W:      http://www.ibm.com/developerworks/linux/linux390/
15345 F:      arch/s390/pci/
15346 F:      drivers/pci/hotplug/s390_pci_hpc.c
15347 F:      Documentation/s390/pci.rst
15348
15349 S390 VFIO AP DRIVER
15350 M:      Tony Krowiak <akrowiak@linux.ibm.com>
15351 M:      Pierre Morel <pmorel@linux.ibm.com>
15352 M:      Halil Pasic <pasic@linux.ibm.com>
15353 L:      linux-s390@vger.kernel.org
15354 S:      Supported
15355 W:      http://www.ibm.com/developerworks/linux/linux390/
15356 F:      Documentation/s390/vfio-ap.rst
15357 F:      drivers/s390/crypto/vfio_ap_drv.c
15358 F:      drivers/s390/crypto/vfio_ap_ops.c
15359 F:      drivers/s390/crypto/vfio_ap_private.h
15360
15361 S390 VFIO-CCW DRIVER
15362 M:      Cornelia Huck <cohuck@redhat.com>
15363 M:      Eric Farman <farman@linux.ibm.com>
15364 R:      Halil Pasic <pasic@linux.ibm.com>
15365 L:      linux-s390@vger.kernel.org
15366 L:      kvm@vger.kernel.org
15367 S:      Supported
15368 F:      Documentation/s390/vfio-ccw.rst
15369 F:      drivers/s390/cio/vfio_ccw*
15370 F:      include/uapi/linux/vfio_ccw.h
15371
15372 S390 VFIO-PCI DRIVER
15373 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15374 L:      linux-s390@vger.kernel.org
15375 L:      kvm@vger.kernel.org
15376 S:      Supported
15377 F:      drivers/vfio/pci/vfio_pci_zdev.c
15378 F:      include/uapi/linux/vfio_zdev.h
15379
15380 S390 ZCRYPT DRIVER
15381 M:      Harald Freudenberger <freude@linux.ibm.com>
15382 L:      linux-s390@vger.kernel.org
15383 S:      Supported
15384 W:      http://www.ibm.com/developerworks/linux/linux390/
15385 F:      drivers/s390/crypto/
15386
15387 S390 ZFCP DRIVER
15388 M:      Steffen Maier <maier@linux.ibm.com>
15389 M:      Benjamin Block <bblock@linux.ibm.com>
15390 L:      linux-s390@vger.kernel.org
15391 S:      Supported
15392 W:      http://www.ibm.com/developerworks/linux/linux390/
15393 F:      drivers/s390/scsi/zfcp_*
15394
15395 S3C24XX SD/MMC Driver
15396 M:      Ben Dooks <ben-linux@fluff.org>
15397 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15398 S:      Supported
15399 F:      drivers/mmc/host/s3cmci.*
15400
15401 SAA6588 RDS RECEIVER DRIVER
15402 M:      Hans Verkuil <hverkuil@xs4all.nl>
15403 L:      linux-media@vger.kernel.org
15404 S:      Odd Fixes
15405 W:      https://linuxtv.org
15406 T:      git git://linuxtv.org/media_tree.git
15407 F:      drivers/media/i2c/saa6588*
15408
15409 SAA7134 VIDEO4LINUX DRIVER
15410 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15411 L:      linux-media@vger.kernel.org
15412 S:      Odd fixes
15413 W:      https://linuxtv.org
15414 T:      git git://linuxtv.org/media_tree.git
15415 F:      Documentation/driver-api/media/drivers/saa7134*
15416 F:      drivers/media/pci/saa7134/
15417
15418 SAA7146 VIDEO4LINUX-2 DRIVER
15419 M:      Hans Verkuil <hverkuil@xs4all.nl>
15420 L:      linux-media@vger.kernel.org
15421 S:      Maintained
15422 T:      git git://linuxtv.org/media_tree.git
15423 F:      drivers/media/common/saa7146/
15424 F:      drivers/media/pci/saa7146/
15425 F:      include/media/drv-intf/saa7146*
15426
15427 SAFESETID SECURITY MODULE
15428 M:      Micah Morton <mortonm@chromium.org>
15429 S:      Supported
15430 F:      Documentation/admin-guide/LSM/SafeSetID.rst
15431 F:      security/safesetid/
15432
15433 SAMSUNG AUDIO (ASoC) DRIVERS
15434 M:      Krzysztof Kozlowski <krzk@kernel.org>
15435 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15436 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15437 S:      Supported
15438 F:      Documentation/devicetree/bindings/sound/samsung*
15439 F:      sound/soc/samsung/
15440
15441 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15442 M:      Krzysztof Kozlowski <krzk@kernel.org>
15443 L:      linux-crypto@vger.kernel.org
15444 L:      linux-samsung-soc@vger.kernel.org
15445 S:      Maintained
15446 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15447 F:      drivers/crypto/exynos-rng.c
15448
15449 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15450 M:      Łukasz Stelmach <l.stelmach@samsung.com>
15451 L:      linux-samsung-soc@vger.kernel.org
15452 S:      Maintained
15453 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15454 F:      drivers/char/hw_random/exynos-trng.c
15455
15456 SAMSUNG FRAMEBUFFER DRIVER
15457 M:      Jingoo Han <jingoohan1@gmail.com>
15458 L:      linux-fbdev@vger.kernel.org
15459 S:      Maintained
15460 F:      drivers/video/fbdev/s3c-fb.c
15461
15462 SAMSUNG LAPTOP DRIVER
15463 M:      Corentin Chary <corentin.chary@gmail.com>
15464 L:      platform-driver-x86@vger.kernel.org
15465 S:      Maintained
15466 F:      drivers/platform/x86/samsung-laptop.c
15467
15468 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15469 M:      Krzysztof Kozlowski <krzk@kernel.org>
15470 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15471 L:      linux-kernel@vger.kernel.org
15472 L:      linux-samsung-soc@vger.kernel.org
15473 S:      Supported
15474 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15475 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15476 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15477 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15478 F:      drivers/clk/clk-s2mps11.c
15479 F:      drivers/mfd/sec*.c
15480 F:      drivers/regulator/s2m*.c
15481 F:      drivers/regulator/s5m*.c
15482 F:      drivers/rtc/rtc-s5m.c
15483 F:      include/linux/mfd/samsung/
15484
15485 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15486 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
15487 L:      linux-media@vger.kernel.org
15488 L:      linux-samsung-soc@vger.kernel.org
15489 S:      Maintained
15490 F:      drivers/media/platform/s3c-camif/
15491 F:      include/media/drv-intf/s3c_camif.h
15492
15493 SAMSUNG S3FWRN5 NFC DRIVER
15494 M:      Krzysztof Kozlowski <krzk@kernel.org>
15495 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
15496 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
15497 S:      Maintained
15498 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
15499 F:      drivers/nfc/s3fwrn5
15500
15501 SAMSUNG S5C73M3 CAMERA DRIVER
15502 M:      Andrzej Hajda <a.hajda@samsung.com>
15503 L:      linux-media@vger.kernel.org
15504 S:      Supported
15505 F:      drivers/media/i2c/s5c73m3/*
15506
15507 SAMSUNG S5K5BAF CAMERA DRIVER
15508 M:      Andrzej Hajda <a.hajda@samsung.com>
15509 L:      linux-media@vger.kernel.org
15510 S:      Supported
15511 F:      drivers/media/i2c/s5k5baf.c
15512
15513 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15514 M:      Krzysztof Kozlowski <krzk@kernel.org>
15515 M:      Vladimir Zapolskiy <vz@mleia.com>
15516 M:      Kamil Konieczny <k.konieczny@samsung.com>
15517 L:      linux-crypto@vger.kernel.org
15518 L:      linux-samsung-soc@vger.kernel.org
15519 S:      Maintained
15520 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15521 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15522 F:      drivers/crypto/s5p-sss.c
15523
15524 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15525 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15526 L:      linux-media@vger.kernel.org
15527 S:      Supported
15528 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15529 F:      drivers/media/platform/exynos4-is/
15530
15531 SAMSUNG SOC CLOCK DRIVERS
15532 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15533 M:      Tomasz Figa <tomasz.figa@gmail.com>
15534 M:      Chanwoo Choi <cw00.choi@samsung.com>
15535 L:      linux-samsung-soc@vger.kernel.org
15536 S:      Supported
15537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15538 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15539 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15540 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15541 F:      drivers/clk/samsung/
15542 F:      include/dt-bindings/clock/exynos*.h
15543 F:      include/linux/clk/samsung.h
15544 F:      include/linux/platform_data/clk-s3c2410.h
15545
15546 SAMSUNG SPI DRIVERS
15547 M:      Krzysztof Kozlowski <krzk@kernel.org>
15548 M:      Andi Shyti <andi@etezian.org>
15549 L:      linux-spi@vger.kernel.org
15550 L:      linux-samsung-soc@vger.kernel.org
15551 S:      Maintained
15552 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15553 F:      drivers/spi/spi-s3c*
15554 F:      include/linux/platform_data/spi-s3c64xx.h
15555 F:      include/linux/spi/s3c24xx-fiq.h
15556
15557 SAMSUNG SXGBE DRIVERS
15558 M:      Byungho An <bh74.an@samsung.com>
15559 L:      netdev@vger.kernel.org
15560 S:      Supported
15561 F:      drivers/net/ethernet/samsung/sxgbe/
15562
15563 SAMSUNG THERMAL DRIVER
15564 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15565 L:      linux-pm@vger.kernel.org
15566 L:      linux-samsung-soc@vger.kernel.org
15567 S:      Supported
15568 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15569 F:      drivers/thermal/samsung/
15570
15571 SAMSUNG USB2 PHY DRIVER
15572 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15573 L:      linux-kernel@vger.kernel.org
15574 S:      Supported
15575 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15576 F:      Documentation/driver-api/phy/samsung-usb2.rst
15577 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15578 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15579 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15580 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15581 F:      drivers/phy/samsung/phy-samsung-usb2.c
15582 F:      drivers/phy/samsung/phy-samsung-usb2.h
15583
15584 SC1200 WDT DRIVER
15585 M:      Zwane Mwaikambo <zwanem@gmail.com>
15586 S:      Maintained
15587 F:      drivers/watchdog/sc1200wdt.c
15588
15589 SCHEDULER
15590 M:      Ingo Molnar <mingo@redhat.com>
15591 M:      Peter Zijlstra <peterz@infradead.org>
15592 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15593 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15594 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15595 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15596 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15597 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15598 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
15599 L:      linux-kernel@vger.kernel.org
15600 S:      Maintained
15601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15602 F:      include/linux/preempt.h
15603 F:      include/linux/sched.h
15604 F:      include/linux/wait.h
15605 F:      include/uapi/linux/sched.h
15606 F:      kernel/sched/
15607
15608 SCR24X CHIP CARD INTERFACE DRIVER
15609 M:      Lubomir Rintel <lkundrak@v3.sk>
15610 S:      Supported
15611 F:      drivers/char/pcmcia/scr24x_cs.c
15612
15613 SCSI CDROM DRIVER
15614 M:      Jens Axboe <axboe@kernel.dk>
15615 L:      linux-scsi@vger.kernel.org
15616 S:      Maintained
15617 W:      http://www.kernel.dk
15618 F:      drivers/scsi/sr*
15619
15620 SCSI RDMA PROTOCOL (SRP) INITIATOR
15621 M:      Bart Van Assche <bvanassche@acm.org>
15622 L:      linux-rdma@vger.kernel.org
15623 S:      Supported
15624 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15625 F:      drivers/infiniband/ulp/srp/
15626 F:      include/scsi/srp.h
15627
15628 SCSI RDMA PROTOCOL (SRP) TARGET
15629 M:      Bart Van Assche <bvanassche@acm.org>
15630 L:      linux-rdma@vger.kernel.org
15631 L:      target-devel@vger.kernel.org
15632 S:      Supported
15633 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15634 F:      drivers/infiniband/ulp/srpt/
15635
15636 SCSI SG DRIVER
15637 M:      Doug Gilbert <dgilbert@interlog.com>
15638 L:      linux-scsi@vger.kernel.org
15639 S:      Maintained
15640 W:      http://sg.danny.cz/sg
15641 F:      Documentation/scsi/scsi-generic.rst
15642 F:      drivers/scsi/sg.c
15643 F:      include/scsi/sg.h
15644
15645 SCSI SUBSYSTEM
15646 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15647 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15648 L:      linux-scsi@vger.kernel.org
15649 S:      Maintained
15650 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15653 F:      Documentation/devicetree/bindings/scsi/
15654 F:      drivers/scsi/
15655 F:      include/scsi/
15656
15657 SCSI TAPE DRIVER
15658 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15659 L:      linux-scsi@vger.kernel.org
15660 S:      Maintained
15661 F:      Documentation/scsi/st.rst
15662 F:      drivers/scsi/st.*
15663 F:      drivers/scsi/st_*.h
15664
15665 SCSI TARGET SUBSYSTEM
15666 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15667 L:      linux-scsi@vger.kernel.org
15668 L:      target-devel@vger.kernel.org
15669 S:      Supported
15670 W:      http://www.linux-iscsi.org
15671 Q:      https://patchwork.kernel.org/project/target-devel/list/
15672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15673 F:      Documentation/target/
15674 F:      drivers/target/
15675 F:      include/target/
15676
15677 SCTP PROTOCOL
15678 M:      Vlad Yasevich <vyasevich@gmail.com>
15679 M:      Neil Horman <nhorman@tuxdriver.com>
15680 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15681 L:      linux-sctp@vger.kernel.org
15682 S:      Maintained
15683 W:      http://lksctp.sourceforge.net
15684 F:      Documentation/networking/sctp.rst
15685 F:      include/linux/sctp.h
15686 F:      include/net/sctp/
15687 F:      include/uapi/linux/sctp.h
15688 F:      net/sctp/
15689
15690 SCx200 CPU SUPPORT
15691 M:      Jim Cromie <jim.cromie@gmail.com>
15692 S:      Odd Fixes
15693 F:      Documentation/i2c/busses/scx200_acb.rst
15694 F:      arch/x86/platform/scx200/
15695 F:      drivers/i2c/busses/scx200*
15696 F:      drivers/mtd/maps/scx200_docflash.c
15697 F:      drivers/watchdog/scx200_wdt.c
15698 F:      include/linux/scx200.h
15699
15700 SCx200 GPIO DRIVER
15701 M:      Jim Cromie <jim.cromie@gmail.com>
15702 S:      Maintained
15703 F:      drivers/char/scx200_gpio.c
15704 F:      include/linux/scx200_gpio.h
15705
15706 SCx200 HRT CLOCKSOURCE DRIVER
15707 M:      Jim Cromie <jim.cromie@gmail.com>
15708 S:      Maintained
15709 F:      drivers/clocksource/scx200_hrt.c
15710
15711 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15712 M:      Sascha Sommer <saschasommer@freenet.de>
15713 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15714 S:      Maintained
15715 F:      drivers/mmc/host/sdricoh_cs.c
15716
15717 SECO BOARDS CEC DRIVER
15718 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15719 S:      Maintained
15720 F:      drivers/media/cec/platform/seco/seco-cec.c
15721 F:      drivers/media/cec/platform/seco/seco-cec.h
15722
15723 SECURE COMPUTING
15724 M:      Kees Cook <keescook@chromium.org>
15725 R:      Andy Lutomirski <luto@amacapital.net>
15726 R:      Will Drewry <wad@chromium.org>
15727 S:      Supported
15728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15729 F:      Documentation/userspace-api/seccomp_filter.rst
15730 F:      include/linux/seccomp.h
15731 F:      include/uapi/linux/seccomp.h
15732 F:      kernel/seccomp.c
15733 F:      tools/testing/selftests/kselftest_harness.h
15734 F:      tools/testing/selftests/seccomp/*
15735 K:      \bsecure_computing
15736 K:      \bTIF_SECCOMP\b
15737
15738 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15739 M:      Al Cooper <alcooperx@gmail.com>
15740 L:      linux-mmc@vger.kernel.org
15741 L:      bcm-kernel-feedback-list@broadcom.com
15742 S:      Maintained
15743 F:      drivers/mmc/host/sdhci-brcmstb*
15744
15745 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15746 M:      Adrian Hunter <adrian.hunter@intel.com>
15747 L:      linux-mmc@vger.kernel.org
15748 S:      Maintained
15749 F:      drivers/mmc/host/sdhci*
15750 F:      include/linux/mmc/sdhci*
15751
15752 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15753 M:      Eugen Hristev <eugen.hristev@microchip.com>
15754 L:      linux-mmc@vger.kernel.org
15755 S:      Supported
15756 F:      drivers/mmc/host/sdhci-of-at91.c
15757
15758 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15759 M:      Ben Dooks <ben-linux@fluff.org>
15760 M:      Jaehoon Chung <jh80.chung@samsung.com>
15761 L:      linux-mmc@vger.kernel.org
15762 S:      Maintained
15763 F:      drivers/mmc/host/sdhci-s3c*
15764
15765 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15766 M:      Viresh Kumar <vireshk@kernel.org>
15767 L:      linux-mmc@vger.kernel.org
15768 S:      Maintained
15769 F:      drivers/mmc/host/sdhci-spear.c
15770
15771 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15772 M:      Kishon Vijay Abraham I <kishon@ti.com>
15773 L:      linux-mmc@vger.kernel.org
15774 S:      Maintained
15775 F:      drivers/mmc/host/sdhci-omap.c
15776
15777 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15778 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15779 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15780 L:      linux-block@vger.kernel.org
15781 S:      Supported
15782 F:      block/opal_proto.h
15783 F:      block/sed*
15784 F:      include/linux/sed*
15785 F:      include/uapi/linux/sed*
15786
15787 SECURITY CONTACT
15788 M:      Security Officers <security@kernel.org>
15789 S:      Supported
15790 F:      Documentation/admin-guide/security-bugs.rst
15791
15792 SECURITY SUBSYSTEM
15793 M:      James Morris <jmorris@namei.org>
15794 M:      "Serge E. Hallyn" <serge@hallyn.com>
15795 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15796 S:      Supported
15797 W:      http://kernsec.org/
15798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15799 F:      security/
15800 X:      security/selinux/
15801
15802 SELINUX SECURITY MODULE
15803 M:      Paul Moore <paul@paul-moore.com>
15804 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15805 M:      Eric Paris <eparis@parisplace.org>
15806 L:      selinux@vger.kernel.org
15807 S:      Supported
15808 W:      https://selinuxproject.org
15809 W:      https://github.com/SELinuxProject
15810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15811 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15812 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15813 F:      Documentation/admin-guide/LSM/SELinux.rst
15814 F:      include/trace/events/avc.h
15815 F:      include/uapi/linux/selinux_netlink.h
15816 F:      scripts/selinux/
15817 F:      security/selinux/
15818
15819 SENSABLE PHANTOM
15820 M:      Jiri Slaby <jirislaby@kernel.org>
15821 S:      Maintained
15822 F:      drivers/misc/phantom.c
15823 F:      include/uapi/linux/phantom.h
15824
15825 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
15826 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
15827 S:      Maintained
15828 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
15829 F:      drivers/iio/chemical/scd30.h
15830 F:      drivers/iio/chemical/scd30_core.c
15831 F:      drivers/iio/chemical/scd30_i2c.c
15832 F:      drivers/iio/chemical/scd30_serial.c
15833
15834 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15835 M:      Tomasz Duszynski <tduszyns@gmail.com>
15836 S:      Maintained
15837 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15838 F:      drivers/iio/chemical/sps30.c
15839
15840 SERIAL DEVICE BUS
15841 M:      Rob Herring <robh@kernel.org>
15842 L:      linux-serial@vger.kernel.org
15843 S:      Maintained
15844 F:      Documentation/devicetree/bindings/serial/serial.yaml
15845 F:      drivers/tty/serdev/
15846 F:      include/linux/serdev.h
15847
15848 SERIAL DRIVERS
15849 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15850 L:      linux-serial@vger.kernel.org
15851 S:      Maintained
15852 F:      Documentation/devicetree/bindings/serial/
15853 F:      drivers/tty/serial/
15854
15855 SERIAL IR RECEIVER
15856 M:      Sean Young <sean@mess.org>
15857 L:      linux-media@vger.kernel.org
15858 S:      Maintained
15859 F:      drivers/media/rc/serial_ir.c
15860
15861 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15862 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15863 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15864 S:      Maintained
15865 F:      Documentation/devicetree/bindings/slimbus/
15866 F:      drivers/slimbus/
15867 F:      include/linux/slimbus.h
15868
15869 SFC NETWORK DRIVER
15870 M:      Edward Cree <ecree.xilinx@gmail.com>
15871 M:      Martin Habets <habetsm.xilinx@gmail.com>
15872 L:      netdev@vger.kernel.org
15873 S:      Supported
15874 F:      drivers/net/ethernet/sfc/
15875
15876 SFF/SFP/SFP+ MODULE SUPPORT
15877 M:      Russell King <linux@armlinux.org.uk>
15878 L:      netdev@vger.kernel.org
15879 S:      Maintained
15880 F:      drivers/net/phy/phylink.c
15881 F:      drivers/net/phy/sfp*
15882 F:      include/linux/mdio/mdio-i2c.h
15883 F:      include/linux/phylink.h
15884 F:      include/linux/sfp.h
15885 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)
15886
15887 SGI GRU DRIVER
15888 M:      Dimitri Sivanich <sivanich@sgi.com>
15889 S:      Maintained
15890 F:      drivers/misc/sgi-gru/
15891
15892 SGI XP/XPC/XPNET DRIVER
15893 M:      Cliff Whickman <cpw@sgi.com>
15894 M:      Robin Holt <robinmholt@gmail.com>
15895 S:      Maintained
15896 F:      drivers/misc/sgi-xp/
15897
15898 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15899 M:      Karsten Graul <kgraul@linux.ibm.com>
15900 L:      linux-s390@vger.kernel.org
15901 S:      Supported
15902 W:      http://www.ibm.com/developerworks/linux/linux390/
15903 F:      net/smc/
15904
15905 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15906 M:      Linus Walleij <linus.walleij@linaro.org>
15907 L:      linux-iio@vger.kernel.org
15908 S:      Maintained
15909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15910 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15911 F:      drivers/iio/light/gp2ap002.c
15912
15913 SHARP RJ54N1CB0C SENSOR DRIVER
15914 M:      Jacopo Mondi <jacopo@jmondi.org>
15915 L:      linux-media@vger.kernel.org
15916 S:      Odd fixes
15917 T:      git git://linuxtv.org/media_tree.git
15918 F:      drivers/media/i2c/rj54n1cb0c.c
15919 F:      include/media/i2c/rj54n1cb0c.h
15920
15921 SH_VOU V4L2 OUTPUT DRIVER
15922 L:      linux-media@vger.kernel.org
15923 S:      Orphan
15924 F:      drivers/media/platform/sh_vou.c
15925 F:      include/media/drv-intf/sh_vou.h
15926
15927 SI2157 MEDIA DRIVER
15928 M:      Antti Palosaari <crope@iki.fi>
15929 L:      linux-media@vger.kernel.org
15930 S:      Maintained
15931 W:      https://linuxtv.org
15932 W:      http://palosaari.fi/linux/
15933 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15934 T:      git git://linuxtv.org/anttip/media_tree.git
15935 F:      drivers/media/tuners/si2157*
15936
15937 SI2165 MEDIA DRIVER
15938 M:      Matthias Schwarzott <zzam@gentoo.org>
15939 L:      linux-media@vger.kernel.org
15940 S:      Maintained
15941 W:      https://linuxtv.org
15942 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15943 F:      drivers/media/dvb-frontends/si2165*
15944
15945 SI2168 MEDIA DRIVER
15946 M:      Antti Palosaari <crope@iki.fi>
15947 L:      linux-media@vger.kernel.org
15948 S:      Maintained
15949 W:      https://linuxtv.org
15950 W:      http://palosaari.fi/linux/
15951 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15952 T:      git git://linuxtv.org/anttip/media_tree.git
15953 F:      drivers/media/dvb-frontends/si2168*
15954
15955 SI470X FM RADIO RECEIVER I2C DRIVER
15956 M:      Hans Verkuil <hverkuil@xs4all.nl>
15957 L:      linux-media@vger.kernel.org
15958 S:      Odd Fixes
15959 W:      https://linuxtv.org
15960 T:      git git://linuxtv.org/media_tree.git
15961 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15962
15963 SI470X FM RADIO RECEIVER USB DRIVER
15964 M:      Hans Verkuil <hverkuil@xs4all.nl>
15965 L:      linux-media@vger.kernel.org
15966 S:      Maintained
15967 W:      https://linuxtv.org
15968 T:      git git://linuxtv.org/media_tree.git
15969 F:      drivers/media/radio/si470x/radio-si470x-common.c
15970 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15971 F:      drivers/media/radio/si470x/radio-si470x.h
15972
15973 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15974 M:      Eduardo Valentin <edubezval@gmail.com>
15975 L:      linux-media@vger.kernel.org
15976 S:      Odd Fixes
15977 W:      https://linuxtv.org
15978 T:      git git://linuxtv.org/media_tree.git
15979 F:      drivers/media/radio/si4713/si4713.?
15980
15981 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15982 M:      Eduardo Valentin <edubezval@gmail.com>
15983 L:      linux-media@vger.kernel.org
15984 S:      Odd Fixes
15985 W:      https://linuxtv.org
15986 T:      git git://linuxtv.org/media_tree.git
15987 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15988
15989 SI4713 FM RADIO TRANSMITTER USB DRIVER
15990 M:      Hans Verkuil <hverkuil@xs4all.nl>
15991 L:      linux-media@vger.kernel.org
15992 S:      Maintained
15993 W:      https://linuxtv.org
15994 T:      git git://linuxtv.org/media_tree.git
15995 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15996
15997 SIANO DVB DRIVER
15998 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15999 L:      linux-media@vger.kernel.org
16000 S:      Odd fixes
16001 W:      https://linuxtv.org
16002 T:      git git://linuxtv.org/media_tree.git
16003 F:      drivers/media/common/siano/
16004 F:      drivers/media/mmc/siano/
16005 F:      drivers/media/usb/siano/
16006 F:      drivers/media/usb/siano/
16007
16008 SIFIVE DRIVERS
16009 M:      Palmer Dabbelt <palmer@dabbelt.com>
16010 M:      Paul Walmsley <paul.walmsley@sifive.com>
16011 L:      linux-riscv@lists.infradead.org
16012 S:      Supported
16013 T:      git git://github.com/sifive/riscv-linux.git
16014 N:      sifive
16015 K:      [^@]sifive
16016
16017 SIFIVE FU540 SYSTEM-ON-CHIP
16018 M:      Paul Walmsley <paul.walmsley@sifive.com>
16019 M:      Palmer Dabbelt <palmer@dabbelt.com>
16020 L:      linux-riscv@lists.infradead.org
16021 S:      Supported
16022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16023 N:      fu540
16024 K:      fu540
16025
16026 SIFIVE PDMA DRIVER
16027 M:      Green Wan <green.wan@sifive.com>
16028 S:      Maintained
16029 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16030 F:      drivers/dma/sf-pdma/
16031
16032 SILEAD TOUCHSCREEN DRIVER
16033 M:      Hans de Goede <hdegoede@redhat.com>
16034 L:      linux-input@vger.kernel.org
16035 L:      platform-driver-x86@vger.kernel.org
16036 S:      Maintained
16037 F:      drivers/input/touchscreen/silead.c
16038 F:      drivers/platform/x86/touchscreen_dmi.c
16039
16040 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16041 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16042 S:      Supported
16043 F:      drivers/staging/wfx/
16044
16045 SILICON MOTION SM712 FRAME BUFFER DRIVER
16046 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16047 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16048 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16049 L:      linux-fbdev@vger.kernel.org
16050 S:      Maintained
16051 F:      Documentation/fb/sm712fb.rst
16052 F:      drivers/video/fbdev/sm712*
16053
16054 SIMPLE FIRMWARE INTERFACE (SFI)
16055 S:      Obsolete
16056 W:      http://simplefirmware.org/
16057 F:      arch/x86/platform/sfi/
16058 F:      drivers/sfi/
16059 F:      include/linux/sfi*.h
16060
16061 SIMPLEFB FB DRIVER
16062 M:      Hans de Goede <hdegoede@redhat.com>
16063 L:      linux-fbdev@vger.kernel.org
16064 S:      Maintained
16065 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16066 F:      drivers/video/fbdev/simplefb.c
16067 F:      include/linux/platform_data/simplefb.h
16068
16069 SIMTEC EB110ATX (Chalice CATS)
16070 M:      Simtec Linux Team <linux@simtec.co.uk>
16071 S:      Supported
16072 W:      http://www.simtec.co.uk/products/EB110ATX/
16073
16074 SIMTEC EB2410ITX (BAST)
16075 M:      Simtec Linux Team <linux@simtec.co.uk>
16076 S:      Supported
16077 W:      http://www.simtec.co.uk/products/EB2410ITX/
16078 F:      arch/arm/mach-s3c/bast-ide.c
16079 F:      arch/arm/mach-s3c/bast-irq.c
16080 F:      arch/arm/mach-s3c/mach-bast.c
16081
16082 SIOX
16083 M:      Thorsten Scherer <t.scherer@eckelmann.de>
16084 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16085 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16086 S:      Supported
16087 F:      drivers/gpio/gpio-siox.c
16088 F:      drivers/siox/*
16089 F:      include/trace/events/siox.h
16090
16091 SIPHASH PRF ROUTINES
16092 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16093 S:      Maintained
16094 F:      include/linux/siphash.h
16095 F:      lib/siphash.c
16096 F:      lib/test_siphash.c
16097
16098 SIS 190 ETHERNET DRIVER
16099 M:      Francois Romieu <romieu@fr.zoreil.com>
16100 L:      netdev@vger.kernel.org
16101 S:      Maintained
16102 F:      drivers/net/ethernet/sis/sis190.c
16103
16104 SIS 900/7016 FAST ETHERNET DRIVER
16105 M:      Daniele Venzano <venza@brownhat.org>
16106 L:      netdev@vger.kernel.org
16107 S:      Maintained
16108 W:      http://www.brownhat.org/sis900.html
16109 F:      drivers/net/ethernet/sis/sis900.*
16110
16111 SIS FRAMEBUFFER DRIVER
16112 M:      Thomas Winischhofer <thomas@winischhofer.net>
16113 S:      Maintained
16114 W:      http://www.winischhofer.net/linuxsisvga.shtml
16115 F:      Documentation/fb/sisfb.rst
16116 F:      drivers/video/fbdev/sis/
16117 F:      include/video/sisfb.h
16118
16119 SIS I2C TOUCHSCREEN DRIVER
16120 M:      Mika Penttilä <mika.penttila@nextfour.com>
16121 L:      linux-input@vger.kernel.org
16122 S:      Maintained
16123 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16124 F:      drivers/input/touchscreen/sis_i2c.c
16125
16126 SIS USB2VGA DRIVER
16127 M:      Thomas Winischhofer <thomas@winischhofer.net>
16128 S:      Maintained
16129 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16130 F:      drivers/usb/misc/sisusbvga/
16131
16132 SLAB ALLOCATOR
16133 M:      Christoph Lameter <cl@linux.com>
16134 M:      Pekka Enberg <penberg@kernel.org>
16135 M:      David Rientjes <rientjes@google.com>
16136 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
16137 M:      Andrew Morton <akpm@linux-foundation.org>
16138 L:      linux-mm@kvack.org
16139 S:      Maintained
16140 F:      include/linux/sl?b*.h
16141 F:      mm/sl?b*
16142
16143 SLEEPABLE READ-COPY UPDATE (SRCU)
16144 M:      Lai Jiangshan <jiangshanlai@gmail.com>
16145 M:      "Paul E. McKenney" <paulmck@kernel.org>
16146 M:      Josh Triplett <josh@joshtriplett.org>
16147 R:      Steven Rostedt <rostedt@goodmis.org>
16148 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16149 L:      rcu@vger.kernel.org
16150 S:      Supported
16151 W:      http://www.rdrop.com/users/paulmck/RCU/
16152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16153 F:      include/linux/srcu*.h
16154 F:      kernel/rcu/srcu*.c
16155
16156 SMACK SECURITY MODULE
16157 M:      Casey Schaufler <casey@schaufler-ca.com>
16158 L:      linux-security-module@vger.kernel.org
16159 S:      Maintained
16160 W:      http://schaufler-ca.com
16161 T:      git git://github.com/cschaufler/smack-next
16162 F:      Documentation/admin-guide/LSM/Smack.rst
16163 F:      security/smack/
16164
16165 SMC91x ETHERNET DRIVER
16166 M:      Nicolas Pitre <nico@fluxnic.net>
16167 S:      Odd Fixes
16168 F:      drivers/net/ethernet/smsc/smc91x.*
16169
16170 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
16171 M:      Mark Rutland <mark.rutland@arm.com>
16172 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
16173 M:      Sudeep Holla <sudeep.holla@arm.com>
16174 L:      linux-arm-kernel@lists.infradead.org
16175 S:      Maintained
16176 F:      drivers/firmware/smccc/
16177 F:      include/linux/arm-smccc.h
16178
16179 SMM665 HARDWARE MONITOR DRIVER
16180 M:      Guenter Roeck <linux@roeck-us.net>
16181 L:      linux-hwmon@vger.kernel.org
16182 S:      Maintained
16183 F:      Documentation/hwmon/smm665.rst
16184 F:      drivers/hwmon/smm665.c
16185
16186 SMSC EMC2103 HARDWARE MONITOR DRIVER
16187 M:      Steve Glendinning <steve.glendinning@shawell.net>
16188 L:      linux-hwmon@vger.kernel.org
16189 S:      Maintained
16190 F:      Documentation/hwmon/emc2103.rst
16191 F:      drivers/hwmon/emc2103.c
16192
16193 SMSC SCH5627 HARDWARE MONITOR DRIVER
16194 M:      Hans de Goede <hdegoede@redhat.com>
16195 L:      linux-hwmon@vger.kernel.org
16196 S:      Supported
16197 F:      Documentation/hwmon/sch5627.rst
16198 F:      drivers/hwmon/sch5627.c
16199
16200 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16201 M:      Steve Glendinning <steve.glendinning@shawell.net>
16202 L:      linux-fbdev@vger.kernel.org
16203 S:      Maintained
16204 F:      drivers/video/fbdev/smscufx.c
16205
16206 SMSC47B397 HARDWARE MONITOR DRIVER
16207 M:      Jean Delvare <jdelvare@suse.com>
16208 L:      linux-hwmon@vger.kernel.org
16209 S:      Maintained
16210 F:      Documentation/hwmon/smsc47b397.rst
16211 F:      drivers/hwmon/smsc47b397.c
16212
16213 SMSC911x ETHERNET DRIVER
16214 M:      Steve Glendinning <steve.glendinning@shawell.net>
16215 L:      netdev@vger.kernel.org
16216 S:      Maintained
16217 F:      drivers/net/ethernet/smsc/smsc911x.*
16218 F:      include/linux/smsc911x.h
16219
16220 SMSC9420 PCI ETHERNET DRIVER
16221 M:      Steve Glendinning <steve.glendinning@shawell.net>
16222 L:      netdev@vger.kernel.org
16223 S:      Maintained
16224 F:      drivers/net/ethernet/smsc/smsc9420.*
16225
16226 SOCIONEXT (SNI) AVE NETWORK DRIVER
16227 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16228 L:      netdev@vger.kernel.org
16229 S:      Maintained
16230 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16231 F:      drivers/net/ethernet/socionext/sni_ave.c
16232
16233 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16234 M:      Jassi Brar <jaswinder.singh@linaro.org>
16235 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
16236 L:      netdev@vger.kernel.org
16237 S:      Maintained
16238 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
16239 F:      drivers/net/ethernet/socionext/netsec.c
16240
16241 SOCIONEXT (SNI) Synquacer SPI DRIVER
16242 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
16243 M:      Jassi Brar <jaswinder.singh@linaro.org>
16244 L:      linux-spi@vger.kernel.org
16245 S:      Maintained
16246 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
16247 F:      drivers/spi/spi-synquacer.c
16248
16249 SOCIONEXT SYNQUACER I2C DRIVER
16250 M:      Ard Biesheuvel <ardb@kernel.org>
16251 L:      linux-i2c@vger.kernel.org
16252 S:      Maintained
16253 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16254 F:      drivers/i2c/busses/i2c-synquacer.c
16255
16256 SOCIONEXT UNIPHIER SOUND DRIVER
16257 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16258 S:      Orphan
16259 F:      sound/soc/uniphier/
16260
16261 SOEKRIS NET48XX LED SUPPORT
16262 M:      Chris Boot <bootc@bootc.net>
16263 S:      Maintained
16264 F:      drivers/leds/leds-net48xx.c
16265
16266 SOFT-IWARP DRIVER (siw)
16267 M:      Bernard Metzler <bmt@zurich.ibm.com>
16268 L:      linux-rdma@vger.kernel.org
16269 S:      Supported
16270 F:      drivers/infiniband/sw/siw/
16271 F:      include/uapi/rdma/siw-abi.h
16272
16273 SOFT-ROCE DRIVER (rxe)
16274 M:      Zhu Yanjun <yanjunz@nvidia.com>
16275 L:      linux-rdma@vger.kernel.org
16276 S:      Supported
16277 F:      drivers/infiniband/sw/rxe/
16278 F:      include/uapi/rdma/rdma_user_rxe.h
16279
16280 SOFTLOGIC 6x10 MPEG CODEC
16281 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16282 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16283 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16284 M:      Ismael Luceno <ismael@iodev.co.uk>
16285 L:      linux-media@vger.kernel.org
16286 S:      Supported
16287 F:      drivers/media/pci/solo6x10/
16288
16289 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16290 M:      James Morse <james.morse@arm.com>
16291 L:      linux-arm-kernel@lists.infradead.org
16292 S:      Maintained
16293 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
16294 F:      drivers/firmware/arm_sdei.c
16295 F:      include/linux/arm_sdei.h
16296 F:      include/uapi/linux/arm_sdei.h
16297
16298 SOFTWARE RAID (Multiple Disks) SUPPORT
16299 M:      Song Liu <song@kernel.org>
16300 L:      linux-raid@vger.kernel.org
16301 S:      Supported
16302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16303 F:      drivers/md/Kconfig
16304 F:      drivers/md/Makefile
16305 F:      drivers/md/md*
16306 F:      drivers/md/raid*
16307 F:      include/linux/raid/
16308 F:      include/uapi/linux/raid/
16309
16310 SOLIDRUN CLEARFOG SUPPORT
16311 M:      Russell King <linux@armlinux.org.uk>
16312 S:      Maintained
16313 F:      arch/arm/boot/dts/armada-388-clearfog*
16314 F:      arch/arm/boot/dts/armada-38x-solidrun-*
16315
16316 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16317 M:      Russell King <linux@armlinux.org.uk>
16318 S:      Maintained
16319 F:      arch/arm/boot/dts/imx6*-cubox-i*
16320 F:      arch/arm/boot/dts/imx6*-hummingboard*
16321 F:      arch/arm/boot/dts/imx6*-sr-*
16322
16323 SONIC NETWORK DRIVER
16324 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
16325 L:      netdev@vger.kernel.org
16326 S:      Maintained
16327 F:      drivers/net/ethernet/natsemi/sonic.*
16328
16329 SONICS SILICON BACKPLANE DRIVER (SSB)
16330 M:      Michael Buesch <m@bues.ch>
16331 L:      linux-wireless@vger.kernel.org
16332 S:      Maintained
16333 F:      drivers/ssb/
16334 F:      include/linux/ssb/
16335
16336 SONY IMX214 SENSOR DRIVER
16337 M:      Ricardo Ribalda <ribalda@kernel.org>
16338 L:      linux-media@vger.kernel.org
16339 S:      Maintained
16340 T:      git git://linuxtv.org/media_tree.git
16341 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
16342 F:      drivers/media/i2c/imx214.c
16343
16344 SONY IMX219 SENSOR DRIVER
16345 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
16346 L:      linux-media@vger.kernel.org
16347 S:      Maintained
16348 T:      git git://linuxtv.org/media_tree.git
16349 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
16350 F:      drivers/media/i2c/imx219.c
16351
16352 SONY IMX258 SENSOR DRIVER
16353 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
16354 L:      linux-media@vger.kernel.org
16355 S:      Maintained
16356 T:      git git://linuxtv.org/media_tree.git
16357 F:      drivers/media/i2c/imx258.c
16358
16359 SONY IMX274 SENSOR DRIVER
16360 M:      Leon Luo <leonl@leopardimaging.com>
16361 L:      linux-media@vger.kernel.org
16362 S:      Maintained
16363 T:      git git://linuxtv.org/media_tree.git
16364 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
16365 F:      drivers/media/i2c/imx274.c
16366
16367 SONY IMX290 SENSOR DRIVER
16368 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16369 L:      linux-media@vger.kernel.org
16370 S:      Maintained
16371 T:      git git://linuxtv.org/media_tree.git
16372 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
16373 F:      drivers/media/i2c/imx290.c
16374
16375 SONY IMX319 SENSOR DRIVER
16376 M:      Bingbu Cao <bingbu.cao@intel.com>
16377 L:      linux-media@vger.kernel.org
16378 S:      Maintained
16379 T:      git git://linuxtv.org/media_tree.git
16380 F:      drivers/media/i2c/imx319.c
16381
16382 SONY IMX355 SENSOR DRIVER
16383 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
16384 L:      linux-media@vger.kernel.org
16385 S:      Maintained
16386 T:      git git://linuxtv.org/media_tree.git
16387 F:      drivers/media/i2c/imx355.c
16388
16389 SONY MEMORYSTICK SUBSYSTEM
16390 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16391 M:      Alex Dubov <oakad@yahoo.com>
16392 M:      Ulf Hansson <ulf.hansson@linaro.org>
16393 L:      linux-mmc@vger.kernel.org
16394 S:      Maintained
16395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
16396 F:      drivers/memstick/
16397 F:      include/linux/memstick.h
16398
16399 SONY VAIO CONTROL DEVICE DRIVER
16400 M:      Mattia Dongili <malattia@linux.it>
16401 L:      platform-driver-x86@vger.kernel.org
16402 S:      Maintained
16403 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
16404 F:      Documentation/admin-guide/laptops/sony-laptop.rst
16405 F:      drivers/char/sonypi.c
16406 F:      drivers/platform/x86/sony-laptop.c
16407 F:      include/linux/sony-laptop.h
16408
16409 SOUND
16410 M:      Jaroslav Kysela <perex@perex.cz>
16411 M:      Takashi Iwai <tiwai@suse.com>
16412 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16413 S:      Maintained
16414 W:      http://www.alsa-project.org/
16415 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
16416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16417 F:      Documentation/sound/
16418 F:      include/sound/
16419 F:      include/uapi/sound/
16420 F:      sound/
16421
16422 SOUND - COMPRESSED AUDIO
16423 M:      Vinod Koul <vkoul@kernel.org>
16424 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16425 S:      Supported
16426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16427 F:      Documentation/sound/designs/compress-offload.rst
16428 F:      include/sound/compress_driver.h
16429 F:      include/uapi/sound/compress_*
16430 F:      sound/core/compress_offload.c
16431 F:      sound/soc/soc-compress.c
16432
16433 SOUND - DMAENGINE HELPERS
16434 M:      Lars-Peter Clausen <lars@metafoo.de>
16435 S:      Supported
16436 F:      include/sound/dmaengine_pcm.h
16437 F:      sound/core/pcm_dmaengine.c
16438 F:      sound/soc/soc-generic-dmaengine-pcm.c
16439
16440 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
16441 M:      Liam Girdwood <lgirdwood@gmail.com>
16442 M:      Mark Brown <broonie@kernel.org>
16443 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16444 S:      Supported
16445 W:      http://alsa-project.org/main/index.php/ASoC
16446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16447 F:      Documentation/devicetree/bindings/sound/
16448 F:      Documentation/sound/soc/
16449 F:      include/dt-bindings/sound/
16450 F:      include/sound/soc*
16451 F:      sound/soc/
16452
16453 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16454 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16455 M:      Liam Girdwood <lgirdwood@gmail.com>
16456 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
16457 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
16458 M:      Daniel Baluta <daniel.baluta@nxp.com>
16459 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
16460 S:      Supported
16461 W:      https://github.com/thesofproject/linux/
16462 F:      sound/soc/sof/
16463
16464 SOUNDWIRE SUBSYSTEM
16465 M:      Vinod Koul <vkoul@kernel.org>
16466 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
16467 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16468 R:      Sanyog Kale <sanyog.r.kale@intel.com>
16469 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16470 S:      Supported
16471 F:      Documentation/driver-api/soundwire/
16472 F:      drivers/soundwire/
16473 F:      include/linux/soundwire/
16474
16475 SP2 MEDIA DRIVER
16476 M:      Olli Salonen <olli.salonen@iki.fi>
16477 L:      linux-media@vger.kernel.org
16478 S:      Maintained
16479 W:      https://linuxtv.org
16480 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16481 F:      drivers/media/dvb-frontends/sp2*
16482
16483 SPARC + UltraSPARC (sparc/sparc64)
16484 M:      "David S. Miller" <davem@davemloft.net>
16485 L:      sparclinux@vger.kernel.org
16486 S:      Maintained
16487 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16490 F:      arch/sparc/
16491 F:      drivers/sbus/
16492
16493 SPARC SERIAL DRIVERS
16494 M:      "David S. Miller" <davem@davemloft.net>
16495 L:      sparclinux@vger.kernel.org
16496 S:      Maintained
16497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16499 F:      drivers/tty/serial/suncore.c
16500 F:      drivers/tty/serial/sunhv.c
16501 F:      drivers/tty/serial/sunsab.c
16502 F:      drivers/tty/serial/sunsab.h
16503 F:      drivers/tty/serial/sunsu.c
16504 F:      drivers/tty/serial/sunzilog.c
16505 F:      drivers/tty/serial/sunzilog.h
16506 F:      drivers/tty/vcc.c
16507 F:      include/linux/sunserialcore.h
16508
16509 SPARSE CHECKER
16510 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
16511 L:      linux-sparse@vger.kernel.org
16512 S:      Maintained
16513 W:      https://sparse.docs.kernel.org/
16514 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16515 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16516 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16517 F:      include/linux/compiler.h
16518
16519 SPEAKUP CONSOLE SPEECH DRIVER
16520 M:      William Hubbs <w.d.hubbs@gmail.com>
16521 M:      Chris Brannon <chris@the-brannons.com>
16522 M:      Kirk Reiser <kirk@reisers.ca>
16523 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16524 L:      speakup@linux-speakup.org
16525 S:      Odd Fixes
16526 W:      http://www.linux-speakup.org/
16527 F:      drivers/accessibility/speakup/
16528
16529 SPEAR CLOCK FRAMEWORK SUPPORT
16530 M:      Viresh Kumar <vireshk@kernel.org>
16531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16532 S:      Maintained
16533 W:      http://www.st.com/spear
16534 F:      drivers/clk/spear/
16535
16536 SPEAR PLATFORM SUPPORT
16537 M:      Viresh Kumar <vireshk@kernel.org>
16538 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16540 S:      Maintained
16541 W:      http://www.st.com/spear
16542 F:      arch/arm/boot/dts/spear*
16543 F:      arch/arm/mach-spear/
16544
16545 SPI NOR SUBSYSTEM
16546 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
16547 L:      linux-mtd@lists.infradead.org
16548 S:      Maintained
16549 W:      http://www.linux-mtd.infradead.org/
16550 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16551 C:      irc://irc.oftc.net/mtd
16552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16553 F:      drivers/mtd/spi-nor/
16554 F:      include/linux/mtd/spi-nor.h
16555
16556 SPI SUBSYSTEM
16557 M:      Mark Brown <broonie@kernel.org>
16558 L:      linux-spi@vger.kernel.org
16559 S:      Maintained
16560 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16562 F:      Documentation/devicetree/bindings/spi/
16563 F:      Documentation/spi/
16564 F:      drivers/spi/
16565 F:      include/linux/spi/
16566 F:      include/uapi/linux/spi/
16567 F:      tools/spi/
16568
16569 SPIDERNET NETWORK DRIVER for CELL
16570 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16571 L:      netdev@vger.kernel.org
16572 S:      Supported
16573 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
16574 F:      drivers/net/ethernet/toshiba/spider_net*
16575
16576 SPMI SUBSYSTEM
16577 R:      Stephen Boyd <sboyd@kernel.org>
16578 L:      linux-arm-msm@vger.kernel.org
16579 F:      Documentation/devicetree/bindings/spmi/
16580 F:      drivers/spmi/
16581 F:      include/dt-bindings/spmi/spmi.h
16582 F:      include/linux/spmi.h
16583 F:      include/trace/events/spmi.h
16584
16585 SPU FILE SYSTEM
16586 M:      Jeremy Kerr <jk@ozlabs.org>
16587 L:      linuxppc-dev@lists.ozlabs.org
16588 S:      Supported
16589 W:      http://www.ibm.com/developerworks/power/cell/
16590 F:      Documentation/filesystems/spufs/spufs.rst
16591 F:      arch/powerpc/platforms/cell/spufs/
16592
16593 SQUASHFS FILE SYSTEM
16594 M:      Phillip Lougher <phillip@squashfs.org.uk>
16595 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16596 S:      Maintained
16597 W:      http://squashfs.org.uk
16598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16599 F:      Documentation/filesystems/squashfs.rst
16600 F:      fs/squashfs/
16601
16602 SRM (Alpha) environment access
16603 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16604 S:      Maintained
16605 F:      arch/alpha/kernel/srm_env.c
16606
16607 ST LSM6DSx IMU IIO DRIVER
16608 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16609 L:      linux-iio@vger.kernel.org
16610 S:      Maintained
16611 W:      http://www.st.com/
16612 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16613 F:      drivers/iio/imu/st_lsm6dsx/
16614
16615 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16616 M:      Mickael Guene <mickael.guene@st.com>
16617 L:      linux-media@vger.kernel.org
16618 S:      Maintained
16619 T:      git git://linuxtv.org/media_tree.git
16620 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16621 F:      drivers/media/i2c/st-mipid02.c
16622
16623 ST STM32 I2C/SMBUS DRIVER
16624 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16625 L:      linux-i2c@vger.kernel.org
16626 S:      Maintained
16627 F:      drivers/i2c/busses/i2c-stm32*
16628
16629 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16630 M:      Song Qiang <songqiang1304521@gmail.com>
16631 L:      linux-iio@vger.kernel.org
16632 S:      Maintained
16633 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16634 F:      drivers/iio/proximity/vl53l0x-i2c.c
16635
16636 STABLE BRANCH
16637 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16638 M:      Sasha Levin <sashal@kernel.org>
16639 L:      stable@vger.kernel.org
16640 S:      Supported
16641 F:      Documentation/process/stable-kernel-rules.rst
16642
16643 STAGING - ATOMISP DRIVER
16644 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16645 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16646 L:      linux-media@vger.kernel.org
16647 S:      Maintained
16648 F:      drivers/staging/media/atomisp/
16649
16650 STAGING - COMEDI
16651 M:      Ian Abbott <abbotti@mev.co.uk>
16652 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16653 S:      Odd Fixes
16654 F:      drivers/staging/comedi/
16655
16656 STAGING - FIELDBUS SUBSYSTEM
16657 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16658 S:      Maintained
16659 F:      drivers/staging/fieldbus/*
16660 F:      drivers/staging/fieldbus/Documentation/
16661
16662 STAGING - HMS ANYBUS-S BUS
16663 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16664 S:      Maintained
16665 F:      drivers/staging/fieldbus/anybuss/
16666
16667 STAGING - INDUSTRIAL IO
16668 M:      Jonathan Cameron <jic23@kernel.org>
16669 L:      linux-iio@vger.kernel.org
16670 S:      Odd Fixes
16671 F:      Documentation/devicetree/bindings/staging/iio/
16672 F:      drivers/staging/iio/
16673
16674 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16675 M:      Marc Dietrich <marvin24@gmx.de>
16676 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16677 L:      linux-tegra@vger.kernel.org
16678 S:      Maintained
16679 F:      drivers/staging/nvec/
16680
16681 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16682 M:      Jens Frederich <jfrederich@gmail.com>
16683 M:      Daniel Drake <dsd@laptop.org>
16684 M:      Jon Nettleton <jon.nettleton@gmail.com>
16685 S:      Maintained
16686 W:      http://wiki.laptop.org/go/DCON
16687 F:      drivers/staging/olpc_dcon/
16688
16689 STAGING - REALTEK RTL8188EU DRIVERS
16690 M:      Larry Finger <Larry.Finger@lwfinger.net>
16691 S:      Odd Fixes
16692 F:      drivers/staging/rtl8188eu/
16693
16694 STAGING - REALTEK RTL8712U DRIVERS
16695 M:      Larry Finger <Larry.Finger@lwfinger.net>
16696 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16697 S:      Odd Fixes
16698 F:      drivers/staging/rtl8712/
16699
16700 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16701 M:      Michael Hennerich <michael.hennerich@analog.com>
16702 L:      linux-fbdev@vger.kernel.org
16703 S:      Supported
16704 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16705 F:      drivers/staging/fbtft/fb_seps525.c
16706
16707 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16708 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16709 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16710 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16711 L:      linux-fbdev@vger.kernel.org
16712 S:      Maintained
16713 F:      drivers/staging/sm750fb/
16714
16715 STAGING - VIA VT665X DRIVERS
16716 M:      Forest Bond <forest@alittletooquiet.net>
16717 S:      Odd Fixes
16718 F:      drivers/staging/vt665?/
16719
16720 STAGING SUBSYSTEM
16721 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16722 L:      devel@driverdev.osuosl.org
16723 S:      Supported
16724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16725 F:      drivers/staging/
16726
16727 STARFIRE/DURALAN NETWORK DRIVER
16728 M:      Ion Badulescu <ionut@badula.org>
16729 S:      Odd Fixes
16730 F:      drivers/net/ethernet/adaptec/starfire*
16731
16732 STEC S1220 SKD DRIVER
16733 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16734 L:      linux-block@vger.kernel.org
16735 S:      Maintained
16736 F:      drivers/block/skd*[ch]
16737
16738 STI AUDIO (ASoC) DRIVERS
16739 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16740 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16741 S:      Maintained
16742 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16743 F:      sound/soc/sti/
16744
16745 STI CEC DRIVER
16746 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16747 S:      Maintained
16748 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16749 F:      drivers/media/cec/platform/sti/
16750
16751 STK1160 USB VIDEO CAPTURE DRIVER
16752 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16753 L:      linux-media@vger.kernel.org
16754 S:      Maintained
16755 T:      git git://linuxtv.org/media_tree.git
16756 F:      drivers/media/usb/stk1160/
16757
16758 STM32 AUDIO (ASoC) DRIVERS
16759 M:      Olivier Moysan <olivier.moysan@st.com>
16760 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16761 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16762 S:      Maintained
16763 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16764 F:      sound/soc/stm/
16765
16766 STM32 TIMER/LPTIMER DRIVERS
16767 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16768 S:      Maintained
16769 F:      Documentation/ABI/testing/*timer-stm32
16770 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16771 F:      drivers/*/stm32-*timer*
16772 F:      drivers/pwm/pwm-stm32*
16773 F:      include/linux/*/stm32-*tim*
16774
16775 STMMAC ETHERNET DRIVER
16776 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16777 M:      Alexandre Torgue <alexandre.torgue@st.com>
16778 M:      Jose Abreu <joabreu@synopsys.com>
16779 L:      netdev@vger.kernel.org
16780 S:      Supported
16781 W:      http://www.stlinux.com
16782 F:      Documentation/networking/device_drivers/ethernet/stmicro/
16783 F:      drivers/net/ethernet/stmicro/stmmac/
16784
16785 SUN3/3X
16786 M:      Sam Creasey <sammy@sammy.net>
16787 S:      Maintained
16788 W:      http://sammy.net/sun3/
16789 F:      arch/m68k/include/asm/sun3*
16790 F:      arch/m68k/kernel/*sun3*
16791 F:      arch/m68k/sun3*/
16792 F:      drivers/net/ethernet/i825xx/sun3*
16793
16794 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16795 M:      Hans de Goede <hdegoede@redhat.com>
16796 L:      linux-input@vger.kernel.org
16797 S:      Maintained
16798 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16799 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16800
16801 SUNDANCE NETWORK DRIVER
16802 M:      Denis Kirjanov <kda@linux-powerpc.org>
16803 L:      netdev@vger.kernel.org
16804 S:      Maintained
16805 F:      drivers/net/ethernet/dlink/sundance.c
16806
16807 SUPERH
16808 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16809 M:      Rich Felker <dalias@libc.org>
16810 L:      linux-sh@vger.kernel.org
16811 S:      Maintained
16812 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16813 F:      Documentation/sh/
16814 F:      arch/sh/
16815 F:      drivers/sh/
16816
16817 SUSPEND TO RAM
16818 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16819 M:      Len Brown <len.brown@intel.com>
16820 M:      Pavel Machek <pavel@ucw.cz>
16821 L:      linux-pm@vger.kernel.org
16822 S:      Supported
16823 B:      https://bugzilla.kernel.org
16824 F:      Documentation/power/
16825 F:      arch/x86/kernel/acpi/
16826 F:      drivers/base/power/
16827 F:      include/linux/freezer.h
16828 F:      include/linux/pm.h
16829 F:      include/linux/suspend.h
16830 F:      kernel/power/
16831
16832 SVGA HANDLING
16833 M:      Martin Mares <mj@ucw.cz>
16834 L:      linux-video@atrey.karlin.mff.cuni.cz
16835 S:      Maintained
16836 F:      Documentation/admin-guide/svga.rst
16837 F:      arch/x86/boot/video*
16838
16839 SWIOTLB SUBSYSTEM
16840 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16841 L:      iommu@lists.linux-foundation.org
16842 S:      Supported
16843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16844 F:      arch/*/kernel/pci-swiotlb.c
16845 F:      include/linux/swiotlb.h
16846 F:      kernel/dma/swiotlb.c
16847
16848 SWITCHDEV
16849 M:      Jiri Pirko <jiri@resnulli.us>
16850 M:      Ivan Vecera <ivecera@redhat.com>
16851 L:      netdev@vger.kernel.org
16852 S:      Supported
16853 F:      include/net/switchdev.h
16854 F:      net/switchdev/
16855
16856 SY8106A REGULATOR DRIVER
16857 M:      Icenowy Zheng <icenowy@aosc.io>
16858 S:      Maintained
16859 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16860 F:      drivers/regulator/sy8106a-regulator.c
16861
16862 SYNC FILE FRAMEWORK
16863 M:      Sumit Semwal <sumit.semwal@linaro.org>
16864 R:      Gustavo Padovan <gustavo@padovan.org>
16865 L:      linux-media@vger.kernel.org
16866 L:      dri-devel@lists.freedesktop.org
16867 S:      Maintained
16868 T:      git git://anongit.freedesktop.org/drm/drm-misc
16869 F:      Documentation/driver-api/sync_file.rst
16870 F:      drivers/dma-buf/dma-fence*
16871 F:      drivers/dma-buf/sw_sync.c
16872 F:      drivers/dma-buf/sync_*
16873 F:      include/linux/sync_file.h
16874 F:      include/uapi/linux/sync_file.h
16875
16876 SYNOPSYS ARC ARCHITECTURE
16877 M:      Vineet Gupta <vgupta@synopsys.com>
16878 L:      linux-snps-arc@lists.infradead.org
16879 S:      Supported
16880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16881 F:      Documentation/devicetree/bindings/arc/*
16882 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16883 F:      arch/arc/
16884 F:      drivers/clocksource/arc_timer.c
16885 F:      drivers/tty/serial/arc_uart.c
16886
16887 SYNOPSYS ARC HSDK SDP pll clock driver
16888 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16889 S:      Supported
16890 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16891 F:      drivers/clk/clk-hsdk-pll.c
16892
16893 SYNOPSYS ARC SDP clock driver
16894 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16895 S:      Supported
16896 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16897 F:      drivers/clk/axs10x/*
16898
16899 SYNOPSYS ARC SDP platform support
16900 M:      Alexey Brodkin <abrodkin@synopsys.com>
16901 S:      Supported
16902 F:      Documentation/devicetree/bindings/arc/axs10*
16903 F:      arch/arc/boot/dts/ax*
16904 F:      arch/arc/plat-axs10x
16905
16906 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16907 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16908 S:      Supported
16909 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16910 F:      drivers/reset/reset-axs10x.c
16911
16912 SYNOPSYS CREG GPIO DRIVER
16913 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16914 S:      Maintained
16915 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16916 F:      drivers/gpio/gpio-creg-snps.c
16917
16918 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16919 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16920 S:      Maintained
16921 F:      drivers/tty/serial/8250/8250_dw.c
16922 F:      drivers/tty/serial/8250/8250_dwlib.*
16923 F:      drivers/tty/serial/8250/8250_lpss.c
16924
16925 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16926 M:      Hoan Tran <hoan@os.amperecomputing.com>
16927 M:      Serge Semin <fancer.lancer@gmail.com>
16928 L:      linux-gpio@vger.kernel.org
16929 S:      Maintained
16930 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
16931 F:      drivers/gpio/gpio-dwapb.c
16932
16933 SYNOPSYS DESIGNWARE APB SSI DRIVER
16934 M:      Serge Semin <fancer.lancer@gmail.com>
16935 L:      linux-spi@vger.kernel.org
16936 S:      Supported
16937 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
16938 F:      drivers/spi/spi-dw*
16939
16940 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16941 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16942 S:      Maintained
16943 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16944 F:      drivers/dma/dw-axi-dmac/
16945
16946 SYNOPSYS DESIGNWARE DMAC DRIVER
16947 M:      Viresh Kumar <vireshk@kernel.org>
16948 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16949 S:      Maintained
16950 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
16951 F:      drivers/dma/dw/
16952 F:      include/dt-bindings/dma/dw-dmac.h
16953 F:      include/linux/dma/dw.h
16954 F:      include/linux/platform_data/dma-dw.h
16955
16956 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16957 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16958 L:      netdev@vger.kernel.org
16959 S:      Supported
16960 F:      drivers/net/ethernet/synopsys/
16961
16962 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16963 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16964 L:      netdev@vger.kernel.org
16965 S:      Supported
16966 F:      drivers/net/pcs/pcs-xpcs.c
16967 F:      include/linux/pcs/pcs-xpcs.h
16968
16969 SYNOPSYS DESIGNWARE I2C DRIVER
16970 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
16971 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16972 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
16973 L:      linux-i2c@vger.kernel.org
16974 S:      Maintained
16975 F:      drivers/i2c/busses/i2c-designware-*
16976 F:      include/linux/platform_data/i2c-designware.h
16977
16978 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16979 M:      Jaehoon Chung <jh80.chung@samsung.com>
16980 L:      linux-mmc@vger.kernel.org
16981 S:      Maintained
16982 F:      drivers/mmc/host/dw_mmc*
16983
16984 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16985 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16986 S:      Supported
16987 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16988 F:      drivers/reset/reset-hsdk.c
16989 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16990
16991 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
16992 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
16993 M:      Manjunath M B <manjumb@synopsys.com>
16994 L:      linux-mmc@vger.kernel.org
16995 S:      Maintained
16996 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
16997
16998 SYSTEM CONFIGURATION (SYSCON)
16999 M:      Lee Jones <lee.jones@linaro.org>
17000 M:      Arnd Bergmann <arnd@arndb.de>
17001 S:      Supported
17002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17003 F:      drivers/mfd/syscon.c
17004
17005 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17006 M:      Sudeep Holla <sudeep.holla@arm.com>
17007 L:      linux-arm-kernel@lists.infradead.org
17008 S:      Maintained
17009 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
17010 F:      drivers/clk/clk-sc[mp]i.c
17011 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
17012 F:      drivers/firmware/arm_scmi/
17013 F:      drivers/firmware/arm_scpi.c
17014 F:      drivers/reset/reset-scmi.c
17015 F:      include/linux/sc[mp]i_protocol.h
17016 F:      include/trace/events/scmi.h
17017
17018 SYSTEM RESET/SHUTDOWN DRIVERS
17019 M:      Sebastian Reichel <sre@kernel.org>
17020 L:      linux-pm@vger.kernel.org
17021 S:      Maintained
17022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17023 F:      Documentation/devicetree/bindings/power/reset/
17024 F:      drivers/power/reset/
17025
17026 SYSTEM TRACE MODULE CLASS
17027 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
17028 S:      Maintained
17029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17030 F:      Documentation/trace/stm.rst
17031 F:      drivers/hwtracing/stm/
17032 F:      include/linux/stm.h
17033 F:      include/uapi/linux/stm.h
17034
17035 SYSTEM76 ACPI DRIVER
17036 M:      Jeremy Soller <jeremy@system76.com>
17037 M:      System76 Product Development <productdev@system76.com>
17038 L:      platform-driver-x86@vger.kernel.org
17039 S:      Maintained
17040 F:      drivers/platform/x86/system76_acpi.c
17041
17042 SYSV FILESYSTEM
17043 M:      Christoph Hellwig <hch@infradead.org>
17044 S:      Maintained
17045 F:      Documentation/filesystems/sysv-fs.rst
17046 F:      fs/sysv/
17047 F:      include/linux/sysv_fs.h
17048
17049 TASKSTATS STATISTICS INTERFACE
17050 M:      Balbir Singh <bsingharora@gmail.com>
17051 S:      Maintained
17052 F:      Documentation/accounting/taskstats*
17053 F:      include/linux/taskstats*
17054 F:      kernel/taskstats.c
17055
17056 TC subsystem
17057 M:      Jamal Hadi Salim <jhs@mojatatu.com>
17058 M:      Cong Wang <xiyou.wangcong@gmail.com>
17059 M:      Jiri Pirko <jiri@resnulli.us>
17060 L:      netdev@vger.kernel.org
17061 S:      Maintained
17062 F:      include/net/pkt_cls.h
17063 F:      include/net/pkt_sched.h
17064 F:      include/net/tc_act/
17065 F:      include/uapi/linux/pkt_cls.h
17066 F:      include/uapi/linux/pkt_sched.h
17067 F:      include/uapi/linux/tc_act/
17068 F:      include/uapi/linux/tc_ematch/
17069 F:      net/sched/
17070
17071 TC90522 MEDIA DRIVER
17072 M:      Akihiro Tsukada <tskd08@gmail.com>
17073 L:      linux-media@vger.kernel.org
17074 S:      Odd Fixes
17075 F:      drivers/media/dvb-frontends/tc90522*
17076
17077 TCP LOW PRIORITY MODULE
17078 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
17079 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
17080 S:      Maintained
17081 W:      http://tcp-lp-mod.sourceforge.net/
17082 F:      net/ipv4/tcp_lp.c
17083
17084 TDA10071 MEDIA DRIVER
17085 M:      Antti Palosaari <crope@iki.fi>
17086 L:      linux-media@vger.kernel.org
17087 S:      Maintained
17088 W:      https://linuxtv.org
17089 W:      http://palosaari.fi/linux/
17090 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17091 T:      git git://linuxtv.org/anttip/media_tree.git
17092 F:      drivers/media/dvb-frontends/tda10071*
17093
17094 TDA18212 MEDIA DRIVER
17095 M:      Antti Palosaari <crope@iki.fi>
17096 L:      linux-media@vger.kernel.org
17097 S:      Maintained
17098 W:      https://linuxtv.org
17099 W:      http://palosaari.fi/linux/
17100 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17101 T:      git git://linuxtv.org/anttip/media_tree.git
17102 F:      drivers/media/tuners/tda18212*
17103
17104 TDA18218 MEDIA DRIVER
17105 M:      Antti Palosaari <crope@iki.fi>
17106 L:      linux-media@vger.kernel.org
17107 S:      Maintained
17108 W:      https://linuxtv.org
17109 W:      http://palosaari.fi/linux/
17110 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17111 T:      git git://linuxtv.org/anttip/media_tree.git
17112 F:      drivers/media/tuners/tda18218*
17113
17114 TDA18250 MEDIA DRIVER
17115 M:      Olli Salonen <olli.salonen@iki.fi>
17116 L:      linux-media@vger.kernel.org
17117 S:      Maintained
17118 W:      https://linuxtv.org
17119 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17120 T:      git git://linuxtv.org/media_tree.git
17121 F:      drivers/media/tuners/tda18250*
17122
17123 TDA18271 MEDIA DRIVER
17124 M:      Michael Krufky <mkrufky@linuxtv.org>
17125 L:      linux-media@vger.kernel.org
17126 S:      Maintained
17127 W:      https://linuxtv.org
17128 W:      http://github.com/mkrufky
17129 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17130 T:      git git://linuxtv.org/mkrufky/tuners.git
17131 F:      drivers/media/tuners/tda18271*
17132
17133 TDA1997x MEDIA DRIVER
17134 M:      Tim Harvey <tharvey@gateworks.com>
17135 L:      linux-media@vger.kernel.org
17136 S:      Maintained
17137 W:      https://linuxtv.org
17138 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17139 F:      drivers/media/i2c/tda1997x.*
17140
17141 TDA827x MEDIA DRIVER
17142 M:      Michael Krufky <mkrufky@linuxtv.org>
17143 L:      linux-media@vger.kernel.org
17144 S:      Maintained
17145 W:      https://linuxtv.org
17146 W:      http://github.com/mkrufky
17147 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17148 T:      git git://linuxtv.org/mkrufky/tuners.git
17149 F:      drivers/media/tuners/tda8290.*
17150
17151 TDA8290 MEDIA DRIVER
17152 M:      Michael Krufky <mkrufky@linuxtv.org>
17153 L:      linux-media@vger.kernel.org
17154 S:      Maintained
17155 W:      https://linuxtv.org
17156 W:      http://github.com/mkrufky
17157 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17158 T:      git git://linuxtv.org/mkrufky/tuners.git
17159 F:      drivers/media/tuners/tda8290.*
17160
17161 TDA9840 MEDIA DRIVER
17162 M:      Hans Verkuil <hverkuil@xs4all.nl>
17163 L:      linux-media@vger.kernel.org
17164 S:      Maintained
17165 W:      https://linuxtv.org
17166 T:      git git://linuxtv.org/media_tree.git
17167 F:      drivers/media/i2c/tda9840*
17168
17169 TEA5761 TUNER DRIVER
17170 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17171 L:      linux-media@vger.kernel.org
17172 S:      Odd fixes
17173 W:      https://linuxtv.org
17174 T:      git git://linuxtv.org/media_tree.git
17175 F:      drivers/media/tuners/tea5761.*
17176
17177 TEA5767 TUNER DRIVER
17178 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17179 L:      linux-media@vger.kernel.org
17180 S:      Maintained
17181 W:      https://linuxtv.org
17182 T:      git git://linuxtv.org/media_tree.git
17183 F:      drivers/media/tuners/tea5767.*
17184
17185 TEA6415C MEDIA DRIVER
17186 M:      Hans Verkuil <hverkuil@xs4all.nl>
17187 L:      linux-media@vger.kernel.org
17188 S:      Maintained
17189 W:      https://linuxtv.org
17190 T:      git git://linuxtv.org/media_tree.git
17191 F:      drivers/media/i2c/tea6415c*
17192
17193 TEA6420 MEDIA DRIVER
17194 M:      Hans Verkuil <hverkuil@xs4all.nl>
17195 L:      linux-media@vger.kernel.org
17196 S:      Maintained
17197 W:      https://linuxtv.org
17198 T:      git git://linuxtv.org/media_tree.git
17199 F:      drivers/media/i2c/tea6420*
17200
17201 TEAM DRIVER
17202 M:      Jiri Pirko <jiri@resnulli.us>
17203 L:      netdev@vger.kernel.org
17204 S:      Supported
17205 F:      drivers/net/team/
17206 F:      include/linux/if_team.h
17207 F:      include/uapi/linux/if_team.h
17208
17209 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17210 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
17211 S:      Maintained
17212 F:      arch/x86/platform/ts5500/
17213
17214 TECHNOTREND USB IR RECEIVER
17215 M:      Sean Young <sean@mess.org>
17216 L:      linux-media@vger.kernel.org
17217 S:      Maintained
17218 F:      drivers/media/rc/ttusbir.c
17219
17220 TECHWELL TW9910 VIDEO DECODER
17221 L:      linux-media@vger.kernel.org
17222 S:      Orphan
17223 F:      drivers/media/i2c/tw9910.c
17224 F:      include/media/i2c/tw9910.h
17225
17226 TEE SUBSYSTEM
17227 M:      Jens Wiklander <jens.wiklander@linaro.org>
17228 L:      op-tee@lists.trustedfirmware.org
17229 S:      Maintained
17230 F:      Documentation/staging/tee.rst
17231 F:      drivers/tee/
17232 F:      include/linux/tee_drv.h
17233 F:      include/uapi/linux/tee.h
17234
17235 TEGRA ARCHITECTURE SUPPORT
17236 M:      Thierry Reding <thierry.reding@gmail.com>
17237 M:      Jonathan Hunter <jonathanh@nvidia.com>
17238 L:      linux-tegra@vger.kernel.org
17239 S:      Supported
17240 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
17241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17242 N:      [^a-z]tegra
17243
17244 TEGRA CLOCK DRIVER
17245 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
17246 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
17247 S:      Supported
17248 F:      drivers/clk/tegra/
17249
17250 TEGRA DMA DRIVERS
17251 M:      Laxman Dewangan <ldewangan@nvidia.com>
17252 M:      Jon Hunter <jonathanh@nvidia.com>
17253 S:      Supported
17254 F:      drivers/dma/tegra*
17255
17256 TEGRA I2C DRIVER
17257 M:      Laxman Dewangan <ldewangan@nvidia.com>
17258 R:      Dmitry Osipenko <digetx@gmail.com>
17259 S:      Supported
17260 F:      drivers/i2c/busses/i2c-tegra.c
17261
17262 TEGRA IOMMU DRIVERS
17263 M:      Thierry Reding <thierry.reding@gmail.com>
17264 R:      Krishna Reddy <vdumpa@nvidia.com>
17265 L:      linux-tegra@vger.kernel.org
17266 S:      Supported
17267 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17268 F:      drivers/iommu/tegra*
17269
17270 TEGRA KBC DRIVER
17271 M:      Laxman Dewangan <ldewangan@nvidia.com>
17272 S:      Supported
17273 F:      drivers/input/keyboard/tegra-kbc.c
17274
17275 TEGRA NAND DRIVER
17276 M:      Stefan Agner <stefan@agner.ch>
17277 M:      Lucas Stach <dev@lynxeye.de>
17278 S:      Maintained
17279 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17280 F:      drivers/mtd/nand/raw/tegra_nand.c
17281
17282 TEGRA PWM DRIVER
17283 M:      Thierry Reding <thierry.reding@gmail.com>
17284 S:      Supported
17285 F:      drivers/pwm/pwm-tegra.c
17286
17287 TEGRA SERIAL DRIVER
17288 M:      Laxman Dewangan <ldewangan@nvidia.com>
17289 S:      Supported
17290 F:      drivers/tty/serial/serial-tegra.c
17291
17292 TEGRA SPI DRIVER
17293 M:      Laxman Dewangan <ldewangan@nvidia.com>
17294 S:      Supported
17295 F:      drivers/spi/spi-tegra*
17296
17297 TEGRA VIDEO DRIVER
17298 M:      Thierry Reding <thierry.reding@gmail.com>
17299 M:      Jonathan Hunter <jonathanh@nvidia.com>
17300 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
17301 L:      linux-media@vger.kernel.org
17302 L:      linux-tegra@vger.kernel.org
17303 S:      Maintained
17304 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17305 F:      drivers/staging/media/tegra-video/
17306
17307 TEGRA XUSB PADCTL DRIVER
17308 M:      JC Kuo <jckuo@nvidia.com>
17309 S:      Supported
17310 F:      drivers/phy/tegra/xusb*
17311
17312 TEHUTI ETHERNET DRIVER
17313 M:      Andy Gospodarek <andy@greyhouse.net>
17314 L:      netdev@vger.kernel.org
17315 S:      Supported
17316 F:      drivers/net/ethernet/tehuti/*
17317
17318 TELECOM CLOCK DRIVER FOR MCPL0010
17319 M:      Mark Gross <mark.gross@intel.com>
17320 S:      Supported
17321 F:      drivers/char/tlclk.c
17322
17323 TEMPO SEMICONDUCTOR DRIVERS
17324 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
17325 S:      Maintained
17326 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17327 F:      sound/soc/codecs/tscs*.c
17328 F:      sound/soc/codecs/tscs*.h
17329
17330 TENSILICA XTENSA PORT (xtensa)
17331 M:      Chris Zankel <chris@zankel.net>
17332 M:      Max Filippov <jcmvbkbc@gmail.com>
17333 L:      linux-xtensa@linux-xtensa.org
17334 S:      Maintained
17335 T:      git git://github.com/czankel/xtensa-linux.git
17336 F:      arch/xtensa/
17337 F:      drivers/irqchip/irq-xtensa-*
17338
17339 TEXAS INSTRUMENTS ASoC DRIVERS
17340 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17341 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17342 S:      Maintained
17343 F:      sound/soc/ti/
17344
17345 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
17346 M:      Ricardo Ribalda <ribalda@kernel.org>
17347 L:      linux-iio@vger.kernel.org
17348 S:      Supported
17349 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
17350 F:      drivers/iio/dac/ti-dac7612.c
17351
17352 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
17353 M:      Nishanth Menon <nm@ti.com>
17354 M:      Tero Kristo <t-kristo@ti.com>
17355 M:      Santosh Shilimkar <ssantosh@kernel.org>
17356 L:      linux-arm-kernel@lists.infradead.org
17357 S:      Maintained
17358 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
17359 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
17360 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
17361 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
17362 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
17363 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
17364 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
17365 F:      drivers/clk/keystone/sci-clk.c
17366 F:      drivers/firmware/ti_sci*
17367 F:      drivers/irqchip/irq-ti-sci-inta.c
17368 F:      drivers/irqchip/irq-ti-sci-intr.c
17369 F:      drivers/reset/reset-ti-sci.c
17370 F:      drivers/soc/ti/ti_sci_inta_msi.c
17371 F:      drivers/soc/ti/ti_sci_pm_domains.c
17372 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
17373 F:      include/linux/soc/ti/ti_sci_inta_msi.h
17374 F:      include/linux/soc/ti/ti_sci_protocol.h
17375
17376 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
17377 M:      Hans Verkuil <hverkuil@xs4all.nl>
17378 L:      linux-media@vger.kernel.org
17379 S:      Maintained
17380 W:      https://linuxtv.org
17381 T:      git git://linuxtv.org/media_tree.git
17382 F:      drivers/media/radio/radio-raremono.c
17383
17384 THERMAL
17385 M:      Zhang Rui <rui.zhang@intel.com>
17386 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17387 R:      Amit Kucheria <amitk@kernel.org>
17388 L:      linux-pm@vger.kernel.org
17389 S:      Supported
17390 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
17392 F:      Documentation/devicetree/bindings/thermal/
17393 F:      drivers/thermal/
17394 F:      include/linux/cpu_cooling.h
17395 F:      include/linux/thermal.h
17396 F:      include/uapi/linux/thermal.h
17397
17398 THERMAL DRIVER FOR AMLOGIC SOCS
17399 M:      Guillaume La Roque <glaroque@baylibre.com>
17400 L:      linux-pm@vger.kernel.org
17401 L:      linux-amlogic@lists.infradead.org
17402 S:      Supported
17403 W:      http://linux-meson.com/
17404 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
17405 F:      drivers/thermal/amlogic_thermal.c
17406
17407 THERMAL/CPU_COOLING
17408 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
17409 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17410 M:      Viresh Kumar <viresh.kumar@linaro.org>
17411 M:      Javi Merino <javi.merino@kernel.org>
17412 L:      linux-pm@vger.kernel.org
17413 S:      Supported
17414 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
17415 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
17416 F:      drivers/thermal/cpufreq_cooling.c
17417 F:      drivers/thermal/cpuidle_cooling.c
17418 F:      include/linux/cpu_cooling.h
17419
17420 THERMAL/POWER_ALLOCATOR
17421 M:      Lukasz Luba <lukasz.luba@arm.com>
17422 L:      linux-pm@vger.kernel.org
17423 S:      Maintained
17424 F:      Documentation/driver-api/thermal/power_allocator.rst
17425 F:      drivers/thermal/gov_power_allocator.c
17426 F:      include/trace/events/thermal_power_allocator.h
17427
17428 THINKPAD ACPI EXTRAS DRIVER
17429 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
17430 L:      ibm-acpi-devel@lists.sourceforge.net
17431 L:      platform-driver-x86@vger.kernel.org
17432 S:      Maintained
17433 W:      http://ibm-acpi.sourceforge.net
17434 W:      http://thinkwiki.org/wiki/Ibm-acpi
17435 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
17436 F:      drivers/platform/x86/thinkpad_acpi.c
17437
17438 THUNDERBOLT DRIVER
17439 M:      Andreas Noever <andreas.noever@gmail.com>
17440 M:      Michael Jamet <michael.jamet@intel.com>
17441 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17442 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17443 L:      linux-usb@vger.kernel.org
17444 S:      Maintained
17445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
17446 F:      Documentation/admin-guide/thunderbolt.rst
17447 F:      drivers/thunderbolt/
17448 F:      include/linux/thunderbolt.h
17449
17450 THUNDERBOLT NETWORK DRIVER
17451 M:      Michael Jamet <michael.jamet@intel.com>
17452 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17453 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17454 L:      netdev@vger.kernel.org
17455 S:      Maintained
17456 F:      drivers/net/thunderbolt.c
17457
17458 THUNDERX GPIO DRIVER
17459 M:      Robert Richter <rric@kernel.org>
17460 S:      Odd Fixes
17461 F:      drivers/gpio/gpio-thunderx.c
17462
17463 TI AM437X VPFE DRIVER
17464 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17465 L:      linux-media@vger.kernel.org
17466 S:      Maintained
17467 W:      https://linuxtv.org
17468 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17469 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17470 F:      drivers/media/platform/am437x/
17471
17472 TI BANDGAP AND THERMAL DRIVER
17473 M:      Eduardo Valentin <edubezval@gmail.com>
17474 M:      Keerthy <j-keerthy@ti.com>
17475 L:      linux-pm@vger.kernel.org
17476 L:      linux-omap@vger.kernel.org
17477 S:      Maintained
17478 F:      drivers/thermal/ti-soc-thermal/
17479
17480 TI BQ27XXX POWER SUPPLY DRIVER
17481 R:      Dan Murphy <dmurphy@ti.com>
17482 F:      drivers/power/supply/bq27xxx_battery.c
17483 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17484 F:      include/linux/power/bq27xxx_battery.h
17485
17486 TI CDCE706 CLOCK DRIVER
17487 M:      Max Filippov <jcmvbkbc@gmail.com>
17488 S:      Maintained
17489 F:      drivers/clk/clk-cdce706.c
17490
17491 TI CLOCK DRIVER
17492 M:      Tero Kristo <t-kristo@ti.com>
17493 L:      linux-omap@vger.kernel.org
17494 S:      Maintained
17495 F:      drivers/clk/ti/
17496 F:      include/linux/clk/ti.h
17497
17498 TI DAVINCI MACHINE SUPPORT
17499 M:      Sekhar Nori <nsekhar@ti.com>
17500 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
17501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17502 S:      Supported
17503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17504 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17505 F:      arch/arm/boot/dts/da850*
17506 F:      arch/arm/mach-davinci/
17507 F:      drivers/i2c/busses/i2c-davinci.c
17508
17509 TI DAVINCI SERIES CLOCK DRIVER
17510 M:      David Lechner <david@lechnology.com>
17511 R:      Sekhar Nori <nsekhar@ti.com>
17512 S:      Maintained
17513 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17514 F:      drivers/clk/davinci/
17515
17516 TI DAVINCI SERIES GPIO DRIVER
17517 M:      Keerthy <j-keerthy@ti.com>
17518 L:      linux-gpio@vger.kernel.org
17519 S:      Maintained
17520 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17521 F:      drivers/gpio/gpio-davinci.c
17522
17523 TI DAVINCI SERIES MEDIA DRIVER
17524 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17525 L:      linux-media@vger.kernel.org
17526 S:      Maintained
17527 W:      https://linuxtv.org
17528 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17529 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17530 F:      drivers/media/platform/davinci/
17531 F:      include/media/davinci/
17532
17533 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17534 R:      David Lechner <david@lechnology.com>
17535 L:      linux-iio@vger.kernel.org
17536 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17537 F:      drivers/counter/ti-eqep.c
17538
17539 TI ETHERNET SWITCH DRIVER (CPSW)
17540 R:      Grygorii Strashko <grygorii.strashko@ti.com>
17541 L:      linux-omap@vger.kernel.org
17542 L:      netdev@vger.kernel.org
17543 S:      Maintained
17544 F:      drivers/net/ethernet/ti/cpsw*
17545 F:      drivers/net/ethernet/ti/davinci*
17546
17547 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17548 M:      Alex Dubov <oakad@yahoo.com>
17549 S:      Maintained
17550 W:      http://tifmxx.berlios.de/
17551 F:      drivers/memstick/host/tifm_ms.c
17552 F:      drivers/misc/tifm*
17553 F:      drivers/mmc/host/tifm_sd.c
17554 F:      include/linux/tifm.h
17555
17556 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17557 M:      Santosh Shilimkar <ssantosh@kernel.org>
17558 L:      linux-kernel@vger.kernel.org
17559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17560 S:      Maintained
17561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17562 F:      drivers/soc/ti/*
17563
17564 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17565 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17566 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17567 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17568 S:      Maintained
17569 F:      sound/soc/codecs/isabelle*
17570 F:      sound/soc/codecs/lm49453*
17571
17572 TI LP855x BACKLIGHT DRIVER
17573 M:      Milo Kim <milo.kim@ti.com>
17574 S:      Maintained
17575 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17576 F:      drivers/video/backlight/lp855x_bl.c
17577 F:      include/linux/platform_data/lp855x.h
17578
17579 TI LP8727 CHARGER DRIVER
17580 M:      Milo Kim <milo.kim@ti.com>
17581 S:      Maintained
17582 F:      drivers/power/supply/lp8727_charger.c
17583 F:      include/linux/platform_data/lp8727.h
17584
17585 TI LP8788 MFD DRIVER
17586 M:      Milo Kim <milo.kim@ti.com>
17587 S:      Maintained
17588 F:      drivers/iio/adc/lp8788_adc.c
17589 F:      drivers/leds/leds-lp8788.c
17590 F:      drivers/mfd/lp8788*.c
17591 F:      drivers/power/supply/lp8788-charger.c
17592 F:      drivers/regulator/lp8788-*.c
17593 F:      include/linux/mfd/lp8788*.h
17594
17595 TI NETCP ETHERNET DRIVER
17596 M:      Wingman Kwok <w-kwok2@ti.com>
17597 M:      Murali Karicheri <m-karicheri2@ti.com>
17598 L:      netdev@vger.kernel.org
17599 S:      Maintained
17600 F:      drivers/net/ethernet/ti/netcp*
17601
17602 TI PCM3060 ASoC CODEC DRIVER
17603 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17604 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17605 S:      Maintained
17606 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17607 F:      sound/soc/codecs/pcm3060*
17608
17609 TI TAS571X FAMILY ASoC CODEC DRIVER
17610 M:      Kevin Cernekee <cernekee@chromium.org>
17611 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17612 S:      Odd Fixes
17613 F:      sound/soc/codecs/tas571x*
17614
17615 TI TCAN4X5X DEVICE DRIVER
17616 M:      Dan Murphy <dmurphy@ti.com>
17617 L:      linux-can@vger.kernel.org
17618 S:      Maintained
17619 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17620 F:      drivers/net/can/m_can/tcan4x5x.c
17621
17622 TI TRF7970A NFC DRIVER
17623 M:      Mark Greer <mgreer@animalcreek.com>
17624 L:      linux-wireless@vger.kernel.org
17625 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17626 S:      Supported
17627 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17628 F:      drivers/nfc/trf7970a.c
17629
17630 TI TWL4030 SERIES SOC CODEC DRIVER
17631 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17632 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17633 S:      Maintained
17634 F:      sound/soc/codecs/twl4030*
17635
17636 TI VPE/CAL DRIVERS
17637 M:      Benoit Parrot <bparrot@ti.com>
17638 L:      linux-media@vger.kernel.org
17639 S:      Maintained
17640 W:      http://linuxtv.org/
17641 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17642 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17643 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17644 F:      drivers/media/platform/ti-vpe/
17645
17646 TI WILINK WIRELESS DRIVERS
17647 L:      linux-wireless@vger.kernel.org
17648 S:      Orphan
17649 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17650 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17652 F:      drivers/net/wireless/ti/
17653 F:      include/linux/wl12xx.h
17654
17655 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17656 M:      John Stultz <john.stultz@linaro.org>
17657 M:      Thomas Gleixner <tglx@linutronix.de>
17658 R:      Stephen Boyd <sboyd@kernel.org>
17659 L:      linux-kernel@vger.kernel.org
17660 S:      Supported
17661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17662 F:      include/linux/clocksource.h
17663 F:      include/linux/time.h
17664 F:      include/linux/timex.h
17665 F:      include/uapi/linux/time.h
17666 F:      include/uapi/linux/timex.h
17667 F:      kernel/time/alarmtimer.c
17668 F:      kernel/time/clocksource.c
17669 F:      kernel/time/ntp.c
17670 F:      kernel/time/time*.c
17671 F:      tools/testing/selftests/timers/
17672
17673 TIPC NETWORK LAYER
17674 M:      Jon Maloy <jmaloy@redhat.com>
17675 M:      Ying Xue <ying.xue@windriver.com>
17676 L:      netdev@vger.kernel.org (core kernel code)
17677 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17678 S:      Maintained
17679 W:      http://tipc.sourceforge.net/
17680 F:      include/uapi/linux/tipc*.h
17681 F:      net/tipc/
17682
17683 TLAN NETWORK DRIVER
17684 M:      Samuel Chessman <chessman@tux.org>
17685 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17686 S:      Maintained
17687 W:      http://sourceforge.net/projects/tlan/
17688 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
17689 F:      drivers/net/ethernet/ti/tlan.*
17690
17691 TM6000 VIDEO4LINUX DRIVER
17692 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17693 L:      linux-media@vger.kernel.org
17694 S:      Odd fixes
17695 W:      https://linuxtv.org
17696 T:      git git://linuxtv.org/media_tree.git
17697 F:      Documentation/admin-guide/media/tm6000*
17698 F:      drivers/media/usb/tm6000/
17699
17700 TMIO/SDHI MMC DRIVER
17701 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17702 L:      linux-mmc@vger.kernel.org
17703 S:      Supported
17704 F:      drivers/mmc/host/renesas_sdhi*
17705 F:      drivers/mmc/host/tmio_mmc*
17706 F:      include/linux/mfd/tmio.h
17707
17708 TMP401 HARDWARE MONITOR DRIVER
17709 M:      Guenter Roeck <linux@roeck-us.net>
17710 L:      linux-hwmon@vger.kernel.org
17711 S:      Maintained
17712 F:      Documentation/hwmon/tmp401.rst
17713 F:      drivers/hwmon/tmp401.c
17714
17715 TMP513 HARDWARE MONITOR DRIVER
17716 M:      Eric Tremblay <etremblay@distech-controls.com>
17717 L:      linux-hwmon@vger.kernel.org
17718 S:      Maintained
17719 F:      Documentation/hwmon/tmp513.rst
17720 F:      drivers/hwmon/tmp513.c
17721
17722 TMPFS (SHMEM FILESYSTEM)
17723 M:      Hugh Dickins <hughd@google.com>
17724 L:      linux-mm@kvack.org
17725 S:      Maintained
17726 F:      include/linux/shmem_fs.h
17727 F:      mm/shmem.c
17728
17729 TOMOYO SECURITY MODULE
17730 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17731 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17732 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17733 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17734 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17735 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17736 S:      Maintained
17737 W:      https://tomoyo.osdn.jp/
17738 F:      security/tomoyo/
17739
17740 TOPSTAR LAPTOP EXTRAS DRIVER
17741 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17742 L:      platform-driver-x86@vger.kernel.org
17743 S:      Maintained
17744 F:      drivers/platform/x86/topstar-laptop.c
17745
17746 TORTURE-TEST MODULES
17747 M:      Davidlohr Bueso <dave@stgolabs.net>
17748 M:      "Paul E. McKenney" <paulmck@kernel.org>
17749 M:      Josh Triplett <josh@joshtriplett.org>
17750 L:      linux-kernel@vger.kernel.org
17751 S:      Supported
17752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17753 F:      Documentation/RCU/torture.rst
17754 F:      kernel/locking/locktorture.c
17755 F:      kernel/rcu/rcuscale.c
17756 F:      kernel/rcu/rcutorture.c
17757 F:      kernel/rcu/refscale.c
17758 F:      kernel/torture.c
17759
17760 TOSHIBA ACPI EXTRAS DRIVER
17761 M:      Azael Avalos <coproscefalo@gmail.com>
17762 L:      platform-driver-x86@vger.kernel.org
17763 S:      Maintained
17764 F:      drivers/platform/x86/toshiba_acpi.c
17765
17766 TOSHIBA BLUETOOTH DRIVER
17767 M:      Azael Avalos <coproscefalo@gmail.com>
17768 L:      platform-driver-x86@vger.kernel.org
17769 S:      Maintained
17770 F:      drivers/platform/x86/toshiba_bluetooth.c
17771
17772 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17773 M:      Azael Avalos <coproscefalo@gmail.com>
17774 L:      platform-driver-x86@vger.kernel.org
17775 S:      Maintained
17776 F:      drivers/platform/x86/toshiba_haps.c
17777
17778 TOSHIBA SMM DRIVER
17779 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17780 S:      Maintained
17781 W:      http://www.buzzard.org.uk/toshiba/
17782 F:      drivers/char/toshiba.c
17783 F:      include/linux/toshiba.h
17784 F:      include/uapi/linux/toshiba.h
17785
17786 TOSHIBA TC358743 DRIVER
17787 M:      Mats Randgaard <matrandg@cisco.com>
17788 L:      linux-media@vger.kernel.org
17789 S:      Maintained
17790 F:      drivers/media/i2c/tc358743*
17791 F:      include/media/i2c/tc358743.h
17792
17793 TOSHIBA WMI HOTKEYS DRIVER
17794 M:      Azael Avalos <coproscefalo@gmail.com>
17795 L:      platform-driver-x86@vger.kernel.org
17796 S:      Maintained
17797 F:      drivers/platform/x86/toshiba-wmi.c
17798
17799 TPM DEVICE DRIVER
17800 M:      Peter Huewe <peterhuewe@gmx.de>
17801 M:      Jarkko Sakkinen <jarkko@kernel.org>
17802 R:      Jason Gunthorpe <jgg@ziepe.ca>
17803 L:      linux-integrity@vger.kernel.org
17804 S:      Maintained
17805 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17806 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
17808 F:      drivers/char/tpm/
17809
17810 TRACING
17811 M:      Steven Rostedt <rostedt@goodmis.org>
17812 M:      Ingo Molnar <mingo@redhat.com>
17813 S:      Maintained
17814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17815 F:      Documentation/trace/ftrace.rst
17816 F:      arch/*/*/*/ftrace.h
17817 F:      arch/*/kernel/ftrace.c
17818 F:      include/*/ftrace.h
17819 F:      include/linux/trace*.h
17820 F:      include/trace/
17821 F:      kernel/trace/
17822 F:      tools/testing/selftests/ftrace/
17823
17824 TRACING MMIO ACCESSES (MMIOTRACE)
17825 M:      Steven Rostedt <rostedt@goodmis.org>
17826 M:      Ingo Molnar <mingo@kernel.org>
17827 R:      Karol Herbst <karolherbst@gmail.com>
17828 R:      Pekka Paalanen <ppaalanen@gmail.com>
17829 L:      linux-kernel@vger.kernel.org
17830 L:      nouveau@lists.freedesktop.org
17831 S:      Maintained
17832 F:      arch/x86/mm/kmmio.c
17833 F:      arch/x86/mm/mmio-mod.c
17834 F:      arch/x86/mm/testmmiotrace.c
17835 F:      include/linux/mmiotrace.h
17836 F:      kernel/trace/trace_mmiotrace.c
17837
17838 TRIVIAL PATCHES
17839 M:      Jiri Kosina <trivial@kernel.org>
17840 S:      Maintained
17841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17842 K:      ^Subject:.*(?i)trivial
17843
17844 TTY LAYER
17845 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17846 M:      Jiri Slaby <jirislaby@kernel.org>
17847 S:      Supported
17848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17849 F:      Documentation/driver-api/serial/
17850 F:      drivers/tty/
17851 F:      drivers/tty/serial/serial_core.c
17852 F:      include/linux/serial.h
17853 F:      include/linux/serial_core.h
17854 F:      include/linux/tty.h
17855 F:      include/uapi/linux/serial.h
17856 F:      include/uapi/linux/serial_core.h
17857 F:      include/uapi/linux/tty.h
17858
17859 TUA9001 MEDIA DRIVER
17860 M:      Antti Palosaari <crope@iki.fi>
17861 L:      linux-media@vger.kernel.org
17862 S:      Maintained
17863 W:      https://linuxtv.org
17864 W:      http://palosaari.fi/linux/
17865 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17866 T:      git git://linuxtv.org/anttip/media_tree.git
17867 F:      drivers/media/tuners/tua9001*
17868
17869 TULIP NETWORK DRIVERS
17870 L:      netdev@vger.kernel.org
17871 L:      linux-parisc@vger.kernel.org
17872 S:      Orphan
17873 F:      drivers/net/ethernet/dec/tulip/
17874
17875 TUN/TAP driver
17876 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
17877 S:      Maintained
17878 W:      http://vtun.sourceforge.net/tun
17879 F:      Documentation/networking/tuntap.rst
17880 F:      arch/um/os-Linux/drivers/
17881
17882 TURBOCHANNEL SUBSYSTEM
17883 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17884 M:      Ralf Baechle <ralf@linux-mips.org>
17885 L:      linux-mips@vger.kernel.org
17886 S:      Maintained
17887 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17888 F:      drivers/tc/
17889 F:      include/linux/tc.h
17890
17891 TURBOSTAT UTILITY
17892 M:      "Len Brown" <lenb@kernel.org>
17893 L:      linux-pm@vger.kernel.org
17894 S:      Supported
17895 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17896 B:      https://bugzilla.kernel.org
17897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17898 F:      tools/power/x86/turbostat/
17899
17900 TW5864 VIDEO4LINUX DRIVER
17901 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17902 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17903 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
17904 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17905 L:      linux-media@vger.kernel.org
17906 S:      Supported
17907 F:      drivers/media/pci/tw5864/
17908
17909 TW68 VIDEO4LINUX DRIVER
17910 M:      Hans Verkuil <hverkuil@xs4all.nl>
17911 L:      linux-media@vger.kernel.org
17912 S:      Odd Fixes
17913 W:      https://linuxtv.org
17914 T:      git git://linuxtv.org/media_tree.git
17915 F:      drivers/media/pci/tw68/
17916
17917 TW686X VIDEO4LINUX DRIVER
17918 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17919 L:      linux-media@vger.kernel.org
17920 S:      Maintained
17921 W:      http://linuxtv.org
17922 T:      git git://linuxtv.org/media_tree.git
17923 F:      drivers/media/pci/tw686x/
17924
17925 UACCE ACCELERATOR FRAMEWORK
17926 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
17927 M:      Zhou Wang <wangzhou1@hisilicon.com>
17928 L:      linux-accelerators@lists.ozlabs.org
17929 L:      linux-kernel@vger.kernel.org
17930 S:      Maintained
17931 F:      Documentation/ABI/testing/sysfs-driver-uacce
17932 F:      Documentation/misc-devices/uacce.rst
17933 F:      drivers/misc/uacce/
17934 F:      include/linux/uacce.h
17935 F:      include/uapi/misc/uacce/
17936
17937 UBI FILE SYSTEM (UBIFS)
17938 M:      Richard Weinberger <richard@nod.at>
17939 L:      linux-mtd@lists.infradead.org
17940 S:      Supported
17941 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17944 F:      Documentation/filesystems/ubifs-authentication.rst
17945 F:      Documentation/filesystems/ubifs.rst
17946 F:      fs/ubifs/
17947
17948 UCLINUX (M68KNOMMU AND COLDFIRE)
17949 M:      Greg Ungerer <gerg@linux-m68k.org>
17950 L:      linux-m68k@lists.linux-m68k.org
17951 L:      uclinux-dev@uclinux.org  (subscribers-only)
17952 S:      Maintained
17953 W:      http://www.linux-m68k.org/
17954 W:      http://www.uclinux.org/
17955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17956 F:      arch/m68k/*/*_no.*
17957 F:      arch/m68k/68*/
17958 F:      arch/m68k/coldfire/
17959 F:      arch/m68k/include/asm/*_no.*
17960
17961 UDF FILESYSTEM
17962 M:      Jan Kara <jack@suse.com>
17963 S:      Maintained
17964 F:      Documentation/filesystems/udf.rst
17965 F:      fs/udf/
17966
17967 UDRAW TABLET
17968 M:      Bastien Nocera <hadess@hadess.net>
17969 L:      linux-input@vger.kernel.org
17970 S:      Maintained
17971 F:      drivers/hid/hid-udraw-ps3.c
17972
17973 UFS FILESYSTEM
17974 M:      Evgeniy Dushistov <dushistov@mail.ru>
17975 S:      Maintained
17976 F:      Documentation/admin-guide/ufs.rst
17977 F:      fs/ufs/
17978
17979 UHID USERSPACE HID IO DRIVER
17980 M:      David Rheinsberg <david.rheinsberg@gmail.com>
17981 L:      linux-input@vger.kernel.org
17982 S:      Maintained
17983 F:      drivers/hid/uhid.c
17984 F:      include/uapi/linux/uhid.h
17985
17986 ULPI BUS
17987 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17988 L:      linux-usb@vger.kernel.org
17989 S:      Maintained
17990 F:      drivers/usb/common/ulpi.c
17991 F:      include/linux/ulpi/
17992
17993 UNICODE SUBSYSTEM
17994 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
17995 L:      linux-fsdevel@vger.kernel.org
17996 S:      Supported
17997 F:      fs/unicode/
17998
17999 UNIFDEF
18000 M:      Tony Finch <dot@dotat.at>
18001 S:      Maintained
18002 W:      http://dotat.at/prog/unifdef
18003 F:      scripts/unifdef.c
18004
18005 UNIFORM CDROM DRIVER
18006 M:      Jens Axboe <axboe@kernel.dk>
18007 S:      Maintained
18008 W:      http://www.kernel.dk
18009 F:      Documentation/cdrom/
18010 F:      drivers/cdrom/cdrom.c
18011 F:      include/linux/cdrom.h
18012 F:      include/uapi/linux/cdrom.h
18013
18014 UNISYS S-PAR DRIVERS
18015 M:      David Kershner <david.kershner@unisys.com>
18016 L:      sparmaintainer@unisys.com (Unisys internal)
18017 S:      Supported
18018 F:      drivers/staging/unisys/
18019 F:      drivers/visorbus/
18020 F:      include/linux/visorbus.h
18021
18022 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18023 R:      Alim Akhtar <alim.akhtar@samsung.com>
18024 R:      Avri Altman <avri.altman@wdc.com>
18025 L:      linux-scsi@vger.kernel.org
18026 S:      Supported
18027 F:      Documentation/scsi/ufs.rst
18028 F:      drivers/scsi/ufs/
18029
18030 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18031 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
18032 L:      linux-scsi@vger.kernel.org
18033 S:      Supported
18034 F:      drivers/scsi/ufs/*dwc*
18035
18036 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18037 M:      Stanley Chu <stanley.chu@mediatek.com>
18038 L:      linux-scsi@vger.kernel.org
18039 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
18040 S:      Maintained
18041 F:      drivers/scsi/ufs/ufs-mediatek*
18042
18043 UNSORTED BLOCK IMAGES (UBI)
18044 M:      Richard Weinberger <richard@nod.at>
18045 L:      linux-mtd@lists.infradead.org
18046 S:      Supported
18047 W:      http://www.linux-mtd.infradead.org/
18048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18050 F:      drivers/mtd/ubi/
18051 F:      include/linux/mtd/ubi.h
18052 F:      include/uapi/mtd/ubi-user.h
18053
18054 USB "USBNET" DRIVER FRAMEWORK
18055 M:      Oliver Neukum <oneukum@suse.com>
18056 L:      netdev@vger.kernel.org
18057 S:      Maintained
18058 W:      http://www.linux-usb.org/usbnet
18059 F:      drivers/net/usb/usbnet.c
18060 F:      include/linux/usb/usbnet.h
18061
18062 USB ACM DRIVER
18063 M:      Oliver Neukum <oneukum@suse.com>
18064 L:      linux-usb@vger.kernel.org
18065 S:      Maintained
18066 F:      Documentation/usb/acm.rst
18067 F:      drivers/usb/class/cdc-acm.*
18068
18069 USB APPLE MFI FASTCHARGE DRIVER
18070 M:      Bastien Nocera <hadess@hadess.net>
18071 L:      linux-usb@vger.kernel.org
18072 S:      Maintained
18073 F:      drivers/usb/misc/apple-mfi-fastcharge.c
18074
18075 USB AR5523 WIRELESS DRIVER
18076 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
18077 L:      linux-wireless@vger.kernel.org
18078 S:      Maintained
18079 F:      drivers/net/wireless/ath/ar5523/
18080
18081 USB ATTACHED SCSI
18082 M:      Oliver Neukum <oneukum@suse.com>
18083 L:      linux-usb@vger.kernel.org
18084 L:      linux-scsi@vger.kernel.org
18085 S:      Maintained
18086 F:      drivers/usb/storage/uas.c
18087
18088 USB CDC ETHERNET DRIVER
18089 M:      Oliver Neukum <oliver@neukum.org>
18090 L:      linux-usb@vger.kernel.org
18091 S:      Maintained
18092 F:      drivers/net/usb/cdc_*.c
18093 F:      include/uapi/linux/usb/cdc.h
18094
18095 USB CHAOSKEY DRIVER
18096 M:      Keith Packard <keithp@keithp.com>
18097 L:      linux-usb@vger.kernel.org
18098 S:      Maintained
18099 F:      drivers/usb/misc/chaoskey.c
18100
18101 USB CYPRESS C67X00 DRIVER
18102 M:      Peter Korsgaard <jacmet@sunsite.dk>
18103 L:      linux-usb@vger.kernel.org
18104 S:      Maintained
18105 F:      drivers/usb/c67x00/
18106
18107 USB DAVICOM DM9601 DRIVER
18108 M:      Peter Korsgaard <jacmet@sunsite.dk>
18109 L:      netdev@vger.kernel.org
18110 S:      Maintained
18111 W:      http://www.linux-usb.org/usbnet
18112 F:      drivers/net/usb/dm9601.c
18113
18114 USB EHCI DRIVER
18115 M:      Alan Stern <stern@rowland.harvard.edu>
18116 L:      linux-usb@vger.kernel.org
18117 S:      Maintained
18118 F:      Documentation/usb/ehci.rst
18119 F:      drivers/usb/host/ehci*
18120
18121 USB GADGET/PERIPHERAL SUBSYSTEM
18122 M:      Felipe Balbi <balbi@kernel.org>
18123 L:      linux-usb@vger.kernel.org
18124 S:      Maintained
18125 W:      http://www.linux-usb.org/gadget
18126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18127 F:      drivers/usb/gadget/
18128 F:      include/linux/usb/gadget*
18129
18130 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
18131 M:      Jiri Kosina <jikos@kernel.org>
18132 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
18133 L:      linux-usb@vger.kernel.org
18134 S:      Maintained
18135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
18136 F:      Documentation/hid/hiddev.rst
18137 F:      drivers/hid/usbhid/
18138
18139 USB INTEL XHCI ROLE MUX DRIVER
18140 M:      Hans de Goede <hdegoede@redhat.com>
18141 L:      linux-usb@vger.kernel.org
18142 S:      Maintained
18143 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
18144
18145 USB IP DRIVER FOR HISILICON KIRIN
18146 M:      Yu Chen <chenyu56@huawei.com>
18147 M:      Binghui Wang <wangbinghui@hisilicon.com>
18148 L:      linux-usb@vger.kernel.org
18149 S:      Maintained
18150 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
18151 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
18152
18153 USB ISP116X DRIVER
18154 M:      Olav Kongas <ok@artecdesign.ee>
18155 L:      linux-usb@vger.kernel.org
18156 S:      Maintained
18157 F:      drivers/usb/host/isp116x*
18158 F:      include/linux/usb/isp116x.h
18159
18160 USB LAN78XX ETHERNET DRIVER
18161 M:      Woojung Huh <woojung.huh@microchip.com>
18162 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
18163 L:      netdev@vger.kernel.org
18164 S:      Maintained
18165 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
18166 F:      drivers/net/usb/lan78xx.*
18167 F:      include/dt-bindings/net/microchip-lan78xx.h
18168
18169 USB MASS STORAGE DRIVER
18170 M:      Alan Stern <stern@rowland.harvard.edu>
18171 L:      linux-usb@vger.kernel.org
18172 L:      usb-storage@lists.one-eyed-alien.net
18173 S:      Maintained
18174 F:      drivers/usb/storage/
18175
18176 USB MIDI DRIVER
18177 M:      Clemens Ladisch <clemens@ladisch.de>
18178 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18179 S:      Maintained
18180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18181 F:      sound/usb/midi.*
18182
18183 USB NETWORKING DRIVERS
18184 L:      linux-usb@vger.kernel.org
18185 S:      Odd Fixes
18186 F:      drivers/net/usb/
18187
18188 USB OHCI DRIVER
18189 M:      Alan Stern <stern@rowland.harvard.edu>
18190 L:      linux-usb@vger.kernel.org
18191 S:      Maintained
18192 F:      Documentation/usb/ohci.rst
18193 F:      drivers/usb/host/ohci*
18194
18195 USB OTG FSM (Finite State Machine)
18196 M:      Peter Chen <Peter.Chen@nxp.com>
18197 L:      linux-usb@vger.kernel.org
18198 S:      Maintained
18199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18200 F:      drivers/usb/common/usb-otg-fsm.c
18201
18202 USB OVER IP DRIVER
18203 M:      Valentina Manea <valentina.manea.m@gmail.com>
18204 M:      Shuah Khan <shuah@kernel.org>
18205 M:      Shuah Khan <skhan@linuxfoundation.org>
18206 L:      linux-usb@vger.kernel.org
18207 S:      Maintained
18208 F:      Documentation/usb/usbip_protocol.rst
18209 F:      drivers/usb/usbip/
18210 F:      tools/testing/selftests/drivers/usb/usbip/
18211 F:      tools/usb/usbip/
18212
18213 USB PEGASUS DRIVER
18214 M:      Petko Manolov <petkan@nucleusys.com>
18215 L:      linux-usb@vger.kernel.org
18216 L:      netdev@vger.kernel.org
18217 S:      Maintained
18218 W:      https://github.com/petkan/pegasus
18219 T:      git git://github.com/petkan/pegasus.git
18220 F:      drivers/net/usb/pegasus.*
18221
18222 USB PHY LAYER
18223 M:      Felipe Balbi <balbi@kernel.org>
18224 L:      linux-usb@vger.kernel.org
18225 S:      Maintained
18226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18227 F:      drivers/usb/phy/
18228
18229 USB PRINTER DRIVER (usblp)
18230 M:      Pete Zaitcev <zaitcev@redhat.com>
18231 L:      linux-usb@vger.kernel.org
18232 S:      Supported
18233 F:      drivers/usb/class/usblp.c
18234
18235 USB RAW GADGET DRIVER
18236 R:      Andrey Konovalov <andreyknvl@gmail.com>
18237 L:      linux-usb@vger.kernel.org
18238 S:      Maintained
18239 F:      Documentation/usb/raw-gadget.rst
18240 F:      drivers/usb/gadget/legacy/raw_gadget.c
18241 F:      include/uapi/linux/usb/raw_gadget.h
18242
18243 USB QMI WWAN NETWORK DRIVER
18244 M:      Bjørn Mork <bjorn@mork.no>
18245 L:      netdev@vger.kernel.org
18246 S:      Maintained
18247 F:      Documentation/ABI/testing/sysfs-class-net-qmi
18248 F:      drivers/net/usb/qmi_wwan.c
18249
18250 USB RTL8150 DRIVER
18251 M:      Petko Manolov <petkan@nucleusys.com>
18252 L:      linux-usb@vger.kernel.org
18253 L:      netdev@vger.kernel.org
18254 S:      Maintained
18255 W:      https://github.com/petkan/rtl8150
18256 T:      git git://github.com/petkan/rtl8150.git
18257 F:      drivers/net/usb/rtl8150.c
18258
18259 USB SERIAL SUBSYSTEM
18260 M:      Johan Hovold <johan@kernel.org>
18261 L:      linux-usb@vger.kernel.org
18262 S:      Maintained
18263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18264 F:      Documentation/usb/usb-serial.rst
18265 F:      drivers/usb/serial/
18266 F:      include/linux/usb/serial.h
18267
18268 USB SMSC75XX ETHERNET DRIVER
18269 M:      Steve Glendinning <steve.glendinning@shawell.net>
18270 L:      netdev@vger.kernel.org
18271 S:      Maintained
18272 F:      drivers/net/usb/smsc75xx.*
18273
18274 USB SMSC95XX ETHERNET DRIVER
18275 M:      Steve Glendinning <steve.glendinning@shawell.net>
18276 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
18277 L:      netdev@vger.kernel.org
18278 S:      Maintained
18279 F:      drivers/net/usb/smsc95xx.*
18280
18281 USB SUBSYSTEM
18282 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18283 L:      linux-usb@vger.kernel.org
18284 S:      Supported
18285 W:      http://www.linux-usb.org
18286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18287 F:      Documentation/devicetree/bindings/usb/
18288 F:      Documentation/usb/
18289 F:      drivers/usb/
18290 F:      include/linux/usb.h
18291 F:      include/linux/usb/
18292
18293 USB TYPEC BUS FOR ALTERNATE MODES
18294 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18295 L:      linux-usb@vger.kernel.org
18296 S:      Maintained
18297 F:      Documentation/ABI/testing/sysfs-bus-typec
18298 F:      Documentation/driver-api/usb/typec_bus.rst
18299 F:      drivers/usb/typec/altmodes/
18300 F:      include/linux/usb/typec_altmode.h
18301
18302 USB TYPEC CLASS
18303 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18304 L:      linux-usb@vger.kernel.org
18305 S:      Maintained
18306 F:      Documentation/ABI/testing/sysfs-class-typec
18307 F:      Documentation/driver-api/usb/typec.rst
18308 F:      drivers/usb/typec/
18309 F:      include/linux/usb/typec.h
18310
18311 USB TYPEC INTEL PMC MUX DRIVER
18312 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18313 L:      linux-usb@vger.kernel.org
18314 S:      Maintained
18315 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
18316 F:      drivers/usb/typec/mux/intel_pmc_mux.c
18317
18318 USB TYPEC PI3USB30532 MUX DRIVER
18319 M:      Hans de Goede <hdegoede@redhat.com>
18320 L:      linux-usb@vger.kernel.org
18321 S:      Maintained
18322 F:      drivers/usb/typec/mux/pi3usb30532.c
18323
18324 USB TYPEC PORT CONTROLLER DRIVERS
18325 M:      Guenter Roeck <linux@roeck-us.net>
18326 L:      linux-usb@vger.kernel.org
18327 S:      Maintained
18328 F:      drivers/usb/typec/tcpm/
18329
18330 USB UHCI DRIVER
18331 M:      Alan Stern <stern@rowland.harvard.edu>
18332 L:      linux-usb@vger.kernel.org
18333 S:      Maintained
18334 F:      drivers/usb/host/uhci*
18335
18336 USB VIDEO CLASS
18337 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18338 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
18339 L:      linux-media@vger.kernel.org
18340 S:      Maintained
18341 W:      http://www.ideasonboard.org/uvc/
18342 T:      git git://linuxtv.org/media_tree.git
18343 F:      drivers/media/usb/uvc/
18344 F:      include/uapi/linux/uvcvideo.h
18345
18346 USB WEBCAM GADGET
18347 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18348 L:      linux-usb@vger.kernel.org
18349 S:      Maintained
18350 F:      drivers/usb/gadget/function/*uvc*
18351 F:      drivers/usb/gadget/legacy/webcam.c
18352 F:      include/uapi/linux/usb/g_uvc.h
18353
18354 USB WIRELESS RNDIS DRIVER (rndis_wlan)
18355 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
18356 L:      linux-wireless@vger.kernel.org
18357 S:      Maintained
18358 F:      drivers/net/wireless/rndis_wlan.c
18359
18360 USB XHCI DRIVER
18361 M:      Mathias Nyman <mathias.nyman@intel.com>
18362 L:      linux-usb@vger.kernel.org
18363 S:      Supported
18364 F:      drivers/usb/host/pci-quirks*
18365 F:      drivers/usb/host/xhci*
18366
18367 USB ZD1201 DRIVER
18368 L:      linux-wireless@vger.kernel.org
18369 S:      Orphan
18370 W:      http://linux-lc100020.sourceforge.net
18371 F:      drivers/net/wireless/zydas/zd1201.*
18372
18373 USB ZR364XX DRIVER
18374 M:      Antoine Jacquet <royale@zerezo.com>
18375 L:      linux-usb@vger.kernel.org
18376 L:      linux-media@vger.kernel.org
18377 S:      Maintained
18378 W:      http://royale.zerezo.com/zr364xx/
18379 T:      git git://linuxtv.org/media_tree.git
18380 F:      Documentation/admin-guide/media/zr364xx*
18381 F:      drivers/media/usb/zr364xx/
18382
18383 USER-MODE LINUX (UML)
18384 M:      Jeff Dike <jdike@addtoit.com>
18385 M:      Richard Weinberger <richard@nod.at>
18386 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
18387 L:      linux-um@lists.infradead.org
18388 S:      Maintained
18389 W:      http://user-mode-linux.sourceforge.net
18390 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
18391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
18392 F:      Documentation/virt/uml/
18393 F:      arch/um/
18394 F:      arch/x86/um/
18395 F:      fs/hostfs/
18396
18397 USERSPACE COPYIN/COPYOUT (UIOVEC)
18398 M:      Alexander Viro <viro@zeniv.linux.org.uk>
18399 S:      Maintained
18400 F:      include/linux/uio.h
18401 F:      lib/iov_iter.c
18402
18403 USERSPACE DMA BUFFER DRIVER
18404 M:      Gerd Hoffmann <kraxel@redhat.com>
18405 L:      dri-devel@lists.freedesktop.org
18406 S:      Maintained
18407 T:      git git://anongit.freedesktop.org/drm/drm-misc
18408 F:      drivers/dma-buf/udmabuf.c
18409 F:      include/uapi/linux/udmabuf.h
18410
18411 USERSPACE I/O (UIO)
18412 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18413 S:      Maintained
18414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18415 F:      Documentation/driver-api/uio-howto.rst
18416 F:      drivers/uio/
18417 F:      include/linux/uio_driver.h
18418
18419 UTIL-LINUX PACKAGE
18420 M:      Karel Zak <kzak@redhat.com>
18421 L:      util-linux@vger.kernel.org
18422 S:      Maintained
18423 W:      http://en.wikipedia.org/wiki/Util-linux
18424 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
18425
18426 UUID HELPERS
18427 M:      Christoph Hellwig <hch@lst.de>
18428 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18429 L:      linux-kernel@vger.kernel.org
18430 S:      Maintained
18431 T:      git git://git.infradead.org/users/hch/uuid.git
18432 F:      include/linux/uuid.h
18433 F:      include/uapi/linux/uuid.h
18434 F:      lib/test_uuid.c
18435 F:      lib/uuid.c
18436
18437 UVESAFB DRIVER
18438 M:      Michal Januszewski <spock@gentoo.org>
18439 L:      linux-fbdev@vger.kernel.org
18440 S:      Maintained
18441 W:      https://github.com/mjanusz/v86d
18442 F:      Documentation/fb/uvesafb.rst
18443 F:      drivers/video/fbdev/uvesafb.*
18444
18445 Ux500 CLOCK DRIVERS
18446 M:      Ulf Hansson <ulf.hansson@linaro.org>
18447 L:      linux-clk@vger.kernel.org
18448 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18449 S:      Maintained
18450 F:      drivers/clk/ux500/
18451
18452 VF610 NAND DRIVER
18453 M:      Stefan Agner <stefan@agner.ch>
18454 L:      linux-mtd@lists.infradead.org
18455 S:      Supported
18456 F:      drivers/mtd/nand/raw/vf610_nfc.c
18457
18458 VFAT/FAT/MSDOS FILESYSTEM
18459 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
18460 S:      Maintained
18461 F:      Documentation/filesystems/vfat.rst
18462 F:      fs/fat/
18463
18464 VFIO DRIVER
18465 M:      Alex Williamson <alex.williamson@redhat.com>
18466 R:      Cornelia Huck <cohuck@redhat.com>
18467 L:      kvm@vger.kernel.org
18468 S:      Maintained
18469 T:      git git://github.com/awilliam/linux-vfio.git
18470 F:      Documentation/driver-api/vfio.rst
18471 F:      drivers/vfio/
18472 F:      include/linux/vfio.h
18473 F:      include/uapi/linux/vfio.h
18474
18475 VFIO FSL-MC DRIVER
18476 M:      Diana Craciun <diana.craciun@oss.nxp.com>
18477 L:      kvm@vger.kernel.org
18478 S:      Maintained
18479 F:      drivers/vfio/fsl-mc/
18480
18481 VFIO MEDIATED DEVICE DRIVERS
18482 M:      Kirti Wankhede <kwankhede@nvidia.com>
18483 L:      kvm@vger.kernel.org
18484 S:      Maintained
18485 F:      Documentation/driver-api/vfio-mediated-device.rst
18486 F:      drivers/vfio/mdev/
18487 F:      include/linux/mdev.h
18488 F:      samples/vfio-mdev/
18489
18490 VFIO PLATFORM DRIVER
18491 M:      Eric Auger <eric.auger@redhat.com>
18492 L:      kvm@vger.kernel.org
18493 S:      Maintained
18494 F:      drivers/vfio/platform/
18495
18496 VGA_SWITCHEROO
18497 R:      Lukas Wunner <lukas@wunner.de>
18498 S:      Maintained
18499 T:      git git://anongit.freedesktop.org/drm/drm-misc
18500 F:      Documentation/gpu/vga-switcheroo.rst
18501 F:      drivers/gpu/vga/vga_switcheroo.c
18502 F:      include/linux/vga_switcheroo.h
18503
18504 VIA RHINE NETWORK DRIVER
18505 S:      Maintained
18506 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
18507 F:      drivers/net/ethernet/via/via-rhine.c
18508
18509 VIA SD/MMC CARD CONTROLLER DRIVER
18510 M:      Bruce Chang <brucechang@via.com.tw>
18511 M:      Harald Welte <HaraldWelte@viatech.com>
18512 S:      Maintained
18513 F:      drivers/mmc/host/via-sdmmc.c
18514
18515 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18516 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
18517 L:      linux-fbdev@vger.kernel.org
18518 S:      Maintained
18519 F:      drivers/video/fbdev/via/
18520 F:      include/linux/via-core.h
18521 F:      include/linux/via-gpio.h
18522 F:      include/linux/via_i2c.h
18523
18524 VIA VELOCITY NETWORK DRIVER
18525 M:      Francois Romieu <romieu@fr.zoreil.com>
18526 L:      netdev@vger.kernel.org
18527 S:      Maintained
18528 F:      drivers/net/ethernet/via/via-velocity.*
18529
18530 VICODEC VIRTUAL CODEC DRIVER
18531 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
18532 L:      linux-media@vger.kernel.org
18533 S:      Maintained
18534 W:      https://linuxtv.org
18535 T:      git git://linuxtv.org/media_tree.git
18536 F:      drivers/media/test-drivers/vicodec/*
18537
18538 VIDEO I2C POLLING DRIVER
18539 M:      Matt Ranostay <matt.ranostay@konsulko.com>
18540 L:      linux-media@vger.kernel.org
18541 S:      Maintained
18542 F:      drivers/media/i2c/video-i2c.c
18543
18544 VIDEO MULTIPLEXER DRIVER
18545 M:      Philipp Zabel <p.zabel@pengutronix.de>
18546 L:      linux-media@vger.kernel.org
18547 S:      Maintained
18548 F:      drivers/media/platform/video-mux.c
18549
18550 VIDEOBUF2 FRAMEWORK
18551 M:      Tomasz Figa <tfiga@chromium.org>
18552 M:      Marek Szyprowski <m.szyprowski@samsung.com>
18553 L:      linux-media@vger.kernel.org
18554 S:      Maintained
18555 F:      drivers/media/common/videobuf2/*
18556 F:      include/media/videobuf2-*
18557
18558 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18559 M:      Helen Koike <helen.koike@collabora.com>
18560 R:      Shuah Khan <skhan@linuxfoundation.org>
18561 L:      linux-media@vger.kernel.org
18562 S:      Maintained
18563 W:      https://linuxtv.org
18564 T:      git git://linuxtv.org/media_tree.git
18565 F:      drivers/media/test-drivers/vimc/*
18566
18567 VIRT LIB
18568 M:      Alex Williamson <alex.williamson@redhat.com>
18569 M:      Paolo Bonzini <pbonzini@redhat.com>
18570 L:      kvm@vger.kernel.org
18571 S:      Supported
18572 F:      virt/lib/
18573
18574 VIRTIO AND VHOST VSOCK DRIVER
18575 M:      Stefan Hajnoczi <stefanha@redhat.com>
18576 M:      Stefano Garzarella <sgarzare@redhat.com>
18577 L:      kvm@vger.kernel.org
18578 L:      virtualization@lists.linux-foundation.org
18579 L:      netdev@vger.kernel.org
18580 S:      Maintained
18581 F:      drivers/net/vsockmon.c
18582 F:      drivers/vhost/vsock.c
18583 F:      include/linux/virtio_vsock.h
18584 F:      include/uapi/linux/virtio_vsock.h
18585 F:      include/uapi/linux/vm_sockets_diag.h
18586 F:      include/uapi/linux/vsockmon.h
18587 F:      net/vmw_vsock/af_vsock_tap.c
18588 F:      net/vmw_vsock/diag.c
18589 F:      net/vmw_vsock/virtio_transport.c
18590 F:      net/vmw_vsock/virtio_transport_common.c
18591 F:      net/vmw_vsock/vsock_loopback.c
18592 F:      tools/testing/vsock/
18593
18594 VIRTIO BLOCK AND SCSI DRIVERS
18595 M:      "Michael S. Tsirkin" <mst@redhat.com>
18596 M:      Jason Wang <jasowang@redhat.com>
18597 R:      Paolo Bonzini <pbonzini@redhat.com>
18598 R:      Stefan Hajnoczi <stefanha@redhat.com>
18599 L:      virtualization@lists.linux-foundation.org
18600 S:      Maintained
18601 F:      drivers/block/virtio_blk.c
18602 F:      drivers/scsi/virtio_scsi.c
18603 F:      drivers/vhost/scsi.c
18604 F:      include/uapi/linux/virtio_blk.h
18605 F:      include/uapi/linux/virtio_scsi.h
18606
18607 VIRTIO CONSOLE DRIVER
18608 M:      Amit Shah <amit@kernel.org>
18609 L:      virtualization@lists.linux-foundation.org
18610 S:      Maintained
18611 F:      drivers/char/virtio_console.c
18612 F:      include/linux/virtio_console.h
18613 F:      include/uapi/linux/virtio_console.h
18614
18615 VIRTIO CORE AND NET DRIVERS
18616 M:      "Michael S. Tsirkin" <mst@redhat.com>
18617 M:      Jason Wang <jasowang@redhat.com>
18618 L:      virtualization@lists.linux-foundation.org
18619 S:      Maintained
18620 F:      Documentation/devicetree/bindings/virtio/
18621 F:      drivers/block/virtio_blk.c
18622 F:      drivers/crypto/virtio/
18623 F:      drivers/net/virtio_net.c
18624 F:      drivers/vdpa/
18625 F:      drivers/virtio/
18626 F:      include/linux/vdpa.h
18627 F:      include/linux/virtio*.h
18628 F:      include/uapi/linux/virtio_*.h
18629 F:      tools/virtio/
18630
18631 VIRTIO BALLOON
18632 M:      "Michael S. Tsirkin" <mst@redhat.com>
18633 M:      David Hildenbrand <david@redhat.com>
18634 L:      virtualization@lists.linux-foundation.org
18635 S:      Maintained
18636 F:      drivers/virtio/virtio_balloon.c
18637 F:      include/uapi/linux/virtio_balloon.h
18638 F:      include/linux/balloon_compaction.h
18639 F:      mm/balloon_compaction.c
18640
18641 VIRTIO CRYPTO DRIVER
18642 M:      Gonglei <arei.gonglei@huawei.com>
18643 L:      virtualization@lists.linux-foundation.org
18644 L:      linux-crypto@vger.kernel.org
18645 S:      Maintained
18646 F:      drivers/crypto/virtio/
18647 F:      include/uapi/linux/virtio_crypto.h
18648
18649 VIRTIO DRIVERS FOR S390
18650 M:      Cornelia Huck <cohuck@redhat.com>
18651 M:      Halil Pasic <pasic@linux.ibm.com>
18652 L:      linux-s390@vger.kernel.org
18653 L:      virtualization@lists.linux-foundation.org
18654 L:      kvm@vger.kernel.org
18655 S:      Supported
18656 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18657 F:      drivers/s390/virtio/
18658
18659 VIRTIO FILE SYSTEM
18660 M:      Vivek Goyal <vgoyal@redhat.com>
18661 M:      Stefan Hajnoczi <stefanha@redhat.com>
18662 M:      Miklos Szeredi <miklos@szeredi.hu>
18663 L:      virtualization@lists.linux-foundation.org
18664 L:      linux-fsdevel@vger.kernel.org
18665 S:      Supported
18666 W:      https://virtio-fs.gitlab.io/
18667 F:      Documentation/filesystems/virtiofs.rst
18668 F:      fs/fuse/virtio_fs.c
18669 F:      include/uapi/linux/virtio_fs.h
18670
18671 VIRTIO GPU DRIVER
18672 M:      David Airlie <airlied@linux.ie>
18673 M:      Gerd Hoffmann <kraxel@redhat.com>
18674 L:      dri-devel@lists.freedesktop.org
18675 L:      virtualization@lists.linux-foundation.org
18676 S:      Maintained
18677 T:      git git://anongit.freedesktop.org/drm/drm-misc
18678 F:      drivers/gpu/drm/virtio/
18679 F:      include/uapi/linux/virtio_gpu.h
18680
18681 VIRTIO HOST (VHOST)
18682 M:      "Michael S. Tsirkin" <mst@redhat.com>
18683 M:      Jason Wang <jasowang@redhat.com>
18684 L:      kvm@vger.kernel.org
18685 L:      virtualization@lists.linux-foundation.org
18686 L:      netdev@vger.kernel.org
18687 S:      Maintained
18688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18689 F:      drivers/vhost/
18690 F:      include/linux/vhost_iotlb.h
18691 F:      include/uapi/linux/vhost.h
18692
18693 VIRTIO INPUT DRIVER
18694 M:      Gerd Hoffmann <kraxel@redhat.com>
18695 S:      Maintained
18696 F:      drivers/virtio/virtio_input.c
18697 F:      include/uapi/linux/virtio_input.h
18698
18699 VIRTIO IOMMU DRIVER
18700 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
18701 L:      virtualization@lists.linux-foundation.org
18702 S:      Maintained
18703 F:      drivers/iommu/virtio-iommu.c
18704 F:      include/uapi/linux/virtio_iommu.h
18705
18706 VIRTIO MEM DRIVER
18707 M:      David Hildenbrand <david@redhat.com>
18708 L:      virtualization@lists.linux-foundation.org
18709 S:      Maintained
18710 W:      https://virtio-mem.gitlab.io/
18711 F:      drivers/virtio/virtio_mem.c
18712 F:      include/uapi/linux/virtio_mem.h
18713
18714 VIRTUAL BOX GUEST DEVICE DRIVER
18715 M:      Hans de Goede <hdegoede@redhat.com>
18716 M:      Arnd Bergmann <arnd@arndb.de>
18717 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18718 S:      Maintained
18719 F:      drivers/virt/vboxguest/
18720 F:      include/linux/vbox_utils.h
18721 F:      include/uapi/linux/vbox*.h
18722
18723 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18724 M:      Hans de Goede <hdegoede@redhat.com>
18725 L:      linux-fsdevel@vger.kernel.org
18726 S:      Maintained
18727 F:      fs/vboxsf/*
18728
18729 VIRTUAL SERIO DEVICE DRIVER
18730 M:      Stephen Chandler Paul <thatslyude@gmail.com>
18731 S:      Maintained
18732 F:      drivers/input/serio/userio.c
18733 F:      include/uapi/linux/userio.h
18734
18735 VIVID VIRTUAL VIDEO DRIVER
18736 M:      Hans Verkuil <hverkuil@xs4all.nl>
18737 L:      linux-media@vger.kernel.org
18738 S:      Maintained
18739 W:      https://linuxtv.org
18740 T:      git git://linuxtv.org/media_tree.git
18741 F:      drivers/media/test-drivers/vivid/*
18742
18743 VIDTV VIRTUAL DIGITAL TV DRIVER
18744 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
18745 L:      linux-media@vger.kernel.org
18746 S:      Maintained
18747 W:      https://linuxtv.org
18748 T:      git git://linuxtv.org/media_tree.git
18749 F:      drivers/media/test-drivers/vidtv/*
18750
18751 VLYNQ BUS
18752 M:      Florian Fainelli <f.fainelli@gmail.com>
18753 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18754 S:      Maintained
18755 F:      drivers/vlynq/vlynq.c
18756 F:      include/linux/vlynq.h
18757
18758 VME SUBSYSTEM
18759 M:      Martyn Welch <martyn@welchs.me.uk>
18760 M:      Manohar Vanga <manohar.vanga@gmail.com>
18761 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18762 L:      devel@driverdev.osuosl.org
18763 S:      Maintained
18764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18765 F:      Documentation/driver-api/vme.rst
18766 F:      drivers/staging/vme/
18767 F:      drivers/vme/
18768 F:      include/linux/vme*
18769
18770 VMWARE BALLOON DRIVER
18771 M:      Nadav Amit <namit@vmware.com>
18772 M:      "VMware, Inc." <pv-drivers@vmware.com>
18773 L:      linux-kernel@vger.kernel.org
18774 S:      Maintained
18775 F:      drivers/misc/vmw_balloon.c
18776
18777 VMWARE HYPERVISOR INTERFACE
18778 M:      Deep Shah <sdeep@vmware.com>
18779 M:      "VMware, Inc." <pv-drivers@vmware.com>
18780 L:      virtualization@lists.linux-foundation.org
18781 S:      Supported
18782 F:      arch/x86/include/asm/vmware.h
18783 F:      arch/x86/kernel/cpu/vmware.c
18784
18785 VMWARE PVRDMA DRIVER
18786 M:      Adit Ranadive <aditr@vmware.com>
18787 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18788 L:      linux-rdma@vger.kernel.org
18789 S:      Maintained
18790 F:      drivers/infiniband/hw/vmw_pvrdma/
18791
18792 VMware PVSCSI driver
18793 M:      Jim Gill <jgill@vmware.com>
18794 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18795 L:      linux-scsi@vger.kernel.org
18796 S:      Maintained
18797 F:      drivers/scsi/vmw_pvscsi.c
18798 F:      drivers/scsi/vmw_pvscsi.h
18799
18800 VMWARE VIRTUAL PTP CLOCK DRIVER
18801 M:      Vivek Thampi <vithampi@vmware.com>
18802 M:      "VMware, Inc." <pv-drivers@vmware.com>
18803 L:      netdev@vger.kernel.org
18804 S:      Supported
18805 F:      drivers/ptp/ptp_vmw.c
18806
18807 VMWARE VMMOUSE SUBDRIVER
18808 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18809 M:      "VMware, Inc." <pv-drivers@vmware.com>
18810 L:      linux-input@vger.kernel.org
18811 S:      Maintained
18812 F:      drivers/input/mouse/vmmouse.c
18813 F:      drivers/input/mouse/vmmouse.h
18814
18815 VMWARE VMXNET3 ETHERNET DRIVER
18816 M:      Ronak Doshi <doshir@vmware.com>
18817 M:      "VMware, Inc." <pv-drivers@vmware.com>
18818 L:      netdev@vger.kernel.org
18819 S:      Maintained
18820 F:      drivers/net/vmxnet3/
18821
18822 VOCORE VOCORE2 BOARD
18823 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
18824 L:      linux-mips@vger.kernel.org
18825 S:      Maintained
18826 F:      arch/mips/boot/dts/ralink/vocore2.dts
18827
18828 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18829 M:      Liam Girdwood <lgirdwood@gmail.com>
18830 M:      Mark Brown <broonie@kernel.org>
18831 L:      linux-kernel@vger.kernel.org
18832 S:      Supported
18833 W:      http://www.slimlogic.co.uk/?p=48
18834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18835 F:      Documentation/devicetree/bindings/regulator/
18836 F:      Documentation/power/regulator/
18837 F:      drivers/regulator/
18838 F:      include/dt-bindings/regulator/
18839 F:      include/linux/regulator/
18840 K:      regulator_get_optional
18841
18842 VRF
18843 M:      David Ahern <dsahern@kernel.org>
18844 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
18845 L:      netdev@vger.kernel.org
18846 S:      Maintained
18847 F:      Documentation/networking/vrf.rst
18848 F:      drivers/net/vrf.c
18849
18850 VSPRINTF
18851 M:      Petr Mladek <pmladek@suse.com>
18852 M:      Steven Rostedt <rostedt@goodmis.org>
18853 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18854 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18855 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
18856 S:      Maintained
18857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18858 F:      Documentation/core-api/printk-formats.rst
18859 F:      lib/test_printf.c
18860 F:      lib/vsprintf.c
18861
18862 VT1211 HARDWARE MONITOR DRIVER
18863 M:      Juerg Haefliger <juergh@gmail.com>
18864 L:      linux-hwmon@vger.kernel.org
18865 S:      Maintained
18866 F:      Documentation/hwmon/vt1211.rst
18867 F:      drivers/hwmon/vt1211.c
18868
18869 VT8231 HARDWARE MONITOR DRIVER
18870 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
18871 L:      linux-hwmon@vger.kernel.org
18872 S:      Maintained
18873 F:      drivers/hwmon/vt8231.c
18874
18875 VUB300 USB to SDIO/SD/MMC bridge chip
18876 L:      linux-mmc@vger.kernel.org
18877 S:      Orphan
18878 F:      drivers/mmc/host/vub300.c
18879
18880 W1 DALLAS'S 1-WIRE BUS
18881 M:      Evgeniy Polyakov <zbr@ioremap.net>
18882 S:      Maintained
18883 F:      Documentation/devicetree/bindings/w1/
18884 F:      Documentation/w1/
18885 F:      drivers/w1/
18886 F:      include/linux/w1.h
18887
18888 W83791D HARDWARE MONITORING DRIVER
18889 M:      Marc Hulsman <m.hulsman@tudelft.nl>
18890 L:      linux-hwmon@vger.kernel.org
18891 S:      Maintained
18892 F:      Documentation/hwmon/w83791d.rst
18893 F:      drivers/hwmon/w83791d.c
18894
18895 W83793 HARDWARE MONITORING DRIVER
18896 M:      Rudolf Marek <r.marek@assembler.cz>
18897 L:      linux-hwmon@vger.kernel.org
18898 S:      Maintained
18899 F:      Documentation/hwmon/w83793.rst
18900 F:      drivers/hwmon/w83793.c
18901
18902 W83795 HARDWARE MONITORING DRIVER
18903 M:      Jean Delvare <jdelvare@suse.com>
18904 L:      linux-hwmon@vger.kernel.org
18905 S:      Maintained
18906 F:      drivers/hwmon/w83795.c
18907
18908 W83L51xD SD/MMC CARD INTERFACE DRIVER
18909 M:      Pierre Ossman <pierre@ossman.eu>
18910 S:      Maintained
18911 F:      drivers/mmc/host/wbsd.*
18912
18913 WACOM PROTOCOL 4 SERIAL TABLETS
18914 M:      Julian Squires <julian@cipht.net>
18915 M:      Hans de Goede <hdegoede@redhat.com>
18916 L:      linux-input@vger.kernel.org
18917 S:      Maintained
18918 F:      drivers/input/tablet/wacom_serial4.c
18919
18920 WATCHDOG DEVICE DRIVERS
18921 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
18922 M:      Guenter Roeck <linux@roeck-us.net>
18923 L:      linux-watchdog@vger.kernel.org
18924 S:      Maintained
18925 W:      http://www.linux-watchdog.org/
18926 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18927 F:      Documentation/devicetree/bindings/watchdog/
18928 F:      Documentation/watchdog/
18929 F:      drivers/watchdog/
18930 F:      include/linux/watchdog.h
18931 F:      include/uapi/linux/watchdog.h
18932
18933 WHISKEYCOVE PMIC GPIO DRIVER
18934 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
18935 L:      linux-gpio@vger.kernel.org
18936 S:      Maintained
18937 F:      drivers/gpio/gpio-wcove.c
18938
18939 WHWAVE RTC DRIVER
18940 M:      Dianlong Li <long17.cool@163.com>
18941 L:      linux-rtc@vger.kernel.org
18942 S:      Maintained
18943 F:      drivers/rtc/rtc-sd3078.c
18944
18945 WIIMOTE HID DRIVER
18946 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18947 L:      linux-input@vger.kernel.org
18948 S:      Maintained
18949 F:      drivers/hid/hid-wiimote*
18950
18951 WILOCITY WIL6210 WIRELESS DRIVER
18952 M:      Maya Erez <merez@codeaurora.org>
18953 L:      linux-wireless@vger.kernel.org
18954 L:      wil6210@qti.qualcomm.com
18955 S:      Supported
18956 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
18957 F:      drivers/net/wireless/ath/wil6210/
18958
18959 WIMAX STACK
18960 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
18961 M:      linux-wimax@intel.com
18962 L:      wimax@linuxwimax.org (subscribers-only)
18963 S:      Supported
18964 W:      http://linuxwimax.org
18965 F:      Documentation/admin-guide/wimax/wimax.rst
18966 F:      include/linux/wimax/debug.h
18967 F:      include/net/wimax.h
18968 F:      include/uapi/linux/wimax.h
18969 F:      net/wimax/
18970
18971 WINBOND CIR DRIVER
18972 M:      David Härdeman <david@hardeman.nu>
18973 S:      Maintained
18974 F:      drivers/media/rc/winbond-cir.c
18975
18976 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18977 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18978 L:      linux-watchdog@vger.kernel.org
18979 S:      Maintained
18980 F:      drivers/watchdog/ebc-c384_wdt.c
18981
18982 WINSYSTEMS WS16C48 GPIO DRIVER
18983 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18984 L:      linux-gpio@vger.kernel.org
18985 S:      Maintained
18986 F:      drivers/gpio/gpio-ws16c48.c
18987
18988 WIREGUARD SECURE NETWORK TUNNEL
18989 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18990 L:      wireguard@lists.zx2c4.com
18991 L:      netdev@vger.kernel.org
18992 S:      Maintained
18993 F:      drivers/net/wireguard/
18994 F:      tools/testing/selftests/wireguard/
18995
18996 WISTRON LAPTOP BUTTON DRIVER
18997 M:      Miloslav Trmac <mitr@volny.cz>
18998 S:      Maintained
18999 F:      drivers/input/misc/wistron_btns.c
19000
19001 WL3501 WIRELESS PCMCIA CARD DRIVER
19002 L:      linux-wireless@vger.kernel.org
19003 S:      Odd fixes
19004 F:      drivers/net/wireless/wl3501*
19005
19006 WOLFSON MICROELECTRONICS DRIVERS
19007 L:      patches@opensource.cirrus.com
19008 S:      Supported
19009 W:      https://github.com/CirrusLogic/linux-drivers/wiki
19010 T:      git https://github.com/CirrusLogic/linux-drivers.git
19011 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19012 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19013 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
19014 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19015 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19016 F:      Documentation/hwmon/wm83??.rst
19017 F:      arch/arm/mach-s3c/mach-crag6410*
19018 F:      drivers/clk/clk-wm83*.c
19019 F:      drivers/extcon/extcon-arizona.c
19020 F:      drivers/gpio/gpio-*wm*.c
19021 F:      drivers/gpio/gpio-arizona.c
19022 F:      drivers/hwmon/wm83??-hwmon.c
19023 F:      drivers/input/misc/wm831x-on.c
19024 F:      drivers/input/touchscreen/wm831x-ts.c
19025 F:      drivers/input/touchscreen/wm97*.c
19026 F:      drivers/leds/leds-wm83*.c
19027 F:      drivers/mfd/arizona*
19028 F:      drivers/mfd/cs47l24*
19029 F:      drivers/mfd/wm*.c
19030 F:      drivers/power/supply/wm83*.c
19031 F:      drivers/regulator/arizona*
19032 F:      drivers/regulator/wm8*.c
19033 F:      drivers/rtc/rtc-wm83*.c
19034 F:      drivers/video/backlight/wm83*_bl.c
19035 F:      drivers/watchdog/wm83*_wdt.c
19036 F:      include/linux/mfd/arizona/
19037 F:      include/linux/mfd/wm831x/
19038 F:      include/linux/mfd/wm8350/
19039 F:      include/linux/mfd/wm8400*
19040 F:      include/linux/regulator/arizona*
19041 F:      include/linux/wm97xx.h
19042 F:      include/sound/wm????.h
19043 F:      sound/soc/codecs/arizona.?
19044 F:      sound/soc/codecs/cs47l24*
19045 F:      sound/soc/codecs/wm*
19046
19047 WORKQUEUE
19048 M:      Tejun Heo <tj@kernel.org>
19049 R:      Lai Jiangshan <jiangshanlai@gmail.com>
19050 S:      Maintained
19051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19052 F:      Documentation/core-api/workqueue.rst
19053 F:      include/linux/workqueue.h
19054 F:      kernel/workqueue.c
19055
19056 X-POWERS AXP288 PMIC DRIVERS
19057 M:      Hans de Goede <hdegoede@redhat.com>
19058 S:      Maintained
19059 F:      drivers/acpi/pmic/intel_pmic_xpower.c
19060 N:      axp288
19061
19062 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19063 M:      Chen-Yu Tsai <wens@csie.org>
19064 L:      linux-kernel@vger.kernel.org
19065 S:      Maintained
19066 N:      axp[128]
19067
19068 X.25 STACK
19069 M:      Martin Schiller <ms@dev.tdt.de>
19070 L:      linux-x25@vger.kernel.org
19071 S:      Maintained
19072 F:      Documentation/networking/lapb-module.rst
19073 F:      Documentation/networking/x25*
19074 F:      drivers/net/wan/hdlc_x25.c
19075 F:      drivers/net/wan/lapbether.c
19076 F:      include/*/lapb.h
19077 F:      include/net/x25*
19078 F:      include/uapi/linux/x25.h
19079 F:      net/lapb/
19080 F:      net/x25/
19081
19082 X86 ARCHITECTURE (32-BIT AND 64-BIT)
19083 M:      Thomas Gleixner <tglx@linutronix.de>
19084 M:      Ingo Molnar <mingo@redhat.com>
19085 M:      Borislav Petkov <bp@alien8.de>
19086 M:      x86@kernel.org
19087 R:      "H. Peter Anvin" <hpa@zytor.com>
19088 L:      linux-kernel@vger.kernel.org
19089 S:      Maintained
19090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19091 F:      Documentation/devicetree/bindings/x86/
19092 F:      Documentation/x86/
19093 F:      arch/x86/
19094
19095 X86 ENTRY CODE
19096 M:      Andy Lutomirski <luto@kernel.org>
19097 L:      linux-kernel@vger.kernel.org
19098 S:      Maintained
19099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
19100 F:      arch/x86/entry/
19101
19102 X86 MCE INFRASTRUCTURE
19103 M:      Tony Luck <tony.luck@intel.com>
19104 M:      Borislav Petkov <bp@alien8.de>
19105 L:      linux-edac@vger.kernel.org
19106 S:      Maintained
19107 F:      arch/x86/kernel/cpu/mce/*
19108
19109 X86 MICROCODE UPDATE SUPPORT
19110 M:      Borislav Petkov <bp@alien8.de>
19111 S:      Maintained
19112 F:      arch/x86/kernel/cpu/microcode/*
19113
19114 X86 MM
19115 M:      Dave Hansen <dave.hansen@linux.intel.com>
19116 M:      Andy Lutomirski <luto@kernel.org>
19117 M:      Peter Zijlstra <peterz@infradead.org>
19118 L:      linux-kernel@vger.kernel.org
19119 S:      Maintained
19120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
19121 F:      arch/x86/mm/
19122
19123 X86 PLATFORM DRIVERS
19124 M:      Hans de Goede <hdegoede@redhat.com>
19125 M:      Mark Gross <mgross@linux.intel.com>
19126 L:      platform-driver-x86@vger.kernel.org
19127 S:      Maintained
19128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
19129 F:      drivers/platform/olpc/
19130 F:      drivers/platform/x86/
19131
19132 X86 PLATFORM DRIVERS - ARCH
19133 R:      Darren Hart <dvhart@infradead.org>
19134 R:      Andy Shevchenko <andy@infradead.org>
19135 L:      platform-driver-x86@vger.kernel.org
19136 L:      x86@kernel.org
19137 S:      Maintained
19138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19139 F:      arch/x86/platform
19140
19141 X86 PLATFORM UV HPE SUPERDOME FLEX
19142 M:      Steve Wahl <steve.wahl@hpe.com>
19143 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
19144 R:      Russ Anderson <russ.anderson@hpe.com>
19145 S:      Supported
19146 F:      arch/x86/include/asm/uv/
19147 F:      arch/x86/kernel/apic/x2apic_uv_x.c
19148 F:      arch/x86/platform/uv/
19149
19150 X86 VDSO
19151 M:      Andy Lutomirski <luto@kernel.org>
19152 L:      linux-kernel@vger.kernel.org
19153 S:      Maintained
19154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
19155 F:      arch/x86/entry/vdso/
19156
19157 XARRAY
19158 M:      Matthew Wilcox <willy@infradead.org>
19159 L:      linux-fsdevel@vger.kernel.org
19160 S:      Supported
19161 F:      Documentation/core-api/xarray.rst
19162 F:      include/linux/idr.h
19163 F:      include/linux/xarray.h
19164 F:      lib/idr.c
19165 F:      lib/xarray.c
19166 F:      tools/testing/radix-tree
19167
19168 XBOX DVD IR REMOTE
19169 M:      Benjamin Valentin <benpicco@googlemail.com>
19170 S:      Maintained
19171 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
19172 F:      drivers/media/rc/xbox_remote.c
19173
19174 XC2028/3028 TUNER DRIVER
19175 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19176 L:      linux-media@vger.kernel.org
19177 S:      Maintained
19178 W:      https://linuxtv.org
19179 T:      git git://linuxtv.org/media_tree.git
19180 F:      drivers/media/tuners/tuner-xc2028.*
19181
19182 XDP (eXpress Data Path)
19183 M:      Alexei Starovoitov <ast@kernel.org>
19184 M:      Daniel Borkmann <daniel@iogearbox.net>
19185 M:      David S. Miller <davem@davemloft.net>
19186 M:      Jakub Kicinski <kuba@kernel.org>
19187 M:      Jesper Dangaard Brouer <hawk@kernel.org>
19188 M:      John Fastabend <john.fastabend@gmail.com>
19189 L:      netdev@vger.kernel.org
19190 L:      bpf@vger.kernel.org
19191 S:      Supported
19192 F:      include/net/xdp.h
19193 F:      include/net/xdp_priv.h
19194 F:      include/trace/events/xdp.h
19195 F:      kernel/bpf/cpumap.c
19196 F:      kernel/bpf/devmap.c
19197 F:      net/core/xdp.c
19198 F:      samples/bpf/xdp*
19199 F:      tools/testing/selftests/bpf/*xdp*
19200 F:      tools/testing/selftests/bpf/*/*xdp*
19201 F:      drivers/net/ethernet/*/*/*/*/*xdp*
19202 F:      drivers/net/ethernet/*/*/*xdp*
19203 K:      (?:\b|_)xdp(?:\b|_)
19204
19205 XDP SOCKETS (AF_XDP)
19206 M:      Björn Töpel <bjorn.topel@intel.com>
19207 M:      Magnus Karlsson <magnus.karlsson@intel.com>
19208 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
19209 L:      netdev@vger.kernel.org
19210 L:      bpf@vger.kernel.org
19211 S:      Maintained
19212 F:      Documentation/networking/af_xdp.rst
19213 F:      include/net/xdp_sock*
19214 F:      include/net/xsk_buff_pool.h
19215 F:      include/uapi/linux/if_xdp.h
19216 F:      include/uapi/linux/xdp_diag.h
19217 F:      include/net/netns/xdp.h
19218 F:      net/xdp/
19219 F:      samples/bpf/xdpsock*
19220 F:      tools/lib/bpf/xsk*
19221
19222 XEN BLOCK SUBSYSTEM
19223 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19224 M:      Roger Pau Monné <roger.pau@citrix.com>
19225 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19226 S:      Supported
19227 F:      drivers/block/xen*
19228 F:      drivers/block/xen-blkback/*
19229
19230 XEN HYPERVISOR ARM
19231 M:      Stefano Stabellini <sstabellini@kernel.org>
19232 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19233 S:      Maintained
19234 F:      arch/arm/include/asm/xen/
19235 F:      arch/arm/xen/
19236
19237 XEN HYPERVISOR ARM64
19238 M:      Stefano Stabellini <sstabellini@kernel.org>
19239 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19240 S:      Maintained
19241 F:      arch/arm64/include/asm/xen/
19242 F:      arch/arm64/xen/
19243
19244 XEN HYPERVISOR INTERFACE
19245 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
19246 M:      Juergen Gross <jgross@suse.com>
19247 R:      Stefano Stabellini <sstabellini@kernel.org>
19248 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19249 S:      Supported
19250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19251 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
19252 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
19253 F:      arch/x86/include/asm/pvclock-abi.h
19254 F:      arch/x86/include/asm/xen/
19255 F:      arch/x86/platform/pvh/
19256 F:      arch/x86/xen/
19257 F:      drivers/*/xen-*front.c
19258 F:      drivers/xen/
19259 F:      include/uapi/xen/
19260 F:      include/xen/
19261
19262 XEN NETWORK BACKEND DRIVER
19263 M:      Wei Liu <wei.liu@kernel.org>
19264 M:      Paul Durrant <paul@xen.org>
19265 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19266 L:      netdev@vger.kernel.org
19267 S:      Supported
19268 F:      drivers/net/xen-netback/*
19269
19270 XEN PCI SUBSYSTEM
19271 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19272 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19273 S:      Supported
19274 F:      arch/x86/pci/*xen*
19275 F:      drivers/pci/*xen*
19276
19277 XEN PVSCSI DRIVERS
19278 M:      Juergen Gross <jgross@suse.com>
19279 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19280 L:      linux-scsi@vger.kernel.org
19281 S:      Supported
19282 F:      drivers/scsi/xen-scsifront.c
19283 F:      drivers/xen/xen-scsiback.c
19284 F:      include/xen/interface/io/vscsiif.h
19285
19286 XEN SOUND FRONTEND DRIVER
19287 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
19288 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19289 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19290 S:      Supported
19291 F:      sound/xen/*
19292
19293 XEN SWIOTLB SUBSYSTEM
19294 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19295 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19296 L:      iommu@lists.linux-foundation.org
19297 S:      Supported
19298 F:      arch/x86/xen/*swiotlb*
19299 F:      drivers/xen/*swiotlb*
19300
19301 XFS FILESYSTEM
19302 M:      Darrick J. Wong <darrick.wong@oracle.com>
19303 M:      linux-xfs@vger.kernel.org
19304 L:      linux-xfs@vger.kernel.org
19305 S:      Supported
19306 W:      http://xfs.org/
19307 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19308 F:      Documentation/ABI/testing/sysfs-fs-xfs
19309 F:      Documentation/admin-guide/xfs.rst
19310 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
19311 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
19312 F:      fs/xfs/
19313 F:      include/uapi/linux/dqblk_xfs.h
19314 F:      include/uapi/linux/fsmap.h
19315
19316 XILINX AXI ETHERNET DRIVER
19317 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
19318 S:      Maintained
19319 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
19320
19321 XILINX CAN DRIVER
19322 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
19323 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
19324 L:      linux-can@vger.kernel.org
19325 S:      Maintained
19326 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
19327 F:      drivers/net/can/xilinx_can.c
19328
19329 XILINX SD-FEC IP CORES
19330 M:      Derek Kiernan <derek.kiernan@xilinx.com>
19331 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
19332 S:      Maintained
19333 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
19334 F:      Documentation/misc-devices/xilinx_sdfec.rst
19335 F:      drivers/misc/Kconfig
19336 F:      drivers/misc/Makefile
19337 F:      drivers/misc/xilinx_sdfec.c
19338 F:      include/uapi/misc/xilinx_sdfec.h
19339
19340 XILINX UARTLITE SERIAL DRIVER
19341 M:      Peter Korsgaard <jacmet@sunsite.dk>
19342 L:      linux-serial@vger.kernel.org
19343 S:      Maintained
19344 F:      drivers/tty/serial/uartlite.c
19345
19346 XILINX VIDEO IP CORES
19347 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19348 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19349 L:      linux-media@vger.kernel.org
19350 S:      Supported
19351 T:      git git://linuxtv.org/media_tree.git
19352 F:      Documentation/devicetree/bindings/media/xilinx/
19353 F:      drivers/media/platform/xilinx/
19354 F:      include/uapi/linux/xilinx-v4l2-controls.h
19355
19356 XILINX ZYNQMP DPDMA DRIVER
19357 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19358 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19359 L:      dmaengine@vger.kernel.org
19360 S:      Supported
19361 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
19362 F:      drivers/dma/xilinx/xilinx_dpdma.c
19363 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
19364
19365 XILINX ZYNQMP PSGTR PHY DRIVER
19366 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
19367 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19368 L:      linux-kernel@vger.kernel.org
19369 S:      Supported
19370 T:      git https://github.com/Xilinx/linux-xlnx.git
19371 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
19372 F:      drivers/phy/xilinx/phy-zynqmp.c
19373
19374 XILLYBUS DRIVER
19375 M:      Eli Billauer <eli.billauer@gmail.com>
19376 L:      linux-kernel@vger.kernel.org
19377 S:      Supported
19378 F:      drivers/char/xillybus/
19379
19380 XLP9XX I2C DRIVER
19381 M:      George Cherian <gcherian@marvell.com>
19382 L:      linux-i2c@vger.kernel.org
19383 S:      Supported
19384 W:      http://www.marvell.com
19385 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
19386 F:      drivers/i2c/busses/i2c-xlp9xx.c
19387
19388 XRA1403 GPIO EXPANDER
19389 M:      Nandor Han <nandor.han@ge.com>
19390 M:      Semi Malinen <semi.malinen@ge.com>
19391 L:      linux-gpio@vger.kernel.org
19392 S:      Maintained
19393 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
19394 F:      drivers/gpio/gpio-xra1403.c
19395
19396 XTENSA XTFPGA PLATFORM SUPPORT
19397 M:      Max Filippov <jcmvbkbc@gmail.com>
19398 L:      linux-xtensa@linux-xtensa.org
19399 S:      Maintained
19400 F:      drivers/spi/spi-xtensa-xtfpga.c
19401 F:      sound/soc/xtensa/xtfpga-i2s.c
19402
19403 YAM DRIVER FOR AX.25
19404 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
19405 L:      linux-hams@vger.kernel.org
19406 S:      Maintained
19407 F:      drivers/net/hamradio/yam*
19408 F:      include/linux/yam.h
19409
19410 YAMA SECURITY MODULE
19411 M:      Kees Cook <keescook@chromium.org>
19412 S:      Supported
19413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
19414 F:      Documentation/admin-guide/LSM/Yama.rst
19415 F:      security/yama/
19416
19417 YEALINK PHONE DRIVER
19418 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
19419 L:      usbb2k-api-dev@nongnu.org
19420 S:      Maintained
19421 F:      Documentation/input/devices/yealink.rst
19422 F:      drivers/input/misc/yealink.*
19423
19424 Z8530 DRIVER FOR AX.25
19425 M:      Joerg Reuter <jreuter@yaina.de>
19426 L:      linux-hams@vger.kernel.org
19427 S:      Maintained
19428 W:      http://yaina.de/jreuter/
19429 W:      http://www.qsl.net/dl1bke/
19430 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
19431 F:      drivers/net/hamradio/*scc.c
19432 F:      drivers/net/hamradio/z8530.h
19433
19434 ZBUD COMPRESSED PAGE ALLOCATOR
19435 M:      Seth Jennings <sjenning@redhat.com>
19436 M:      Dan Streetman <ddstreet@ieee.org>
19437 L:      linux-mm@kvack.org
19438 S:      Maintained
19439 F:      include/linux/zbud.h
19440 F:      mm/zbud.c
19441
19442 ZD1211RW WIRELESS DRIVER
19443 M:      Daniel Drake <dsd@gentoo.org>
19444 M:      Ulrich Kunitz <kune@deine-taler.de>
19445 L:      linux-wireless@vger.kernel.org
19446 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
19447 S:      Maintained
19448 W:      http://zd1211.ath.cx/wiki/DriverRewrite
19449 F:      drivers/net/wireless/zydas/zd1211rw/
19450
19451 ZD1301 MEDIA DRIVER
19452 M:      Antti Palosaari <crope@iki.fi>
19453 L:      linux-media@vger.kernel.org
19454 S:      Maintained
19455 W:      https://linuxtv.org/
19456 W:      http://palosaari.fi/linux/
19457 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19458 F:      drivers/media/usb/dvb-usb-v2/zd1301*
19459
19460 ZD1301_DEMOD MEDIA DRIVER
19461 M:      Antti Palosaari <crope@iki.fi>
19462 L:      linux-media@vger.kernel.org
19463 S:      Maintained
19464 W:      https://linuxtv.org/
19465 W:      http://palosaari.fi/linux/
19466 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19467 F:      drivers/media/dvb-frontends/zd1301_demod*
19468
19469 ZHAOXIN PROCESSOR SUPPORT
19470 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
19471 L:      linux-kernel@vger.kernel.org
19472 S:      Maintained
19473 F:      arch/x86/kernel/cpu/zhaoxin.c
19474
19475 ZONEFS FILESYSTEM
19476 M:      Damien Le Moal <damien.lemoal@wdc.com>
19477 M:      Naohiro Aota <naohiro.aota@wdc.com>
19478 R:      Johannes Thumshirn <jth@kernel.org>
19479 L:      linux-fsdevel@vger.kernel.org
19480 S:      Maintained
19481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
19482 F:      Documentation/filesystems/zonefs.rst
19483 F:      fs/zonefs/
19484
19485 ZPOOL COMPRESSED PAGE STORAGE API
19486 M:      Dan Streetman <ddstreet@ieee.org>
19487 L:      linux-mm@kvack.org
19488 S:      Maintained
19489 F:      include/linux/zpool.h
19490 F:      mm/zpool.c
19491
19492 ZR36067 VIDEO FOR LINUX DRIVER
19493 M:      Corentin Labbe <clabbe@baylibre.com>
19494 L:      mjpeg-users@lists.sourceforge.net
19495 L:      linux-media@vger.kernel.org
19496 S:      Maintained
19497 W:      http://mjpeg.sourceforge.net/driver-zoran/
19498 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19499 F:      Documentation/driver-api/media/drivers/zoran.rst
19500 F:      drivers/staging/media/zoran/
19501
19502 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
19503 M:      Minchan Kim <minchan@kernel.org>
19504 M:      Nitin Gupta <ngupta@vflare.org>
19505 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19506 L:      linux-kernel@vger.kernel.org
19507 S:      Maintained
19508 F:      Documentation/admin-guide/blockdev/zram.rst
19509 F:      drivers/block/zram/
19510
19511 ZS DECSTATION Z85C30 SERIAL DRIVER
19512 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
19513 S:      Maintained
19514 F:      drivers/tty/serial/zs.*
19515
19516 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19517 M:      Minchan Kim <minchan@kernel.org>
19518 M:      Nitin Gupta <ngupta@vflare.org>
19519 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19520 L:      linux-mm@kvack.org
19521 S:      Maintained
19522 F:      Documentation/vm/zsmalloc.rst
19523 F:      include/linux/zsmalloc.h
19524 F:      mm/zsmalloc.c
19525
19526 ZSWAP COMPRESSED SWAP CACHING
19527 M:      Seth Jennings <sjenning@redhat.com>
19528 M:      Dan Streetman <ddstreet@ieee.org>
19529 M:      Vitaly Wool <vitaly.wool@konsulko.com>
19530 L:      linux-mm@kvack.org
19531 S:      Maintained
19532 F:      mm/zswap.c
19533
19534 THE REST
19535 M:      Linus Torvalds <torvalds@linux-foundation.org>
19536 L:      linux-kernel@vger.kernel.org
19537 S:      Buried alive in reporters
19538 Q:      http://patchwork.kernel.org/project/LKML/list/
19539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19540 F:      *
19541 F:      */